diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-10 18:32:52 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-10 18:32:52 +0000 |
commit | 335437bb249a46c51109251ff50f1b9aa8828fc4 (patch) | |
tree | 7abe7d29b30035f0f04977ff4e70562a9bef2f9a | |
parent | 79166c430b3bb0e15f1b96933636897b5a02a816 (diff) | |
download | vim-335437bb249a46c51109251ff50f1b9aa8828fc4.zip |
updated for version 7.1b
-rw-r--r-- | runtime/indent/rst.vim | 7 | ||||
-rw-r--r-- | runtime/indent/yacc.vim | 5 | ||||
-rw-r--r-- | runtime/spell/en.latin1.spl | bin | 570117 -> 570117 bytes | |||
-rw-r--r-- | src/structs.h | 6 |
4 files changed, 10 insertions, 8 deletions
diff --git a/runtime/indent/rst.vim b/runtime/indent/rst.vim index e6fe2b554..f936c9b2f 100644 --- a/runtime/indent/rst.vim +++ b/runtime/indent/rst.vim @@ -1,7 +1,7 @@ " Vim indent file -" Language: reStructuredText Documentation Format +" Language: reStructuredText Documentation Format " Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2006-04-19 +" Latest Revision: 2006-12-20 if exists("b:did_indent") finish @@ -10,6 +10,7 @@ let b:did_indent = 1 setlocal indentexpr=GetRSTIndent() setlocal indentkeys=!^F,o,O +setlocal nosmartindent if exists("*GetRSTIndent") finish @@ -40,7 +41,7 @@ function GetRSTIndent() let ind = ind - 2 elseif line =~ '^\s*\d\+\.\s' let ind = ind - matchend(substitute(line, '^\s*', '', ''), - \ '\d\+\.\s\+') + \ '\d\+\.\s\+') elseif line =~ '^\s*\.\.' let ind = ind - 3 else diff --git a/runtime/indent/yacc.vim b/runtime/indent/yacc.vim index 597a2cc83..2ab7d7b38 100644 --- a/runtime/indent/yacc.vim +++ b/runtime/indent/yacc.vim @@ -1,7 +1,7 @@ " Vim indent file -" Language: YACC input file +" Language: YACC input file " Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2006-04-19 +" Latest Revision: 2006-12-20 " Only load this indent file when no other was loaded. if exists("b:did_indent") @@ -12,6 +12,7 @@ let b:did_indent = 1 setlocal indentexpr=GetYaccIndent() setlocal indentkeys=!^F,o,O +setlocal nosmartindent " Only define the function once. if exists("*GetYaccIndent") diff --git a/runtime/spell/en.latin1.spl b/runtime/spell/en.latin1.spl Binary files differindex bdf0c0943..d24b79024 100644 --- a/runtime/spell/en.latin1.spl +++ b/runtime/spell/en.latin1.spl diff --git a/src/structs.h b/src/structs.h index 64bbb96bc..d531f4e35 100644 --- a/src/structs.h +++ b/src/structs.h @@ -265,7 +265,7 @@ typedef struct } visualinfo_T; /* - * stuctures used for undo + * structures used for undo */ typedef struct u_entry u_entry_T; @@ -307,7 +307,7 @@ struct u_header #define UH_EMPTYBUF 0x02 /* buffer was empty */ /* - * stuctures used in undo.c + * structures used in undo.c */ #if SIZEOF_INT > 2 # define ALIGN_LONG /* longword alignment and use filler byte */ @@ -1946,7 +1946,7 @@ struct window_S * entry 2: newest */ taggy_T w_tagstack[TAGSTACKSIZE]; /* the tag stack */ - int w_tagstackidx; /* idx just below activ entry */ + int w_tagstackidx; /* idx just below active entry */ int w_tagstacklen; /* number of tags on stack */ /* |