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

* parse.y (struct token_info): constified.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18948 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-08-30 09:17:47 +00:00
parent a442691c9d
commit 0075a767e5
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,6 @@
Sat Aug 30 18:16:32 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
Sat Aug 30 18:17:40 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (struct token_info): constified.
* parse.y (token_info_get_column, token_info_has_nonspaces),
(token_info_push, token_info_pop): constified.

View file

@ -176,7 +176,7 @@ vtable_included(const struct vtable * tbl, ID id)
typedef struct token_info {
char *token;
const char *token;
int linenum;
int column;
int nonspc;