diff options
author | Zach Shaftel <zshaftel@gmail.com> | 2020-07-22 20:07:15 -0400 |
---|---|---|
committer | Zach Shaftel <zshaftel@gmail.com> | 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 |
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 enum nonlocal_exit nonlocal_exit; Lisp_Object val; - /* The bytecode offset where the error occurred. */ - int bytecode_offset; - struct handler *next; struct handler *nextfree; |