* eval_error.c: parenthesize macro arguments.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-12-12 04:28:29 +00:00
Родитель c4442536b2
Коммит 5227164cdc
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -1,6 +1,10 @@
Sun Dec 12 13:27:35 2010 Tanaka Akira <akr@fsij.org>
* eval_error.c: parenthesize macro arguments.
Sun Dec 12 11:53:24 2010 Tanaka Akira <akr@fsij.org>
* encoding.c: parenthesize macro arguments.
* error.c: parenthesize macro arguments.
Sun Dec 12 04:01:58 2010 NARUSE, Yui <naruse@ruby-lang.org>

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

@ -16,7 +16,7 @@ warn_printf(const char *fmt, ...)
}
#define warn_print(x) rb_write_error(x)
#define warn_print2(x,l) rb_write_error2(x,l)
#define warn_print2(x,l) rb_write_error2((x),(l))
static void
error_pos(void)