aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorPip Cet2021-05-16 15:44:26 +0200
committerStefan Monnier2022-07-01 09:42:00 -0400
commit094fd7ded365434b08f5d7c8ff499d17d566d54b (patch)
tree40366419e9d899e48c26439f428fee7b741d307c /src/keyboard.c
parent3a4c408a7b6f3df5ca0eb4a406efbdb4899e9742 (diff)
downloademacs-scratch/no-purespace-2.tar.gz
emacs-scratch/no-purespace-2.zip
Remove purespace from Emacsscratch/no-purespace-2
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 4cac20eb4b7..63950d62265 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1147,8 +1147,6 @@ top_level_1 (Lisp_Object ignore)
1147 /* On entry to the outer level, run the startup file. */ 1147 /* On entry to the outer level, run the startup file. */
1148 if (!NILP (Vtop_level)) 1148 if (!NILP (Vtop_level))
1149 internal_condition_case (top_level_2, Qerror, cmd_error); 1149 internal_condition_case (top_level_2, Qerror, cmd_error);
1150 else if (!NILP (Vpurify_flag))
1151 message1 ("Bare impure Emacs (standard Lisp code not loaded)");
1152 else 1150 else
1153 message1 ("Bare Emacs (standard Lisp code not loaded)"); 1151 message1 ("Bare Emacs (standard Lisp code not loaded)");
1154 return Qnil; 1152 return Qnil;
@@ -12045,14 +12043,14 @@ syms_of_keyboard (void)
12045 pending_funcalls = Qnil; 12043 pending_funcalls = Qnil;
12046 staticpro (&pending_funcalls); 12044 staticpro (&pending_funcalls);
12047 12045
12048 Vlispy_mouse_stem = build_pure_c_string ("mouse"); 12046 Vlispy_mouse_stem = build_string ("mouse");
12049 staticpro (&Vlispy_mouse_stem); 12047 staticpro (&Vlispy_mouse_stem);
12050 12048
12051 regular_top_level_message = build_pure_c_string ("Back to top level"); 12049 regular_top_level_message = build_string ("Back to top level");
12052 staticpro (&regular_top_level_message); 12050 staticpro (&regular_top_level_message);
12053#ifdef HAVE_STACK_OVERFLOW_HANDLING 12051#ifdef HAVE_STACK_OVERFLOW_HANDLING
12054 recover_top_level_message 12052 recover_top_level_message
12055 = build_pure_c_string ("Re-entering top level after C stack overflow"); 12053 = build_string ("Re-entering top level after C stack overflow");
12056 staticpro (&recover_top_level_message); 12054 staticpro (&recover_top_level_message);
12057#endif 12055#endif
12058 DEFVAR_LISP ("internal--top-level-message", Vinternal__top_level_message, 12056 DEFVAR_LISP ("internal--top-level-message", Vinternal__top_level_message,