diff options
author | Eli Zaretskii <eliz@gnu.org> | 2012-07-27 12:24:34 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2012-07-27 12:24:34 +0300 |
commit | 3438fe218c77633ee2c5f106e3a335f906347247 (patch) | |
tree | 4b7cfbb14dbf83c94541eb4b69b673bc6ec73099 /src/charset.c | |
parent | 0000d0d54bb9cbc835172d9f5f8ff7595786af62 (diff) | |
download | emacs-3438fe218c77633ee2c5f106e3a335f906347247.tar.gz |
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/charset.c')
-rw-r--r-- | src/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c index ae822544006..b621109b75d 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1283,7 +1283,7 @@ define_charset_internal (Lisp_Object name, args[charset_arg_unify_map] = Qnil; args[charset_arg_plist] = - listn (HEAP, 14, + listn (CONSTYPE_HEAP, 14, intern_c_string (":name"), args[charset_arg_name], intern_c_string (":dimension"), |