[gnome-terminal] client: legacy: Fix --version output



commit 2536010af7a0409cfaaaa8823c4353deacd7d96b
Author: Christian Persch <chpe src gnome org>
Date:   Fri Dec 29 21:14:30 2017 +0100

    client: legacy: Fix --version output
    
    https://bugzilla.gnome.org/show_bug.cgi?id=791967

 src/terminal-options.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)
---
diff --git a/src/terminal-options.c b/src/terminal-options.c
index c5dcc5b..8759ec0 100644
--- a/src/terminal-options.c
+++ b/src/terminal-options.c
@@ -317,13 +317,12 @@ option_version_cb (const gchar *option_name,
                    gpointer     data,
                    GError     **error)
 {
-  terminal_print ("%s %s ", _("GNOME Terminal"), VERSION);
-  terminal_print (_("Using VTE version %u.%u.%u"),
+  terminal_print ("GNOME Terminal %s using VTE %u.%u.%u %s\n",
+                  VERSION,
                   vte_get_major_version (),
                   vte_get_minor_version (),
-                  vte_get_micro_version ());
-  terminal_print (" %s\n", vte_get_features ());
-
+                  vte_get_micro_version (),
+                  vte_get_features ());
   exit (EXIT_SUCCESS);
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]