diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-03-04 17:38:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-03-04 17:38:35 +0000 |
commit | 322442e8f72ed49240cf28670867e5410f6228c4 (patch) | |
tree | a682cf8ba4291a024afa14653a27071ffeed58a3 /src/data.c | |
parent | 667c659d2f5ccb9638cc5db62bbbd79a28132778 (diff) | |
download | emacs-322442e8f72ed49240cf28670867e5410f6228c4.tar.gz |
(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.c | 2 |
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); } } |