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/bytecode.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/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 4ea3cbfb12b..c6766a38cf2 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -313,7 +313,7 @@ enum byte_code_op | |||
| 313 | 313 | ||
| 314 | /* Update the thread's bytecode offset, just before NEXT. */ | 314 | /* Update the thread's bytecode offset, just before NEXT. */ |
| 315 | 315 | ||
| 316 | #define UPDATE_OFFSET (backtrace_byte_offset = pc - bytestr_data) | 316 | #define UPDATE_OFFSET (backtrace_byte_offset = pc - bytestr_data - 1) |
| 317 | 317 | ||
| 318 | DEFUN ("byte-code", Fbyte_code, Sbyte_code, 3, 3, 0, | 318 | DEFUN ("byte-code", Fbyte_code, Sbyte_code, 3, 3, 0, |
| 319 | doc: /* Function used internally in byte-compiled code. | 319 | doc: /* Function used internally in byte-compiled code. |