aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 2ed70c9c228..2b6c2a2e00e 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1422,6 +1422,9 @@ typedef unsigned char UCHAR;
1422#define CHECK_STRING(x) \ 1422#define CHECK_STRING(x) \
1423 do { if (!STRINGP ((x))) x = wrong_type_argument (Qstringp, (x)); } while (0) 1423 do { if (!STRINGP ((x))) x = wrong_type_argument (Qstringp, (x)); } while (0)
1424 1424
1425#define CHECK_STRING_CAR(x) \
1426 do { if (!STRINGP (XCAR (x))) XSETCAR (x, wrong_type_argument (Qstringp, XCAR (x))); } while (0)
1427
1425#define CHECK_CONS(x) \ 1428#define CHECK_CONS(x) \
1426 do { if (!CONSP ((x))) x = wrong_type_argument (Qconsp, (x)); } while (0) 1429 do { if (!CONSP ((x))) x = wrong_type_argument (Qconsp, (x)); } while (0)
1427 1430