diff options
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 0d60dc8929d..3c00e017498 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -1188,13 +1188,13 @@ top_level_2 (void) | |||
| 1188 | static Lisp_Object | 1188 | static Lisp_Object |
| 1189 | top_level_1 (Lisp_Object ignore) | 1189 | top_level_1 (Lisp_Object ignore) |
| 1190 | { | 1190 | { |
| 1191 | /* On entry to the outer level, run the startup file */ | 1191 | /* On entry to the outer level, run the startup file. */ |
| 1192 | if (!NILP (Vtop_level)) | 1192 | if (!NILP (Vtop_level)) |
| 1193 | internal_condition_case (top_level_2, Qerror, cmd_error); | 1193 | internal_condition_case (top_level_2, Qerror, cmd_error); |
| 1194 | else if (!NILP (Vpurify_flag)) | 1194 | else if (!NILP (Vpurify_flag)) |
| 1195 | message ("Bare impure Emacs (standard Lisp code not loaded)"); | 1195 | message1 ("Bare impure Emacs (standard Lisp code not loaded)"); |
| 1196 | else | 1196 | else |
| 1197 | message ("Bare Emacs (standard Lisp code not loaded)"); | 1197 | message1 ("Bare Emacs (standard Lisp code not loaded)"); |
| 1198 | return Qnil; | 1198 | return Qnil; |
| 1199 | } | 1199 | } |
| 1200 | 1200 | ||