Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
22e8cf4a
Commit
22e8cf4a
authored
Sep 24, 2012
by
Stefan Monnier
Browse files
* src/bytecode.c (exec_byte_code): Signal an error instead of aborting,
when encountering an unknown bytecode.
parent
578098f3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/bytecode.c
src/bytecode.c
+1
-1
No files found.
src/ChangeLog
View file @
22e8cf4a
2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
* bytecode.c (exec_byte_code): Signal an error instead of aborting,
when encountering an unknown bytecode.
2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
image.c, indent.c: Use bool for booleans.
...
...
src/bytecode.c
View file @
22e8cf4a
...
...
@@ -1876,7 +1876,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
/* Actually this is Bstack_ref with offset 0, but we use Bdup
for that instead. */
/* CASE (Bstack_ref): */
e
macs_abort
(
);
e
rror
(
"Invalid byte opcode"
);
/* Handy byte-codes for lexical binding. */
CASE
(
Bstack_ref1
)
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment