diff options
| author | Stefan Monnier | 2006-02-26 16:14:20 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-02-26 16:14:20 +0000 |
| commit | a7af5886205c9ba974ccff9ee4bcc7ea80a46429 (patch) | |
| tree | 40e83930b9a341d95e6c9f9f0f2d009dc759a9a8 /src/lisp.h | |
| parent | 782ea71aba3761983d71bf8ab9bb77c974abab56 (diff) | |
| download | emacs-a7af5886205c9ba974ccff9ee4bcc7ea80a46429.tar.gz emacs-a7af5886205c9ba974ccff9ee4bcc7ea80a46429.zip | |
(struct specbinding, specpdl_ptr): Remove the volatile qualifier which was
trying to avoid the bug that was fixed by yesterday's changes to xterm.c.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h index 992c05251b8..80503c4ccbc 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1744,13 +1744,13 @@ typedef Lisp_Object (*specbinding_func) P_ ((Lisp_Object)); | |||
| 1744 | 1744 | ||
| 1745 | struct specbinding | 1745 | struct specbinding |
| 1746 | { | 1746 | { |
| 1747 | volatile Lisp_Object symbol, old_value; | 1747 | Lisp_Object symbol, old_value; |
| 1748 | volatile specbinding_func func; | 1748 | specbinding_func func; |
| 1749 | Lisp_Object unused; /* Dividing by 16 is faster than by 12 */ | 1749 | Lisp_Object unused; /* Dividing by 16 is faster than by 12 */ |
| 1750 | }; | 1750 | }; |
| 1751 | 1751 | ||
| 1752 | extern struct specbinding *specpdl; | 1752 | extern struct specbinding *specpdl; |
| 1753 | extern volatile struct specbinding *specpdl_ptr; | 1753 | extern struct specbinding *specpdl_ptr; |
| 1754 | extern int specpdl_size; | 1754 | extern int specpdl_size; |
| 1755 | 1755 | ||
| 1756 | extern EMACS_INT max_specpdl_size; | 1756 | extern EMACS_INT max_specpdl_size; |