aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-08 04:06:34 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-08 04:06:34 +0000
commitb8bcd920591a1398d68517dc121362302ea9e77a (patch)
tree78c97743c47d5df28c88e85835b328587d486180
parent2816e53988b521f82c1cbdd191e654d1ca7b46a2 (diff)
downloadruby-b8bcd920591a1398d68517dc121362302ea9e77a.tar.gz
ruby.h: ISGRAPH
* include/ruby/ruby.h (ISGRAPH): add missing macro. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40605 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--include/ruby/ruby.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8aabf6d22f..7235b943f7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed May 8 13:06:31 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * include/ruby/ruby.h (ISGRAPH): add missing macro.
+
Wed May 8 06:42:56 2013 NARUSE, Yui <naruse@ruby-lang.org>
* ext/socket/socket.c (socket_s_ip_address_list): fix wrongly filled
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index c01242e274..c1bf06d6e4 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -1617,6 +1617,7 @@ int rb_toupper(int c);
#define ISASCII(c) rb_isascii((unsigned char)(c))
#undef ISPRINT
#define ISPRINT(c) rb_isprint((unsigned char)(c))
+#define ISGRAPH(c) rb_isgraph((unsigned char)(c))
#define ISSPACE(c) rb_isspace((unsigned char)(c))
#define ISUPPER(c) rb_isupper((unsigned char)(c))
#define ISLOWER(c) rb_islower((unsigned char)(c))