aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-02-23 10:42:36 +0000
committerGerd Moellmann <[email protected]>2000-02-23 10:42:36 +0000
commit157b72bb607868f2ee37c2fdeb96ba8ce9b823ee (patch)
tree0350fe7cebb302bcf5a2de98e50dd391dae83964
parent068b074ebee4198221f5cb725ee7751d35ae0c81 (diff)
(Fbyte_code): Remove keyword_symbols_constant_flag.
-rw-r--r--src/bytecode.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 06f644e148..cb90daaba9 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -562,7 +562,6 @@ If the third argument is incorrect, Emacs may crash.")
varset:
{
Lisp_Object sym, val;
- extern int keyword_symbols_constant_flag;
sym = vectorp[op];
val = POP;
@@ -579,7 +578,6 @@ If the third argument is incorrect, Emacs may crash.")
&& !EQ (sym, Qt)
&& !(XSYMBOL (sym)->name->data[0] == ':'
&& EQ (XSYMBOL (sym)->obarray, initial_obarray)
- && keyword_symbols_constant_flag
&& !EQ (val, sym)))
XSYMBOL (sym)->value = val;
else