changeset 29439:b5e905b3b506

(struct frame): Use volatile unconditionally.
author Dave Love <fx@gnu.org>
date Mon, 05 Jun 2000 14:25:48 +0000
parents 8c825a8566f5
children fdd8b9d0613c
files src/frame.h
diffstat 1 files changed, 3 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/src/frame.h	Mon Jun 05 14:22:54 2000 +0000
+++ b/src/frame.h	Mon Jun 05 14:25:48 2000 +0000
@@ -300,16 +300,10 @@
   /* Asynchronous input handlers change these, and
      FRAME_SAMPLE_VISIBILITY copies them into visible and iconified.
      See FRAME_SAMPLE_VISIBILITY, below.  */
-#ifdef __STDC__
-  volatile
-#endif
-  char async_visible, async_iconified;
+  volatile char async_visible, async_iconified;
 
   /* Nonzero if this frame should be redrawn.  */
-#ifdef __STDC__
-  volatile
-#endif
-  char garbaged;
+  volatile char garbaged;
 
   /* True if frame actually has a minibuffer window on it.
      0 if using a minibuffer window that isn't on this frame.  */
@@ -682,7 +676,7 @@
 extern Lisp_Object selected_frame;
 
 /* Value is a pointer to the selected frame.  If the selected frame
-   isn't life, abort.  */
+   isn't live, abort.  */
 
 #define SELECTED_FRAME()				\
      ((FRAMEP (selected_frame)				\