Mercurial > vim
annotate runtime/spell/nb/main.aap @ 30831:fbeebe308514 v9.0.0750
patch 9.0.0750: crash when popup closed in callback
Commit: https://github.com/vim/vim/commit/0abd6cf62d65180dc2c40d67cd95f13b0691f7ea
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Oct 14 17:04:09 2022 +0100
patch 9.0.0750: crash when popup closed in callback
Problem: Crash when popup closed in callback. (Maxim Kim)
Solution: In syntax_end_parsing() check that syn_block is valid.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 14 Oct 2022 18:15:03 +0200 |
parents | ea3c3f13385c |
children |
rev | line source |
---|---|
502 | 1 # Aap recipe for Dutch Vim spell files. |
2 | |
3 # Use a freshly compiled Vim if it exists. | |
4 @if os.path.exists('../../../src/vim'): | |
5 VIM = ../../../src/vim | |
6 @else: | |
7 :progsearch VIM vim | |
8 | |
9 SPELLDIR = .. | |
10 FILES = nb_NO.aff nb_NO.dic | |
11 | |
12 all: $SPELLDIR/nb.latin1.spl $SPELLDIR/nb.utf-8.spl ../README_nb.txt | |
13 | |
14 $SPELLDIR/nb.latin1.spl : $FILES | |
2292
ea3c3f13385c
Update spell files for Ubuntu locale names.
Bram Moolenaar <bram@vim.org>
parents:
502
diff
changeset
|
15 :sys env LANG=nb_NO.ISO-8859-1 |
502 | 16 $VIM -u NONE -e -c "mkspell! $SPELLDIR/nb nb_NO" -c q |
17 | |
18 $SPELLDIR/nb.utf-8.spl : $FILES | |
2292
ea3c3f13385c
Update spell files for Ubuntu locale names.
Bram Moolenaar <bram@vim.org>
parents:
502
diff
changeset
|
19 :sys env LANG=nb_NO.UTF-8 |
502 | 20 $VIM -u NONE -e -c "mkspell! $SPELLDIR/nb nb_NO" -c q |
21 | |
22 ../README_nb.txt : README_nb_NO.txt | |
23 :copy $source $target | |
24 | |
25 # | |
26 # Fetching the files from OpenOffice.org. | |
27 # | |
28 OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries | |
29 :attr {fetch = $OODIR/%file%} nb_NO.zip | |
30 | |
31 # The files don't depend on the .zip file so that we can delete it. | |
32 # Only download the zip file if the targets don't exist. | |
33 nb_NO.aff nb_NO.dic: {buildcheck=} | |
34 :assertpkg unzip patch | |
35 :fetch nb_NO.zip | |
36 :sys $UNZIP nb_NO.zip | |
37 :delete nb_NO.zip | |
38 @if not os.path.exists('nb_NO.orig.aff'): | |
39 :copy nb_NO.aff nb_NO.orig.aff | |
40 @if not os.path.exists('nb_NO.orig.dic'): | |
41 :copy nb_NO.dic nb_NO.orig.dic | |
42 @if os.path.exists('nb_NO.diff'): | |
43 :sys patch <nb_NO.diff | |
44 | |
45 | |
46 # Generate diff files, so that others can get the OpenOffice files and apply | |
47 # the diffs to get the Vim versions. | |
48 | |
49 diff: | |
50 :assertpkg diff | |
51 :sys {force} diff -a -C 1 nb_NO.orig.aff nb_NO.aff >nb_NO.diff | |
52 :sys {force} diff -a -C 1 nb_NO.orig.dic nb_NO.dic >>nb_NO.diff | |
53 | |
54 | |
55 # Check for updated OpenOffice spell files. When there are changes the | |
56 # ".new.aff" and ".new.dic" files are left behind for manual inspection. | |
57 | |
58 check: | |
59 :assertpkg unzip diff | |
60 :fetch nb_NO.zip | |
61 :mkdir tmp | |
62 :cd tmp | |
63 @try: | |
64 @import stat | |
65 :sys $UNZIP ../nb_NO.zip | |
66 :sys {force} diff ../nb_NO.orig.aff nb_NO.aff >d | |
67 @if os.stat('d')[stat.ST_SIZE] > 0: | |
68 :copy nb_NO.aff ../nb_NO.new.aff | |
69 :sys {force} diff ../nb_NO.orig.dic nb_NO.dic >d | |
70 @if os.stat('d')[stat.ST_SIZE] > 0: | |
71 :copy nb_NO.dic ../nb_NO.new.dic | |
72 @finally: | |
73 :cd .. | |
74 :delete {r}{f}{q} tmp | |
75 :delete nb_NO.zip | |
76 | |
77 | |
78 # vim: set sts=4 sw=4 : |