]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fkill_local_variable): Call find_symbol_value directly,
authorRichard M. Stallman <rms@gnu.org>
Mon, 4 Mar 1996 17:38:35 +0000 (17:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 4 Mar 1996 17:38:35 +0000 (17:38 +0000)
not via Fsymbol_value, to avoid getting void-variable error.

src/data.c

index 34896fe980b1c1aad4bbc269abe222bf47ba6297..23b15d0081f4dbda69cf5f4299b921420f578746 100644 (file)
@@ -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);
       }
   }