Skip to content

Commit c33f31b

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents fa4b303 + f9c8bd2 commit c33f31b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+833
-199
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
src/vim
44
src/xxd/xxd
55
src/auto/if_perl.c
6+
src/auto/gui_gtk_gresources.c
7+
src/auto/gui_gtk_gresources.h
68
src/tags
79

810
# We do need src/auto/configure.

Filelist

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ SRC_ALL = \
8585
src/main.aap \
8686
src/testdir/main.aap \
8787
src/testdir/README.txt \
88+
src/testdir/Make_all.mak \
8889
src/testdir/*.in \
8990
src/testdir/sautest/autoload/*.vim \
9091
src/testdir/runtest.vim \
@@ -169,6 +170,7 @@ SRC_UNIX = \
169170
README_src.txt \
170171
configure \
171172
pixmaps/*.xpm \
173+
pixmaps/*.png \
172174
pixmaps/gen-inline-pixbufs.sh \
173175
pixmaps/stock_icons.h \
174176
src/INSTALL \
@@ -189,6 +191,7 @@ SRC_UNIX = \
189191
src/gui_gtk_f.c \
190192
src/gui_gtk_f.h \
191193
src/gui_gtk_x11.c \
194+
src/gui_gtk_gresources.xml \
192195
src/gui_motif.c \
193196
src/gui_xmdlg.c \
194197
src/gui_xmebw.c \
@@ -214,6 +217,7 @@ SRC_UNIX = \
214217
src/proto/gui_athena.pro \
215218
src/proto/gui_gtk.pro \
216219
src/proto/gui_gtk_x11.pro \
220+
src/proto/gui_gtk_gresources.pro \
217221
src/proto/gui_motif.pro \
218222
src/proto/gui_xmdlg.pro \
219223
src/proto/gui_x11.pro \

Makefile

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,18 +143,31 @@ MINOR = 4
143143
# For Windows 98/ME the 2003 version is required, but then the executable
144144
# won't work on Windows 7 and 64 bit systems.
145145
# - "nmake -f Make_mvc.mak" (use the same path as for vcvars32.bat)
146-
# - "rm testdir/*.out", "nmake -f Make_mvc.mak test" and check the output.
146+
# - Run the tests:
147+
# > rm testdir/*.out
148+
# > nmake -f Make_mvc.mak test
149+
# - check the output.
147150
# - Rename vim.exe to vimw32.exe, xxd/xxd.exe to xxdw32.exe.
148151
# - Rename vim.pdb to vimw32.pdb.
149152
# - Rename install.exe to installw32.exe and uninstal.exe to uninstalw32.exe.
150153
# Win32 GUI version:
151154
# - "nmake -f Make_mvc.mak GUI=yes"
155+
# - Run the tests:
156+
# > cd testdir
157+
# > rm *.out
158+
# > nmake -f Make_dos.mak VIMPROG=..\gvim
159+
# - check the output.
152160
# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
153161
# - Move gvim.pdb to here.
154162
# - Delete vimrun.exe, install.exe and uninstal.exe.
155163
# - Copy "GvimExt/gvimext.dll" to here.
156164
# Win32 GUI version with OLE, PERL, TCL, PYTHON and dynamic IME:
157165
# - Run src/bigvim.bat ("nmake -f Make_mvc.mak GUI=yes OLE=yes IME=yes ...)
166+
# - Run the tests:
167+
# > cd testdir
168+
# > rm *.out
169+
# > nmake -f Make_dos.mak VIMPROG=..\gvim
170+
# - check the output.
158171
# - Rename "gvim.exe" to "gvim_ole.exe".
159172
# - Rename gvim.pdb to "gvim_ole.pdb".
160173
# - Delete install.exe and uninstal.exe.

appveyor.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ skip_tags: true
44

55
before_build:
66
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
7+
# Work around for Python 2.7.11's bug
8+
- reg copy HKLM\SOFTWARE\Python\PythonCore\2.7 HKLM\SOFTWARE\Python\PythonCore\2.7-32 /s /reg:32
9+
- reg copy HKLM\SOFTWARE\Python\PythonCore\2.7 HKLM\SOFTWARE\Python\PythonCore\2.7-32 /s /reg:64
710

811
build_script:
912
- cd src

pixmaps/stock_vim_build_tags.png

439 Bytes
Loading

pixmaps/stock_vim_find_help.png

1.68 KB
Loading

pixmaps/stock_vim_save_all.png

1021 Bytes
Loading

pixmaps/stock_vim_session_load.png

1.27 KB
Loading

pixmaps/stock_vim_session_new.png

1.01 KB
Loading

pixmaps/stock_vim_session_save.png

1.25 KB
Loading

0 commit comments

Comments
 (0)