summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2012-07-27 12:24:34 +0300
committerEli Zaretskii <eliz@gnu.org>2012-07-27 12:24:34 +0300
commit3438fe218c77633ee2c5f106e3a335f906347247 (patch)
tree4b7cfbb14dbf83c94541eb4b69b673bc6ec73099 /src/callint.c
parent0000d0d54bb9cbc835172d9f5f8ff7595786af62 (diff)
Fix failure to compile on Windows due to 2012-07-27T06:04:35Z!dmantipov@yandex.ru.
src/lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for enumeration constants, as PURE and HEAP are too general, and clash with other headers and sources, such as gmalloc.c and the MS-Windows system headers. All users changed.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index 4454b1fdb16..4b53b5df34b 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -888,7 +888,7 @@ syms_of_callint (void)
callint_message = Qnil;
staticpro (&callint_message);
- preserved_fns = listn (PURE, 4,
+ preserved_fns = listn (CONSTYPE_PURE, 4,
intern_c_string ("region-beginning"),
intern_c_string ("region-end"),
intern_c_string ("point"),