Skip to content

Commit bc07309

Browse files
committed
patch 7.4.1240
Problem: Visual studio tools are noisy. Solution: Suppress startup info. (Mike Williams)
1 parent df5b27b commit bc07309

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/GvimExt/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ gvimext.obj: gvimext.h
5252
$(cc) $(cflags) -DFEAT_GETTEXT $(cvarsmt) $*.cpp
5353

5454
gvimext.res: gvimext.rc
55-
$(rc) $(rcflags) $(rcvars) gvimext.rc
55+
$(rc) /nologo $(rcflags) $(rcvars) gvimext.rc
5656

5757
clean:
5858
- if exist gvimext.dll del gvimext.dll

src/Make_mvc.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c
12941294
$(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \
12951295
tearoff.bmp vim.ico vim_error.ico \
12961296
vim_alert.ico vim_info.ico vim_quest.ico
1297-
$(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
1297+
$(RC) /nologo /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
12981298

12991299
iid_ole.c if_ole.h vim.tlb: if_ole.idl
13001300
midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \

src/tee/Make_mvc.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A very (if not the most) simplistic Makefile for MSVC
22

33
CC=cl
4-
CFLAGS=/O2
4+
CFLAGS=/O2 /nologo
55

66
tee.exe: tee.obj
77
$(CC) $(CFLAGS) /Fo$@ $**

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,8 @@ static char *(features[]) =
742742

743743
static int included_patches[] =
744744
{ /* Add new patch number below this line */
745+
/**/
746+
1240,
745747
/**/
746748
1239,
747749
/**/

0 commit comments

Comments
 (0)