1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-17 11:20:39 -08:00

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.
This commit is contained in:
Eli Zaretskii 2012-07-27 12:24:34 +03:00
parent 0000d0d54b
commit 3438fe218c
14 changed files with 29 additions and 22 deletions

View file

@ -10411,7 +10411,7 @@ syms_of_coding (void)
DEFSYM (Qcoding_system_error, "coding-system-error");
Fput (Qcoding_system_error, Qerror_conditions,
listn (PURE, 2, Qcoding_system_error, Qerror));
listn (CONSTYPE_PURE, 2, Qcoding_system_error, Qerror));
Fput (Qcoding_system_error, Qerror_message,
build_pure_c_string ("Invalid coding system"));