Mercurial > vim
view src/tee/Make_mvc.mak @ 10883:cb71a5468aca v8.0.0331
patch 8.0.0331: restoring help snapshot accesses freed memory
commit https://github.com/vim/vim/commit/343b8c042967da82f2f022afa31f2c97a264c1c8
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Feb 17 12:04:56 2017 +0100
patch 8.0.0331: restoring help snapshot accesses freed memory
Problem: Restoring help snapshot accesses freed memory. (Dominique Pelle)
Solution: Don't restore a snapshot when the window closes.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 17 Feb 2017 12:15:05 +0100 |
parents | a98b93736894 |
children | 590424e87b65 |
line wrap: on
line source
# A very (if not the most) simplistic Makefile for MSVC CC=cl CFLAGS=/O2 /nologo tee.exe: tee.obj $(CC) $(CFLAGS) /Fo$@ $** tee.obj: tee.c $(CC) $(CFLAGS) /c $** clean: - del tee.obj - del tee.exe