1
0
Fork 0
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:
nobu 2008-12-09 04:42:51 +00:00
parent 541915b239
commit 7f36764938

View file

@ -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();