Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ruby/truffle/truffle/io/console.rb
Original file line number Diff line number Diff line change
@@ -57,14 +57,14 @@ def stty(*args)

def raw(*)
saved = stty('-g')
stty('raw')
stty('raw -echo')
yield self
ensure
stty(saved)
end

def raw!(*)
stty('raw')
stty('raw -echo')
end

def cooked(*)

0 comments on commit f739f77

Please sign in to comment.