patch 9.1.0527: inconsistent parameter in Makefiles for Vim executable

Commit: 
https://github.com/vim/vim/commit/cd33faf6147d3209b7811c1ecb68519375b9e982
Author: RestorerZ <resto...@mail2k.ru>
Date:   Thu Jul 4 17:47:16 2024 +0200

    patch 9.1.0527: inconsistent parameter in Makefiles for Vim executable
    
    Problem:  inconsistent parameter in Makefiles for Vim executable
    Solution: consistently use $VIMPROG across all Makefiles
              (RestorerZ)
    
    closes: #15099
    
    Signed-off-by: RestorerZ <resto...@mail2k.ru>
    Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/Makefile b/Makefile
index f4db80fb8..ad0737636 100644
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ VIM_FOR_INDENTTEST = ../../src/vim
 indenttest:
        cd runtime/indent && \
                $(MAKE) clean && \
-               $(MAKE) test VIM="$(VIM_FOR_INDENTTEST)"
+               $(MAKE) test VIMPROG="$(VIM_FOR_INDENTTEST)"
 
 # Executable used for running the syntax tests.
 VIM_FOR_SYNTAXTEST = ../../src/vim
@@ -249,9 +249,6 @@ VERSION = $(MAJOR)$(MINOR)
 VDOT   = $(MAJOR).$(MINOR)
 VIMRTDIR = vim$(VERSION)
 
-# Vim used for conversion from "unix" to "dos"
-VIM    = vim
-
 # How to include Filelist depends on the version of "make" you have.
 # If the current choice doesn't work, try the other one.
 
diff --git a/runtime/doc/Make_mvc.mak b/runtime/doc/Make_mvc.mak
index f2fbc52ed..c387ef8c4 100644
--- a/runtime/doc/Make_mvc.mak
+++ b/runtime/doc/Make_mvc.mak
@@ -12,7 +12,7 @@
 
 # Correct the following line for the where executeable file vim is installed.
 # Please do not put the path in quotes.
-VIMEXE = D:\Programs\Vim im90 im.exe
+VIMPROG = D:\Programs\Vim im90 im.exe
 
 # Correct the following line for the directory where iconv installed.
 # Please do not put the path in quotes.
@@ -63,7 +63,7 @@ doctags : doctags.c
 # Use Vim to generate the tags file.  Can only be used when Vim has been
 # compiled and installed.  Supports multiple languages.
 vimtags : $(DOCS)
-       @"$(VIMEXE)" --clean -esX -V1 -u doctags.vim
+       @"$(VIMPROG)" --clean -esX -V1 -u doctags.vim
 
 
 uganda.nsis.txt : uganda.???
@@ -105,7 +105,7 @@ perlhtml : tags $(DOCS)
 
 # Check URLs in the help with "curl" or "powershell".
 test_urls :
-       "$(VIMEXE)" --clean -S test_urls.vim
+       "$(VIMPROG)" --clean -S test_urls.vim
 
 clean :
        $(RM) doctags.exe doctags.obj
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile
index 30a4f08bd..5f0786db8 100644
--- a/runtime/doc/Makefile
+++ b/runtime/doc/Makefile
@@ -7,7 +7,7 @@
 AWK = awk
 
 # Set to $(VIMTARGET) when executed from src/Makefile.
-VIMEXE = vim
+VIMPROG = vim
 
 # include the config.mk from the source directory.  It's only needed to set
 # AWK, used for "make html".  Comment this out if the include gives problems.
@@ -25,7 +25,7 @@ all: tags vim.man evim.man vimdiff.man vimtutor.man xxd.man 
$(CONVERTED)
 # Use Vim to generate the tags file.  Can only be used when Vim has been
 # compiled and installed.  Supports multiple languages.
 vimtags: $(DOCS)
-       @$(VIMEXE) --clean -esX -V1 -u doctags.vim
+       @$(VIMPROG) --clean -esX -V1 -u doctags.vim
 
 # Use "doctags" to generate the tags file.  Only works for English!
 tags: doctags $(DOCS)
