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/lisp.h | |
| 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/lisp.h')
| -rw-r--r-- | src/lisp.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h index f413d7a45ec..e92300f4f77 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3281,9 +3281,6 @@ struct handler | |||
| 3281 | enum nonlocal_exit nonlocal_exit; | 3281 | enum nonlocal_exit nonlocal_exit; |
| 3282 | Lisp_Object val; | 3282 | Lisp_Object val; |
| 3283 | 3283 | ||
| 3284 | /* The bytecode offset where the error occurred. */ | ||
| 3285 | int bytecode_offset; | ||
| 3286 | |||
| 3287 | struct handler *next; | 3284 | struct handler *next; |
| 3288 | struct handler *nextfree; | 3285 | struct handler *nextfree; |
| 3289 | 3286 | ||