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/buffer.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/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index c2afd7f4a5e..5e45882b892 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5212,7 +5212,7 @@ syms_of_buffer (void) | |||
| 5212 | DEFSYM (Qkill_buffer_query_functions, "kill-buffer-query-functions"); | 5212 | DEFSYM (Qkill_buffer_query_functions, "kill-buffer-query-functions"); |
| 5213 | 5213 | ||
| 5214 | Fput (Qprotected_field, Qerror_conditions, | 5214 | Fput (Qprotected_field, Qerror_conditions, |
| 5215 | listn (PURE, 2, Qprotected_field, Qerror)); | 5215 | listn (CONSTYPE_PURE, 2, Qprotected_field, Qerror)); |
| 5216 | Fput (Qprotected_field, Qerror_message, | 5216 | Fput (Qprotected_field, Qerror_message, |
| 5217 | build_pure_c_string ("Attempt to modify a protected field")); | 5217 | build_pure_c_string ("Attempt to modify a protected field")); |
| 5218 | 5218 | ||