diff src/device.h @ 380:8626e4521993 r21-2-5

Import from CVS: tag r21-2-5
author cvs
date Mon, 13 Aug 2007 11:07:10 +0200
parents c5d627a313b1
children bbff43aa5eb7
line wrap: on
line diff
--- a/src/device.h	Mon Aug 13 11:06:08 2007 +0200
+++ b/src/device.h	Mon Aug 13 11:07:10 2007 +0200
@@ -100,7 +100,7 @@
      frames on this device have the window-system focus), but
      selected_frame will never be nil if there are any frames on
      the device. */
-  Lisp_Object _selected_frame;
+  Lisp_Object selected_frame;
   /* Frame that currently contains the window-manager focus, or none.
      Note that we've split frame_with_focus into two variables.
      frame_with_focus_real is the value we use most of the time,
@@ -308,7 +308,7 @@
 #define DEVICE_NAME(d) ((d)->name)
 #define DEVICE_CLASS(d) ((d)->device_class)
 /* Catch people attempting to set this. */
-#define DEVICE_SELECTED_FRAME(d) NON_LVALUE ((d)->_selected_frame)
+#define DEVICE_SELECTED_FRAME(d) NON_LVALUE ((d)->selected_frame)
 #define DEVICE_FRAME_WITH_FOCUS_REAL(d) ((d)->frame_with_focus_real)
 #define DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS(d) ((d)->frame_with_focus_for_hooks)
 #define DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS(d)			\
@@ -331,11 +331,11 @@
 #define INVALIDATE_DEVICE_PIXEL_TO_GLYPH_CACHE(d)			\
   ((void) ((d)->pixel_to_glyph_cache.valid = 0))
 
-#define INVALIDATE_PIXEL_TO_GLYPH_CACHE do {				\
-  Lisp_Object _devcons_, _concons_;					\
-  DEVICE_LOOP_NO_BREAK (_devcons_, _concons_)				\
-    INVALIDATE_DEVICE_PIXEL_TO_GLYPH_CACHE (XDEVICE (XCAR (_devcons_)));\
-  } while (0)
+#define INVALIDATE_PIXEL_TO_GLYPH_CACHE do {					\
+  Lisp_Object IPTGC_devcons, IPTGC_concons;					\
+  DEVICE_LOOP_NO_BREAK (IPTGC_devcons, IPTGC_concons)				\
+    INVALIDATE_DEVICE_PIXEL_TO_GLYPH_CACHE (XDEVICE (XCAR (IPTGC_devcons)));	\
+} while (0)
 
 #define MARK_DEVICE_FACES_CHANGED(d)			\
   ((void) (faces_changed = (d)->faces_changed = 1))