diff options
| author | Zach Shaftel | 2020-07-22 20:07:15 -0400 |
|---|---|---|
| committer | Zach Shaftel | 2020-07-22 20:07:15 -0400 |
| commit | bed4004fd334e101a5fb4ee8a3bbf23f4679ba87 (patch) | |
| tree | 180ee2e9b41306ec9514af5431401d154917282f /src/eval.c | |
| parent | 54b94af19d371f55f8a5f60352a14791de0d3e97 (diff) | |
| download | emacs-feature/soc-bytecode-in-traceback-reduced.tar.gz emacs-feature/soc-bytecode-in-traceback-reduced.zip | |
Clean up before patch submissionfeature/soc-bytecode-in-traceback-reduced
* src/lisp.h (struct handler): Remove unused 'bytecode_offset' field,
which was added at some point while prototyping.
* src/bytecode.c (UPDATE_OFFSET): Subtract 1, so the offset is accurate.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index b9640f6ab7a..e4451aa96c4 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -342,7 +342,9 @@ call_debugger (Lisp_Object arg) | |||
| 342 | redisplay, which necessarily leads to display problems. */ | 342 | redisplay, which necessarily leads to display problems. */ |
| 343 | specbind (Qinhibit_eval_during_redisplay, Qt); | 343 | specbind (Qinhibit_eval_during_redisplay, Qt); |
| 344 | #endif | 344 | #endif |
| 345 | |||
| 345 | val = apply1 (Vdebugger, arg); | 346 | val = apply1 (Vdebugger, arg); |
| 347 | |||
| 346 | /* Interrupting redisplay and resuming it later is not safe under | 348 | /* Interrupting redisplay and resuming it later is not safe under |
| 347 | all circumstances. So, when the debugger returns, abort the | 349 | all circumstances. So, when the debugger returns, abort the |
| 348 | interrupted redisplay by going back to the top-level. */ | 350 | interrupted redisplay by going back to the top-level. */ |