Skip to content

Commit

Permalink
* parse.y: ripper merged.
Browse files Browse the repository at this point in the history
* lex.c: ditto.
* keywords: ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
aamine committed Sep 12, 2004
1 parent d7da08a commit b86ccb7
Show file tree
Hide file tree
Showing 4 changed files with 2,714 additions and 113 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Mon Sep 13 00:20:39 2004 Minero Aoki <[email protected]>

* parse.y: ripper merged.

* lex.c: ditto.

* keywords: ditto.

Sun Sep 12 23:53:17 2004 Hirokazu Yamamoto <[email protected]>

* util.c (ruby_strdup): remove unnecessary code. (xmalloc never
Expand Down
2 changes: 1 addition & 1 deletion keywords
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct kwtable {char *name; int id[2]; enum lex_state state;};
struct kwtable {char *name; int id[2]; enum lex_state_e state;};
%%
__LINE__, {k__LINE__, k__LINE__}, EXPR_END
__FILE__, {k__FILE__, k__FILE__}, EXPR_END
Expand Down
4 changes: 2 additions & 2 deletions lex.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* C code produced by gperf version 2.7.2 */
/* Command-line: gperf -p -j1 -i 1 -g -o -t -N rb_reserved_word -k'1,3,$' ./keywords */
struct kwtable {char *name; int id[2]; enum lex_state state;};
/* Command-line: gperf -p -j1 -i 1 -g -o -t -N rb_reserved_word -k'1,3,$' keywords */
struct kwtable {char *name; int id[2]; enum lex_state_e state;};

#define TOTAL_KEYWORDS 40
#define MIN_WORD_LENGTH 2
Expand Down
Loading

0 comments on commit b86ccb7

Please sign in to comment.