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')
{
signature.asc
Description: Digital signature
_______________________________________________ Pkg-xfce-devel mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-xfce-devel

