diff options
author | Bram Moolenaar <bram@vim.org> | 2012-10-21 21:25:22 +0200 |
---|---|---|
committer | Bram Moolenaar <bram@vim.org> | 2012-10-21 21:25:22 +0200 |
commit | 7d58842361f39b422a742d7c898a7c19a99b4876 (patch) | |
tree | 8e759b8b24262311c94b46511403d3b951284a63 | |
parent | bfbfab847d5f410aa88a052c8f35edfac2a96a5c (diff) | |
download | vim-7d58842361f39b422a742d7c898a7c19a99b4876.tar.gz |
Problem: Can't build Motif version.
Solution: Fix wrongly named variable. (Ike Devolder)
-rw-r--r-- | src/syntax.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 81e9acd4..4adbaf08 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -8082,7 +8082,7 @@ hl_do_font(idx, arg, do_normal, do_menu, do_tooltip, free_font) || do_tooltip # endif ) - if (free_fontset) + if (free_font) gui_mch_free_fontset(HL_TABLE()[idx].sg_fontset); HL_TABLE()[idx].sg_fontset = fontset_name2handle(arg, 0 # ifdef FONTSET_ALWAYS diff --git a/src/version.c b/src/version.c index a0fc9d61..321dfdfd 100644 --- a/src/version.c +++ b/src/version.c @@ -726,6 +726,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 706, +/**/ 705, /**/ 704, |