summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-03-04 17:38:35 +0000
committerRichard M. Stallman <rms@gnu.org>1996-03-04 17:38:35 +0000
commit322442e8f72ed49240cf28670867e5410f6228c4 (patch)
treea682cf8ba4291a024afa14653a27071ffeed58a3
parent667c659d2f5ccb9638cc5db62bbbd79a28132778 (diff)
downloademacs-322442e8f72ed49240cf28670867e5410f6228c4.tar.gz
(Fkill_local_variable): Call find_symbol_value directly,
not via Fsymbol_value, to avoid getting void-variable error.
-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.")
if (current_buffer == XBUFFER (*pvalbuf))
{
*pvalbuf = Qnil;
- Fsymbol_value(variable);
+ find_symbol_value (variable);
}
}