view runtime/spell/check/main.aap @ 9264:b0be59a89bde v7.4.1915

commit https://github.com/vim/vim/commit/2a67ed83a885e8e65e25498660dae4f34d532c7b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 10 21:52:42 2016 +0200 patch 7.4.1915 Problem: The effect of the PopupMenu autocommand isn't directly visible. Solution: Call gui_update_menus() before displaying the popup menu. (Shane Harper, closs https://github.com/vim/vim/issues/855)
author Christian Brabandt <cb@256bit.org>
date Fri, 10 Jun 2016 22:00:06 +0200
parents 6c480c4aa7b0
children
line wrap: on
line source

# Aap recipe for a dummy spell file.
# This is used to check if the .spl file format changes.

# Use a freshly compiled Vim if it exists.
@if os.path.exists('../../../src/vim'):
    VIM = ../../../src/vim
@else:
    :progsearch VIM vim

all: check.latin1.spl

check.latin1.spl : $VIM check_aa.aff check_aa.dic check_bb.aff check_bb.dic
        :sys $VIM -u NONE -e -c "mkspell! check check_aa check_bb" -c q

# vim: set sts=4 sw=4 :