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 | a9a2d8f4d0d8bfd10fdcf468e6614e196d39ffd0 (patch) | |
tree | c12d7937d5a2bad540d33d9cc90352723eb1c66d /src/syntax.c | |
parent | 707cfb82dce17018da95ef0dc5466082258260f5 (diff) | |
download | vim-git-a9a2d8f4d0d8bfd10fdcf468e6614e196d39ffd0.tar.gz |
updated for version 7.3.706v7.3.706
Problem: Can't build Motif version.
Solution: Fix wrongly named variable. (Ike Devolder)
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 81e9acd4d..4adbaf087 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 |