From 67e61153d335aecc6e1551f754a887bc294b3fa8 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 16 Apr 2007 13:51:51 +0000 Subject: * sample: replace TRUE, FALSE with true, false respectively. a patch from Kazuhiro NISHIYAMA . [ruby-dev:30713] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@12183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- sample/cbreak.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sample/cbreak.rb') diff --git a/sample/cbreak.rb b/sample/cbreak.rb index cbb15d2f41..76b534a76a 100644 --- a/sample/cbreak.rb +++ b/sample/cbreak.rb @@ -6,11 +6,11 @@ TIOCGETP = 0x40067408 TIOCSETP = 0x80067409 def cbreak () - set_cbreak(TRUE) + set_cbreak(true) end def cooked () - set_cbreak(FALSE) + set_cbreak(false) end def set_cbreak (on) -- cgit v1.2.3