]> git.eshelyaron.com Git - emacs.git/commitdiff
* data.c (set_internal): Don't use set_blv_found.
authorAndreas Schwab <schwab@linux-m68k.org>
Sun, 19 Aug 2012 08:40:12 +0000 (10:40 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Sun, 19 Aug 2012 08:40:12 +0000 (10:40 +0200)
(Fkill_local_variable): Likewise.

src/ChangeLog
src/data.c

index 5956eea1c511060448f947e8ea0e51387b6f99aa..84271438a81fec60bbe9e3480a62c9c1db0b6d79 100644 (file)
@@ -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
index ea511824e6d558c1aa8d1fe5b8d4da00637f693a..6dd852dd710f91253a319951673f71920cbc952c 100644 (file)
@@ -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);
       }
   }