diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-05-19 21:00:46 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-05-19 21:00:46 +0000 |
commit | 051b782fa0ed834d7b4f80e5f1540d4d96e5f9d7 (patch) | |
tree | eadaef546274775aaa08c66865db80b33e98abdb /src/gui_mac.c | |
parent | 9c13b359b496c5268702776105a9f87b269e84f3 (diff) | |
download | vim-git-051b782fa0ed834d7b4f80e5f1540d4d96e5f9d7.tar.gz |
updated for version 7.0073
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index e9a44b35d..fbf9b30b7 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -1644,7 +1644,7 @@ GetFontPanelSelection(char_u* outName) /* Only encode font size, because style (bold, italic, etc) is * already part of the font full name */ - snprintf(styleString, FONT_STYLE_BUFFER_SIZE, ":h%d", + vim_snprintf(styleString, FONT_STYLE_BUFFER_SIZE, ":h%d", gFontPanelInfo.size/*, ((gFontPanelInfo.style & bold)!=0 ? ":b" : ""), ((gFontPanelInfo.style & italic)!=0 ? ":i" : ""), |