]> git.pld-linux.org Git - packages/gnome-terminal.git/commitdiff
- outdated
authorgrzegol <grzegol@pld-linux.org>
Tue, 23 Mar 2004 11:35:09 +0000 (11:35 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    gnome-terminal-geometry.patch -> 1.2

gnome-terminal-geometry.patch [deleted file]

diff --git a/gnome-terminal-geometry.patch b/gnome-terminal-geometry.patch
deleted file mode 100644 (file)
index ecc11d9..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
---- gnome-terminal-2.2.0/src/terminal.c.geometry       2003-01-19 23:51:51.000000000 +0100
-+++ gnome-terminal-2.2.0/src/terminal.c        2003-01-21 18:02:51.000000000 +0100
-@@ -1379,8 +1379,19 @@
-   argc_copy = argc;
-   /* we leave empty slots, for --startup-id and --display */
-   argv_copy = g_new0 (char *, argc_copy + 5);
--  for (i = 0; i < argc_copy; i++)
-+  for (i = 0; i < argc_copy; i++) {
-+    /* add support for -geometry and -T from xterm */
-+    /* we are leaking the two options but it is not really a problem */
-+    if (!strcmp (argv [i], "-geometry")) 
-+      {
-+      argv[i] = "--geometry";
-+      }
-+    if (!strcmp (argv [i], "-T")) 
-+      {
-+      argv[i] = "-t";
-+      }
-     argv_copy [i] = g_strdup (argv [i]);
-+  }
-   argv_copy [i] = NULL;
-   results = option_parsing_results_init (&argc, argv);
This page took 0.096851 seconds and 4 git commands to generate.