summarylogtreecommitdiffstats
path: root/0000-string-vte3-052-string-char.patch
blob: 8170471f3659094e21c3e6e11bba35378fd2e659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;