comparison src/data.c @ 14745:f78162b0fc6e

(Fkill_local_variable): Call find_symbol_value directly, not via Fsymbol_value, to avoid getting void-variable error.
author Richard M. Stallman <rms@gnu.org>
date Mon, 04 Mar 1996 17:38:35 +0000
parents 7af403b25839
children bf3ee2ec5068
comparison
equal deleted inserted replaced
14744:bbad6f06273a 14745:f78162b0fc6e
1361 valcontents = XSYMBOL (variable)->value; 1361 valcontents = XSYMBOL (variable)->value;
1362 pvalbuf = &XCONS (XBUFFER_LOCAL_VALUE (valcontents)->cdr)->car; 1362 pvalbuf = &XCONS (XBUFFER_LOCAL_VALUE (valcontents)->cdr)->car;
1363 if (current_buffer == XBUFFER (*pvalbuf)) 1363 if (current_buffer == XBUFFER (*pvalbuf))
1364 { 1364 {
1365 *pvalbuf = Qnil; 1365 *pvalbuf = Qnil;
1366 Fsymbol_value(variable); 1366 find_symbol_value (variable);
1367 } 1367 }
1368 } 1368 }
1369 1369
1370 return variable; 1370 return variable;
1371 } 1371 }