summaryrefslogtreecommitdiff
path: root/src/op.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-23 15:04:07 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-23 15:04:07 -0400
commite919f53c9916af622d1995514c38be68e070ba49 (patch)
treeb70f68910a0a7bbfc114fd901dd02d21c2345e05 /src/op.h
parent9a44b8a547c44111ba467e2fc37a8c43dc205501 (diff)
downloadfork-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op.h b/src/op.h
index 7af4ff64..94df154e 100644
--- a/src/op.h
+++ b/src/op.h
@@ -108,7 +108,7 @@ public:
O_QUERY,
O_COLON,
- O_COMMA,
+ O_CONS,
O_DEFINE,
O_LOOKUP,