summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-10 01:33:22 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-10 01:33:22 +0000
commit179fab0b10dcd6994978c62141fc5aacbb0c28f2 (patch)
tree6f109bb0ce3922c5f942b097b0bb56c02e7831c8
parentae5f3b7716d7acf0c709b07c90368223827fc032 (diff)
downloadruby-179fab0b10dcd6994978c62141fc5aacbb0c28f2.tar.gz
ruby-179fab0b10dcd6994978c62141fc5aacbb0c28f2.tar.xz
ruby-179fab0b10dcd6994978c62141fc5aacbb0c28f2.zip
* ext/curses/curses.c: don't need to check HAVE_WCOLOR_SET excluding
window_color_set(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7935 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/curses/curses.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7fc08ce2a..c5e9f3ae5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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]
diff --git a/ext/curses/curses.c b/ext/curses/curses.c
index 636db3147..a35656826 100644
--- a/ext/curses/curses.c
+++ b/ext/curses/curses.c
@@ -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)
{