aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-30 09:17:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-30 09:17:47 +0000
commit0075a767e5c6c37d530b495906209fa8e68d1417 (patch)
tree4a6994836425ce6b597f415311dded8a2202cf44 /parse.y
parenta442691c9d597b812765ce2c758243e9936ac210 (diff)
downloadruby-0075a767e5c6c37d530b495906209fa8e68d1417.tar.gz
* parse.y (struct token_info): constified.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18948 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 187314d5f0..48721dde2f 100644
--- a/parse.y
+++ b/parse.y
@@ -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;