diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-04-04 07:17:36 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-04-04 07:17:36 -0700 |
commit | 0b1a7c1e2fa96187921cc618971ac8dcf3c2ef00 (patch) | |
tree | 696d6971efb6488392876036a088dee6630aa427 | |
parent | 6522f634df9903e7e8bb40027a818529b664118f (diff) | |
download | cppawk-0b1a7c1e2fa96187921cc618971ac8dcf3c2ef00.tar.gz cppawk-0b1a7c1e2fa96187921cc618971ac8dcf3c2ef00.tar.bz2 cppawk-0b1a7c1e2fa96187921cc618971ac8dcf3c2ef00.zip |
Rename sym to box_sym.
-rw-r--r-- | cppawk-include/cons-priv.h | 2 | ||||
-rw-r--r-- | cppawk-include/cons.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cppawk-include/cons-priv.h b/cppawk-include/cons-priv.h index 98c1f35..d9a8e28 100644 --- a/cppawk-include/cons-priv.h +++ b/cppawk-include/cons-priv.h @@ -184,7 +184,7 @@ function __unbox(__obj, } } -function __sym(__name) +function __box_sym(__name) { return "S" __name } diff --git a/cppawk-include/cons.h b/cppawk-include/cons.h index 696856d..1879e18 100644 --- a/cppawk-include/cons.h +++ b/cppawk-include/cons.h @@ -55,7 +55,7 @@ #define numberp __numberp #define box __box #define unbox __unbox -#define sym __sym +#define box_sym __box_sym #define cons __cons #define car __car #define cdr __cdr |