summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-02-01 13:03:18 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2019-02-01 13:05:39 -0800
commit3b69e02a248c8b46223d5a9cecfb2494992e5fbe (patch)
tree22eca8d283fb1ea9aef90f5529260803e95dc266 /src/term.c
parent84802b66197c623735aaca875b8e1a39cb0ef085 (diff)
downloademacs-3b69e02a248c8b46223d5a9cecfb2494992e5fbe.tar.gz
Rename CANNOT_DUMP to HAVE_UNEXEC
* configure.ac (CANNOT_DUMP): Remove. All uses removed, or changed to the negative of with_unexec. (HAVE_UNEXEC): New macro. All uses of CANNOT_DUMP changed to the negative of this macro.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index c5a1fb99a15..7255f561e2a 100644
--- a/src/term.c
+++ b/src/term.c
@@ -1350,7 +1350,8 @@ term_get_fkeys_1 (void)
char **address = term_get_fkeys_address;
KBOARD *kboard = term_get_fkeys_kboard;
- /* This can happen if CANNOT_DUMP or with strange options. */
+ /* This can happen if Emacs is starting up from scratch, or with
+ strange options. */
if (!KEYMAPP (KVAR (kboard, Vinput_decode_map)))
kset_input_decode_map (kboard, Fmake_sparse_keymap (Qnil));