From: Richard M. Stallman Date: Mon, 4 Mar 1996 17:38:35 +0000 (+0000) Subject: (Fkill_local_variable): Call find_symbol_value directly, X-Git-Tag: emacs-19.34~1115 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=978dd5783bbbf9385205d2495406d88343369a21;p=emacs.git (Fkill_local_variable): Call find_symbol_value directly, not via Fsymbol_value, to avoid getting void-variable error. --- 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); } }