updated for version 7.0070

This commit is contained in:
Bram Moolenaar
2005-04-23 20:42:23 +00:00
parent 54ff3419c7
commit 8fef2ad609
10 changed files with 5343 additions and 397 deletions
+2 -1
View File
@@ -2,7 +2,7 @@
" Compiler: splint/lclint (C source code checker)
" Maintainer: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
" Splint Home: http://www.splint.org/
" Last Change: 2004 Oct 02
" Last Change: 2005 Apr 21
" $Revision$
if exists("current_compiler")
@@ -53,6 +53,7 @@ CompilerSet makeprg=splint\ %
CompilerSet errorformat=%OLCLint*m,
\%OSplint*m,
\%f(%l\\,%c):\ %m,
\%*[\ ]%f:%l:%c:\ %m,
\%*[\ ]%f:%l:\ %m,
\%*[^\"]\"%f\"%*\\D%l:\ %m,
+2 -2
View File
@@ -1,4 +1,4 @@
*usr_03.txt* For Vim version 7.0aa. Last change: 2005 Apr 01
*usr_03.txt* For Vim version 7.0aa. Last change: 2005 Apr 22
VIM USER MANUAL - by Bram Moolenaar
@@ -601,7 +601,7 @@ The ":jumps" command gives a list of positions you jumped to. The entry which
you used last is marked with a ">".
NAMED MARKS
NAMED MARKS *bookmark*
Vim enables you to place your own marks in the text. The command "ma" marks
the place under the cursor as mark a. You can place 26 marks (a through z) in
Binary file not shown.
+5
View File
@@ -2390,6 +2390,11 @@ get_winopts(buf)
if (p_fdls >= 0)
curwin->w_p_fdl = p_fdls;
#endif
#ifdef FEAT_SYN_HL
if (curwin->w_p_spell && *buf->b_p_spl != NUL)
did_set_spelllang(buf);
#endif
}
/*
+5
View File
@@ -21,7 +21,12 @@ int vim_iswordc __ARGS((int c));
int vim_iswordp __ARGS((char_u *p));
int vim_iswordc_buf __ARGS((char_u *p, buf_T *buf));
void init_spell_chartab __ARGS((void));
int set_spell_chartab __ARGS((char_u *fol, char_u *low, char_u *upp));
int set_spell_charflags __ARGS((char_u *flags, int cnt, char_u *upp));
void write_spell_chartab __ARGS((FILE *fd));
int spell_iswordc __ARGS((char_u *p));
int spell_isupper __ARGS((int c));
int spell_casefold __ARGS((char_u *p, int len, char_u *buf, int buflen));
int vim_isfilec __ARGS((int c));
int vim_isprintc __ARGS((int c));
int vim_isprintc_strict __ARGS((int c));
+495 -394
View File
File diff suppressed because it is too large Load Diff
+2275
View File
File diff suppressed because it is too large Load Diff
+87
View File
@@ -0,0 +1,87 @@
*** en_CA.orig.aff Fri Apr 15 13:20:36 2005
--- en_CA.aff Sat Apr 23 19:57:43 2005
***************
*** 3,4 ****
--- 3,8 ----
+ FOL àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ
+ LOW àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ
+ UPP ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ
+
PFX A Y 1
***************
*** 30,33 ****
SFX N e ion e
! SFX N y ication y
! SFX N 0 en [^ey]
--- 34,37 ----
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]
--- 44,46 ----
SFX H y ieth y
! SFX H 0 th [^y]
***************
*** 47,49 ****
SFX G e ing e
! SFX G 0 ing [^e]
--- 51,53 ----
SFX G e ing e
! SFX G 0 ing [^e]
*** en_CA.orig.dic Sat Apr 16 14:40:06 2005
--- en_CA.dic Tue Apr 19 22:19:46 2005
***************
*** 46,48 ****
R/G
- S
easternmost
--- 46,47 ----
***************
*** 89,91 ****
r/GVTJ
! s/FK
fatting
--- 88,90 ----
r/GVTJ
! cons
fatting
***************
*** 13669,13671 ****
engross/LDRSG
! hobbit
certainty/MUS
--- 13668,13670 ----
engross/LDRSG
! hobbit/MS
certainty/MUS
***************
*** 36707,36708 ****
--- 36706,36708 ----
Moody/M
+ Moolenaar/M
Bresenham/M
***************
*** 50272,50273 ****
--- 50272,50274 ----
Dutch/M
+ Farsi
Sharon/M
***************
*** 52565,52567 ****
hatchery/MS
! vim/SM
compatriot/MS
--- 52566,52568 ----
hatchery/MS
! Vim/SM
compatriot/MS
+2468
View File
File diff suppressed because it is too large Load Diff
+4
View File
@@ -410,6 +410,10 @@ typedef unsigned short u8char_T;
#include <assert.h>
#ifdef HAVE_WCTYPE_H
# include <wctype.h>
#endif
/* ================ end of the header file puzzle =============== */
/*