Mercurial > vim
view src/xxd/Make_mvc.mak @ 29976:b6b71499d9af v9.0.0326
patch 9.0.0326: some changes for cmdheight=0 are not needed
Commit: https://github.com/vim/vim/commit/0e412be00f8290e0575c7f72ec080725631eff38
Author: Shougo Matsushita <Shougo.Matsu@gmail.com>
Date: Tue Aug 30 11:54:21 2022 +0100
patch 9.0.0326: some changes for cmdheight=0 are not needed
Problem: Some changes for cmdheight=0 are not needed.
Solution: Revert resize behavior if height is greater than the available
space. (Shougo Matsushita, closes #11008)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 30 Aug 2022 13:00:05 +0200 |
parents | 590424e87b65 |
children | c9134a3ff7be |
line wrap: on
line source
# The most simplistic Makefile for Win32 using Microsoft Visual C++ # (NT and Windows 95) SUBSYSTEM = console !if "$(SUBSYSTEM_VER)" != "" SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER) !endif xxd: xxd.exe xxd.exe: xxd.c cl /nologo -DWIN32 xxd.c -link -subsystem:$(SUBSYSTEM) # This was for an older compiler # cl /nologo -DWIN32 xxd.c /link setargv.obj clean: - if exist xxd.obj del xxd.obj - if exist xxd.exe del xxd.exe