diff options
| author | Eli Zaretskii | 2012-07-27 12:24:34 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2012-07-27 12:24:34 +0300 |
| commit | 3438fe218c77633ee2c5f106e3a335f906347247 (patch) | |
| tree | 4b7cfbb14dbf83c94541eb4b69b673bc6ec73099 /src/coding.c | |
| parent | 0000d0d54bb9cbc835172d9f5f8ff7595786af62 (diff) | |
| download | emacs-3438fe218c77633ee2c5f106e3a335f906347247.tar.gz emacs-3438fe218c77633ee2c5f106e3a335f906347247.zip | |
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/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 8b858aa218e..7b178b0ce14 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -10411,7 +10411,7 @@ syms_of_coding (void) | |||
| 10411 | 10411 | ||
| 10412 | DEFSYM (Qcoding_system_error, "coding-system-error"); | 10412 | DEFSYM (Qcoding_system_error, "coding-system-error"); |
| 10413 | Fput (Qcoding_system_error, Qerror_conditions, | 10413 | Fput (Qcoding_system_error, Qerror_conditions, |
| 10414 | listn (PURE, 2, Qcoding_system_error, Qerror)); | 10414 | listn (CONSTYPE_PURE, 2, Qcoding_system_error, Qerror)); |
| 10415 | Fput (Qcoding_system_error, Qerror_message, | 10415 | Fput (Qcoding_system_error, Qerror_message, |
| 10416 | build_pure_c_string ("Invalid coding system")); | 10416 | build_pure_c_string ("Invalid coding system")); |
| 10417 | 10417 | ||