aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-13 16:54:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-13 16:54:43 +0000
commitd2e19fdc4225f5d82d82352040bb00a3d31166f4 (patch)
tree7d19d56a6e54a372e044129f36011573e3c03d28 /parse.y
parenta7b67cc82e8d0f5072d436f35ff4e1a0685208a7 (diff)
downloadruby-d2e19fdc4225f5d82d82352040bb00a3d31166f4.tar.gz
ytab.sed: replace argument
* tool/ytab.sed: substitute the first argument of YYFPRINTF, instead of substitution by preprocessor, not to redefine stderr. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y8
1 files changed, 1 insertions, 7 deletions
diff --git a/parse.y b/parse.y
index 4c418d36b2..9791a67f49 100644
--- a/parse.y
+++ b/parse.y
@@ -44,13 +44,7 @@
#define YYREALLOC(ptr, size) rb_parser_realloc(parser, (ptr), (size))
#define YYCALLOC(nelem, size) rb_parser_calloc(parser, (nelem), (size))
#define YYFREE(ptr) rb_parser_free(parser, (ptr))
-#ifdef HAVE_VA_ARGS_MACRO
-# define YYFPRINTF(f, fmt, ...) rb_parser_printf(parser, fmt, ##__VA_ARGS__)
-#else
-# define YYFPRINTF rb_parser_printf
-# undef stderr
-# define stderr parser
-#endif
+#define YYFPRINTF rb_parser_printf
#undef malloc
#undef realloc
#undef calloc