diff options
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index f10e9fd79b7..447f8d5d4ff 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -1167,9 +1167,10 @@ top_level_2 (void) | |||
| 1167 | encountering an error, to help with debugging. */ | 1167 | encountering an error, to help with debugging. */ |
| 1168 | bool setup_handler = noninteractive; | 1168 | bool setup_handler = noninteractive; |
| 1169 | if (setup_handler) | 1169 | if (setup_handler) |
| 1170 | /* FIXME: Should we (re)use `list_of_error` from `xdisp.c`? */ | ||
| 1170 | push_handler_bind (list1 (Qerror), Qdebug_early__handler, 0); | 1171 | push_handler_bind (list1 (Qerror), Qdebug_early__handler, 0); |
| 1171 | 1172 | ||
| 1172 | Lisp_Object res = Feval (Vtop_level, Qnil); | 1173 | Lisp_Object res = Feval (Vtop_level, Qt); |
| 1173 | 1174 | ||
| 1174 | if (setup_handler) | 1175 | if (setup_handler) |
| 1175 | pop_handler (); | 1176 | pop_handler (); |
| @@ -1365,7 +1366,6 @@ command_loop_1 (void) | |||
| 1365 | display_malloc_warning (); | 1366 | display_malloc_warning (); |
| 1366 | 1367 | ||
| 1367 | Vdeactivate_mark = Qnil; | 1368 | Vdeactivate_mark = Qnil; |
| 1368 | backtrace_yet = false; | ||
| 1369 | 1369 | ||
| 1370 | /* Don't ignore mouse movements for more than a single command | 1370 | /* Don't ignore mouse movements for more than a single command |
| 1371 | loop. (This flag is set in xdisp.c whenever the tool bar is | 1371 | loop. (This flag is set in xdisp.c whenever the tool bar is |