]> granicus.if.org Git - flex/commitdiff
Remove an unneeded gettext() in --version output
authorExplorer09 <explorer09@gmail.com>
Tue, 18 Jul 2017 14:39:00 +0000 (22:39 +0800)
committerWill Estes <westes575@gmail.com>
Thu, 24 Aug 2017 12:34:23 +0000 (08:34 -0400)
"%s %s\n" is not translatable

src/main.c

index 963d2d85054e38f5caec4882213ba1ae9e5d949f..a55871e327f4516e0c8806cc1012504a9059363b 100644 (file)
@@ -1208,7 +1208,7 @@ void flexinit (int argc, char **argv)
                        break;
 
                case OPT_VERSION:
-                       printf (_("%s %s\n"), (C_plus_plus ? "flex++" : "flex"), flex_version);
+                       printf ("%s %s\n", (C_plus_plus ? "flex++" : "flex"), flex_version);
                        FLEX_EXIT (0);
 
                case OPT_WARN: