aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorRichard M. Stallman1996-03-04 17:38:35 +0000
committerRichard M. Stallman1996-03-04 17:38:35 +0000
commit978dd5783bbbf9385205d2495406d88343369a21 (patch)
tree861ac7af556b8c07427d3440e5372bbf8a5d6c80 /src/data.c
parentf46cc152ae576c3fd2be121d4a87b7d77ee7585a (diff)
downloademacs-978dd5783bbbf9385205d2495406d88343369a21.tar.gz
emacs-978dd5783bbbf9385205d2495406d88343369a21.zip
(Fkill_local_variable): Call find_symbol_value directly,
not via Fsymbol_value, to avoid getting void-variable error.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index 34896fe980b..23b15d0081f 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1363,7 +1363,7 @@ From now on the default value will apply in this buffer.")
1363 if (current_buffer == XBUFFER (*pvalbuf)) 1363 if (current_buffer == XBUFFER (*pvalbuf))
1364 { 1364 {
1365 *pvalbuf = Qnil; 1365 *pvalbuf = Qnil;
1366 Fsymbol_value(variable); 1366 find_symbol_value (variable);
1367 } 1367 }
1368 } 1368 }
1369 1369