Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
8db7318c
Commit
8db7318c
authored
19 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0087
parent
520470a9
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/spell.c
+28
-5
28 additions, 5 deletions
src/spell.c
with
28 additions
and
5 deletions
src/spell.c
+
28
−
5
View file @
8db7318c
...
...
@@ -1956,7 +1956,9 @@ struct wordnode_S
typedef
struct
spellinfo_S
{
wordnode_T
*
si_foldroot
;
/* tree with case-folded words */
long
si_foldwcount
;
/* nr of words in si_foldroot */
wordnode_T
*
si_keeproot
;
/* tree with keep-case words */
long
si_keepwcount
;
/* nr of words in si_keeproot */
sblock_T
*
si_blocks
;
/* memory blocks used */
int
si_ascii
;
/* handling only ASCII words */
int
si_add
;
/* addition file */
...
...
@@ -2012,7 +2014,8 @@ spell_read_aff(fname, spin)
char_u
rline
[
MAXLINELEN
];
char_u
*
line
;
char_u
*
pc
=
NULL
;
char_u
*
(
items
[
6
]);
#define MAXITEMCNT 7
char_u
*
(
items
[
MAXITEMCNT
]);
int
itemcnt
;
char_u
*
p
;
int
lnum
=
0
;
...
...
@@ -2109,7 +2112,7 @@ spell_read_aff(fname, spin)
++
p
;
if
(
*
p
==
NUL
)
break
;
if
(
itemcnt
==
6
)
/* too many items */
if
(
itemcnt
==
MAXITEMCNT
)
/* too many items */
break
;
items
[
itemcnt
++
]
=
p
;
while
(
*
p
>
' '
)
/* skip until white space or CR/NL */
...
...
@@ -2162,8 +2165,14 @@ spell_read_aff(fname, spin)
else
if
((
STRCMP
(
items
[
0
],
"PFX"
)
==
0
||
STRCMP
(
items
[
0
],
"SFX"
)
==
0
)
&&
aff_todo
==
0
&&
itemcnt
=
=
4
)
&&
itemcnt
>
=
4
)
{
/* Myspell allows extra text after the item, but that might
* mean mistakes go unnoticed. Require a comment-starter. */
if
(
itemcnt
>
4
&&
*
items
[
4
]
!=
'#'
)
smsg
((
char_u
*
)
_
(
"Trailing text in %s line %d: %s"
),
fname
,
lnum
,
items
[
4
]);
/* New affix letter. */
cur_aff
=
(
affheader_T
*
)
getroom
(
&
spin
->
si_blocks
,
sizeof
(
affheader_T
));
...
...
@@ -2197,10 +2206,16 @@ spell_read_aff(fname, spin)
||
STRCMP
(
items
[
0
],
"SFX"
)
==
0
)
&&
aff_todo
>
0
&&
STRCMP
(
cur_aff
->
ah_key
,
items
[
1
])
==
0
&&
itemcnt
=
=
5
)
&&
itemcnt
>
=
5
)
{
affentry_T
*
aff_entry
;
/* Myspell allows extra text after the item, but that might
* mean mistakes go unnoticed. Require a comment-starter. */
if
(
itemcnt
>
5
&&
*
items
[
5
]
!=
'#'
)
smsg
((
char_u
*
)
_
(
"Trailing text in %s line %d: %s"
),
fname
,
lnum
,
items
[
5
]);
/* New item for an affix letter. */
--
aff_todo
;
aff_entry
=
(
affentry_T
*
)
getroom
(
&
spin
->
si_blocks
,
...
...
@@ -2477,6 +2492,9 @@ spell_read_dic(fname, spin, affile)
/* The hashtable is only used to detect duplicated words. */
hash_init
(
&
ht
);
spin
->
si_foldwcount
=
0
;
spin
->
si_keepwcount
=
0
;
if
(
spin
->
si_verbose
||
p_verbose
>
2
)
{
if
(
!
spin
->
si_verbose
)
...
...
@@ -2515,7 +2533,8 @@ spell_read_dic(fname, spin, affile)
if
(
spin
->
si_verbose
&&
(
lnum
&
0x3ff
)
==
0
)
{
vim_snprintf
((
char
*
)
message
,
sizeof
(
message
),
_
(
"line %6d - %s"
),
lnum
,
line
);
_
(
"line %6d, word %6d - %s"
),
lnum
,
spin
->
si_foldwcount
+
spin
->
si_keepwcount
,
line
);
msg_start
();
msg_outtrans_attr
(
message
,
0
);
msg_clr_eos
();
...
...
@@ -3045,10 +3064,14 @@ store_word(word, spin, flags, region)
(
void
)
spell_casefold
(
word
,
len
,
foldword
,
MAXWLEN
);
res
=
tree_add_word
(
foldword
,
spin
->
si_foldroot
,
ct
|
flags
,
region
,
&
spin
->
si_blocks
);
++
spin
->
si_foldwcount
;
if
(
res
==
OK
&&
(
ct
==
WF_KEEPCAP
||
flags
&
WF_KEEPCAP
))
{
res
=
tree_add_word
(
word
,
spin
->
si_keeproot
,
flags
,
region
,
&
spin
->
si_blocks
);
++
spin
->
si_keepwcount
;
}
return
res
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment