diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-23 15:04:07 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-23 15:04:07 -0400 |
commit | e919f53c9916af622d1995514c38be68e070ba49 (patch) | |
tree | b70f68910a0a7bbfc114fd901dd02d21c2345e05 /src/op.h | |
parent | 9a44b8a547c44111ba467e2fc37a8c43dc205501 (diff) | |
download | fork-ledger-e919f53c9916af622d1995514c38be68e070ba49.tar.gz fork-ledger-e919f53c9916af622d1995514c38be68e070ba49.tar.bz2 fork-ledger-e919f53c9916af622d1995514c38be68e070ba49.zip |
Renamed O_COMMA to O_CONS, and changed semantics
In the old scheme, nested values would simply flatten and concatenate,
so that '((1, 2), 3) = (1, 2, 3)'. Now sublists are preserved, so that
sequences may be passed as arguments to functions.
Diffstat (limited to 'src/op.h')
-rw-r--r-- | src/op.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ public: O_QUERY, O_COLON, - O_COMMA, + O_CONS, O_DEFINE, O_LOOKUP, |