]> git.eshelyaron.com Git - emacs.git/commitdiff
(setup_frame_gcs): Move cursor_bits variable out of
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 May 1994 18:32:59 +0000 (18:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 May 1994 18:32:59 +0000 (18:32 +0000)
setup_frame_gcs and rename to setup_frame_cursor_bits.

src/widget.c

index df146b681cb109dbd84d5d85ef5df86b2bd5ed00..bc3845c1dd562bea77dca0a0e3ad758ad6fa9b81 100644 (file)
@@ -532,6 +532,14 @@ create_frame_gcs (ew)
     XCreateGC (XtDisplay (ew), RootWindowOfScreen (XtScreen (ew)), 0, 0);
 }
 
+static char setup_frame_cursor_bits[] =
+{
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
 static void
 setup_frame_gcs (ew)
      EmacsFrame ew;
@@ -540,14 +548,6 @@ setup_frame_gcs (ew)
   struct frame* s = ew->emacs_frame.frame;
   Pixmap blank_stipple, blank_tile;
 
-  static char cursor_bits[] =
-    {
-      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-    };
-
   /* We have to initialize all of our GCs to have a stipple/tile, otherwise
      XGetGCValues returns uninitialized data when we query the stipple
      (instead of None or something sensible) and it makes things hard.
@@ -559,7 +559,7 @@ setup_frame_gcs (ew)
 
   blank_stipple = 
     XCreateBitmapFromData (XtDisplay (ew), RootWindowOfScreen (XtScreen (ew)),
-                          cursor_bits, 2, 2);
+                          setup_frame_cursor_bits, 2, 2);
 
   /* use fg = 0, bg = 1 below, but it's irrelevant since this pixmap should
      never actually get used as a background tile!
@@ -567,7 +567,8 @@ setup_frame_gcs (ew)
   blank_tile =
     XCreatePixmapFromBitmapData (XtDisplay(ew),
                                 RootWindowOfScreen (XtScreen (ew)),
-                                cursor_bits, 2, 2, 0, 1, ew->core.depth);
+                                setup_frame_cursor_bits, 2, 2, 0, 1,
+                                ew->core.depth);
 
   /* Normal video */
   gc_values.font = ew->emacs_frame.font->fid;
@@ -602,7 +603,7 @@ setup_frame_gcs (ew)
   gc_values.stipple =
     XCreateBitmapFromData (XtDisplay (ew),
                           RootWindowOfScreen (XtScreen (ew)),
-                          cursor_bits, 16, 16);
+                          setup_frame_cursor_bits, 16, 16);
   XChangeGC (XtDisplay (ew), s->display.x->cursor_gc,
             (GCFont | GCForeground | GCBackground | GCGraphicsExposures
              | GCStipple | GCTile),