aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorStefan Monnier2013-02-17 11:49:27 -0500
committerStefan Monnier2013-02-17 11:49:27 -0500
commit2f73da9c57872b084be2b0627092fa6d142f027f (patch)
tree9aa663dc885dd6a43d3e632dd57f303c73006646 /src/keyboard.c
parent53db1d8b92a31a02f82d2bd52f46a041d3bb82b8 (diff)
downloademacs-2f73da9c57872b084be2b0627092fa6d142f027f.tar.gz
emacs-2f73da9c57872b084be2b0627092fa6d142f027f.zip
Prefer `message1' over `message'.
* src/xml.c (init_libxml2_functions): * src/sound.c (sound_warning): * src/sheap.c (report_sheap_usage): * src/process.c (wait_reading_process_output): * src/msdos.c (XMenuActivate): * src/macros.c (Fstart_kbd_macro, Fend_kbd_macro): * src/keyboard.c (top_level_1): * src/editfns.c (Fmessage, Fmessage_box): * src/callint.c (Fcall_interactively): * src/fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 69c68d13943..77037f647e9 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1185,13 +1185,13 @@ top_level_2 (void)
1185static Lisp_Object 1185static Lisp_Object
1186top_level_1 (Lisp_Object ignore) 1186top_level_1 (Lisp_Object ignore)
1187{ 1187{
1188 /* On entry to the outer level, run the startup file */ 1188 /* On entry to the outer level, run the startup file. */
1189 if (!NILP (Vtop_level)) 1189 if (!NILP (Vtop_level))
1190 internal_condition_case (top_level_2, Qerror, cmd_error); 1190 internal_condition_case (top_level_2, Qerror, cmd_error);
1191 else if (!NILP (Vpurify_flag)) 1191 else if (!NILP (Vpurify_flag))
1192 message ("Bare impure Emacs (standard Lisp code not loaded)"); 1192 message1 ("Bare impure Emacs (standard Lisp code not loaded)");
1193 else 1193 else
1194 message ("Bare Emacs (standard Lisp code not loaded)"); 1194 message1 ("Bare Emacs (standard Lisp code not loaded)");
1195 return Qnil; 1195 return Qnil;
1196} 1196}
1197 1197