summaryrefslogtreecommitdiff
path: root/src/data.c
diff options
context:
space:
mode:
authorSergey Vinokurov <serg.foo@gmail.com>2022-01-14 08:49:11 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2022-01-14 08:50:06 +0100
commita5ce31a192f474bce1259b97e599258d1fde7c8c (patch)
tree60bc8a18648682c7fcb53339deed6ecd3bfd1361 /src/data.c
parent3ae74c2e478e65de2cdc78013c0d6524b97442c0 (diff)
downloademacs-a5ce31a192f474bce1259b97e599258d1fde7c8c.tar.gz
emacs-a5ce31a192f474bce1259b97e599258d1fde7c8c.tar.bz2
emacs-a5ce31a192f474bce1259b97e599258d1fde7c8c.zip
Use assq_no_quit on all local_var_alist accesses
* 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.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/data.c b/src/data.c
index 5d0790692b7..f287c38fcdf 100644
--- a/src/data.c
+++ b/src/data.c
@@ -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:
{