view tools/rename.bat @ 34600:3b8ed014a445 v9.1.0192

patch 9.1.0192: drop: don't rewind when editing the same file Commit: https://github.com/vim/vim/commit/978178823b7c62a0249411f3d1f584f8a3144c5d Author: Christian Brabandt <cb@256bit.org> Date: Wed Mar 20 20:19:47 2024 +0100 patch 9.1.0192: drop: don't rewind when editing the same file Problem: :drop tries to :rewind the argumentlist, which results in E37 (after v9.1.0046) Solution: instead of calling ex_rewind(), call open_buffer() only when re-using the initial empty buffer fixes: #14219 closes: #14220 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 20 Mar 2024 20:30:07 +0100
parents 7a3de23515d6
children
line wrap: on
line source

@ 2>/dev/null # 2>nul & goto:win32
#!/bin/sh
if test -e ../src/vim.exe ; then mv ../src/vim.exe ../src/vimw32.exe ; fi
if test -e ../src/vim.pdb ; then mv ../src/vim.pdb ../src/vimw32.pdb ; fi
if test -e ../src/gvim.exe ; then mv ../src/gvim.exe ../src/gvim_ole.exe ; fi
if test -e ../src/gvim.pdb ; then mv ../src/gvim.pdb ../src/gvim_ole.pdb ; fi
if test -e ../src/install.exe ;
 then
 mv ../src/install.exe ../src/installw32.exe ;
fi
if test -e ../src/uninstall.exe ;
 then
 mv ../src/uninstall.exe ../src/uninstallw32.exe ;
fi
if test -e ../src/tee/tee.exe ;
 then
 mv ../src/tee/tee.exe ../src/teew32.exe ; 
fi
if test -e ../src/xxd/xxd.exe ;
 then
 mv ../src/xxd/xxd.exe ../src/xxdw32.exe ; 
fi
# Uncomment return if the file is run through the command "source"
#return
exit

:win32
if exist mv.exe (set "mv=mv.exe -f") else (set "mv=move /y")
if exist ..\src\vim.exe %mv% ..\src\vim.exe ..\src\vimw32.exe
if exist ..\src\vim.pdb %mv% ..\src\vim.pdb ..\src\vimw32.pdb
if exist ..\src\gvim.exe %mv% ..\src\gvim.exe ..\src\gvim_ole.exe
if exist ..\src\gvim.pdb %mv% ..\src\gvim.pdb ..\src\gvim_ole.pdb
if exist ..\src\install.exe %mv% ..\src\install.exe ..\src\installw32.exe
if exist ..\src\uninstall.exe %mv% ..\src\uninstall.exe ..\src\uninstallw32.exe
if exist ..\src\tee\tee.exe %mv% ..\src\tee\tee.exe ..\src\teew32.exe
if exist ..\src\xxd\xxd.exe %mv% ..\src\xxd\xxd.exe ..\src\xxdw32.exe
set "mv="
goto:EOF