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: don't need to check HAVE_WCOLOR_SET excluding

window_color_set().


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7935 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2005-02-10 01:33:22 +00:00
parent fcc32c7723
commit cb7afeceed
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Feb 10 10:29:16 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/curses/curses.c: don't need to check HAVE_WCOLOR_SET excluding
window_color_set().
Thu Feb 10 00:47:25 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
* struct.c (make_struct): fixed: [ruby-core:04402]

View file

@ -561,7 +561,7 @@ curses_resizeterm(VALUE obj, VALUE lin, VALUE col)
#endif
}
#if defined(USE_COLOR) && defined(HAVE_WCOLOR_SET)
#ifdef USE_COLOR
static VALUE
curses_start_color(VALUE obj)
{