Mercurial > vim
view runtime/spell/check/main.aap @ 27464:a14c4d3e3260 v8.2.4260
patch 8.2.4260: Vim9: can still use a global function without g:
Commit: https://github.com/vim/vim/commit/848faddb870f3ba4d84fcacd1cccb5cdbbfd9c41
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 30 15:28:30 2022 +0000
patch 8.2.4260: Vim9: can still use a global function without g:
Problem: Vim9: can still use a global function without g: at the script
level.
Solution: Also check for g: at the script level. (issue #9637)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 30 Jan 2022 16:30:04 +0100 |
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 :