aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorPaul Eggert2019-02-01 13:03:18 -0800
committerPaul Eggert2019-02-01 13:05:39 -0800
commit3b69e02a248c8b46223d5a9cecfb2494992e5fbe (patch)
tree22eca8d283fb1ea9aef90f5529260803e95dc266 /src/term.c
parent84802b66197c623735aaca875b8e1a39cb0ef085 (diff)
downloademacs-3b69e02a248c8b46223d5a9cecfb2494992e5fbe.tar.gz
emacs-3b69e02a248c8b46223d5a9cecfb2494992e5fbe.zip
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)
1350 char **address = term_get_fkeys_address; 1350 char **address = term_get_fkeys_address;
1351 KBOARD *kboard = term_get_fkeys_kboard; 1351 KBOARD *kboard = term_get_fkeys_kboard;
1352 1352
1353 /* This can happen if CANNOT_DUMP or with strange options. */ 1353 /* This can happen if Emacs is starting up from scratch, or with
1354 strange options. */
1354 if (!KEYMAPP (KVAR (kboard, Vinput_decode_map))) 1355 if (!KEYMAPP (KVAR (kboard, Vinput_decode_map)))
1355 kset_input_decode_map (kboard, Fmake_sparse_keymap (Qnil)); 1356 kset_input_decode_map (kboard, Fmake_sparse_keymap (Qnil));
1356 1357