Skip to content

Commit

Permalink
COLORS may be a macro (fixes #69)
Browse files Browse the repository at this point in the history
  • Loading branch information
shugo committed Feb 2, 2022
1 parent 026f3e9 commit 99464d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion curses.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new { |s|
s.name = "curses"
s.version = "1.4.3"
s.version = "1.4.4.beta.1"
s.author = ["Shugo Maeda", 'Eric Hodel']
s.email = ["shugo@ruby-lang.org", 'drbrain@segment7.net']
s.homepage = "https://github.com/ruby/curses"
Expand Down
2 changes: 1 addition & 1 deletion ext/curses/curses.c
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,7 @@ curses_can_change_color(VALUE obj)
return can_change_color() ? Qtrue : Qfalse;
}

#if defined(HAVE_COLORS)
#if defined(HAVE_COLORS) || defined(COLORS)
/*
* Document-method: Curses.color
*
Expand Down

0 comments on commit 99464d6

Please sign in to comment.