• R/O
  • SSH

vim: 提交

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

修訂5eb1ac6f92ad40da9bbb585f5ff8fe003e85122c (tree)
時間2007-05-11 04:30:25
作者vimboss
Commitervimboss

Log Message

updated for version 7.1b

Change Summary

差異

diff -r 40943ccdf160 -r 5eb1ac6f92ad Contents
--- a/Contents Thu May 10 19:24:43 2007 +0000
+++ b/Contents Thu May 10 19:30:25 2007 +0000
@@ -9,10 +9,10 @@
99 messages, shows current file name in window title, on-line
1010 help, rectangular cut/paste, etc., etc., etc...
1111
12- Version 7.1a. Also runs under UNIX, MSDOS and other systems.
13- vim71art.tgz contains the documentation and syntax files.
14- vim71abin.tgz contains the binaries.
15- vim71asrc.tgz contains the sources.
12+ Version 7.1b. Also runs under UNIX, MSDOS and other systems.
13+ vim71brt.tgz contains the documentation and syntax files.
14+ vim71bbin.tgz contains the binaries.
15+ vim71bsrc.tgz contains the sources.
1616 Author: Bram Moolenaar et al.
1717
1818
diff -r 40943ccdf160 -r 5eb1ac6f92ad runtime/doc/howto.txt
--- a/runtime/doc/howto.txt Thu May 10 19:24:43 2007 +0000
+++ b/runtime/doc/howto.txt Thu May 10 19:30:25 2007 +0000
@@ -1,4 +1,4 @@
1-*howto.txt* For Vim version 7.1a. Last change: 2006 Apr 02
1+*howto.txt* For Vim version 7.1b. Last change: 2006 Apr 02
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
diff -r 40943ccdf160 -r 5eb1ac6f92ad runtime/doc/quickfix.txt
--- a/runtime/doc/quickfix.txt Thu May 10 19:24:43 2007 +0000
+++ b/runtime/doc/quickfix.txt Thu May 10 19:30:25 2007 +0000
@@ -1,4 +1,4 @@
1-*quickfix.txt* For Vim version 7.1a. Last change: 2007 Apr 17
1+*quickfix.txt* For Vim version 7.1b. Last change: 2007 May 10
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -715,6 +715,17 @@
715715 For writing a compiler plugin, see |write-compiler-plugin|.
716716
717717
718+GCC *quickfix-gcc* *compiler-gcc*
719+
720+There's one variable you can set for the GCC compiler:
721+
722+g:compiler_gcc_ignore_unmatched_lines
723+ Ignore lines that don't match any patterns
724+ defined for GCC. Useful if output from
725+ commands run from make are generating false
726+ positives.
727+
728+
718729 MANX AZTEC C *quickfix-manx* *compiler-manx*
719730
720731 To use Vim with Manx's Aztec C compiler on the Amiga you should do the
diff -r 40943ccdf160 -r 5eb1ac6f92ad runtime/indent/readline.vim
--- a/runtime/indent/readline.vim Thu May 10 19:24:43 2007 +0000
+++ b/runtime/indent/readline.vim Thu May 10 19:30:25 2007 +0000
@@ -1,7 +1,7 @@
11 " Vim indent file
2-" Language: readline configuration file
2+" Language: readline configuration file
33 " Maintainer: Nikolai Weibull <now@bitwi.se>
4-" Latest Revision: 2006-04-19
4+" Latest Revision: 2006-12-20
55
66 if exists("b:did_indent")
77 finish
@@ -10,6 +10,7 @@
1010
1111 setlocal indentexpr=GetReadlineIndent()
1212 setlocal indentkeys=!^F,o,O,=$else,=$endif
13+setlocal nosmartindent
1314
1415 if exists("*GetReadlineIndent")
1516 finish
diff -r 40943ccdf160 -r 5eb1ac6f92ad runtime/plugin/getscriptPlugin.vim
--- a/runtime/plugin/getscriptPlugin.vim Thu May 10 19:24:43 2007 +0000
+++ b/runtime/plugin/getscriptPlugin.vim Thu May 10 19:30:25 2007 +0000
@@ -5,7 +5,7 @@
55 " Installing: :help glvs-install
66 " Usage: :help glvs
77 "
8-" GetLatestVimScripts: 642 1 :AutoInstall: GetLatestVimScripts.vim
8+" GetLatestVimScripts: 642 1 :AutoInstall: getscript.vim
99 "
1010 " (Rom 15:11 WEB) Again, "Praise the Lord, all you Gentiles! Let
1111 " all the peoples praise Him."
diff -r 40943ccdf160 -r 5eb1ac6f92ad src/eval.c
--- a/src/eval.c Thu May 10 19:24:43 2007 +0000
+++ b/src/eval.c Thu May 10 19:30:25 2007 +0000
@@ -1906,7 +1906,7 @@
19061906 }
19071907
19081908 /*
1909- * Skip one (assignable) variable name, includig @r, $VAR, &option, d.key,
1909+ * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
19101910 * l[idx].
19111911 */
19121912 static char_u *
@@ -4506,8 +4506,8 @@
45064506 /*
45074507 * Handle sixth level expression:
45084508 * number number constant
4509- * "string" string contstant
4510- * 'string' literal string contstant
4509+ * "string" string constant
4510+ * 'string' literal string constant
45114511 * &option-name option value
45124512 * @r register contents
45134513 * identifier variable value
@@ -7018,7 +7018,7 @@
70187018 char f_min_argc; /* minimal number of arguments */
70197019 char f_max_argc; /* maximal number of arguments */
70207020 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
7021- /* implemenation of function */
7021+ /* implementation of function */
70227022 } functions[] =
70237023 {
70247024 {"add", 2, 2, f_add},
@@ -20668,7 +20668,7 @@
2066820668
2066920669 /*
2067020670 * Get the short pathname of a file.
20671- * Returns 1 on success. *fnamelen is 0 for nonexistant path.
20671+ * Returns 1 on success. *fnamelen is 0 for nonexistent path.
2067220672 */
2067320673 static int
2067420674 get_short_pathname(fnamep, bufp, fnamelen)
@@ -20735,7 +20735,7 @@
2073520735
2073620736 do
2073720737 {
20738- /* Go back one path-seperator */
20738+ /* Go back one path-separator */
2073920739 while (s > pbuf2 && !after_pathsep(pbuf2, s + 1))
2074020740 {
2074120741 --s;
@@ -20745,7 +20745,7 @@
2074520745 if (s <= pbuf2)
2074620746 break;
2074720747
20748- /* Remeber the character that is about to be blatted */
20748+ /* Remember the character that is about to be splatted */
2074920749 ch = *s;
2075020750 *s = 0; /* get_short_pathname requires a null-terminated string */
2075120751
@@ -20761,7 +20761,7 @@
2076120761
2076220762 if (plen > 0)
2076320763 {
20764- /* Remeber the length of the new string. */
20764+ /* Remember the length of the new string. */
2076520765 *fnamelen = len = plen + slen;
2076620766 vim_free(*bufp);
2076720767 if (len > len2)
diff -r 40943ccdf160 -r 5eb1ac6f92ad src/gui_beval.c
--- a/src/gui_beval.c Thu May 10 19:24:43 2007 +0000
+++ b/src/gui_beval.c Thu May 10 19:30:25 2007 +0000
@@ -68,7 +68,7 @@
6868
6969 /*
7070 * Temporarily change the curbuf, so that we can determine whether
71- * the buffer-local balloonexpr option was set insecurly.
71+ * the buffer-local balloonexpr option was set insecurely.
7272 */
7373 save_curbuf = curbuf;
7474 curbuf = wp->w_buffer;
@@ -250,7 +250,7 @@
250250
251251 #if defined(FEAT_BEVAL_TIP) || defined(PROTO)
252252 /*
253- * Destroy a ballon-eval and free its associated memory.
253+ * Destroy a balloon-eval and free its associated memory.
254254 */
255255 void
256256 gui_mch_destroy_beval_area(beval)
@@ -741,7 +741,7 @@
741741
742742 /*
743743 * The real event handler. Called by pointerEventEH() whenever an event we are
744- * interested in ocurrs.
744+ * interested in occurs.
745745 */
746746
747747 static void
diff -r 40943ccdf160 -r 5eb1ac6f92ad src/if_mzsch.c
--- a/src/if_mzsch.c Thu May 10 19:24:43 2007 +0000
+++ b/src/if_mzsch.c Thu May 10 19:30:25 2007 +0000
@@ -2027,7 +2027,7 @@
20272027 extra = 0;
20282028
20292029 check_line_range(lo, buf->buf); /* inclusive */
2030- check_line_range(hi - 1, buf->buf); /* exclisive */
2030+ check_line_range(hi - 1, buf->buf); /* exclusive */
20312031
20322032 if (SCHEME_FALSEP(line_list) || SCHEME_NULLP(line_list))
20332033 {
diff -r 40943ccdf160 -r 5eb1ac6f92ad src/memline.c
--- a/src/memline.c Thu May 10 19:24:43 2007 +0000
+++ b/src/memline.c Thu May 10 19:30:25 2007 +0000
@@ -152,7 +152,7 @@
152152 *
153153 * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!!
154154 *
155- * This block is built up of single bytes, to make it portable accros
155+ * This block is built up of single bytes, to make it portable across
156156 * different machines. b0_magic_* is used to check the byte order and size of
157157 * variables, because the rest of the swap file is not portable.
158158 */
diff -r 40943ccdf160 -r 5eb1ac6f92ad src/os_amiga.c
--- a/src/os_amiga.c Thu May 10 19:24:43 2007 +0000
+++ b/src/os_amiga.c Thu May 10 19:30:25 2007 +0000
@@ -217,7 +217,7 @@
217217 long msec;
218218 int ignoreinput;
219219 {
220-#ifndef LATTICE /* SAS declares void Delay(UNLONG) */
220+#ifndef LATTICE /* SAS declares void Delay(ULONG) */
221221 void Delay __ARGS((long));
222222 #endif
223223
@@ -1145,7 +1145,7 @@
11451145
11461146 static long
11471147 dos_packet(pid, action, arg)
1148- struct MsgPort *pid; /* process indentifier ... (handlers message port) */
1148+ struct MsgPort *pid; /* process identifier ... (handlers message port) */
11491149 long action, /* packet type ... (what you want handler to do) */
11501150 arg; /* single argument */
11511151 {
Show on old repository browser