1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- lib/src/interact.c.orig 2007-11-12 17:38:54.708866419 +0000
+++ lib/src/interact.c 2007-11-12 17:40:04.540845917 +0000
@@ -2443,11 +2443,13 @@
#ifdef ENABLE_NLS
if (!strcmp(s, "-e") || !strncmp(s, "--english", 9)) {
*force_lang = ENGLISH;
+ continue;
} else if (!strcmp(s, "-q") || !strncmp(s, "--basque", 8)) {
*force_lang = BASQUE;
+ continue;
}
#endif
- else if (!strcmp(s, "-b") || !strncmp(s, "--batch", 7)) {
+ if (!strcmp(s, "-b") || !strncmp(s, "--batch", 7)) {
opt = OPT_BATCH;
} else if (!strcmp(s, "-h") || !strcmp(s, "--help")) {
opt = OPT_HELP;
|