mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/curses/curses.c: made indentation consistent.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
541915b239
commit
7f36764938
1 changed files with 187 additions and 187 deletions
|
@ -593,7 +593,7 @@ static VALUE
|
|||
curses_tabsize_set(VALUE obj, VALUE val)
|
||||
{
|
||||
#if defined(HAVE_TABSIZE)
|
||||
TABSIZE=NUM2INT(val);
|
||||
TABSIZE = NUM2INT(val);
|
||||
return INT2NUM(TABSIZE);
|
||||
#else
|
||||
rb_notimplement();
|
||||
|
@ -614,7 +614,7 @@ static VALUE
|
|||
curses_escdelay_set(VALUE obj, VALUE val)
|
||||
{
|
||||
#if defined(HAVE_ESCDELAY)
|
||||
ESCDELAY=NUM2INT(val);
|
||||
ESCDELAY = NUM2INT(val);
|
||||
return INT2NUM(ESCDELAY);
|
||||
#else
|
||||
rb_notimplement();
|
||||
|
|
Loading…
Add table
Reference in a new issue