diff options
| author | Luc Teirlinck | 2006-02-26 18:08:02 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-02-26 18:08:02 +0000 |
| commit | ab83782857cf6577676eb39ee8ee591a72746c8d (patch) | |
| tree | 956c799e80ee06a3a3b09283802e1fe306d74904 | |
| parent | a7af5886205c9ba974ccff9ee4bcc7ea80a46429 (diff) | |
| download | emacs-ab83782857cf6577676eb39ee8ee591a72746c8d.tar.gz emacs-ab83782857cf6577676eb39ee8ee591a72746c8d.zip | |
(specpdl_ptr): Remove volatile qualifier for consistency with lisp.h.
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 06d53c907b4..a84948981f4 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -117,7 +117,7 @@ struct specbinding *specpdl; | |||
| 117 | 117 | ||
| 118 | /* Pointer to first unused element in specpdl. */ | 118 | /* Pointer to first unused element in specpdl. */ |
| 119 | 119 | ||
| 120 | volatile struct specbinding *specpdl_ptr; | 120 | struct specbinding *specpdl_ptr; |
| 121 | 121 | ||
| 122 | /* Maximum size allowed for specpdl allocation */ | 122 | /* Maximum size allowed for specpdl allocation */ |
| 123 | 123 | ||