diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-01 10:52:46 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-01 10:52:46 +0900 |
| commit | 5f937591580ef810fedcdfb40e94ceb9f8ef5178 (patch) | |
| tree | 0c7e2ee1e6d451df377fb3a36052bb728dc6824b /include/mruby.h | |
| parent | 78f2902c0680f53dc2cf4b7febce1d3613db67bf (diff) | |
| parent | 67de10bfcb9d9ff21e1aa678aff8afa10446b7c4 (diff) | |
| download | mruby-5f937591580ef810fedcdfb40e94ceb9f8ef5178.tar.gz mruby-5f937591580ef810fedcdfb40e94ceb9f8ef5178.zip | |
Merge branch 'issues/comment_style' of https://github.com/cubicdaiya/mruby into cubicdaiya-issues/comment_style
Diffstat (limited to 'include/mruby.h')
| -rw-r--r-- | include/mruby.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h index 4f404fb8e..4ef1d326e 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -304,7 +304,7 @@ mrb_value mrb_obj_clone(mrb_state *mrb, mrb_value self); /* need to include <ctype.h> to use these macros */ #ifndef ISPRINT -//#define ISASCII(c) isascii((int)(unsigned char)(c)) +/* #define ISASCII(c) isascii((int)(unsigned char)(c)) */ #define ISASCII(c) 1 #define ISPRINT(c) (ISASCII(c) && isprint((int)(unsigned char)(c))) #define ISSPACE(c) (ISASCII(c) && isspace((int)(unsigned char)(c))) |
