emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/gtkutil.c,v [EMACS_22_BASE]


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/src/gtkutil.c,v [EMACS_22_BASE]
Date: Fri, 14 Sep 2007 07:36:15 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Branch:         EMACS_22_BASE
Changes by:     Glenn Morris <gm>       07/09/14 07:36:14

Index: gtkutil.c
===================================================================
RCS file: /sources/emacs/emacs/src/gtkutil.c,v
retrieving revision 1.106.2.8
retrieving revision 1.106.2.9
diff -u -b -r1.106.2.8 -r1.106.2.9
--- gtkutil.c   14 Sep 2007 06:20:00 -0000      1.106.2.8
+++ gtkutil.c   14 Sep 2007 07:36:14 -0000      1.106.2.9
@@ -1890,15 +1890,7 @@
 /* Return non-zero if LABEL specifies a separator (GTK only has one
    separator type)  */
 
-static int
-xg_separator_p (char *label)
-{
-  if (! label) return 0;
-  else if (strlen (label) > 3
-          && strncmp (label, "--", 2) == 0
-          && label[2] != '-')
-    {
-      static char* separator_names[] = {
+static char* separator_names[] = {
         "space",
        "no-line",
        "single-line",
@@ -1914,8 +1906,16 @@
        "shadow-double-etched-in-dash",
        "shadow-double-etched-out-dash",
         0,
-      };
+};
 
+static int
+xg_separator_p (char *label)
+{
+  if (! label) return 0;
+  else if (strlen (label) > 3
+          && strncmp (label, "--", 2) == 0
+          && label[2] != '-')
+    {
       int i;
 
       label += 2;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]