diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-22 16:25:51 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-22 16:25:51 -0400 |
commit | ccedf7d57f6cc42553f1d80189bf1491df6680e2 (patch) | |
tree | 550826fed1ede33d005f6bfba7ebed109f79f453 /src/token.h | |
parent | 4e64364d3a6e575d7c9cb3db412dae36132b9f2d (diff) | |
download | fork-ledger-ccedf7d57f6cc42553f1d80189bf1491df6680e2.tar.gz fork-ledger-ccedf7d57f6cc42553f1d80189bf1491df6680e2.tar.bz2 fork-ledger-ccedf7d57f6cc42553f1d80189bf1491df6680e2.zip |
Parse != as !(==) and !~ as !(=~), for simplicity's sake.
Diffstat (limited to 'src/token.h')
-rw-r--r-- | src/token.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/token.h b/src/token.h index 7516a87b..3663c104 100644 --- a/src/token.h +++ b/src/token.h @@ -55,6 +55,7 @@ struct expr_t::token_t : public noncopyable ASSIGN, // = MATCH, // =~ + NMATCH, // !~ MINUS, // - PLUS, // + STAR, // * |