1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ruby.c: Qfalse is VALUE, not pointer.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2007-07-05 10:12:52 +00:00
parent 0bb4c2b3db
commit 92818d7eb6
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Jul 5 19:12:22 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* ruby.c: Qfalse is VALUE, not pointer.
Thu Jul 5 18:42:01 2007 Koichi Sasada <ko1@atdot.net>
* compile.c (iseq_compile_each): add break catch point.

2
ruby.c
View file

@ -61,7 +61,7 @@ static int sflag = 0;
static int xflag = 0;
extern int ruby_yydebug;
char *ruby_inplace_mode = Qfalse;
char *ruby_inplace_mode = 0;
static NODE *load_file(VALUE, const char *, int);
static void forbid_setid(const char *);