diff options
author | Elias Norberg <xyzzy@kudzu.se> | 2012-01-30 12:28:50 +0100 |
---|---|---|
committer | Elias Norberg <xyzzy@kudzu.se> | 2012-01-30 12:28:50 +0100 |
commit | 9f59d79fc0b4c0ea90f924c889423525ba46ee1b (patch) | |
tree | 0668055c49bee843df801d30f235a1f10831c814 | |
parent | 5031d58d3f26b1a8edd4740d71b2aa32f81424f6 (diff) | |
download | xombrero-9f59d79fc0b4c0ea90f924c889423525ba46ee1b.tar.gz |
Fix problem with hinting introduced by e1e31b4e
-rw-r--r-- | xxxterm.c | 2 |
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 { |