summarylogtreecommitdiffstats
path: root/0000-string-vte3-052-string-char.patch
diff options
context:
space:
mode:
Diffstat (limited to '0000-string-vte3-052-string-char.patch')
-rw-r--r--0000-string-vte3-052-string-char.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/0000-string-vte3-052-string-char.patch b/0000-string-vte3-052-string-char.patch
new file mode 100644
index 000000000000..8170471f3659
--- /dev/null
+++ b/0000-string-vte3-052-string-char.patch
@@ -0,0 +1,17 @@
+--- src/Utility/Gtk/TerminalWindow.vala.orig 2018-04-01 03:46:21.000000000 -0400
++++ src/Utility/Gtk/TerminalWindow.vala 2018-04-01 13:50:13.627096219 -0400
+@@ -164,11 +164,14 @@ public class TerminalWindow : Gtk.Window
+ log_error (e.message);
+ }
+ }
+
+ public void execute_command(string command){
++/*
+ term.feed_child("%s\n".printf(command), -1);
++*/
++ term.feed_child("%s\n".printf(command).to_utf8());
+ }
+
+ public void execute_script(string script_path, bool wait = false){
+ string[] argv = new string[1];
+ argv[0] = script_path;