@@ -57,7 +57,7 @@ uganda.nsis.txt : uganda.???
             $${dpn} | uniq > $${trg%txt}$${dpn##*.}; \
        done
 # This files needs to be in dos fileformat for NSIS.
-       $(VIMEXE) -e -X -u NONE --cmd "set notitle noicon nocp noml viminfo=" \
+       $(VIMPROG) -e -X -u NONE --cmd "set notitle noicon nocp noml viminfo=" \
          -c "argdo write ++ff=dos" -c "qa" uganda.nsis.???
 
 # Awk version of .txt to .html conversion.
@@ -91,7 +91,7 @@ perlhtml: tags $(DOCS)
 
 # Check URLs in the help with "curl".
 test_urls:
-       $(VIMEXE) --clean -S test_urls.vim
+       $(VIMPROG) --clean -S test_urls.vim
 
 clean:
        -rm -f doctags *.html tags.ref
diff --git a/runtime/indent/Make_mvc.mak b/runtime/indent/Make_mvc.mak
index 0f73d7fa7..a50494d8c 100644
--- a/runtime/indent/Make_mvc.mak
+++ b/runtime/indent/Make_mvc.mak
@@ -4,7 +4,7 @@
 
 .SUFFIXES:
 
-VIM = vim.exe
+VIMPROG = vim.exe
 VIMRUNTIME = ..
 
 # Run the tests that didn't run yet or failed previously.
@@ -12,7 +12,7 @@ VIMRUNTIME = ..
 # If a test fails a testdir\*.fail file will be written.
 test :
        @ set "VIMRUNTIME=$(VIMRUNTIME)"
-       $(VIM) --clean --not-a-term -u testdir
untest.vim
+       $(VIMPROG) --clean --not-a-term -u testdir
untest.vim
 
 
 clean testclean :
diff --git a/runtime/indent/Makefile b/runtime/indent/Makefile
index 66ded8092..36a3f156e 100644
--- a/runtime/indent/Makefile
+++ b/runtime/indent/Makefile
@@ -3,14 +3,14 @@
 .SUFFIXES:
 .PHONY: test clean testclean
 
-VIM = vim
+VIMPROG = vim
 VIMRUNTIME = ..
 
 # Run the tests that didn't run yet or failed previously.
 # If a test succeeds a testdir/*.out file will be written.
 # If a test fails a testdir/*.fail file will be written.
 test:
-       VIMRUNTIME=$(VIMRUNTIME) $(VIM) --clean --not-a-term -u 
testdir/runtest.vim
+       VIMRUNTIME=$(VIMRUNTIME) $(VIMPROG) --clean --not-a-term -u 
testdir/runtest.vim
 
 
 clean testclean:
diff --git a/runtime/syntax/generator/Makefile 
b/runtime/syntax/generator/Makefile
index 3cf4b953d..a7ccba388 100644
--- a/runtime/syntax/generator/Makefile
+++ b/runtime/syntax/generator/Makefile
@@ -1,5 +1,5 @@
 VIM_SRCDIR = ../../../src
-RUN_VIM = $(VIM_SRCDIR)/vim -N -u NONE -i NONE -n
+RUN_VIMPROG = $(VIM_SRCDIR)/vim -N -u NONE -i NONE -n
 REVISION ?= $(shell date +%Y-%m-%dT%H:%M:%S%:z)
 
 SRC =  $(VIM_SRCDIR)/eval.c $(VIM_SRCDIR)/ex_cmds.h $(VIM_SRCDIR)/ex_docmd.c \
@@ -15,13 +15,13 @@ generate: vim.vim
 vim.vim: vim.vim.rc update_date.vim
        @echo "Generating vim.vim ..."
        @cp -f vim.vim.rc ../vim.vim
-       @$(RUN_VIM) -S update_date.vim
+       @$(RUN_VIMPROG) -S update_date.vim
        @echo "done."
 
 vim.vim.rc: gen_syntax_vim.vim vim.vim.base $(SRC)
        @echo "Generating vim.vim.rc ..."
        @rm -f sanity_check.err generator.err
-       @$(RUN_VIM) -S gen_syntax_vim.vim
+       @$(RUN_VIMPROG) -S gen_syntax_vim.vim
        @if test -f sanity_check.err ; then \
                echo ; \
                echo "Sanity errors:" ; \
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak
index 511bfe8ff..adcf19a4e 100644
--- a/src/Make_mvc.mak
+++ b/src/Make_mvc.mak
@@ -1435,7 +1435,7 @@ test:
 
 testgvim testgui:
        cd testdir
-       $(MAKE) /NOLOGO -f Make_mvc.mak VIMPROG=..\gvim
+       $(MAKE) /NOLOGO -f Make_mvc.mak "VIMPROG=..\gvim.exe"
        cd ..
 
 testtiny:
@@ -1445,7 +1445,7 @@ testtiny:
 
 testgvimtiny:
        cd testdir
-       $(MAKE) /NOLOGO -f Make_mvc.mak tiny VIMPROG=..\gvim
+       $(MAKE) /NOLOGO -f Make_mvc.mak "VIMPROG=..\gvim.exe" tiny
        cd ..
 
 testclean:
diff --git a/src/Makefile b/src/Makefile
index 71578eb80..a451ee5aa 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2189,7 +2189,7 @@ test check: unittests $(TERM_TEST) scripttests
 scripttests:
        $(MAKE) -f Makefile $(VIMTARGET)
        if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
-               cd $(PODIR); $(MAKE) -f Makefile check VIM=../$(VIMTARGET); \
+               cd $(PODIR); $(MAKE) -f Makefile check VIMPROG=../$(VIMTARGET); 
\
        fi
        -if test $(VIMTARGET) != vim -a ! -r vim; then \
                ln -s $(VIMTARGET) vim; \
@@ -2357,7 +2357,7 @@ installrtbase: $(HELPSOURCE)/vim.1 $(DEST_VIM) 
$(VIMTARGET) $(DEST_RT) \
        # We can assume Vim was build, but it may not have been installed,
        # thus use the executable in the current directory.
        -@BUILD_DIR="`pwd`"; cd $(HELPSOURCE); if test -z "$(CROSS_COMPILING)"; 
then \
-               $(MAKE) VIMEXE="$$BUILD_DIR/$(VIMTARGET)" vimtags; fi
+               $(MAKE) VIMPROG="$$BUILD_DIR/$(VIMTARGET)" vimtags; fi
        cd $(HELPSOURCE); \
                files=`ls *.txt tags`; \
                files="$$files `ls *.??x tags-?? 2>/dev/null || true`"; \
diff --git a/src/po/Make_cyg.mak b/src/po/Make_cyg.mak
index 705858da5..c04837eed 100644
--- a/src/po/Make_cyg.mak
+++ b/src/po/Make_cyg.mak
@@ -16,7 +16,7 @@ endif
 include Make_all.mak
 
 PACKAGE = vim
-VIM = ../vim
+VIMPROG = ../vim
 
 # Uncomment one of the lines below or modify it to put the path to your
 # gettext binaries
@@ -64,18 +64,18 @@ PO_INPUTLIST = \
        vim.desktop.in
 
 first_time: $(PO_INPUTLIST) $(PO_VIM_INPUTLIST)
-       $(VIM) -u NONE --not-a-term -S tojavascript.vim $(LANGUAGE).pot 
$(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S tojavascript.vim $(LANGUAGE).pot 
$(PO_VIM_INPUTLIST)
        $(XGETTEXT) --default-domain=$(LANGUAGE) \
                --add-comments $(XGETTEXT_KEYWORDS) $(PO_INPUTLIST) 
$(PO_VIM_JSLIST)
-       $(VIM) -u NONE --not-a-term -S fixfilenames.vim $(LANGUAGE).pot 
$(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S fixfilenames.vim $(LANGUAGE).pot 
$(PO_VIM_INPUTLIST)
        $(RM) *.js
 
 $(PACKAGE).pot: $(PO_INPUTLIST) $(PO_VIM_INPUTLIST)
-       $(VIM) -u NONE --not-a-term -S tojavascript.vim $(PACKAGE).pot 
$(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S tojavascript.vim $(PACKAGE).pot 
$(PO_VIM_INPUTLIST)
        $(XGETTEXT) --default-domain=$(PACKAGE) \
                --add-comments $(XGETTEXT_KEYWORDS) $(PO_INPUTLIST) 
$(PO_VIM_JSLIST)
        $(MV) $(PACKAGE).po $(PACKAGE).pot
-       $(VIM) -u NONE --not-a-term -S fixfilenames.vim $(PACKAGE).pot 
$(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S fixfilenames.vim $(PACKAGE).pot 
$(PO_VIM_INPUTLIST)
        $(RM) *.js
 
 # Don't add a dependency here, we only want to update the .po files manually
diff --git a/src/po/Make_ming.mak b/src/po/Make_ming.mak
index 42dab8444..21d2d2037 100644
--- a/src/po/Make_ming.mak
+++ b/src/po/Make_ming.mak
@@ -23,9 +23,9 @@ include Make_all.mak
 
 PACKAGE = vim
 ifeq (sh.exe, $(SHELL))
-VIM = .. im
+VIMPROG = .. im
 else
-VIM = ../vim
+VIMPROG = ../vim
 endif
 
 # Uncomment one of the lines below or modify it to put the path to your
@@ -77,18 +77,18 @@ PO_INPUTLIST = \
        vim.desktop.in
 
 first_time: $(PO_INPUTLIST) $(PO_VIM_INPUTLIST)
-       $(VIM) -u NONE --not-a-term -S tojavascript.vim $(LANGUAGE).pot 
$(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S tojavascript.vim $(LANGUAGE).pot 
$(PO_VIM_INPUTLIST)
        $(XGETTEXT) --default-domain=$(LANGUAGE) \
                --add-comments $(XGETTEXT_KEYWORDS) $(PO_INPUTLIST) 
$(PO_VIM_JSLIST)
-       $(VIM) -u NONE --not-a-term -S fixfilenames.vim $(LANGUAGE).pot 
$(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S fixfilenames.vim $(LANGUAGE).pot 
$(PO_VIM_INPUTLIST)
        $(RM) *.js
 
 $(PACKAGE).pot: $(PO_INPUTLIST) $(PO_VIM_INPUTLIST)
-       $(VIM) -u NONE --not-a-term -S tojavascript.vim $(PACKAGE).pot 
$(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S tojavascript.vim $(PACKAGE).pot 
$(PO_VIM_INPUTLIST)
        $(XGETTEXT) --default-domain=$(PACKAGE) \
                --add-comments $(XGETTEXT_KEYWORDS) $(PO_INPUTLIST) 
$(PO_VIM_JSLIST)
        $(MV) $(PACKAGE).po $(PACKAGE).pot
-       $(VIM) -u NONE --not-a-term -S fixfilenames.vim $(PACKAGE).pot 
$(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S fixfilenames.vim $(PACKAGE).pot 
$(PO_VIM_INPUTLIST)
        $(RM) *.js
 
 # Don't add a dependency here, we only want to update the .po files manually
diff --git a/src/po/Make_mvc.mak b/src/po/Make_mvc.mak
index a9a69fdcc..d56adb0f4 100644
--- a/src/po/Make_mvc.mak
+++ b/src/po/Make_mvc.mak
@@ -40,7 +40,7 @@ VIMRUNTIME = ..\..
untime
 PACKAGE = vim
 # Correct the following line for the where executeable file vim is
 # installed.  Please do not put the path in quotes.
-VIM = .. im.exe
+VIMPROG = .. im.exe
 
 # Correct the following line for the directory where gettext et al is
 # installed.  Please do not put the path in quotes.
@@ -102,7 +102,7 @@ originals : $(MOFILES)
 converted: $(MOCONVERTED)
 
 .po.ck:
-       "$(VIM)" -u NONE --noplugins -e -s -X --cmd "set enc=utf-8" -S 
check.vim \
+       "$(VIMPROG)" -u NONE --noplugins -e -s -X --cmd "set enc=utf-8" -S 
check.vim \
                -c "if error == 0 | q | else | num 2 | cq | endif" $<
        $(TOUCH_TARGET)
 
@@ -496,25 +496,25 @@ files: $(PO_INPUTLIST)
        $(LS) $(LSFLAGS) $(PO_INPUTLIST) > . iles
 
 first_time: files
-       "$(VIM)" -u NONE --not-a-term -S tojavascript.vim $(LANGUAGE).po \
+       "$(VIMPROG)" -u NONE --not-a-term -S tojavascript.vim $(LANGUAGE).po \
                $(PO_VIM_INPUTLIST)
        set OLD_PO_FILE_INPUT=yes
        set OLD_PO_FILE_OUTPUT=yes
        $(XGETTEXT) --default-domain=$(LANGUAGE) --add-comments 
$(XGETTEXT_KEYWORDS) \
                --files-from=. iles $(PO_VIM_JSLIST)
-       "$(VIM)" -u NONE --not-a-term -S fixfilenames.vim $(LANGUAGE).po \
+       "$(VIMPROG)" -u NONE --not-a-term -S fixfilenames.vim $(LANGUAGE).po \
                $(PO_VIM_INPUTLIST)
        $(RM) *.js
 
 $(PACKAGE).pot: files
-       "$(VIM)" -u NONE --not-a-term -S tojavascript.vim $(PACKAGE).pot \
+       "$(VIMPROG)" -u NONE --not-a-term -S tojavascript.vim $(PACKAGE).pot \
                $(PO_VIM_INPUTLIST)
        set OLD_PO_FILE_INPUT=yes
        set OLD_PO_FILE_OUTPUT=yes
        $(XGETTEXT) --default-domain=$(PACKAGE) --add-comments 
$(XGETTEXT_KEYWORDS) \
                --files-from=. iles $(PO_VIM_JSLIST)
        $(MV) $(PACKAGE).po $(PACKAGE).pot
-       "$(VIM)" -u NONE --not-a-term -S fixfilenames.vim $(PACKAGE).pot \
+       "$(VIMPROG)" -u NONE --not-a-term -S fixfilenames.vim $(PACKAGE).pot \
                $(PO_VIM_INPUTLIST)
        $(RM) *.js
 
@@ -541,10 +541,10 @@ install-all: all
                "$(VIMRUNTIME)\lang\%%l\LC_MESSAGES\$(PACKAGE).mo"
 
 cleanup-po: $(LANGUAGE).po
-       "$(VIM)" -u NONE -e -X -S cleanup.vim -c wq $(LANGUAGE).po
+       "$(VIMPROG)" -u NONE -e -X -S cleanup.vim -c wq $(LANGUAGE).po
 
 cleanup-po-all: $(POFILES)
-       !"$(VIM)" -u NONE -e -X -S cleanup.vim -c wq $**
+       !"$(VIMPROG)" -u NONE -e -X -S cleanup.vim -c wq $**
 
 clean: checkclean
        $(RM) *.mo
diff --git a/src/po/Makefile b/src/po/Makefile
index 87d657bd9..eebb7ed64 100644
--- a/src/po/Makefile
+++ b/src/po/Makefile
@@ -12,7 +12,7 @@ include $(PO_BASEDIR)/Make_all.mak
 
 PACKAGE = vim
 SHELL = /bin/sh
-VIM = $(PO_BASEDIR)/../vim
+VIMPROG = $(PO_BASEDIR)/../vim
 
 # MacOS sed is locale aware, set $LANG to avoid problems.
 SED = LANG=C sed
@@ -41,7 +41,7 @@ converted: $(MOCONVERTED)
        $(MSGFMTCMD) -o $@ $<
 
 .po.ck:
-       $(VIM) -u NONE --noplugins -e -s -X --cmd "set enc=utf-8" -S check.vim \
+       $(VIMPROG) -u NONE --noplugins -e -s -X --cmd "set enc=utf-8" -S 
check.vim \
                -c "if error == 0 | q | else | num 2 | cq | endif" $<
        touch $@
 
@@ -262,13 +262,13 @@ PO_INPUTLIST = \
 
 $(PACKAGE).pot: $(PO_INPUTLIST) $(PO_VIM_INPUTLIST)
        # Convert the Vim scripts to (what looks like) Javascript.
-       $(VIM) -u NONE --not-a-term -S $(PO_BASEDIR)/tojavascript.vim 
$(PACKAGE).pot $(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S $(PO_BASEDIR)/tojavascript.vim 
$(PACKAGE).pot $(PO_VIM_INPUTLIST)
        # Create vim.pot.
        $(XGETTEXT) --default-domain=$(PACKAGE) --add-comments \
                $(XGETTEXT_KEYWORDS) $(PO_INPUTLIST) $(PO_VIM_JSLIST)
        mv -f $(PACKAGE).po $(PACKAGE).pot
        # Fix Vim scripts names, so that "gf" works.
-       $(VIM) -u NONE --not-a-term -S $(PO_BASEDIR)/fixfilenames.vim 
$(PACKAGE).pot $(PO_VIM_INPUTLIST)
+       $(VIMPROG) -u NONE --not-a-term -S $(PO_BASEDIR)/fixfilenames.vim 
$(PACKAGE).pot $(PO_VIM_INPUTLIST)
        # Delete the temporary files.
        rm *.js
 
diff --git a/src/testdir/Make_mvc.mak b/src/testdir/Make_mvc.mak
index 318cd4a16..bd6d1a279 100644
--- a/src/testdir/Make_mvc.mak
+++ b/src/testdir/Make_mvc.mak
@@ -5,9 +5,9 @@
 
 # Testing may be done with a debug build 
 !IF EXIST(..\vimd.exe) && !EXIST(..\vim.exe)
-VIMPROG = ..\vimd
+VIMPROG = ..\vimd.exe
 !ELSE
-VIMPROG = ..\vim
+VIMPROG = ..\vim.exe
 !ENDIF
 
 
diff --git a/src/testdir/Makefile b/src/testdir/Makefile
index 4e476f966..7a4c4c484 100644
--- a/src/testdir/Makefile
+++ b/src/testdir/Makefile
@@ -84,7 +84,7 @@ test_vim9:
 
 RM_ON_RUN = test.out X* viminfo
 RM_ON_START = test.ok benchmark.out
-RUN_VIM = VIMRUNTIME=$(SCRIPTSOURCE) $(VALGRIND) $(VIMPROG) -f $(GUI_FLAG) -u 
unix.vim $(NO_INITS) -s dotest.in
+RUN_VIMPROG = VIMRUNTIME=$(SCRIPTSOURCE) $(VALGRIND) $(VIMPROG) -f $(GUI_FLAG) 
-u unix.vim $(NO_INITS) -s dotest.in
 
 # Delete files that may interfere with running tests.  This includes some files
 # that may result from working on the tests, not only from running them.
@@ -114,7 +114,7 @@ tinytests: $(SCRIPTS_TINY_OUT)
        @# 200 msec is sufficient, but only modern sleep supports a fraction of
        @# a second, fall back to a second if it fails.
        @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
-       $(RUN_VIM) $*.in $(REDIR_TEST_TO_NULL)
+       $(RUN_VIMPROG) $*.in $(REDIR_TEST_TO_NULL)
 
        @# Check if the test.out file matches test.ok.
        @/bin/sh -c "if test -f test.out; then \
diff --git a/src/version.c b/src/version.c
index 462b094be..b285a7f6d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    527,
 /**/
     526,
 /**/

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/E1sPOsQ-002XUo-AO%40256bit.org.

Raspunde prin e-mail lui