From fc2796ba7980447e364fe88b4bd58bde3113e555 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 6 Aug 2012 00:06:13 +0000 Subject: [PATCH] dont clash short options (short optiosn should allow multiple chars... grrrr. not very useful once u have lots of options) SVN revision: 74890 --- src/bin/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index e7c59bf4..f77a4378 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -211,7 +211,7 @@ static const Ecore_Getopt options = { ECORE_GETOPT_STORE_STR ('e', "exec", "command to execute. " "Defaults to $SHELL (or passwd shel or /bin/sh)"), - ECORE_GETOPT_STORE_STR ('C', "current-directory", + ECORE_GETOPT_STORE_STR ('d', "current-directory", "Change to directory for execution of terminal command."), ECORE_GETOPT_STORE_STR ('t', "theme", "Use the named edje theme or path to theme file."), @@ -236,7 +236,7 @@ static const Ecore_Getopt options = { "Set mute mode for video playback."), ECORE_GETOPT_STORE_BOOL('c', "cursor-blink", "Set cursor blink mode."), - ECORE_GETOPT_STORE_BOOL('V', "visual-bell", + ECORE_GETOPT_STORE_BOOL('G', "visual-bell", "Set visual bell mode."), ECORE_GETOPT_STORE_TRUE('F', "fullscreen", "Go into the fullscreen mode from start."),