aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorRichard M. Stallman2000-01-11 22:17:34 +0000
committerRichard M. Stallman2000-01-11 22:17:34 +0000
commitc96d71f715f902111f78be44d5053ea3d5c3edc0 (patch)
tree394684ab6cdd9703647d981427fc958b2d216271 /src/bytecode.c
parent5fd6e27432f25edf7a87f5f5b2ad516e8303df00 (diff)
downloademacs-c96d71f715f902111f78be44d5053ea3d5c3edc0.tar.gz
emacs-c96d71f715f902111f78be44d5053ea3d5c3edc0.zip
(Fbyte_code): Pass new arg to set_internal.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c6
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.")
550 case Bvarset+6: 550 case Bvarset+6:
551 op = FETCH; 551 op = FETCH;
552 varset: 552 varset:
553 set_internal (vectorp[op], POP, 0); 553 set_internal (vectorp[op], POP, current_buffer, 0);
554 /* Fset (vectorp[op], POP); */ 554 /* Fset (vectorp[op], POP); */
555 break; 555 break;
556 556
@@ -1492,6 +1492,10 @@ If the third argument is incorrect, Emacs may crash.")
1492 break; 1492 break;
1493#endif 1493#endif
1494 1494
1495 case 0:
1496 abort ();
1497
1498 case 255:
1495 default: 1499 default:
1496#ifdef BYTE_CODE_SAFE 1500#ifdef BYTE_CODE_SAFE
1497 if (op < Bconstant) 1501 if (op < Bconstant)