about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorElias Norberg <xyzzy@kudzu.se>2012-01-30 12:28:50 +0100
committerElias Norberg <xyzzy@kudzu.se>2012-01-30 12:28:50 +0100
commit9f59d79fc0b4c0ea90f924c889423525ba46ee1b (patch)
tree0668055c49bee843df801d30f235a1f10831c814
parent5031d58d3f26b1a8edd4740d71b2aa32f81424f6 (diff)
downloadxombrero-9f59d79fc0b4c0ea90f924c889423525ba46ee1b.tar.gz
Fix problem with hinting introduced by e1e31b4e
-rw-r--r--xxxterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xxxterm.c b/xxxterm.c
index 974e270..fbc21b4 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -5220,7 +5220,7 @@ hint_continue(struct tab *t)
 			show_oops(t, "invalid numerical hint %s", &c[1]);
 			goto done;
 		}
-		s = g_strdup_printf("hints.updateHints(%d", i);
+		s = g_strdup_printf("hints.updateHints(%d);", i);
 		run_script(t, s);
 		g_free(s);
 	} else {
lp.cc?h=hlt&id=af1005e5e53f4ac9cf9c6f0301663b49173c7a6c'>af1005e5 ^
ac0e9db5 ^



ac0e9db5 ^


8952c52e ^
ac0e9db5 ^
af1005e5 ^



ac0e9db5 ^
b39ceb27 ^
d98e1a18 ^

b39ceb27 ^










1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99