Mercurial > emacs
changeset 84560:c390b9af2601
(xg_separator_p) <separator_names>: Move to file scope.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 14 Sep 2007 07:36:26 +0000 |
parents | acac15277b75 |
children | 589ba73a64a6 |
files | src/gtkutil.c |
diffstat | 1 files changed, 18 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkutil.c Fri Sep 14 07:33:27 2007 +0000 +++ b/src/gtkutil.c Fri Sep 14 07:36:26 2007 +0000 @@ -1890,6 +1890,24 @@ /* Return non-zero if LABEL specifies a separator (GTK only has one separator type) */ +static char* separator_names[] = { + "space", + "no-line", + "single-line", + "double-line", + "single-dashed-line", + "double-dashed-line", + "shadow-etched-in", + "shadow-etched-out", + "shadow-etched-in-dash", + "shadow-etched-out-dash", + "shadow-double-etched-in", + "shadow-double-etched-out", + "shadow-double-etched-in-dash", + "shadow-double-etched-out-dash", + 0, +}; + static int xg_separator_p (char *label) { @@ -1898,24 +1916,6 @@ && strncmp (label, "--", 2) == 0 && label[2] != '-') { - static char* separator_names[] = { - "space", - "no-line", - "single-line", - "double-line", - "single-dashed-line", - "double-dashed-line", - "shadow-etched-in", - "shadow-etched-out", - "shadow-etched-in-dash", - "shadow-etched-out-dash", - "shadow-double-etched-in", - "shadow-double-etched-out", - "shadow-double-etched-in-dash", - "shadow-double-etched-out-dash", - 0, - }; - int i; label += 2;