From 978dd5783bbbf9385205d2495406d88343369a21 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 4 Mar 1996 17:38:35 +0000 Subject: [PATCH] (Fkill_local_variable): Call find_symbol_value directly, not via Fsymbol_value, to avoid getting void-variable error. --- src/data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.39.5