diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-04-04 07:13:51 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-04-04 07:13:51 -0700 |
commit | 8335e67e819088cda3b9f05a39b810e1575a66b4 (patch) | |
tree | d3da14dc3d411e56a6dbb1fb1a71886bf0b2b8f9 /cppawk-include/cons.h | |
parent | 7c91966e4fc169baf5e9c9634662a19e65830830 (diff) | |
download | cppawk-8335e67e819088cda3b9f05a39b810e1575a66b4.tar.gz cppawk-8335e67e819088cda3b9f05a39b810e1575a66b4.tar.bz2 cppawk-8335e67e819088cda3b9f05a39b810e1575a66b4.zip |
Fix incorrect #defines for and and or.
Diffstat (limited to 'cppawk-include/cons.h')
-rw-r--r-- | cppawk-include/cons.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppawk-include/cons.h b/cppawk-include/cons.h index 3f4af02..d13a115 100644 --- a/cppawk-include/cons.h +++ b/cppawk-include/cons.h @@ -35,8 +35,8 @@ #define nil __nil #define prog(...) __prog(__VA_ARGS__) #define progn(...) __progn(__VA_ARGS__) -#define or(...) __varexpand(__VA_ARGS__) -#define and(...) __varexpand(__VA_ARGS__) +#define or(...) __or(__VA_ARGS__) +#define and(...) __and(__VA_ARGS__) #define push(item, list) __push(item, list) #define pop(list) __pop(list) #define dolist(item, list) __dolist(item, list) |