diff options
| author | Dave Love | 2000-06-05 14:25:48 +0000 |
|---|---|---|
| committer | Dave Love | 2000-06-05 14:25:48 +0000 |
| commit | b975254ebb7c4270d8fe5074b11ec2f938d5cf5d (patch) | |
| tree | 88eb4b23df7e9f2a84bcbde3608ce1d8f64f8e81 | |
| parent | eb545596f03ef4b62c89f7678412a9eec46fcbd1 (diff) | |
| download | emacs-b975254ebb7c4270d8fe5074b11ec2f938d5cf5d.tar.gz emacs-b975254ebb7c4270d8fe5074b11ec2f938d5cf5d.zip | |
(struct frame): Use volatile unconditionally.
| -rw-r--r-- | src/frame.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/frame.h b/src/frame.h index 41696bad872..729cbf9e577 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -300,16 +300,10 @@ struct frame | |||
| 300 | /* Asynchronous input handlers change these, and | 300 | /* Asynchronous input handlers change these, and |
| 301 | FRAME_SAMPLE_VISIBILITY copies them into visible and iconified. | 301 | FRAME_SAMPLE_VISIBILITY copies them into visible and iconified. |
| 302 | See FRAME_SAMPLE_VISIBILITY, below. */ | 302 | See FRAME_SAMPLE_VISIBILITY, below. */ |
| 303 | #ifdef __STDC__ | 303 | volatile char async_visible, async_iconified; |
| 304 | volatile | ||
| 305 | #endif | ||
| 306 | char async_visible, async_iconified; | ||
| 307 | 304 | ||
| 308 | /* Nonzero if this frame should be redrawn. */ | 305 | /* Nonzero if this frame should be redrawn. */ |
| 309 | #ifdef __STDC__ | 306 | volatile char garbaged; |
| 310 | volatile | ||
| 311 | #endif | ||
| 312 | char garbaged; | ||
| 313 | 307 | ||
| 314 | /* True if frame actually has a minibuffer window on it. | 308 | /* True if frame actually has a minibuffer window on it. |
| 315 | 0 if using a minibuffer window that isn't on this frame. */ | 309 | 0 if using a minibuffer window that isn't on this frame. */ |
| @@ -682,7 +676,7 @@ extern Lisp_Object Vterminal_frame; | |||
| 682 | extern Lisp_Object selected_frame; | 676 | extern Lisp_Object selected_frame; |
| 683 | 677 | ||
| 684 | /* Value is a pointer to the selected frame. If the selected frame | 678 | /* Value is a pointer to the selected frame. If the selected frame |
| 685 | isn't life, abort. */ | 679 | isn't live, abort. */ |
| 686 | 680 | ||
| 687 | #define SELECTED_FRAME() \ | 681 | #define SELECTED_FRAME() \ |
| 688 | ((FRAMEP (selected_frame) \ | 682 | ((FRAMEP (selected_frame) \ |