repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Change soft-fail to use the config, rather than env
[rbx.git]
/
kernel
/
bootstrap
/
readline.rb
blob
7f4711019e09fa5e98b722fd84c663088341520d
1
module Readline
2
3
# MTP
4
def self._terminal_raw
5
Ruby.primitive :terminal_raw
6
raise PrimitiveFailure, "primitive failed"
7
end
8
9
# MTP
10
def self._terminal_normal
11
Ruby.primitive :terminal_normal
12
raise PrimitiveFailure, "primitive failed"
13
end
14
15
end