diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-12-17 09:31:08 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-12-17 09:31:53 -0800 |
commit | 4d77c4ac3b9c40c62b1505bcaa1e0377d63a4956 (patch) | |
tree | 6ee9aff2af6310152d545996fbc52dee6915d884 /src/charset.c | |
parent | 739dca7818514f1b7c318fd195f90535a416f57f (diff) | |
download | emacs-4d77c4ac3b9c40c62b1505bcaa1e0377d63a4956.tar.gz |
Assume ‘emacs’ is defined in Emacs-only code
* src/charset.c, src/coding.c, src/coding.h, src/gmalloc.c:
* src/ralloc.c, src/regex-emacs.c: Simplify slightly by
assuming that ‘emacs’ is defined. These modules have long
been specific to Emacs, and are not used elsewhere.
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/charset.c b/src/charset.c index 83f4de7ed24..8508b80677f 100644 --- a/src/charset.c +++ b/src/charset.c @@ -2328,8 +2328,6 @@ init_charset_once (void) charset_ksc5601 = -1; } -#ifdef emacs - /* Allocate an initial charset table that is large enough to handle Emacs while it is bootstrapping. As of September 2011, the size needs to be at least 166; make it a bit bigger to allow for future @@ -2430,5 +2428,3 @@ the value may be a list of mnemonics. */); MAX_5_BYTE_CHAR + 1); charset_unibyte = charset_iso_8859_1; } - -#endif /* emacs */ |