Hi,

It seems very similar to Bug #488974. Here is a proposed patch that let
xfce4-terminal behave like gnome-terminal, which might fix your issue.
Could you try to apply it and retest? Thanks!

Regards,
Lionel
--- xfce4-terminal.wrapper.old	2009-11-29 14:45:16.000000000 +0100
+++ xfce4-terminal.wrapper	2009-11-29 15:09:58.477965834 +0100
@@ -47,7 +47,17 @@ while ($opt = shift(@ARGV))
     }
     elsif ($opt eq '-e')
     {
-	push(@args, '-x', @ARGV);
+	$arg = shift(@ARGV);
+    if (@ARGV)
+    {
+        push(@args, '-x', $arg, @ARGV);
+        last;
+    }
+    else
+    {
+        push(@args, '-e', $arg);
+    }
+    last;
     }
     elsif ($opt eq '-h' || $opt eq '--help')
     {

Attachment: signature.asc
Description: Digital signature

Reply via email to