diff options
| author | Richard M. Stallman | 2003-05-17 12:42:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-05-17 12:42:31 +0000 |
| commit | 924261558d1746783f90af4d045024d96fd11474 (patch) | |
| tree | 4231da45c37f4de6f0dd77a23f30f00f82b41fe7 /src | |
| parent | fa42e88f9b9e89a2756cec5c72ce85f713233055 (diff) | |
| download | emacs-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.c | 2 |
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 | |||
| 1092 | let_shadows_buffer_binding_p (symbol) | 1092 | let_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 |