Skip to content

Commit d3fbc5d

Browse files
committed
Merge branch 'master' of git://github.com/b4winckler/macvim
Conflicts: src/MacVim/Info.plist
2 parents 495d02d + accd5ef commit d3fbc5d

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ src/MacVim/PSMTabBarControl/build
2424
src/MacVim/build
2525
src/TAGS
2626
src/Vim
27+
src/auto/config.cache
2728
src/auto/config.h
29+
src/auto/config.log
2830
src/auto/config.mk
31+
src/auto/config.status
2932
src/auto/if_perl.c
3033
src/auto/link.log
3134
src/auto/link.sed

runtime/doc/gui_mac.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*gui_mac.txt* For Vim version 7.3. Last change: 2012 Jan 13
1+
*gui_mac.txt* For Vim version 7.4a. Last change: 2012 Jan 13
22

33

44
VIM REFERENCE MANUAL by Bjorn Winckler
-12 Bytes
Binary file not shown.

src/MacVim/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@
12321232
</dict>
12331233
</array>
12341234
<key>CFBundleVersion</key>
1235-
<string>20130621</string>
1235+
<string>20130711</string>
12361236
<key>NSMainNibFile</key>
12371237
<string>MainMenu</string>
12381238
<key>NSPrincipalClass</key>

src/MacVim/MacVim.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@
736736
buildSettings = {
737737
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
738738
COPY_PHASE_STRIP = NO;
739-
CURRENT_PROJECT_VERSION = 66;
739+
CURRENT_PROJECT_VERSION = 67;
740740
FRAMEWORK_SEARCH_PATHS = (
741741
"$(inherited)",
742742
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
@@ -769,7 +769,7 @@
769769
buildSettings = {
770770
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
771771
COPY_PHASE_STRIP = YES;
772-
CURRENT_PROJECT_VERSION = 66;
772+
CURRENT_PROJECT_VERSION = 67;
773773
FRAMEWORK_SEARCH_PATHS = (
774774
"$(inherited)",
775775
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",

src/gui.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2506,9 +2506,12 @@ gui_outstr_nowrap(s, len, flags, fg, bg, back)
25062506
gui_mch_set_font(wide_font);
25072507
gui_mch_draw_string(gui.row, scol, s + start, thislen,
25082508
# ifdef FEAT_GUI_MACVIM
2509-
cells,
2509+
cells,
2510+
draw_flags | (prev_wide ? DRAW_WIDE : 0)
2511+
# else
2512+
draw_flag
25102513
# endif
2511-
draw_flags);
2514+
);
25122515
if (prev_wide)
25132516
gui_mch_set_font(font);
25142517
start += thislen;

0 commit comments

Comments
 (0)