aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2003-05-17 12:42:31 +0000
committerRichard M. Stallman2003-05-17 12:42:31 +0000
commit924261558d1746783f90af4d045024d96fd11474 (patch)
tree4231da45c37f4de6f0dd77a23f30f00f82b41fe7 /src
parentfa42e88f9b9e89a2756cec5c72ce85f713233055 (diff)
downloademacs-924261558d1746783f90af4d045024d96fd11474.tar.gz
emacs-924261558d1746783f90af4d045024d96fd11474.zip
(let_shadows_buffer_binding_p): Make target of p volatile.
Diffstat (limited to 'src')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
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
1092let_shadows_buffer_binding_p (symbol) 1092let_shadows_buffer_binding_p (symbol)
1093 Lisp_Object symbol; 1093 Lisp_Object symbol;
1094{ 1094{
1095 struct specbinding *p; 1095 volatile struct specbinding *p;
1096 1096
1097 for (p = specpdl_ptr - 1; p >= specpdl; p--) 1097 for (p = specpdl_ptr - 1; p >= specpdl; p--)
1098 if (p->func == NULL 1098 if (p->func == NULL