* data.c (set_internal): Don't use set_blv_found.
(Fkill_local_variable): Likewise.
This commit is contained in:
parent
17975d7ff9
commit
9e677988f4
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* data.c (set_internal): Don't use set_blv_found.
|
||||
(Fkill_local_variable): Likewise.
|
||||
|
||||
2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
|
||||
|
||||
* nsfont.m (ns_ascii_average_width): Ensure the string
|
||||
|
|
|
@ -1184,7 +1184,7 @@ set_internal (register Lisp_Object symbol, register Lisp_Object newval, register
|
|||
? XFRAME (where)->param_alist
|
||||
: BVAR (XBUFFER (where), local_var_alist)));
|
||||
set_blv_where (blv, where);
|
||||
set_blv_found (blv, 1);
|
||||
blv->found = 1;
|
||||
|
||||
if (NILP (tem1))
|
||||
{
|
||||
|
@ -1199,7 +1199,7 @@ set_internal (register Lisp_Object symbol, register Lisp_Object newval, register
|
|||
if (bindflag || !blv->local_if_set
|
||||
|| let_shadows_buffer_binding_p (sym))
|
||||
{
|
||||
set_blv_found (blv, 0);
|
||||
blv->found = 0;
|
||||
tem1 = blv->defcell;
|
||||
}
|
||||
/* If it's a local_if_set, being set not bound,
|
||||
|
@ -1735,7 +1735,7 @@ From now on the default value will apply in this buffer. Return VARIABLE. */)
|
|||
if (EQ (buf, blv->where))
|
||||
{
|
||||
set_blv_where (blv, Qnil);
|
||||
set_blv_found (blv, 0);
|
||||
blv->found = 0;
|
||||
find_symbol_value (variable);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue