]> git.eshelyaron.com Git - emacs.git/commitdiff
Use assq_no_quit on all local_var_alist accesses
authorSergey Vinokurov <serg.foo@gmail.com>
Fri, 14 Jan 2022 07:49:11 +0000 (08:49 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 14 Jan 2022 07:50:06 +0000 (08:50 +0100)
* src/data.c (Fkill_local_variable):
* src/buffer.c (buffer_local_value): Use assq_no_quit instead of
Fassoc/Fassq on local_var_alist (bug#53242).

* src/data.c (Flocal_variable_p): Use assq_no_quit instead of
open-coding the search on local_var_alist.

src/buffer.c
src/data.c

index 10ac91915c69e877a354c0767e49be59a2e256dc..a3091015d9bdbe315a1024589ab1d16f4444f372 100644 (file)
@@ -1247,7 +1247,7 @@ buffer_local_value (Lisp_Object variable, Lisp_Object buffer)
       { /* Look in local_var_alist.  */
        struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (sym);
        XSETSYMBOL (variable, sym); /* Update In case of aliasing.  */
-       result = Fassoc (variable, BVAR (buf, local_var_alist), Qnil);
+       result = assq_no_quit (variable, BVAR (buf, local_var_alist));
        if (!NILP (result))
          {
            if (blv->fwd.fwdptr)
index 5d0790692b748020758ad5ec3ff8f4367d1b58b4..f287c38fcdfd6eb5cecb9e4e34c1e36274c43d98 100644 (file)
@@ -2103,7 +2103,7 @@ Instead, use `add-hook' and specify t for the LOCAL argument.  */)
 
   /* Make sure this buffer has its own value of symbol.  */
   XSETSYMBOL (variable, sym);  /* Update in case of aliasing.  */
-  tem = Fassq (variable, BVAR (current_buffer, local_var_alist));
+  tem = assq_no_quit (variable, BVAR (current_buffer, local_var_alist));
   if (NILP (tem))
     {
       if (let_shadows_buffer_binding_p (sym))
@@ -2183,7 +2183,7 @@ From now on the default value will apply in this buffer.  Return VARIABLE.  */)
 
   /* Get rid of this buffer's alist element, if any.  */
   XSETSYMBOL (variable, sym);  /* Propagate variable indirection.  */
-  tem = Fassq (variable, BVAR (current_buffer, local_var_alist));
+  tem = assq_no_quit (variable, BVAR (current_buffer, local_var_alist));
   if (!NILP (tem))
     bset_local_var_alist
       (current_buffer,
@@ -2224,7 +2224,7 @@ Also see `buffer-local-boundp'.*/)
     case SYMBOL_PLAINVAL: return Qnil;
     case SYMBOL_LOCALIZED:
       {
-       Lisp_Object tail, elt, tmp;
+       Lisp_Object tmp;
        struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (sym);
        XSETBUFFER (tmp, buf);
        XSETSYMBOL (variable, sym); /* Update in case of aliasing.  */
@@ -2232,13 +2232,9 @@ Also see `buffer-local-boundp'.*/)
        if (EQ (blv->where, tmp)) /* The binding is already loaded.  */
          return blv_found (blv) ? Qt : Qnil;
        else
-         for (tail = BVAR (buf, local_var_alist); CONSP (tail); tail = XCDR (tail))
-           {
-             elt = XCAR (tail);
-             if (EQ (variable, XCAR (elt)))
-               return Qt;
-           }
-       return Qnil;
+         return NILP (assq_no_quit (variable, BVAR (buf, local_var_alist)))
+           ? Qnil
+           : Qt;
       }
     case SYMBOL_FORWARDED:
       {