* 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
This commit is contained in:
nobu 2013-05-08 04:06:34 +00:00
Родитель 2816e53988
Коммит b8bcd92059
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -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> 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 * ext/socket/socket.c (socket_s_ip_address_list): fix wrongly filled

Просмотреть файл

@ -1617,6 +1617,7 @@ int rb_toupper(int c);
#define ISASCII(c) rb_isascii((unsigned char)(c)) #define ISASCII(c) rb_isascii((unsigned char)(c))
#undef ISPRINT #undef ISPRINT
#define ISPRINT(c) rb_isprint((unsigned char)(c)) #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 ISSPACE(c) rb_isspace((unsigned char)(c))
#define ISUPPER(c) rb_isupper((unsigned char)(c)) #define ISUPPER(c) rb_isupper((unsigned char)(c))
#define ISLOWER(c) rb_islower((unsigned char)(c)) #define ISLOWER(c) rb_islower((unsigned char)(c))