diff options
author | Carsten Haitzler <raster@rasterman.com> | 2012-08-06 00:06:13 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2012-08-06 00:06:13 +0000 |
commit | fc2796ba7980447e364fe88b4bd58bde3113e555 (patch) | |
tree | 08a673256ad4ad8416c7b403588453c64c13a3a2 /src | |
parent | 00e10bda2a26e29d13f33986062e69b7f7b91a06 (diff) |
dont clash short options (short optiosn should allow multiple chars...
grrrr. not very useful once u have lots of options)
SVN revision: 74890
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/main.c b/src/bin/main.c index e7c59bf..f77a437 100644 --- a/src/bin/main.c +++ b/src/bin/main.c | |||
@@ -211,7 +211,7 @@ static const Ecore_Getopt options = { | |||
211 | ECORE_GETOPT_STORE_STR ('e', "exec", | 211 | ECORE_GETOPT_STORE_STR ('e', "exec", |
212 | "command to execute. " | 212 | "command to execute. " |
213 | "Defaults to $SHELL (or passwd shel or /bin/sh)"), | 213 | "Defaults to $SHELL (or passwd shel or /bin/sh)"), |
214 | ECORE_GETOPT_STORE_STR ('C', "current-directory", | 214 | ECORE_GETOPT_STORE_STR ('d', "current-directory", |
215 | "Change to directory for execution of terminal command."), | 215 | "Change to directory for execution of terminal command."), |
216 | ECORE_GETOPT_STORE_STR ('t', "theme", | 216 | ECORE_GETOPT_STORE_STR ('t', "theme", |
217 | "Use the named edje theme or path to theme file."), | 217 | "Use the named edje theme or path to theme file."), |
@@ -236,7 +236,7 @@ static const Ecore_Getopt options = { | |||
236 | "Set mute mode for video playback."), | 236 | "Set mute mode for video playback."), |
237 | ECORE_GETOPT_STORE_BOOL('c', "cursor-blink", | 237 | ECORE_GETOPT_STORE_BOOL('c', "cursor-blink", |
238 | "Set cursor blink mode."), | 238 | "Set cursor blink mode."), |
239 | ECORE_GETOPT_STORE_BOOL('V', "visual-bell", | 239 | ECORE_GETOPT_STORE_BOOL('G', "visual-bell", |
240 | "Set visual bell mode."), | 240 | "Set visual bell mode."), |
241 | ECORE_GETOPT_STORE_TRUE('F', "fullscreen", | 241 | ECORE_GETOPT_STORE_TRUE('F', "fullscreen", |
242 | "Go into the fullscreen mode from start."), | 242 | "Go into the fullscreen mode from start."), |