summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-08-01 07:19:10 +0000
committerBram Moolenaar <Bram@vim.org>2005-08-01 07:19:10 +0000
commit78984f503c0404ea36674a74076b091b27a9e528 (patch)
tree89fafa57f1dfefd4a483e20b8ffbb778ea50c498
parent53805d1eaa179509f39048516e344158eedfbbe4 (diff)
updated for version 7.0121v7.0121
-rw-r--r--runtime/doc/motion.txt18
-rw-r--r--runtime/doc/spell.txt7
-rw-r--r--runtime/doc/tags1
-rw-r--r--runtime/doc/todo.txt15
-rw-r--r--runtime/spell/de/main.aap7
-rw-r--r--runtime/spell/en.ascii.splbin566599 -> 566599 bytes
-rw-r--r--runtime/spell/en.latin1.splbin568694 -> 568694 bytes
-rw-r--r--runtime/spell/en/en_AU.diff252
-rw-r--r--runtime/spell/en/en_CA.diff72
-rw-r--r--runtime/spell/en/en_GB.diff252
-rw-r--r--runtime/spell/en/en_NZ.diff252
-rw-r--r--runtime/spell/en/en_US.diff86
-rw-r--r--runtime/spell/en/main.aap27
-rw-r--r--runtime/spell/fr/fr_FR.diff23
-rw-r--r--runtime/spell/he/main.aap7
-rw-r--r--runtime/spell/it/it_IT.diff370
-rw-r--r--runtime/spell/it/main.aap78
-rw-r--r--runtime/spell/main.aap16
-rw-r--r--runtime/spell/nl/main.aap7
-rw-r--r--runtime/spell/nl/nl_NL.diff77
-rw-r--r--runtime/spell/pl/main.aap7
-rwxr-xr-xsrc/auto/configure8
-rw-r--r--src/configure.in2
-rw-r--r--src/if_python.c2
-rw-r--r--src/macros.h11
-rw-r--r--src/nbdebug.c2
-rw-r--r--src/testdir/test58.in2
-rw-r--r--src/testdir/test59.in2
-rw-r--r--src/version.h4
-rw-r--r--src/workshop.c1
-rw-r--r--src/wsdebug.c2
31 files changed, 1053 insertions, 557 deletions
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt
index 09f203a0ca..8494c8e835 100644
--- a/runtime/doc/motion.txt
+++ b/runtime/doc/motion.txt
@@ -1,4 +1,4 @@
-*motion.txt* For Vim version 7.0aa. Last change: 2005 Jul 19
+*motion.txt* For Vim version 7.0aa. Last change: 2005 Jul 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -72,13 +72,13 @@ and end position. Generally, motions that move between lines affect lines
characterwise). However, there are some exceptions.
*exclusive* *inclusive*
-A character motion is either inclusive or exclusive. When inclusive, the start
-and end position of the motion are included in the operation. When exclusive,
-the last character towards the end of the buffer is not included. Linewise
-motions always include the start and end position.
+A character motion is either inclusive or exclusive. When inclusive, the
+start and end position of the motion are included in the operation. When
+exclusive, the last character towards the end of the buffer is not included.
+Linewise motions always include the start and end position.
-Which motions are linewise, inclusive or exclusive is mentioned below. There
-are however, two general exceptions:
+Which motions are linewise, inclusive or exclusive is mentioned with the
+command. There are however, two general exceptions:
1. If the motion is exclusive and the end of the motion is in column 1, the
end of the motion is moved to the end of the previous line and the motion
becomes inclusive. Example: "}" moves to the first line after a paragraph,
@@ -247,7 +247,7 @@ f{char} To [count]'th occurrence of {char} to the right. The
*F*
F{char} To the [count]'th occurrence of {char} to the left.
- The cursor is placed on {char} |inclusive|.
+ The cursor is placed on {char} |exclusive|.
{char} can be entered like with the |f| command.
*t*
@@ -259,7 +259,7 @@ t{char} Till before [count]'th occurrence of {char} to the
*T*
T{char} Till after [count]'th occurrence of {char} to the
left. The cursor is placed on the character right of
- {char} |inclusive|.
+ {char} |exclusive|.
{char} can be entered like with the |f| command.
*;*
diff --git a/runtime/doc/spell.txt b/runtime/doc/spell.txt
index f85a49a2b8..573a9429d9 100644
--- a/runtime/doc/spell.txt
+++ b/runtime/doc/spell.txt
@@ -1,4 +1,4 @@
-*spell.txt* For Vim version 7.0aa. Last change: 2005 Jul 21
+*spell.txt* For Vim version 7.0aa. Last change: 2005 Jul 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -691,7 +691,10 @@ in the .aff file:
PFXPOSTPONE ~
Only prefixes without a chop string can be postponed, prefixes with a chop
-string will still be included in the word list.
+string will still be included in the word list. An exception if the chop
+string is one character and equal to the last character of the added string,
+but in lower case. Thus when the chop string is used to allow the following
+word to start with an upper case letter.
KEEP-CASE WORDS
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 2700fdc319..580a6f1715 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -5162,6 +5162,7 @@ hebrew hebrew.txt /*hebrew*
hebrew.txt hebrew.txt /*hebrew.txt*
help various.txt /*help*
help-context help.txt /*help-context*
+help-tags tags 1
help-translated various.txt /*help-translated*
help-xterm-window various.txt /*help-xterm-window*
help.txt help.txt /*help.txt*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index ac5f17f1ca..e91b8b8190 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 30
+*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,6 +30,11 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
+Spell: For Italian we also need to postpone prefixes with a chop string.
+Or handle upper/lower case specially?
+
+":w! /tmp/tt" gives ATTENTION message but no prompt.
+
Mac unicode patch (Da Woon Jung):
- selecting proportional font breaks display
- UTF-8 text causes display problems. Font replacement causes this.
@@ -66,6 +71,8 @@ PLANNED FOR VERSION 7.0:
make it work for all completion methods.
First cleanup the Insert-mode completion.
+ - check security of 'completefunc'.
+ - use callback to interrupt searching for matches.
UI:
- At first: use 'wildmenu' kind of thing.
@@ -208,6 +215,12 @@ PLANNED FOR VERSION 7.0:
Adjust src/main.aap for installing manpages like in Makefile.
+When editing a file with both utf-8 and latin1 text Vim always falls back to
+latin1. Add a command to convert the latin1 characters to utf-8?
+ :unmix utf-8,latin1 filename
+Would only work when 'encoding' is utf-8.
+Also: command to search for illegal utf-8 byte sequence?
+
Also generate the .pdb file that can be used to generate a useful crash report
on MS-Windows. (George Reilly)
diff --git a/runtime/spell/de/main.aap b/runtime/spell/de/main.aap
index 6340d43207..80bfcea9b6 100644
--- a/runtime/spell/de/main.aap
+++ b/runtime/spell/de/main.aap
@@ -4,7 +4,7 @@
@if os.path.exists('../../../src/vim'):
VIM = ../../../src/vim
@else:
- VIM = vim
+ :progsearch VIM vim
SPELLDIR = ..
FILES = de_DE.aff de_DE.dic
@@ -41,8 +41,9 @@ de_DE.aff de_DE.dic: {buildcheck=}
@if not os.path.exists('de_DE.orig.aff'):
:copy de_DE.aff de_DE.orig.aff
@if not os.path.exists('de_DE.orig.dic'):
- :copy de_DE.aff de_DE.orig.dic
- :sys patch <de_DE.diff
+ :copy de_DE.dic de_DE.orig.dic
+ @if os.path.exists('de_DE.diff'):
+ :sys patch <de_DE.diff
# Generate diff files, so that others can get the OpenOffice files and apply
diff --git a/runtime/spell/en.ascii.spl b/runtime/spell/en.ascii.spl
index 1b51921ed9..73c59c7b4c 100644
--- a/runtime/spell/en.ascii.spl
+++ b/runtime/spell/en.ascii.spl
Binary files differ
diff --git a/runtime/spell/en.latin1.spl b/runtime/spell/en.latin1.spl
index b759d2f16c..ed645b8031 100644
--- a/runtime/spell/en.latin1.spl
+++ b/runtime/spell/en.latin1.spl
Binary files differ
diff --git a/runtime/spell/en/en_AU.diff b/runtime/spell/en/en_AU.diff
index 1b45c8f30d..c0ee62d6bb 100644
--- a/runtime/spell/en/en_AU.diff
+++ b/runtime/spell/en/en_AU.diff
@@ -1,11 +1,11 @@
*** en_AU.orig.aff Fri Apr 15 13:20:36 2005
---- en_AU.aff Sun Jul 3 17:11:07 2005
+--- en_AU.aff Sun Jul 31 22:16:19 2005
***************
*** 7,9 ****
SET ISO8859-1
! TRY esiaénrtolcdugmphbyfvkw-'.zqjxSNRTLCGDMPHBEAUYOFIVKWöâôZQJXÅçèîêàïüäñ
REP 24
---- 7,19 ----
+--- 7,140 ----
SET ISO8859-1
! TRY esiaénrtolcdugmphbyfvkw-'.zqjxSNRTLCGDMPHBEAUYOFIVKWöâôZQJXÅçèîêàïüäñ
!
@@ -18,6 +18,127 @@
! RAR ?
! BAD !
!
+! MAP 9
+! MAP aàáâãäå
+! MAP eèéêë
+! MAP iìíîï
+! MAP oòóôõö
+! MAP uùúûü
+! MAP nñ
+! MAP cç
+! MAP yÿý
+! MAP sß
+!
+! # This comes from Aspell en_phonet.dat, version 1.1, 2000-01-07
+!
+! SAL AH(AEIOUY)-^ *H
+! SAL AR(AEIOUY)-^ *R
+! SAL A(HR)^ *
+! SAL A^ *
+! SAL AH(AEIOUY)- H
+! SAL AR(AEIOUY)- R
+! SAL A(HR) _
+! SAL À^ *
+! SAL Å^ *
+! SAL BB- _
+! SAL B B
+! SAL CQ- _
+! SAL CIA X
+! SAL CH X
+! SAL C(EIY)- S
+! SAL CK K
+! SAL COUGH^ KF
+! SAL CC< C
+! SAL C K
+! SAL DG(EIY) K
+! SAL DD- _
+! SAL D T
+! SAL É< E
+! SAL EH(AEIOUY)-^ *H
+! SAL ER(AEIOUY)-^ *R
+! SAL E(HR)^ *
+! SAL ENOUGH^$ *NF
+! SAL E^ *
+! SAL EH(AEIOUY)- H
+! SAL ER(AEIOUY)- R
+! SAL E(HR) _
+! SAL FF- _
+! SAL F F
+! SAL GN^ N
+! SAL GN$ N
+! SAL GNS$ NS
+! SAL GNED$ N
+! SAL GH(AEIOUY)- K
+! SAL GH _
+! SAL GG9 K
+! SAL G K
+! SAL H H
+! SAL IH(AEIOUY)-^ *H
+! SAL IR(AEIOUY)-^ *R
+! SAL I(HR)^ *
+! SAL I^ *
+! SAL ING6 N
+! SAL IH(AEIOUY)- H
+! SAL IR(AEIOUY)- R
+! SAL I(HR) _
+! SAL J K
+! SAL KN^ N
+! SAL KK- _
+! SAL K K
+! SAL LAUGH^ LF
+! SAL LL- _
+! SAL L L
+! SAL MB$ M
+! SAL MM M
+! SAL M M
+! SAL NN- _
+! SAL N N
+! SAL OH(AEIOUY)-^ *H
+! SAL OR(AEIOUY)-^ *R
+! SAL O(HR)^ *
+! SAL O^ *
+! SAL OH(AEIOUY)- H
+! SAL OR(AEIOUY)- R
+! SAL O(HR) _
+! SAL PH F
+! SAL PN^ N
+! SAL PP- _
+! SAL P P
+! SAL Q K
+! SAL RH^ R
+! SAL ROUGH^ RF
+! SAL RR- _
+! SAL R R
+! SAL SCH(EOU)- SK
+! SAL SC(IEY)- S
+! SAL SH X
+! SAL SI(AO)- X
+! SAL SS- _
+! SAL S S
+! SAL TI(AO)- X
+! SAL TH @
+! SAL TCH-- _
+! SAL TOUGH^ TF
+! SAL TT- _
+! SAL T T
+! SAL UH(AEIOUY)-^ *H
+! SAL UR(AEIOUY)-^ *R
+! SAL U(HR)^ *
+! SAL U^ *
+! SAL UH(AEIOUY)- H
+! SAL UR(AEIOUY)- R
+! SAL U(HR) _
+! SAL V^ W
+! SAL V F
+! SAL WR^ R
+! SAL WH^ W
+! SAL W(AEIOU)- W
+! SAL X^ S
+! SAL X KS
+! SAL Y(AEIOU)- Y
+! SAL ZZ- _
+! SAL Z S
+!
REP 24
***************
*** 34,53 ****
@@ -41,7 +162,7 @@
PFX E Y 1
! PFX E 0 dis .
PFX F Y 5
---- 44,63 ----
+--- 165,184 ----
PFX A Y 2
! PFX A 0 re [^e]
! PFX A 0 re- e
@@ -459,7 +580,7 @@
SFX T y iest [^aeiou]y
! SFX T 0 er [aeiou]y
SFX T 0 est [aeiou]y
---- 67,461 ----
+--- 188,582 ----
PFX F 0 col l
! PFX F 0 con [^abehilmopru].
PFX K Y 1
@@ -1543,7 +1664,7 @@
! SFX 3 0 ist's [aeioubp]y
! SFX 3 o ist's o
! SFX 3 0 ist's [^eoy]
---- 468,1274 ----
+--- 589,1274 ----
SFX R Y 72
! SFX R 0 r e
! SFX R 0 rs e
@@ -2230,127 +2351,6 @@
! SFX 3 0 ist's [aeioubp]y
! SFX 3 o ist's o
! SFX 3 0 ist's [^eoy]
-!
-! MAP 5
-! MAP aàáâãäå
-! MAP eèéêë
-! MAP iìíîï
-! MAP oòóôõö
-! MAP uùúûü
-! MAP nñ
-! MAP cç
-! MAP yÿý
-! MAP sß
-!
-! # This comes from Aspell en_phonet.dat, version 1.1, 2000-01-07
-!
-! SAL AH(AEIOUY)-^ *H
-! SAL AR(AEIOUY)-^ *R
-! SAL A(HR)^ *
-! SAL A^ *
-! SAL AH(AEIOUY)- H
-! SAL AR(AEIOUY)- R
-! SAL A(HR) _
-! SAL À^ *
-! SAL Å^ *
-! SAL BB- _
-! SAL B B
-! SAL CQ- _
-! SAL CIA X
-! SAL CH X
-! SAL C(EIY)- S
-! SAL CK K
-! SAL COUGH^ KF
-! SAL CC< C
-! SAL C K
-! SAL DG(EIY) K
-! SAL DD- _
-! SAL D T
-! SAL É< E
-! SAL EH(AEIOUY)-^ *H
-! SAL ER(AEIOUY)-^ *R
-! SAL E(HR)^ *
-! SAL ENOUGH^$ *NF
-! SAL E^ *
-! SAL EH(AEIOUY)- H
-! SAL ER(AEIOUY)- R
-! SAL E(HR) _
-! SAL FF- _
-! SAL F F
-! SAL GN^ N
-! SAL GN$ N
-! SAL GNS$ NS
-! SAL GNED$ N
-! SAL GH(AEIOUY)- K
-! SAL GH _
-! SAL GG9 K
-! SAL G K
-! SAL H H
-! SAL IH(AEIOUY)-^ *H
-! SAL IR(AEIOUY)-^ *R
-! SAL I(HR)^ *
-! SAL I^ *
-! SAL ING6 N
-! SAL IH(AEIOUY)- H
-! SAL IR(AEIOUY)- R
-! SAL I(HR) _
-! SAL J K
-! SAL KN^ N
-! SAL KK- _
-! SAL K K
-! SAL LAUGH^ LF
-! SAL LL- _
-! SAL L L
-! SAL MB$ M
-! SAL MM M
-! SAL M M
-! SAL NN- _
-! SAL N N
-! SAL OH(AEIOUY)-^ *H
-! SAL OR(AEIOUY)-^ *R
-! SAL O(HR)^ *
-! SAL O^ *
-! SAL OH(AEIOUY)- H
-! SAL OR(AEIOUY)- R
-! SAL O(HR) _
-! SAL PH F
-! SAL PN^ N
-! SAL PP- _
-! SAL P P
-! SAL Q K
-! SAL RH^ R
-! SAL ROUGH^ RF
-! SAL RR- _
-! SAL R R
-! SAL SCH(EOU)- SK
-! SAL SC(IEY)- S
-! SAL SH X
-! SAL SI(AO)- X
-! SAL SS- _
-! SAL S S
-! SAL TI(AO)- X
-! SAL TH @
-! SAL TCH-- _
-! SAL TOUGH^ TF
-! SAL TT- _
-! SAL T T
-! SAL UH(AEIOUY)-^ *H
-! SAL UR(AEIOUY)-^ *R
-! SAL U(HR)^ *
-! SAL U^ *
-! SAL UH(AEIOUY)- H
-! SAL UR(AEIOUY)- R
-! SAL U(HR) _
-! SAL V^ W
-! SAL V F
-! SAL WR^ R
-! SAL WH^ W
-! SAL W(AEIOU)- W
-! SAL X^ S
-! SAL X KS
-! SAL Y(AEIOU)- Y
-! SAL ZZ- _
-! SAL Z S
*** en_AU.orig.dic Fri Apr 15 13:20:36 2005
--- en_AU.dic Sun Jul 3 17:11:07 2005
***************
diff --git a/runtime/spell/en/en_CA.diff b/runtime/spell/en/en_CA.diff
index 0ae8ff808f..904e0c6203 100644
--- a/runtime/spell/en/en_CA.diff
+++ b/runtime/spell/en/en_CA.diff
@@ -1,8 +1,8 @@
*** en_CA.orig.aff Fri Apr 15 13:20:36 2005
---- en_CA.aff Sun Jul 3 17:09:40 2005
+--- en_CA.aff Sun Jul 31 22:16:56 2005
***************
*** 3,4 ****
---- 3,13 ----
+--- 3,134 ----
+ FOL àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþßÿ
+ LOW àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþßÿ
@@ -13,42 +13,7 @@
+ RAR ?
+ BAD !
+
- PFX A Y 1
-***************
-*** 30,33 ****
- SFX N e ion e
-! SFX N y ication y
-! SFX N 0 en [^ey]
-
---- 39,42 ----
- SFX N e ion e
-! SFX N y ication y
-! SFX N 0 en [^ey]
-
-***************
-*** 40,42 ****
- SFX H y ieth y
-! SFX H 0 th [^y]
-
---- 49,51 ----
- SFX H y ieth y
-! SFX H 0 th [^y]
-
-***************
-*** 47,49 ****
- SFX G e ing e
-! SFX G 0 ing [^e]
-
---- 56,58 ----
- SFX G e ing e
-! SFX G 0 ing [^e]
-
-***************
-*** 98 ****
---- 107,228 ----
- SFX L 0 ment .
-+
-+ MAP 5
++ MAP 9
+ MAP aàáâãäå
+ MAP eèéêë
+ MAP iìíîï
@@ -168,6 +133,37 @@
+ SAL Y(AEIOU)- Y
+ SAL ZZ- _
+ SAL Z S
++
+ PFX A Y 1
+***************
+*** 30,33 ****
+ SFX N e ion e
+! SFX N y ication y
+! SFX N 0 en [^ey]
+
+--- 160,163 ----
+ SFX N e ion e
+! SFX N y ication y
+! SFX N 0 en [^ey]
+
+***************
+*** 40,42 ****
+ SFX H y ieth y
+! SFX H 0 th [^y]
+
+--- 170,172 ----
+ SFX H y ieth y
+! SFX H 0 th [^y]
+
+***************
+*** 47,49 ****
+ SFX G e ing e
+! SFX G 0 ing [^e]
+
+--- 177,179 ----
+ SFX G e ing e
+! SFX G 0 ing [^e]
+
*** en_CA.orig.dic Sat Apr 16 14:40:06 2005
--- en_CA.dic Sun Jul 3 17:09:40 2005
***************
diff --git a/runtime/spell/en/en_GB.diff b/runtime/spell/en/en_GB.diff
index ab6e8dac21..6032c25588 100644
--- a/runtime/spell/en/en_GB.diff
+++ b/runtime/spell/en/en_GB.diff
@@ -1,8 +1,8 @@
*** en_GB.orig.aff Sun Jul 3 17:53:13 2005
---- en_GB.aff Sun Jul 3 17:59:15 2005
+--- en_GB.aff Sun Jul 31 22:17:09 2005
***************
*** 8,9 ****
---- 8,19 ----
+--- 8,140 ----
TRY esiaénrtolcdugmfphbyvkw-'.zqjxSNRTLCGDMFPHBEAUYOIVKWóöâôZQJXÅçèîêàïüäñ
+
+ FOL àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþßÿ
@@ -14,6 +14,127 @@
+ RAR ?
+ BAD !
+
++ MAP 9
++ MAP aàáâãäå
++ MAP eèéêë
++ MAP iìíîï
++ MAP oòóôõö
++ MAP uùúûü
++ MAP nñ
++ MAP cç
++ MAP yÿý
++ MAP sß
++
++ # This comes from Aspell en_phonet.dat, version 1.1, 2000-01-07
++
++ SAL AH(AEIOUY)-^ *H
++ SAL AR(AEIOUY)-^ *R
++ SAL A(HR)^ *
++ SAL A^ *
++ SAL AH(AEIOUY)- H
++ SAL AR(AEIOUY)- R
++ SAL A(HR) _
++ SAL À^ *
++ SAL Å^ *
++ SAL BB- _
++ SAL B B
++ SAL CQ- _
++ SAL CIA X
++ SAL CH X
++ SAL C(EIY)- S
++ SAL CK K
++ SAL COUGH^ KF
++ SAL CC< C
++ SAL C K
++ SAL DG(EIY) K
++ SAL DD- _
++ SAL D T
++ SAL É< E
++ SAL EH(AEIOUY)-^ *H
++ SAL ER(AEIOUY)-^ *R
++ SAL E(HR)^ *
++ SAL ENOUGH^$ *NF
++ SAL E^ *
++ SAL EH(AEIOUY)- H
++ SAL ER(AEIOUY)- R
++ SAL E(HR) _
++ SAL FF- _
++ SAL F F
++ SAL GN^ N
++ SAL GN$ N
++ SAL GNS$ NS
++ SAL GNED$ N
++ SAL GH(AEIOUY)- K
++ SAL GH _
++ SAL GG9 K
++ SAL G K
++ SAL H H
++ SAL IH(AEIOUY)-^ *H
++ SAL IR(AEIOUY)-^ *R
++ SAL I(HR)^ *
++ SAL I^ *
++ SAL ING6 N
++ SAL IH(AEIOUY)- H
++ SAL IR(AEIOUY)- R
++ SAL I(HR) _
++ SAL J K
++ SAL KN^ N
++ SAL KK- _
++ SAL K K
++ SAL LAUGH^ LF
++ SAL LL- _
++ SAL L L
++ SAL MB$ M
++ SAL MM M
++ SAL M M
++ SAL NN- _
++ SAL N N
++ SAL OH(AEIOUY)-^ *H
++ SAL OR(AEIOUY)-^ *R
++ SAL O(HR)^ *
++ SAL O^ *
++ SAL OH(AEIOUY)- H
++ SAL OR(AEIOUY)- R
++ SAL O(HR) _
++ SAL PH F
++ SAL PN^ N
++ SAL PP- _
++ SAL P P
++ SAL Q K
++ SAL RH^ R
++ SAL ROUGH^ RF
++ SAL RR- _
++ SAL R R
++ SAL SCH(EOU)- SK
++ SAL SC(IEY)- S
++ SAL SH X
++ SAL SI(AO)- X
++ SAL SS- _
++ SAL S S
++ SAL TI(AO)- X
++ SAL TH @
++ SAL TCH-- _
++ SAL TOUGH^ TF
++ SAL TT- _
++ SAL T T
++ SAL UH(AEIOUY)-^ *H
++ SAL UR(AEIOUY)-^ *R
++ SAL U(HR)^ *
++ SAL U^ *
++ SAL UH(AEIOUY)- H
++ SAL UR(AEIOUY)- R
++ SAL U(HR) _
++ SAL V^ W
++ SAL V F
++ SAL WR^ R
++ SAL WH^ W
++ SAL W(AEIOU)- W
++ SAL X^ S
++ SAL X KS
++ SAL Y(AEIOU)- Y
++ SAL ZZ- _
++ SAL Z S
++
REP 27
***************
*** 37,56 ****
@@ -37,7 +158,7 @@
PFX E Y 1
! PFX E 0 dis .
PFX F Y 5
---- 47,66 ----
+--- 168,187 ----
PFX A Y 2
! PFX A 0 re [^e]
! PFX A 0 re- e
@@ -455,7 +576,7 @@
SFX T y iest [^aeiou]y
! SFX T 0 er [aeiou]y
SFX T 0 est [aeiou]y
---- 70,464 ----
+--- 191,585 ----
PFX F 0 col l
! PFX F 0 con [^abehilmopru].
PFX K Y 1
@@ -1543,7 +1664,7 @@
! SFX 3 0 ist's [aeioubp]y
! SFX 3 o ist's o
! SFX 3 0 ist's [^eoy]
---- 471,1281 ----
+--- 592,1281 ----
SFX R Y 72
! SFX R 0 r e
! SFX R 0 rs e
@@ -2234,127 +2355,6 @@
! SFX 3 0 ist's [aeioubp]y
! SFX 3 o ist's o
! SFX 3 0 ist's [^eoy]
-!
-! MAP 5
-! MAP aàáâãäå
-! MAP eèéêë
-! MAP iìíîï
-! MAP oòóôõö
-! MAP uùúûü
-! MAP nñ
-! MAP cç
-! MAP yÿý
-! MAP sß
-!
-! # This comes from Aspell en_phonet.dat, version 1.1, 2000-01-07
-!
-! SAL AH(AEIOUY)-^ *H
-! SAL AR(AEIOUY)-^ *R
-! SAL A(HR)^ *
-! SAL A^ *
-! SAL AH(AEIOUY)- H
-! SAL AR(AEIOUY)- R
-! SAL A(HR) _
-! SAL À^ *
-! SAL Å^ *
-! SAL BB- _
-! SAL B B
-! SAL CQ- _
-! SAL CIA X
-! SAL CH X
-! SAL C(EIY)- S
-! SAL CK K
-! SAL COUGH^ KF
-! SAL CC< C
-! SAL C K
-! SAL DG(EIY) K
-! SAL DD- _
-! SAL D T
-! SAL É< E
-! SAL EH(AEIOUY)-^ *H
-! SAL ER(AEIOUY)-^ *R
-! SAL E(HR)^ *
-! SAL ENOUGH^$ *NF
-! SAL E^ *
-! SAL EH(AEIOUY)- H
-! SAL ER(AEIOUY)- R
-! SAL E(HR) _
-! SAL FF- _
-! SAL F F
-! SAL GN^ N
-! SAL GN$ N
-! SAL GNS$ NS
-! SAL GNED$ N
-! SAL GH(AEIOUY)- K
-! SAL GH _
-! SAL GG9 K
-! SAL G K
-! SAL H H
-! SAL IH(AEIOUY)-^ *H
-! SAL IR(AEIOUY)-^ *R
-! SAL I(HR)^ *
-! SAL I^ *
-! SAL ING6 N
-! SAL IH(AEIOUY)- H
-! SAL IR(AEIOUY)- R
-! SAL I(HR) _
-! SAL J K
-! SAL KN^ N
-! SAL KK- _
-! SAL K K
-! SAL LAUGH^ LF
-! SAL LL- _
-! SAL L L
-! SAL MB$ M
-! SAL MM M
-! SAL M M
-! SAL NN- _
-! SAL N N
-! SAL OH(AEIOUY)-^ *H
-! SAL OR(AEIOUY)-^ *R
-! SAL O(HR)^ *
-! SAL O^ *
-! SAL OH(AEIOUY)- H
-! SAL OR(AEIOUY)- R
-! SAL O(HR) _
-! SAL PH F
-! SAL PN^ N
-! SAL PP- _
-! SAL P P
-! SAL Q K
-! SAL RH^ R
-! SAL ROUGH^ RF
-! SAL RR- _
-! SAL R R
-! SAL SCH(EOU)- SK
-! SAL SC(IEY)- S
-! SAL SH X
-! SAL SI(AO)- X
-! SAL SS- _
-! SAL S S
-! SAL TI(AO)- X
-! SAL TH @
-! SAL TCH-- _
-! SAL TOUGH^ TF
-! SAL TT- _
-! SAL T T
-! SAL UH(AEIOUY)-^ *H
-! SAL UR(AEIOUY)-^ *R
-! SAL U(HR)^ *
-! SAL U^ *
-! SAL UH(AEIOUY)- H
-! SAL UR(AEIOUY)- R
-! SAL U(HR) _
-! SAL V^ W
-! SAL V F
-! SAL WR^ R
-! SAL WH^ W
-! SAL W(AEIOU)- W
-! SAL X^ S
-! SAL X KS
-! SAL Y(AEIOU)- Y
-! SAL ZZ- _
-! SAL Z S
*** en_GB.orig.dic Sun Jul 3 18:05:07 2005
--- en_GB.dic Sun Jul 3 18:19:25 2005
***************
diff --git a/runtime/spell/en/en_NZ.diff b/runtime/spell/en/en_NZ.diff
index 5c95622282..4e28fff4ed 100644
--- a/runtime/spell/en/en_NZ.diff
+++ b/runtime/spell/en/en_NZ.diff
@@ -1,11 +1,11 @@
*** en_NZ.orig.aff Fri Apr 15 13:20:36 2005
---- en_NZ.aff Sun Jul 3 17:11:34 2005
+--- en_NZ.aff Sun Jul 31 22:17:27 2005
***************
*** 7,9 ****
SET ISO8859-1
! TRY esiaénrtolcdugmphbyfvkw-'.zqjxSNRTLCGDMPHBEAUYOFIVKWöâôZQJXÅçèîêàïüäñ
REP 66
---- 7,19 ----
+--- 7,140 ----
SET ISO8859-1
! TRY esiaénrtolcdugmphbyfvkw-'.zqjxSNRTLCGDMPHBEAUYOFIVKWöâôZQJXÅçèîêàïüäñ
!
@@ -18,6 +18,127 @@
! RAR ?
! BAD !
!
+! MAP 9
+! MAP aàáâãäå
+! MAP eèéêë
+! MAP iìíîï
+! MAP oòóôõö
+! MAP uùúûü
+! MAP nñ
+! MAP cç
+! MAP yÿý
+! MAP sß
+!
+! # This comes from Aspell en_phonet.dat, version 1.1, 2000-01-07
+!
+! SAL AH(AEIOUY)-^ *H
+! SAL AR(AEIOUY)-^ *R
+! SAL A(HR)^ *
+! SAL A^ *
+! SAL AH(AEIOUY)- H
+! SAL AR(AEIOUY)- R
+! SAL A(HR) _
+! SAL À^ *
+! SAL Å^ *
+! SAL BB- _
+! SAL B B
+! SAL CQ- _
+! SAL CIA X
+! SAL CH X
+! SAL C(EIY)- S
+! SAL CK K
+! SAL COUGH^ KF
+! SAL CC< C
+! SAL C K
+! SAL DG(EIY) K
+! SAL DD- _
+! SAL D T
+! SAL É< E
+! SAL EH(AEIOUY)-^ *H
+! SAL ER(AEIOUY)-^ *R
+