Lines 9-15
Link Here
|
9 |
this.type="ssh"; |
9 |
this.type="ssh"; |
10 |
else |
10 |
else |
11 |
this.type="unknown"; |
11 |
this.type="unknown"; |
12 |
@@ -248,26 +248,26 @@ public class VTToggleButton : Gtk.Button |
12 |
@@ -248,26 +248,26 @@ public class VTToggleButton : Gtk.Button{ |
13 |
debug(" RegexEvalCallback %s %s %d",result.str,match_info.fetch(0),match_info.get_match_count()); |
13 |
debug(" RegexEvalCallback %s %s %d",result.str,match_info.fetch(0),match_info.get_match_count()); |
14 |
GLib.Regex grx; |
14 |
GLib.Regex grx; |
15 |
|
15 |
|
Lines 49-54
Link Here
|
49 |
unowned string val=GLib.Environment.get_variable(arg); |
49 |
unowned string val=GLib.Environment.get_variable(arg); |
50 |
string s="%s=%s".printf(arg,(val!=null?val:"")); |
50 |
string s="%s=%s".printf(arg,(val!=null?val:"")); |
51 |
envv+=s; |
51 |
envv+=s; |
|
|
52 |
@@ -1020,13 +1020,13 @@ public class VTTerminal : AYTab{ |
53 |
#if ! VTE_2_91 |
54 |
this.vte_term.set_encoding (s); |
55 |
#else |
56 |
- this.vte_term.encoding=s; |
57 |
+ this.vte_term.set_encoding (s); |
58 |
#endif |
59 |
}else |
60 |
#if ! VTE_2_91 |
61 |
this.vte_term.set_encoding (null);//reset to default |
62 |
#else |
63 |
- this.vte_term.encoding=null; |
64 |
+ this.vte_term.set_encoding (null);//reset to default |
65 |
#endif |
66 |
} |
67 |
|
52 |
@@ -1056,7 +1056,7 @@ public class VTTerminal : AYTab{ |
68 |
@@ -1056,7 +1056,7 @@ public class VTTerminal : AYTab{ |
53 |
this.match_tags.steal_all(); |
69 |
this.match_tags.steal_all(); |
54 |
debug("url_regexps=%d",url_regexps.length); |
70 |
debug("url_regexps=%d",url_regexps.length); |