diff options
Diffstat (limited to 'cppawk-include/cons-priv.h')
-rw-r--r-- | cppawk-include/cons-priv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppawk-include/cons-priv.h b/cppawk-include/cons-priv.h index 7e54f84..85bbe42 100644 --- a/cppawk-include/cons-priv.h +++ b/cppawk-include/cons-priv.h @@ -216,7 +216,7 @@ function __box_str(__str) function __box_sym(__name) { - return __name == "nil" ? nil : "S" __name + return __name == "nil" ? __nil : "S" __name } function __cons(__a, __d) @@ -442,7 +442,7 @@ function __list(__rest, { return __arglist("list", __rest, __check) } -#define __list_first(item) __cons(item, nil) +#define __list_first(item) __cons(item, __nil) #define __list_next(list, item) __cons(item, list) #define __li(...) __varexpand(__list_first, \ __list_next, \ |