diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-19 14:17:22 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-19 14:17:22 -0500 |
commit | 3983c206f9103fcb11db3f91b4a4da1b71f44526 (patch) | |
tree | f851f0c0306019206f3efb0fbb1a023b6ebdddbf /lisc | |
parent | 97cfdc309e76fd931bcd923aa836a79d6591400b (diff) | |
download | roux-3983c206f9103fcb11db3f91b4a4da1b71f44526.tar.gz |
add lexing sugar for backward compatibility
Diffstat (limited to 'lisc')
-rw-r--r-- | lisc/parse.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisc/parse.c b/lisc/parse.c index da82d0a..96e70b6 100644 --- a/lisc/parse.c +++ b/lisc/parse.c @@ -160,7 +160,10 @@ lex() { "b", TB }, { "d", TD }, { "s", TS }, - { "loadw", OLoadsw }, /* for convenience */ + { "loadw", OLoad }, /* for convenience */ + { "loadl", OLoad }, + { "loads", OLoad }, + { "loadd", OLoad }, { 0, TXXX } }; static char tok[NString]; |