From 924261558d1746783f90af4d045024d96fd11474 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 17 May 2003 12:42:31 +0000 Subject: [PATCH] (let_shadows_buffer_binding_p): Make target of p volatile. --- src/data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.c b/src/data.c index b52aff10819..d18cb187f62 100644 --- a/src/data.c +++ b/src/data.c @@ -1092,7 +1092,7 @@ static int let_shadows_buffer_binding_p (symbol) Lisp_Object symbol; { - struct specbinding *p; + volatile struct specbinding *p; for (p = specpdl_ptr - 1; p >= specpdl; p--) if (p->func == NULL -- 2.39.5