Mercurial > emacs
diff src/data.c @ 51030:7ef125284156
(let_shadows_buffer_binding_p): Make target of p volatile.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 17 May 2003 12:42:31 +0000 |
| parents | bd83590b911a |
| children | 78af369bc6ac |
line wrap: on
line diff
--- a/src/data.c Sat May 17 12:40:32 2003 +0000 +++ b/src/data.c Sat May 17 12:42:31 2003 +0000 @@ -1092,7 +1092,7 @@ 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
