diff options
author | Richard M. Stallman <rms@gnu.org> | 2000-01-11 22:17:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2000-01-11 22:17:34 +0000 |
commit | c96d71f715f902111f78be44d5053ea3d5c3edc0 (patch) | |
tree | 394684ab6cdd9703647d981427fc958b2d216271 /src/bytecode.c | |
parent | 5fd6e27432f25edf7a87f5f5b2ad516e8303df00 (diff) | |
download | emacs-c96d71f715f902111f78be44d5053ea3d5c3edc0.tar.gz |
(Fbyte_code): Pass new arg to set_internal.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r-- | src/bytecode.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index d2d74b0b59a..d103d2f1177 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -550,7 +550,7 @@ If the third argument is incorrect, Emacs may crash.") case Bvarset+6: op = FETCH; varset: - set_internal (vectorp[op], POP, 0); + set_internal (vectorp[op], POP, current_buffer, 0); /* Fset (vectorp[op], POP); */ break; @@ -1492,6 +1492,10 @@ If the third argument is incorrect, Emacs may crash.") break; #endif + case 0: + abort (); + + case 255: default: #ifdef BYTE_CODE_SAFE if (op < Bconstant) |