aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 06f644e1481..cb90daaba97 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -562,7 +562,6 @@ If the third argument is incorrect, Emacs may crash.")
562 varset: 562 varset:
563 { 563 {
564 Lisp_Object sym, val; 564 Lisp_Object sym, val;
565 extern int keyword_symbols_constant_flag;
566 565
567 sym = vectorp[op]; 566 sym = vectorp[op];
568 val = POP; 567 val = POP;
@@ -579,7 +578,6 @@ If the third argument is incorrect, Emacs may crash.")
579 && !EQ (sym, Qt) 578 && !EQ (sym, Qt)
580 && !(XSYMBOL (sym)->name->data[0] == ':' 579 && !(XSYMBOL (sym)->name->data[0] == ':'
581 && EQ (XSYMBOL (sym)->obarray, initial_obarray) 580 && EQ (XSYMBOL (sym)->obarray, initial_obarray)
582 && keyword_symbols_constant_flag
583 && !EQ (val, sym))) 581 && !EQ (val, sym)))
584 XSYMBOL (sym)->value = val; 582 XSYMBOL (sym)->value = val;
585 else 583 else