aboutsummaryrefslogtreecommitdiffhomepage
path: root/set_color.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-05-27 00:55:51 +1000
committerGravatar axel <axel@liljencrantz.se>2006-05-27 00:55:51 +1000
commitb5b49e7a4d5e97884f17ee3ed000635be5c999ac (patch)
tree839daf950dc81ec0c1e5320319a2ffe80558d797 /set_color.c
parent28ea5ce732053334cb975395a216a2898d8622cc (diff)
Make sure that getopt flags are only written down once
darcs-hash:20060526145551-ac50b-5411809433e277cd0bdebc34907ee3312a8a0263.gz
Diffstat (limited to 'set_color.c')
-rw-r--r--set_color.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/set_color.c b/set_color.c
index 5228987e..f762c64d 100644
--- a/set_color.c
+++ b/set_color.c
@@ -49,6 +49,11 @@
*/
#define SET_COLOR "set_color"
+/**
+ Getopt short switches for set_color
+*/
+#define GETOPT_STRING "b:hvoc"
+
#if HAVE_GETTEXT
#define _(string) gettext(string)
#else
@@ -186,13 +191,13 @@ int main( int argc, char **argv )
int opt = getopt_long( argc,
argv,
- "b:hvoc",
+ GETOPT_STRING,
long_options,
&opt_index );
#else
int opt = getopt( argc,
argv,
- "b:hvoc" );
+ GETOPT_STRING );
#endif
if( opt == -1 )
break;