annotate src/version.c @ 8863:e1b84109506a v7.4.1719

commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 8 17:07:19 2016 +0200 patch 7.4.1719 Problem: Leaking memory when there is a cycle involving a job and a partial. Solution: Add a copyID to job and channel. Set references in items referred by them. Go through all jobs and channels to find unreferenced items. Also, decrement reference counts when garbage collecting.
author Christian Brabandt <cb@256bit.org>
date Fri, 08 Apr 2016 17:15:06 +0200
parents 45fe799c9672
children be36707a661a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 /* vi:set ts=8 sts=4 sw=4:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 #ifdef AMIGA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 # include <time.h> /* for time() */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 * It has been changed beyond recognition since then.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 *
26
404aac550f35 updated for version 7.0017
vimboss
parents: 14
diff changeset
20 * Differences between version 6.x and 7.x can be found with ":help version7".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 * Differences between version 5.x and 6.x can be found with ":help version6".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 * Differences between version 4.x and 5.x can be found with ":help version5".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 * Differences between version 3.0 and 4.x can be found with ":help version4".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 * All the remarks about older versions have been removed, they are not very
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 * interesting.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 #include "version.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29
378
6b49757d378c updated for version 7.0098
vimboss
parents: 170
diff changeset
30 char *Version = VIM_VERSION_SHORT;
6b49757d378c updated for version 7.0098
vimboss
parents: 170
diff changeset
31 static char *mediumVersion = VIM_VERSION_MEDIUM;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 #if defined(HAVE_DATE_TIME) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 # if (defined(VMS) && defined(VAXC)) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 + sizeof(__TIME__) + 3];
4147
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
37
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
39 make_version(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 * Construct the long version string. Necessary because
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 * VAX C can't catenate strings in the preprocessor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 strcpy(longVersion, VIM_VERSION_LONG_DATE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 strcat(longVersion, __DATE__);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 strcat(longVersion, " ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 strcat(longVersion, __TIME__);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49 strcat(longVersion, ")");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 char *longVersion = VIM_VERSION_LONG;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
58 static void list_features(void);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
59 static void version_msg(char *s);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 static char *(features[]) =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 {
5316
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
63 #ifdef HAVE_ACL
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
64 "+acl",
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
65 #else
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
66 "-acl",
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
67 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 #ifdef AMIGA /* only for Amiga systems */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 # ifdef FEAT_ARP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 "+ARP",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 "-ARP",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 #ifdef FEAT_ARABIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 "+arabic",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 "-arabic",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 #ifdef FEAT_AUTOCMD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 "+autocmd",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 "-autocmd",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 #ifdef FEAT_BEVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 "+balloon_eval",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 "-balloon_eval",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 #ifdef FEAT_BROWSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 "+browse",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 "-browse",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 #ifdef NO_BUILTIN_TCAPS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 "-builtin_terms",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 #ifdef SOME_BUILTIN_TCAPS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 "+builtin_terms",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 #ifdef ALL_BUILTIN_TCAPS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 "++builtin_terms",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 #ifdef FEAT_BYTEOFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 "+byte_offset",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 "-byte_offset",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 #endif
8493
caed4b2d305f commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents: 8491
diff changeset
109 #ifdef FEAT_JOB_CHANNEL
7759
39be49fd70d9 commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents: 7757
diff changeset
110 "+channel",
39be49fd70d9 commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents: 7757
diff changeset
111 #else
39be49fd70d9 commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents: 7757
diff changeset
112 "-channel",
39be49fd70d9 commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents: 7757
diff changeset
113 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114 #ifdef FEAT_CINDENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115 "+cindent",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 "-cindent",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 #ifdef FEAT_CLIENTSERVER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 "+clientserver",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 "-clientserver",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 #ifdef FEAT_CLIPBOARD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 "+clipboard",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 "-clipboard",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129 #ifdef FEAT_CMDL_COMPL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 "+cmdline_compl",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 "-cmdline_compl",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 #ifdef FEAT_CMDHIST
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 "+cmdline_hist",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137 "-cmdline_hist",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 #ifdef FEAT_CMDL_INFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 "+cmdline_info",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142 "-cmdline_info",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144 #ifdef FEAT_COMMENTS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 "+comments",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
146 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 "-comments",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148 #endif
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
149 #ifdef FEAT_CONCEAL
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
150 "+conceal",
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
151 #else
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
152 "-conceal",
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
153 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 #ifdef FEAT_CRYPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 "+cryptv",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 "-cryptv",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 "+cscope",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 "-cscope",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 #endif
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
164 #ifdef FEAT_CURSORBIND
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
165 "+cursorbind",
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
166 #else
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
167 "-cursorbind",
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
168 #endif
647
19106f131c87 updated for version 7.0188
vimboss
parents: 615
diff changeset
169 #ifdef CURSOR_SHAPE
19106f131c87 updated for version 7.0188
vimboss
parents: 615
diff changeset
170 "+cursorshape",
19106f131c87 updated for version 7.0188
vimboss
parents: 615
diff changeset
171 #else
19106f131c87 updated for version 7.0188
vimboss
parents: 615
diff changeset
172 "-cursorshape",
19106f131c87 updated for version 7.0188
vimboss
parents: 615
diff changeset
173 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 #if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 "+dialog_con_gui",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 # if defined(FEAT_CON_DIALOG)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 "+dialog_con",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 # if defined(FEAT_GUI_DIALOG)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 "+dialog_gui",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
183 "-dialog",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 "+diff",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 "-diff",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 #ifdef FEAT_DIGRAPHS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 "+digraphs",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 "-digraphs",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 #endif
6110
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
197 #ifdef FEAT_GUI_W32
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
198 # ifdef FEAT_DIRECTX
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
199 "+directx",
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
200 # else
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
201 "-directx",
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
202 # endif
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
203 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 #ifdef FEAT_DND
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 "+dnd",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 "-dnd",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 #ifdef EBCDIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 "+ebcdic",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 "-ebcdic",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 "+emacs_tags",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 "-emacs_tags",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 #ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 "+eval",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 "-eval",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 "+ex_extra",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 #ifdef FEAT_SEARCH_EXTRA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 "+extra_search",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 "-extra_search",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 #ifdef FEAT_FKMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 "+farsi",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 "-farsi",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 #ifdef FEAT_SEARCHPATH
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
236 "+file_in_path",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 "-file_in_path",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
240 #ifdef FEAT_FIND_ID
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 "+find_in_path",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243 "-find_in_path",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
244 #endif
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1617
diff changeset
245 #ifdef FEAT_FLOAT
82b5078be2dd updated for version 7.2a
vimboss
parents: 1617
diff changeset
246 "+float",
82b5078be2dd updated for version 7.2a
vimboss
parents: 1617
diff changeset
247 #else
82b5078be2dd updated for version 7.2a
vimboss
parents: 1617
diff changeset
248 "-float",
82b5078be2dd updated for version 7.2a
vimboss
parents: 1617
diff changeset
249 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 "+folding",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 "-folding",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 #ifdef FEAT_FOOTER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 "+footer",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 "-footer",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260 /* only interesting on Unix systems */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 #if !defined(USE_SYSTEM) && defined(UNIX)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262 "+fork()",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 #ifdef FEAT_GETTEXT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 # ifdef DYNAMIC_GETTEXT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266 "+gettext/dyn",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268 "+gettext",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271 "-gettext",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 #ifdef FEAT_HANGULIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 "+hangul_input",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 "-hangul_input",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 # ifdef DYNAMIC_ICONV
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 "+iconv/dyn",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282 "+iconv",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 "-iconv",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 #ifdef FEAT_INS_EXPAND
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 "+insert_expand",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 "-insert_expand",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 #endif
8493
caed4b2d305f commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents: 8491
diff changeset
292 #ifdef FEAT_JOB_CHANNEL
7957
b74549818500 commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents: 7955
diff changeset
293 "+job",
b74549818500 commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents: 7955
diff changeset
294 #else
b74549818500 commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents: 7955
diff changeset
295 "-job",
b74549818500 commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents: 7955
diff changeset
296 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 #ifdef FEAT_JUMPLIST
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 "+jumplist",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300 "-jumplist",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
302 #ifdef FEAT_KEYMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 "+keymap",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305 "-keymap",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 #ifdef FEAT_LANGMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 "+langmap",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 "-langmap",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 #ifdef FEAT_LIBCALL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
313 "+libcall",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 "-libcall",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
316 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
317 #ifdef FEAT_LINEBREAK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
318 "+linebreak",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 "-linebreak",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
322 #ifdef FEAT_LISP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
323 "+lispindent",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
324 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
325 "-lispindent",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
326 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
327 #ifdef FEAT_LISTCMDS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
328 "+listcmds",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
329 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
330 "-listcmds",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
331 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
332 #ifdef FEAT_LOCALMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333 "+localmap",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
334 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
335 "-localmap",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
336 #endif
2320
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
337 #ifdef FEAT_LUA
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
338 # ifdef DYNAMIC_LUA
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
339 "+lua/dyn",
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
340 # else
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
341 "+lua",
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
342 # endif
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
343 #else
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
344 "-lua",
966a5609669e Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents: 2275
diff changeset
345 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346 #ifdef FEAT_MENU
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
347 "+menu",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
348 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349 "-menu",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 #ifdef FEAT_SESSION
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 "+mksession",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354 "-mksession",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 #ifdef FEAT_MODIFY_FNAME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
357 "+modify_fname",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 "-modify_fname",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
361 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 "+mouse",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 # ifdef FEAT_MOUSESHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 "+mouseshape",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366 "-mouseshape",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 "-mouse",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 #endif
3898
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
371
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 #if defined(UNIX) || defined(VMS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 # ifdef FEAT_MOUSE_DEC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 "+mouse_dec",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 "-mouse_dec",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378 # ifdef FEAT_MOUSE_GPM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
379 "+mouse_gpm",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381 "-mouse_gpm",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 # ifdef FEAT_MOUSE_JSB
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384 "+mouse_jsbterm",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 "-mouse_jsbterm",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
388 # ifdef FEAT_MOUSE_NET
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
389 "+mouse_netterm",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
390 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
391 "-mouse_netterm",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
393 #endif
3898
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
394
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
395 #ifdef __QNX__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
396 # ifdef FEAT_MOUSE_PTERM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
397 "+mouse_pterm",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 "-mouse_pterm",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401 #endif
3898
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
402
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
403 #if defined(UNIX) || defined(VMS)
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
404 # ifdef FEAT_MOUSE_SGR
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
405 "+mouse_sgr",
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
406 # else
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
407 "-mouse_sgr",
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
408 # endif
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
409 # ifdef FEAT_SYSMOUSE
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
410 "+mouse_sysmouse",
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
411 # else
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
412 "-mouse_sysmouse",
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
413 # endif
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
414 # ifdef FEAT_MOUSE_URXVT
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
415 "+mouse_urxvt",
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
416 # else
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
417 "-mouse_urxvt",
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
418 # endif
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
419 # ifdef FEAT_MOUSE_XTERM
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
420 "+mouse_xterm",
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
421 # else
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
422 "-mouse_xterm",
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
423 # endif
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
424 #endif
0aa74f2f50a8 updated for version 7.3.705
Bram Moolenaar <bram@vim.org>
parents: 3896
diff changeset
425
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
426 #ifdef FEAT_MBYTE_IME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427 # ifdef DYNAMIC_IME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
428 "+multi_byte_ime/dyn",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
430 "+multi_byte_ime",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
431 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
432 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
433 # ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
434 "+multi_byte",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
435 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
436 "-multi_byte",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
437 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 #ifdef FEAT_MULTI_LANG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 "+multi_lang",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 "-multi_lang",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443 #endif
14
946da5994c01 updated for version 7.0006
vimboss
parents: 11
diff changeset
444 #ifdef FEAT_MZSCHEME
132
d6009de12681 updated for version 7.0044
vimboss
parents: 68
diff changeset
445 # ifdef DYNAMIC_MZSCHEME
d6009de12681 updated for version 7.0044
vimboss
parents: 68
diff changeset
446 "+mzscheme/dyn",
d6009de12681 updated for version 7.0044
vimboss
parents: 68
diff changeset
447 # else
14
946da5994c01 updated for version 7.0006
vimboss
parents: 11
diff changeset
448 "+mzscheme",
132
d6009de12681 updated for version 7.0044
vimboss
parents: 68
diff changeset
449 # endif
14
946da5994c01 updated for version 7.0006
vimboss
parents: 11
diff changeset
450 #else
946da5994c01 updated for version 7.0006
vimboss
parents: 11
diff changeset
451 "-mzscheme",
946da5994c01 updated for version 7.0006
vimboss
parents: 11
diff changeset
452 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453 #ifdef FEAT_NETBEANS_INTG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 "+netbeans_intg",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 "-netbeans_intg",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
457 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
458 #ifdef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459 # ifdef FEAT_OLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 "+ole",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 "-ole",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 #endif
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8180
diff changeset
465 "+packages",
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466 #ifdef FEAT_PATH_EXTRA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 "+path_extra",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 "-path_extra",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 #ifdef FEAT_PERL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 # ifdef DYNAMIC_PERL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473 "+perl/dyn",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
474 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475 "+perl",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
476 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
477 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 "-perl",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479 #endif
2214
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
480 #ifdef FEAT_PERSISTENT_UNDO
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
481 "+persistent_undo",
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
482 #else
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
483 "-persistent_undo",
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
484 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
485 #ifdef FEAT_PRINTER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
486 # ifdef FEAT_POSTSCRIPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
487 "+postscript",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
488 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489 "-postscript",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
490 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
491 "+printer",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
492 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493 "-printer",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494 #endif
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 132
diff changeset
495 #ifdef FEAT_PROFILE
8c60f65311fa updated for version 7.0052
vimboss
parents: 132
diff changeset
496 "+profile",
8c60f65311fa updated for version 7.0052
vimboss
parents: 132
diff changeset
497 #else
8c60f65311fa updated for version 7.0052
vimboss
parents: 132
diff changeset
498 "-profile",
8c60f65311fa updated for version 7.0052
vimboss
parents: 132
diff changeset
499 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
500 #ifdef FEAT_PYTHON
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
501 # ifdef DYNAMIC_PYTHON
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
502 "+python/dyn",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 "+python",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507 "-python",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 #endif
2329
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
509 #ifdef FEAT_PYTHON3
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
510 # ifdef DYNAMIC_PYTHON3
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
511 "+python3/dyn",
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
512 # else
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
513 "+python3",
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
514 # endif
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
515 #else
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
516 "-python3",
ad2889f48843 Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents: 2320
diff changeset
517 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
518 #ifdef FEAT_QUICKFIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519 "+quickfix",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
520 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
521 "-quickfix",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 #endif
857
b933657f7c9d updated for version 7.0g01
vimboss
parents: 647
diff changeset
523 #ifdef FEAT_RELTIME
b933657f7c9d updated for version 7.0g01
vimboss
parents: 647
diff changeset
524 "+reltime",
b933657f7c9d updated for version 7.0g01
vimboss
parents: 647
diff changeset
525 #else
b933657f7c9d updated for version 7.0g01
vimboss
parents: 647
diff changeset
526 "-reltime",
b933657f7c9d updated for version 7.0g01
vimboss
parents: 647
diff changeset
527 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
528 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529 "+rightleft",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
530 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
531 "-rightleft",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
532 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
533 #ifdef FEAT_RUBY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
534 # ifdef DYNAMIC_RUBY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
535 "+ruby/dyn",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
536 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
537 "+ruby",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
538 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
539 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
540 "-ruby",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
541 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
542 #ifdef FEAT_SCROLLBIND
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
543 "+scrollbind",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
544 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
545 "-scrollbind",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
546 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 #ifdef FEAT_SIGNS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548 "+signs",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
550 "-signs",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 #ifdef FEAT_SMARTINDENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 "+smartindent",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
554 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
555 "-smartindent",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
556 #endif
1989
1fbbe04a950f updated for version 7.2-286
vimboss
parents: 1988
diff changeset
557 #ifdef STARTUPTIME
1fbbe04a950f updated for version 7.2-286
vimboss
parents: 1988
diff changeset
558 "+startuptime",
1fbbe04a950f updated for version 7.2-286
vimboss
parents: 1988
diff changeset
559 #else
1fbbe04a950f updated for version 7.2-286
vimboss
parents: 1988
diff changeset
560 "-startuptime",
1fbbe04a950f updated for version 7.2-286
vimboss
parents: 1988
diff changeset
561 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 #ifdef FEAT_STL_OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563 "+statusline",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565 "-statusline",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 #ifdef FEAT_SUN_WORKSHOP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 "+sun_workshop",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 "-sun_workshop",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
572 #ifdef FEAT_SYN_HL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573 "+syntax",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
574 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
575 "-syntax",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
576 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
577 /* only interesting on Unix systems */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
578 #if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
579 "+system()",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581 #ifdef FEAT_TAG_BINS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 "+tag_binary",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
584 "-tag_binary",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586 #ifdef FEAT_TAG_OLDSTATIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587 "+tag_old_static",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
588 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
589 "-tag_old_static",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
590 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
591 #ifdef FEAT_TAG_ANYWHITE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592 "+tag_any_white",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
593 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
594 "-tag_any_white",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
595 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
596 #ifdef FEAT_TCL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
597 # ifdef DYNAMIC_TCL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
598 "+tcl/dyn",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
599 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
600 "+tcl",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
601 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603 "-tcl",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 #if defined(UNIX) || defined(__EMX__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 /* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607 # ifdef TERMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 "+terminfo",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 "-terminfo",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 #else /* unix always includes termcap support */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 # ifdef HAVE_TGETENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 "+tgetent",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 "-tgetent",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 #ifdef FEAT_TERMRESPONSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 "+termresponse",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622 "-termresponse",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
623 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 #ifdef FEAT_TEXTOBJ
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
625 "+textobjects",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
626 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 "-textobjects",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628 #endif
8577
63dc856bd13d commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents: 8575
diff changeset
629 #ifdef FEAT_TIMERS
63dc856bd13d commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents: 8575
diff changeset
630 "+timers",
63dc856bd13d commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents: 8575
diff changeset
631 #else
63dc856bd13d commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents: 8575
diff changeset
632 "-timers",
63dc856bd13d commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents: 8575
diff changeset
633 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
634 #ifdef FEAT_TITLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
635 "+title",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
636 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
637 "-title",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
638 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
639 #ifdef FEAT_TOOLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
640 "+toolbar",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
641 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
642 "-toolbar",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
644 #ifdef FEAT_USR_CMDS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 "+user_commands",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 "-user_commands",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648 #endif
8643
24b43dd167eb commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents: 8641
diff changeset
649 #ifdef FEAT_WINDOWS
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 "+vertsplit",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 "-vertsplit",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654 #ifdef FEAT_VIRTUALEDIT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 "+virtualedit",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 "-virtualedit",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 "+visual",
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5732
diff changeset
660 #ifdef FEAT_VISUALEXTRA
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661 "+visualextra",
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5732
diff changeset
662 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 "-visualextra",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 #ifdef FEAT_VIMINFO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 "+viminfo",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 "-viminfo",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
669 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
670 #ifdef FEAT_VREPLACE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 "+vreplace",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 "-vreplace",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
675 #ifdef FEAT_WILDIGN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
676 "+wildignore",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
678 "-wildignore",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
679 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 #ifdef FEAT_WILDMENU
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 "+wildmenu",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 "-wildmenu",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 #ifdef FEAT_WINDOWS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 "+windows",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 "-windows",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
690 #ifdef FEAT_WRITEBACKUP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
691 "+writebackup",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 "-writebackup",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695 #if defined(UNIX) || defined(VMS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 # ifdef FEAT_X11
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 "+X11",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 "-X11",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 #ifdef FEAT_XFONTSET
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703 "+xfontset",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
705 "-xfontset",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
707 #ifdef FEAT_XIM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708 "+xim",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 "-xim",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
711 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712 #if defined(UNIX) || defined(VMS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713 # ifdef USE_XSMP_INTERACT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 "+xsmp_interact",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 # ifdef USE_XSMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 "+xsmp",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719 "-xsmp",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
720 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
721 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
722 # ifdef FEAT_XCLIPBOARD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723 "+xterm_clipboard",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 "-xterm_clipboard",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
726 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
727 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
728 #ifdef FEAT_XTERM_SAVE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 "+xterm_save",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
731 "-xterm_save",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733 #ifdef WIN3264
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
734 # ifdef FEAT_XPM_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
735 "+xpm_w32",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 "-xpm_w32",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 # endif
5316
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
739 #else
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
740 # ifdef HAVE_XPM
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
741 "+xpm",
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
742 # else
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
743 "-xpm",
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
744 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
745 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
746 NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
747 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
748
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
749 static int included_patches[] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
750 { /* Add new patch number below this line */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
751 /**/
8863
e1b84109506a commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents: 8861
diff changeset
752 1719,
e1b84109506a commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents: 8861
diff changeset
753 /**/
8861
45fe799c9672 commit https://github.com/vim/vim/commit/d56374e25df0b317b01423a01f158157faa647fa
Christian Brabandt <cb@256bit.org>
parents: 8859
diff changeset
754 1718,
45fe799c9672 commit https://github.com/vim/vim/commit/d56374e25df0b317b01423a01f158157faa647fa
Christian Brabandt <cb@256bit.org>
parents: 8859
diff changeset
755 /**/
8859
03250bc0c63a commit https://github.com/vim/vim/commit/0e4c1de5560c7f8b4cae539ec8cff0949daba3fc
Christian Brabandt <cb@256bit.org>
parents: 8857
diff changeset
756 1717,
03250bc0c63a commit https://github.com/vim/vim/commit/0e4c1de5560c7f8b4cae539ec8cff0949daba3fc
Christian Brabandt <cb@256bit.org>
parents: 8857
diff changeset
757 /**/
8857
df68de6b6f1c commit https://github.com/vim/vim/commit/baec5c1768098f9dd867b465aaabfdfb294f10c2
Christian Brabandt <cb@256bit.org>
parents: 8855
diff changeset
758 1716,
df68de6b6f1c commit https://github.com/vim/vim/commit/baec5c1768098f9dd867b465aaabfdfb294f10c2
Christian Brabandt <cb@256bit.org>
parents: 8855
diff changeset
759 /**/
8855
b76195a1e38e commit https://github.com/vim/vim/commit/ddecc25947dbdd689d5bcaed32f298a08abdd497
Christian Brabandt <cb@256bit.org>
parents: 8853
diff changeset
760 1715,
b76195a1e38e commit https://github.com/vim/vim/commit/ddecc25947dbdd689d5bcaed32f298a08abdd497
Christian Brabandt <cb@256bit.org>
parents: 8853
diff changeset
761 /**/
8853
48b4c1c284fb commit https://github.com/vim/vim/commit/54f1b7abf8c48b1dd997202258d1d0673ed4bd29
Christian Brabandt <cb@256bit.org>
parents: 8851
diff changeset
762 1714,
48b4c1c284fb commit https://github.com/vim/vim/commit/54f1b7abf8c48b1dd997202258d1d0673ed4bd29
Christian Brabandt <cb@256bit.org>
parents: 8851
diff changeset
763 /**/
8851
1b38596644ba commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents: 8849
diff changeset
764 1713,
1b38596644ba commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents: 8849
diff changeset
765 /**/
8849
9f40a379ff1e commit https://github.com/vim/vim/commit/49b27326447d0827c59c6cd201d58f65c1163086
Christian Brabandt <cb@256bit.org>
parents: 8847
diff changeset
766 1712,
9f40a379ff1e commit https://github.com/vim/vim/commit/49b27326447d0827c59c6cd201d58f65c1163086
Christian Brabandt <cb@256bit.org>
parents: 8847
diff changeset
767 /**/
8847
470ea7526cc6 commit https://github.com/vim/vim/commit/a742e084b677f76c67e9e52c4f9fb9ab24002e20
Christian Brabandt <cb@256bit.org>
parents: 8845
diff changeset
768 1711,
470ea7526cc6 commit https://github.com/vim/vim/commit/a742e084b677f76c67e9e52c4f9fb9ab24002e20
Christian Brabandt <cb@256bit.org>
parents: 8845
diff changeset
769 /**/
8845
210e767296d9 commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents: 8843
diff changeset
770 1710,
210e767296d9 commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents: 8843
diff changeset
771 /**/
8843
87a6a0d65788 commit https://github.com/vim/vim/commit/4c9ce053d9f2a94cd704342dd4c25670a5995cbd
Christian Brabandt <cb@256bit.org>
parents: 8841
diff changeset
772 1709,
87a6a0d65788 commit https://github.com/vim/vim/commit/4c9ce053d9f2a94cd704342dd4c25670a5995cbd
Christian Brabandt <cb@256bit.org>
parents: 8841
diff changeset
773 /**/
8841
f196308a2813 commit https://github.com/vim/vim/commit/2a6fa564a3b5061c14ff63b8b0f12801df0b0ac2
Christian Brabandt <cb@256bit.org>
parents: 8839
diff changeset
774 1708,
f196308a2813 commit https://github.com/vim/vim/commit/2a6fa564a3b5061c14ff63b8b0f12801df0b0ac2
Christian Brabandt <cb@256bit.org>
parents: 8839
diff changeset
775 /**/
8839
9fa567d13551 commit https://github.com/vim/vim/commit/0921ecff1c5a74541bad6c073e8ade32247403d8
Christian Brabandt <cb@256bit.org>
parents: 8837
diff changeset
776 1707,
9fa567d13551 commit https://github.com/vim/vim/commit/0921ecff1c5a74541bad6c073e8ade32247403d8
Christian Brabandt <cb@256bit.org>
parents: 8837
diff changeset
777 /**/
8837
e6c92db1e8b8 commit https://github.com/vim/vim/commit/e185c1efba3cb2611ac303c39a08e908497cbac4
Christian Brabandt <cb@256bit.org>
parents: 8835
diff changeset
778 1706,
e6c92db1e8b8 commit https://github.com/vim/vim/commit/e185c1efba3cb2611ac303c39a08e908497cbac4
Christian Brabandt <cb@256bit.org>
parents: 8835
diff changeset
779 /**/
8835
c1a5623cfc86 commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents: 8833
diff changeset
780 1705,
c1a5623cfc86 commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents: 8833
diff changeset
781 /**/
8833
dc10bd23f918 commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents: 8831
diff changeset
782 1704,
dc10bd23f918 commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents: 8831
diff changeset
783 /**/
8831
6f41d68aa68e commit https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
Christian Brabandt <cb@256bit.org>
parents: 8829
diff changeset
784 1703,
6f41d68aa68e commit https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
Christian Brabandt <cb@256bit.org>
parents: 8829
diff changeset
785 /**/
8829
a2c27f6aaf3a commit https://github.com/vim/vim/commit/4afc7c5d4a73340831077a02bfe1f74935e7f4a1
Christian Brabandt <cb@256bit.org>
parents: 8827
diff changeset
786 1702,
a2c27f6aaf3a commit https://github.com/vim/vim/commit/4afc7c5d4a73340831077a02bfe1f74935e7f4a1
Christian Brabandt <cb@256bit.org>
parents: 8827
diff changeset
787 /**/
8827
c154fbd3004f commit https://github.com/vim/vim/commit/f9f22dbe4f90673ecce601a9dee4bb750ce3cd8f
Christian Brabandt <cb@256bit.org>
parents: 8825
diff changeset
788 1701,
c154fbd3004f commit https://github.com/vim/vim/commit/f9f22dbe4f90673ecce601a9dee4bb750ce3cd8f
Christian Brabandt <cb@256bit.org>
parents: 8825
diff changeset
789 /**/
8825
318eaa6fa973 commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents: 8823
diff changeset
790 1700,
318eaa6fa973 commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents: 8823
diff changeset
791 /**/
8823
6d92bbe6c7de commit https://github.com/vim/vim/commit/71fb0c146bef08dc276fc5793bd47366e6e0f32a
Christian Brabandt <cb@256bit.org>
parents: 8821
diff changeset
792 1699,
6d92bbe6c7de commit https://github.com/vim/vim/commit/71fb0c146bef08dc276fc5793bd47366e6e0f32a
Christian Brabandt <cb@256bit.org>
parents: 8821
diff changeset
793 /**/
8821
0bab7b98e930 commit https://github.com/vim/vim/commit/298c65971e884666d57c32bff6b730d517d9dc30
Christian Brabandt <cb@256bit.org>
parents: 8819
diff changeset
794 1698,
0bab7b98e930 commit https://github.com/vim/vim/commit/298c65971e884666d57c32bff6b730d517d9dc30
Christian Brabandt <cb@256bit.org>
parents: 8819
diff changeset
795 /**/
8819
a1132255e3e1 commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents: 8817
diff changeset
796 1697,
a1132255e3e1 commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents: 8817
diff changeset
797 /**/
8817
b7eb7bbd71d0 commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents: 8815
diff changeset
798 1696,
b7eb7bbd71d0 commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents: 8815
diff changeset
799 /**/
8815
50d9fb580ffe commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents: 8813
diff changeset
800 1695,
50d9fb580ffe commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents: 8813
diff changeset
801 /**/
8813
b92938076e40 commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Christian Brabandt <cb@256bit.org>
parents: 8810
diff changeset
802 1694,
b92938076e40 commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Christian Brabandt <cb@256bit.org>
parents: 8810
diff changeset
803 /**/
8810
83d0b976d9b3 commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents: 8808
diff changeset
804 1693,
83d0b976d9b3 commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents: 8808
diff changeset
805 /**/
8808
6b70b9cdebfc commit https://github.com/vim/vim/commit/9bd547aca41799605c3a3f83444f6725c2d6eda9
Christian Brabandt <cb@256bit.org>
parents: 8806
diff changeset
806 1692,
6b70b9cdebfc commit https://github.com/vim/vim/commit/9bd547aca41799605c3a3f83444f6725c2d6eda9
Christian Brabandt <cb@256bit.org>
parents: 8806
diff changeset
807 /**/
8806
8fff73f17ff1 commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents: 8804
diff changeset
808 1691,
8fff73f17ff1 commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents: 8804
diff changeset
809 /**/
8804
75446578a52f commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents: 8802
diff changeset
810 1690,
75446578a52f commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents: 8802
diff changeset
811 /**/
8802
eaf11fa2fec8 commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents: 8800
diff changeset
812 1689,
eaf11fa2fec8 commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents: 8800
diff changeset
813 /**/
8800
f57949e1e9f1 commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents: 8798
diff changeset
814 1688,
f57949e1e9f1 commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents: 8798
diff changeset
815 /**/
8798
176647a751d7 commit https://github.com/vim/vim/commit/bdf0bda968a53a55149a4c83a10a60c28e431305
Christian Brabandt <cb@256bit.org>
parents: 8796
diff changeset
816 1687,
176647a751d7 commit https://github.com/vim/vim/commit/bdf0bda968a53a55149a4c83a10a60c28e431305
Christian Brabandt <cb@256bit.org>
parents: 8796
diff changeset
817 /**/
8796
fb764adba294 commit https://github.com/vim/vim/commit/e9c07270031e312082604d3505650f185aa65948
Christian Brabandt <cb@256bit.org>
parents: 8793
diff changeset
818 1686,
fb764adba294 commit https://github.com/vim/vim/commit/e9c07270031e312082604d3505650f185aa65948
Christian Brabandt <cb@256bit.org>
parents: 8793
diff changeset
819 /**/
8793
dda254280bab commit https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
Christian Brabandt <cb@256bit.org>
parents: 8791
diff changeset
820 1685,
dda254280bab commit https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
Christian Brabandt <cb@256bit.org>
parents: 8791
diff changeset
821 /**/
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8789
diff changeset
822 1684,
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8789
diff changeset
823 /**/
8789
667da8443275 commit https://github.com/vim/vim/commit/e609ad557c15e3e5d1e9ace2c578f48c5589c488
Christian Brabandt <cb@256bit.org>
parents: 8787
diff changeset
824 1683,
667da8443275 commit https://github.com/vim/vim/commit/e609ad557c15e3e5d1e9ace2c578f48c5589c488
Christian Brabandt <cb@256bit.org>
parents: 8787
diff changeset
825 /**/
8787
33f5732d8932 commit https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
Christian Brabandt <cb@256bit.org>
parents: 8785
diff changeset
826 1682,
33f5732d8932 commit https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
Christian Brabandt <cb@256bit.org>
parents: 8785
diff changeset
827 /**/
8785
1cb59cd2d382 commit https://github.com/vim/vim/commit/ef9d9b94a8803c405884bb6914ed745ede57c596
Christian Brabandt <cb@256bit.org>
parents: 8783
diff changeset
828 1681,
1cb59cd2d382 commit https://github.com/vim/vim/commit/ef9d9b94a8803c405884bb6914ed745ede57c596
Christian Brabandt <cb@256bit.org>
parents: 8783
diff changeset
829 /**/
8783
23b7f05a7f48 commit https://github.com/vim/vim/commit/925ccfde79bf734bc89269c705cebe2d49fe6444
Christian Brabandt <cb@256bit.org>
parents: 8781
diff changeset
830 1680,
23b7f05a7f48 commit https://github.com/vim/vim/commit/925ccfde79bf734bc89269c705cebe2d49fe6444
Christian Brabandt <cb@256bit.org>
parents: 8781
diff changeset
831 /**/
8781
65be74c1467b commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Christian Brabandt <cb@256bit.org>
parents: 8779
diff changeset
832 1679,
65be74c1467b commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Christian Brabandt <cb@256bit.org>
parents: 8779
diff changeset
833 /**/
8779
26495bd795d2 commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents: 8777
diff changeset
834 1678,
26495bd795d2 commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents: 8777
diff changeset
835 /**/
8777
a345060d671a commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3
Christian Brabandt <cb@256bit.org>
parents: 8775
diff changeset
836 1677,
a345060d671a commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3
Christian Brabandt <cb@256bit.org>
parents: 8775
diff changeset
837 /**/
8775
d5136647ce31 commit https://github.com/vim/vim/commit/fead3ac9a35e0fc358141d3eb19574cd8a3ecb55
Christian Brabandt <cb@256bit.org>
parents: 8773
diff changeset
838 1676,
d5136647ce31 commit https://github.com/vim/vim/commit/fead3ac9a35e0fc358141d3eb19574cd8a3ecb55
Christian Brabandt <cb@256bit.org>
parents: 8773
diff changeset
839 /**/
8773
08944b17c29c commit https://github.com/vim/vim/commit/e101204906e10f1e100e2f9017985c61f26b03ac
Christian Brabandt <cb@256bit.org>
parents: 8771
diff changeset
840 1675,
08944b17c29c commit https://github.com/vim/vim/commit/e101204906e10f1e100e2f9017985c61f26b03ac
Christian Brabandt <cb@256bit.org>
parents: 8771
diff changeset
841 /**/
8771
57cafbda13ad commit https://github.com/vim/vim/commit/cf2d8dee5117b9add3a3f5fc91b3569437e7d359
Christian Brabandt <cb@256bit.org>
parents: 8769
diff changeset
842 1674,
57cafbda13ad commit https://github.com/vim/vim/commit/cf2d8dee5117b9add3a3f5fc91b3569437e7d359
Christian Brabandt <cb@256bit.org>
parents: 8769
diff changeset
843 /**/
8769
7ac9d9e98892 commit https://github.com/vim/vim/commit/2946d0236dc9e23ec0050feacdb959b9ae5672a8
Christian Brabandt <cb@256bit.org>
parents: 8767
diff changeset
844 1673,
7ac9d9e98892 commit https://github.com/vim/vim/commit/2946d0236dc9e23ec0050feacdb959b9ae5672a8
Christian Brabandt <cb@256bit.org>
parents: 8767
diff changeset
845 /**/
8767
3c8ddce4118e commit https://github.com/vim/vim/commit/e934e8f5c1c5c64411d98583ecbcf89e5ad01073
Christian Brabandt <cb@256bit.org>
parents: 8765
diff changeset
846 1672,
3c8ddce4118e commit https://github.com/vim/vim/commit/e934e8f5c1c5c64411d98583ecbcf89e5ad01073
Christian Brabandt <cb@256bit.org>
parents: 8765
diff changeset
847 /**/
8765
3daf70d22168 commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents: 8763
diff changeset
848 1671,
3daf70d22168 commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents: 8763
diff changeset
849 /**/
8763
4b83af41f5db commit https://github.com/vim/vim/commit/a32095fc8fdf5fe3d487c86d9cc54adb1236731e
Christian Brabandt <cb@256bit.org>
parents: 8761
diff changeset
850 1670,
4b83af41f5db commit https://github.com/vim/vim/commit/a32095fc8fdf5fe3d487c86d9cc54adb1236731e
Christian Brabandt <cb@256bit.org>
parents: 8761
diff changeset
851 /**/
8761
f8707ec9efe4 commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents: 8759
diff changeset
852 1669,
f8707ec9efe4 commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents: 8759
diff changeset
853 /**/
8759
cc2ef7367643 commit https://github.com/vim/vim/commit/ee1f7b3cb71684aaa9bf457e2caf9d02187e6b7c
Christian Brabandt <cb@256bit.org>
parents: 8757
diff changeset
854 1668,
cc2ef7367643 commit https://github.com/vim/vim/commit/ee1f7b3cb71684aaa9bf457e2caf9d02187e6b7c
Christian Brabandt <cb@256bit.org>
parents: 8757
diff changeset
855 /**/
8757
4fb37555e814 commit https://github.com/vim/vim/commit/84e1d2b21a424f2687b61daaf84f5fc4f1ab0abe
Christian Brabandt <cb@256bit.org>
parents: 8755
diff changeset
856 1667,
4fb37555e814 commit https://github.com/vim/vim/commit/84e1d2b21a424f2687b61daaf84f5fc4f1ab0abe
Christian Brabandt <cb@256bit.org>
parents: 8755
diff changeset
857 /**/
8755
7038ec89d1fd commit https://github.com/vim/vim/commit/46c00a6565b8f1f4b7b1041d03eaceaf6ffc4aee
Christian Brabandt <cb@256bit.org>
parents: 8753
diff changeset
858 1666,
7038ec89d1fd commit https://github.com/vim/vim/commit/46c00a6565b8f1f4b7b1041d03eaceaf6ffc4aee
Christian Brabandt <cb@256bit.org>
parents: 8753
diff changeset
859 /**/
8753
df91c8263f04 commit https://github.com/vim/vim/commit/8038568722a0aad72d001edf4972c29abab57f8f
Christian Brabandt <cb@256bit.org>
parents: 8751
diff changeset
860 1665,
df91c8263f04 commit https://github.com/vim/vim/commit/8038568722a0aad72d001edf4972c29abab57f8f
Christian Brabandt <cb@256bit.org>
parents: 8751
diff changeset
861 /**/
8751
7f974075eb8f commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents: 8749
diff changeset
862 1664,
7f974075eb8f commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents: 8749
diff changeset
863 /**/
8749
65a5a18d3acf commit https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
Christian Brabandt <cb@256bit.org>
parents: 8746
diff changeset
864 1663,
65a5a18d3acf commit https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
Christian Brabandt <cb@256bit.org>
parents: 8746
diff changeset
865 /**/
8746
4c38a4733578 commit https://github.com/vim/vim/commit/c4dcd60c76666bf113719f929709ad6120eb6528
Christian Brabandt <cb@256bit.org>
parents: 8744
diff changeset
866 1662,
4c38a4733578 commit https://github.com/vim/vim/commit/c4dcd60c76666bf113719f929709ad6120eb6528
Christian Brabandt <cb@256bit.org>
parents: 8744
diff changeset
867 /**/
8744
ff9973bbbfcb commit https://github.com/vim/vim/commit/fa8b2e173dd5f6c4a5cfd326abdcf68b8eebf90d
Christian Brabandt <cb@256bit.org>
parents: 8742
diff changeset
868 1661,
ff9973bbbfcb commit https://github.com/vim/vim/commit/fa8b2e173dd5f6c4a5cfd326abdcf68b8eebf90d
Christian Brabandt <cb@256bit.org>
parents: 8742
diff changeset
869 /**/
8742
03e5171c23e5 commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a
Christian Brabandt <cb@256bit.org>
parents: 8740
diff changeset
870 1660,
03e5171c23e5 commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a
Christian Brabandt <cb@256bit.org>
parents: 8740
diff changeset
871 /**/
8740
a35b596cd7ac commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e
Christian Brabandt <cb@256bit.org>
parents: 8738
diff changeset
872 1659,
a35b596cd7ac commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e
Christian Brabandt <cb@256bit.org>
parents: 8738
diff changeset
873 /**/
8738
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents: 8736
diff changeset
874 1658,
e770986c855a commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents: 8736
diff changeset
875 /**/
8736
06bf71f13eb7 commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents: 8734
diff changeset
876 1657,
06bf71f13eb7 commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents: 8734
diff changeset
877 /**/
8734
986f7c00d43d commit https://github.com/vim/vim/commit/92e35efaf6a3278e4729115648997f09cd4005f5
Christian Brabandt <cb@256bit.org>
parents: 8732
diff changeset
878 1656,
986f7c00d43d commit https://github.com/vim/vim/commit/92e35efaf6a3278e4729115648997f09cd4005f5
Christian Brabandt <cb@256bit.org>
parents: 8732
diff changeset
879 /**/
8732
29765df3a866 commit https://github.com/vim/vim/commit/1e7885abe8daa793fd9328d0fd6c456214cb467e
Christian Brabandt <cb@256bit.org>
parents: 8730
diff changeset
880 1655,
29765df3a866 commit https://github.com/vim/vim/commit/1e7885abe8daa793fd9328d0fd6c456214cb467e
Christian Brabandt <cb@256bit.org>
parents: 8730
diff changeset
881 /**/
8730
c1ac169ee618 commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents: 8728
diff changeset
882 1654,
c1ac169ee618 commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents: 8728
diff changeset
883 /**/
8728
b1ca6aa215b7 commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents: 8726
diff changeset
884 1653,
b1ca6aa215b7 commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents: 8726
diff changeset
885 /**/
8726
4c5c08316979 commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents: 8724
diff changeset
886 1652,
4c5c08316979 commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents: 8724
diff changeset
887 /**/
8724
e6d1608ca601 commit https://github.com/vim/vim/commit/780d4c3fff3c06baa3135a9f9739c56a0c280a94
Christian Brabandt <cb@256bit.org>
parents: 8722
diff changeset
888 1651,
e6d1608ca601 commit https://github.com/vim/vim/commit/780d4c3fff3c06baa3135a9f9739c56a0c280a94
Christian Brabandt <cb@256bit.org>
parents: 8722
diff changeset
889 /**/
8722
ecb57048c2a8 commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents: 8720
diff changeset
890 1650,
ecb57048c2a8 commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents: 8720
diff changeset
891 /**/
8720
9380c37723f8 commit https://github.com/vim/vim/commit/aedfcbe1e6c7df6edcd6756d7601bfdec7dd2087
Christian Brabandt <cb@256bit.org>
parents: 8718
diff changeset
892 1649,
9380c37723f8 commit https://github.com/vim/vim/commit/aedfcbe1e6c7df6edcd6756d7601bfdec7dd2087
Christian Brabandt <cb@256bit.org>
parents: 8718
diff changeset
893 /**/
8718
f1840a719771 commit https://github.com/vim/vim/commit/bee6c0cf86a75faa2aa893f2c9db82fd944a89a5
Christian Brabandt <cb@256bit.org>
parents: 8716
diff changeset
894 1648,
f1840a719771 commit https://github.com/vim/vim/commit/bee6c0cf86a75faa2aa893f2c9db82fd944a89a5
Christian Brabandt <cb@256bit.org>
parents: 8716
diff changeset
895 /**/
8716
4ce26276caeb commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents: 8714
diff changeset
896 1647,
4ce26276caeb commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents: 8714
diff changeset
897 /**/
8714
a5224eeb3546 commit https://github.com/vim/vim/commit/4c90861e9f864eab94f043c432acff508396ed62
Christian Brabandt <cb@256bit.org>
parents: 8712
diff changeset
898 1646,
a5224eeb3546 commit https://github.com/vim/vim/commit/4c90861e9f864eab94f043c432acff508396ed62
Christian Brabandt <cb@256bit.org>
parents: 8712
diff changeset
899 /**/
8712
65130a9d3386 commit https://github.com/vim/vim/commit/c5fbe8af4cd80789f831b78aa44ff0b238138769
Christian Brabandt <cb@256bit.org>
parents: 8710
diff changeset
900 1645,
65130a9d3386 commit https://github.com/vim/vim/commit/c5fbe8af4cd80789f831b78aa44ff0b238138769
Christian Brabandt <cb@256bit.org>
parents: 8710
diff changeset
901 /**/
8710
af3cb5c068fd commit https://github.com/vim/vim/commit/24c77a1e3a2ad510582116229462b482d69b4b8e
Christian Brabandt <cb@256bit.org>
parents: 8708
diff changeset
902 1644,
af3cb5c068fd commit https://github.com/vim/vim/commit/24c77a1e3a2ad510582116229462b482d69b4b8e
Christian Brabandt <cb@256bit.org>
parents: 8708
diff changeset
903 /**/
8708
31f9fa8e1532 commit https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
Christian Brabandt <cb@256bit.org>
parents: 8706
diff changeset
904 1643,
31f9fa8e1532 commit https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
Christian Brabandt <cb@256bit.org>
parents: 8706
diff changeset
905 /**/
8706
f63892cfe283 commit https://github.com/vim/vim/commit/6a08454b93784c92296d4c08456401cbaa74c9d5
Christian Brabandt <cb@256bit.org>
parents: 8704
diff changeset
906 1642,
f63892cfe283 commit https://github.com/vim/vim/commit/6a08454b93784c92296d4c08456401cbaa74c9d5
Christian Brabandt <cb@256bit.org>
parents: 8704
diff changeset
907 /**/
8704
8af6e33e4d4c commit https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
Christian Brabandt <cb@256bit.org>
parents: 8702
diff changeset
908 1641,
8af6e33e4d4c commit https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
Christian Brabandt <cb@256bit.org>
parents: 8702
diff changeset
909 /**/
8702
39d6e4f2f748 commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents: 8700
diff changeset
910 1640,
39d6e4f2f748 commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents: 8700
diff changeset
911 /**/
8700
077706f01e80 commit https://github.com/vim/vim/commit/5f436fcf9960c95702820d5ac1b8b612995f6c04
Christian Brabandt <cb@256bit.org>
parents: 8698
diff changeset
912 1639,
077706f01e80 commit https://github.com/vim/vim/commit/5f436fcf9960c95702820d5ac1b8b612995f6c04
Christian Brabandt <cb@256bit.org>
parents: 8698
diff changeset
913 /**/
8698
13b0ed12a78a commit https://github.com/vim/vim/commit/e4eb6ff089e79e659acf33c17dd0fda7177de526
Christian Brabandt <cb@256bit.org>
parents: 8696
diff changeset
914 1638,
13b0ed12a78a commit https://github.com/vim/vim/commit/e4eb6ff089e79e659acf33c17dd0fda7177de526
Christian Brabandt <cb@256bit.org>
parents: 8696
diff changeset
915 /**/
8696
869727342e43 commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents: 8694
diff changeset
916 1637,
869727342e43 commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents: 8694
diff changeset
917 /**/
8694
f2e81ae5ab48 commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents: 8692
diff changeset
918 1636,
f2e81ae5ab48 commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents: 8692
diff changeset
919 /**/
8692
683b3702970a commit https://github.com/vim/vim/commit/6a06363861fcc6beca6e06b39385da411ce58633
Christian Brabandt <cb@256bit.org>
parents: 8690
diff changeset
920 1635,
683b3702970a commit https://github.com/vim/vim/commit/6a06363861fcc6beca6e06b39385da411ce58633
Christian Brabandt <cb@256bit.org>
parents: 8690
diff changeset
921 /**/
8690
6a1becf4f282 commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents: 8688
diff changeset
922 1634,
6a1becf4f282 commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents: 8688
diff changeset
923 /**/
8688
7ec1aa86dc80 commit https://github.com/vim/vim/commit/b763eba7ae3540cd879f7c29882a29308f9688db
Christian Brabandt <cb@256bit.org>
parents: 8686
diff changeset
924 1633,
7ec1aa86dc80 commit https://github.com/vim/vim/commit/b763eba7ae3540cd879f7c29882a29308f9688db
Christian Brabandt <cb@256bit.org>
parents: 8686
diff changeset
925 /**/
8686
92657771648f commit https://github.com/vim/vim/commit/6098957458e538682f54e23de217da06200876a3
Christian Brabandt <cb@256bit.org>
parents: 8684
diff changeset
926 1632,
92657771648f commit https://github.com/vim/vim/commit/6098957458e538682f54e23de217da06200876a3
Christian Brabandt <cb@256bit.org>
parents: 8684
diff changeset
927 /**/
8684
6e567914f55a commit https://github.com/vim/vim/commit/573e445664eef399a72b1bfc975260a639605fef
Christian Brabandt <cb@256bit.org>
parents: 8682
diff changeset
928 1631,
6e567914f55a commit https://github.com/vim/vim/commit/573e445664eef399a72b1bfc975260a639605fef
Christian Brabandt <cb@256bit.org>
parents: 8682
diff changeset
929 /**/
8682
4ce551bd5024 commit https://github.com/vim/vim/commit/d63aff0a65b955447de2fd8bfdaee29b61ce2843
Christian Brabandt <cb@256bit.org>
parents: 8680
diff changeset
930 1630,
4ce551bd5024 commit https://github.com/vim/vim/commit/d63aff0a65b955447de2fd8bfdaee29b61ce2843
Christian Brabandt <cb@256bit.org>
parents: 8680
diff changeset
931 /**/
8680
131e651fb347 commit https://github.com/vim/vim/commit/b86f10ee10bdf932df02bdaf601dffa671518a47
Christian Brabandt <cb@256bit.org>
parents: 8678
diff changeset
932 1629,
131e651fb347 commit https://github.com/vim/vim/commit/b86f10ee10bdf932df02bdaf601dffa671518a47
Christian Brabandt <cb@256bit.org>
parents: 8678
diff changeset
933 /**/
8678
a4e7f4a62193 commit https://github.com/vim/vim/commit/3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6
Christian Brabandt <cb@256bit.org>
parents: 8676
diff changeset
934 1628,
a4e7f4a62193 commit https://github.com/vim/vim/commit/3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6
Christian Brabandt <cb@256bit.org>
parents: 8676
diff changeset
935 /**/
8676
289765409225 commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d
Christian Brabandt <cb@256bit.org>
parents: 8674
diff changeset
936 1627,
289765409225 commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d
Christian Brabandt <cb@256bit.org>
parents: 8674
diff changeset
937 /**/
8674
4a4d5815a974 commit https://github.com/vim/vim/commit/580984e026a46ea0c29789897b701057423b4923
Christian Brabandt <cb@256bit.org>
parents: 8671
diff changeset
938 1626,
4a4d5815a974 commit https://github.com/vim/vim/commit/580984e026a46ea0c29789897b701057423b4923
Christian Brabandt <cb@256bit.org>
parents: 8671
diff changeset
939 /**/
8671
8f6bc5626829 commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents: 8669
diff changeset
940 1625,
8f6bc5626829 commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents: 8669
diff changeset
941 /**/
8669
06848fe9c816 commit https://github.com/vim/vim/commit/03602ec28ed25739e88b2c835adb0662d3720bb2
Christian Brabandt <cb@256bit.org>
parents: 8667
diff changeset
942 1624,
06848fe9c816 commit https://github.com/vim/vim/commit/03602ec28ed25739e88b2c835adb0662d3720bb2
Christian Brabandt <cb@256bit.org>
parents: 8667
diff changeset
943 /**/
8667
8c80c21a1885 commit https://github.com/vim/vim/commit/e9d6a298df6108e2044b1f0da5a2712f0c51c7d9
Christian Brabandt <cb@256bit.org>
parents: 8665
diff changeset
944 1623,
8c80c21a1885 commit https://github.com/vim/vim/commit/e9d6a298df6108e2044b1f0da5a2712f0c51c7d9
Christian Brabandt <cb@256bit.org>
parents: 8665
diff changeset
945 /**/
8665
7a2346148551 commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Christian Brabandt <cb@256bit.org>
parents: 8663
diff changeset
946 1622,
7a2346148551 commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Christian Brabandt <cb@256bit.org>
parents: 8663
diff changeset
947 /**/
8663
b2a48aabe21f commit https://github.com/vim/vim/commit/a63cdb5ed685181c377ee89f1d1de6a97dfeb151
Christian Brabandt <cb@256bit.org>
parents: 8661
diff changeset
948 1621,
b2a48aabe21f commit https://github.com/vim/vim/commit/a63cdb5ed685181c377ee89f1d1de6a97dfeb151
Christian Brabandt <cb@256bit.org>
parents: 8661
diff changeset
949 /**/
8661
a931160ffc41 commit https://github.com/vim/vim/commit/4077b33a8370afb3d5ae74e556a0119cf51fe294
Christian Brabandt <cb@256bit.org>
parents: 8659
diff changeset
950 1620,
a931160ffc41 commit https://github.com/vim/vim/commit/4077b33a8370afb3d5ae74e556a0119cf51fe294
Christian Brabandt <cb@256bit.org>
parents: 8659
diff changeset
951 /**/
8659
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8657
diff changeset
952 1619,
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8657
diff changeset
953 /**/
8657
c70eea7a7677 commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Christian Brabandt <cb@256bit.org>
parents: 8655
diff changeset
954 1618,
c70eea7a7677 commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Christian Brabandt <cb@256bit.org>
parents: 8655
diff changeset
955 /**/
8655
1eb302bf2475 commit https://github.com/vim/vim/commit/ba61ac0d61f46de7d29c64bb0de6d25c2e378be0
Christian Brabandt <cb@256bit.org>
parents: 8653
diff changeset
956 1617,
1eb302bf2475 commit https://github.com/vim/vim/commit/ba61ac0d61f46de7d29c64bb0de6d25c2e378be0
Christian Brabandt <cb@256bit.org>
parents: 8653
diff changeset
957 /**/
8653
d80edead9675 commit https://github.com/vim/vim/commit/ac74d5e86cd16b42e81ba48f58f3d45c72758248
Christian Brabandt <cb@256bit.org>
parents: 8651
diff changeset
958 1616,
d80edead9675 commit https://github.com/vim/vim/commit/ac74d5e86cd16b42e81ba48f58f3d45c72758248
Christian Brabandt <cb@256bit.org>
parents: 8651
diff changeset
959 /**/
8651
8a106a24d128 commit https://github.com/vim/vim/commit/829c8e369630a7cbbdac015d8177b7fde25e2f19
Christian Brabandt <cb@256bit.org>
parents: 8649
diff changeset
960 1615,
8a106a24d128 commit https://github.com/vim/vim/commit/829c8e369630a7cbbdac015d8177b7fde25e2f19
Christian Brabandt <cb@256bit.org>
parents: 8649
diff changeset
961 /**/
8649
ec78ecf15de7 commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents: 8647
diff changeset
962 1614,
ec78ecf15de7 commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents: 8647
diff changeset
963 /**/
8647
59866aabe737 commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents: 8645
diff changeset
964 1613,
59866aabe737 commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents: 8645
diff changeset
965 /**/
8645
f4819f0fc5ad commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
966 1612,
f4819f0fc5ad commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
967 /**/
8643
24b43dd167eb commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents: 8641
diff changeset
968 1611,
24b43dd167eb commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents: 8641
diff changeset
969 /**/
8641
0af716a4f5d2 commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents: 8639
diff changeset
970 1610,
0af716a4f5d2 commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents: 8639
diff changeset
971 /**/
8639
91286ec46e97 commit https://github.com/vim/vim/commit/4d581a826c54cecdde3001fdf0a5becf67e54cfd
Christian Brabandt <cb@256bit.org>
parents: 8637
diff changeset
972 1609,
91286ec46e97 commit https://github.com/vim/vim/commit/4d581a826c54cecdde3001fdf0a5becf67e54cfd
Christian Brabandt <cb@256bit.org>
parents: 8637
diff changeset
973 /**/
8637
ff41ece2e4b8 commit https://github.com/vim/vim/commit/5c29154b521e9948190be653cfda666ecbb63b5b
Christian Brabandt <cb@256bit.org>
parents: 8635
diff changeset
974 1608,
ff41ece2e4b8 commit https://github.com/vim/vim/commit/5c29154b521e9948190be653cfda666ecbb63b5b
Christian Brabandt <cb@256bit.org>
parents: 8635
diff changeset
975 /**/
8635
3a38d465f731 commit https://github.com/vim/vim/commit/f0e86a0dbddc18568910e9e4aaae0cd88ca8087a
Christian Brabandt <cb@256bit.org>
parents: 8633
diff changeset
976 1607,
3a38d465f731 commit https://github.com/vim/vim/commit/f0e86a0dbddc18568910e9e4aaae0cd88ca8087a
Christian Brabandt <cb@256bit.org>
parents: 8633
diff changeset
977 /**/
8633
80d78e1ab787 commit https://github.com/vim/vim/commit/953cc7fb139dc2ba8590f8b03a095b63f4e1208f
Christian Brabandt <cb@256bit.org>
parents: 8631
diff changeset
978 1606,
80d78e1ab787 commit https://github.com/vim/vim/commit/953cc7fb139dc2ba8590f8b03a095b63f4e1208f
Christian Brabandt <cb@256bit.org>
parents: 8631
diff changeset
979 /**/
8631
e5f2e0f8af10 commit https://github.com/vim/vim/commit/3905e291fe4375ca5c59efa9ffcb01a39c7be3a9
Christian Brabandt <cb@256bit.org>
parents: 8629
diff changeset
980 1605,
e5f2e0f8af10 commit https://github.com/vim/vim/commit/3905e291fe4375ca5c59efa9ffcb01a39c7be3a9
Christian Brabandt <cb@256bit.org>
parents: 8629
diff changeset
981 /**/
8629
54ac275e3fc4 commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233
Christian Brabandt <cb@256bit.org>
parents: 8627
diff changeset
982 1604,
54ac275e3fc4 commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233
Christian Brabandt <cb@256bit.org>
parents: 8627
diff changeset
983 /**/
8627
7c98c5d0298c commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents: 8625
diff changeset
984 1603,
7c98c5d0298c commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents: 8625
diff changeset
985 /**/
8625
d98fbc8dca8e commit https://github.com/vim/vim/commit/cff572abb922d49455b01484e99b98c371fa4560
Christian Brabandt <cb@256bit.org>
parents: 8623
diff changeset
986 1602,
d98fbc8dca8e commit https://github.com/vim/vim/commit/cff572abb922d49455b01484e99b98c371fa4560
Christian Brabandt <cb@256bit.org>
parents: 8623
diff changeset
987 /**/
8623
58e749232bd7 commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents: 8621
diff changeset
988 1601,
58e749232bd7 commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents: 8621
diff changeset
989 /**/
8621
6b9c960d68b3 commit https://github.com/vim/vim/commit/062cc1857d1c990287384409332b2b050bc9c82e
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
990 1600,
6b9c960d68b3 commit https://github.com/vim/vim/commit/062cc1857d1c990287384409332b2b050bc9c82e
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
991 /**/
8619
5c9603b1084d commit https://github.com/vim/vim/commit/8a82c7fa5ec55b59782f7a7846d6152ccf3a22c7
Christian Brabandt <cb@256bit.org>
parents: 8617
diff changeset
992 1599,
5c9603b1084d commit https://github.com/vim/vim/commit/8a82c7fa5ec55b59782f7a7846d6152ccf3a22c7
Christian Brabandt <cb@256bit.org>
parents: 8617
diff changeset
993 /**/
8617
eab968bf3ce7 commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents: 8615
diff changeset
994 1598,
eab968bf3ce7 commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents: 8615
diff changeset
995 /**/
8615
99aed8c33bbf commit https://github.com/vim/vim/commit/9f6154f26ef17b0a7efd2fcdd79cabfe510f28b4
Christian Brabandt <cb@256bit.org>
parents: 8613
diff changeset
996 1597,
99aed8c33bbf commit https://github.com/vim/vim/commit/9f6154f26ef17b0a7efd2fcdd79cabfe510f28b4
Christian Brabandt <cb@256bit.org>
parents: 8613
diff changeset
997 /**/
8613
3dacf96b4020 commit https://github.com/vim/vim/commit/ba8cd122ef60a7c71a7723be0d635f0c2d4556ab
Christian Brabandt <cb@256bit.org>
parents: 8611
diff changeset
998 1596,
3dacf96b4020 commit https://github.com/vim/vim/commit/ba8cd122ef60a7c71a7723be0d635f0c2d4556ab
Christian Brabandt <cb@256bit.org>
parents: 8611
diff changeset
999 /**/
8611
f12689430f4b commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents: 8609
diff changeset
1000 1595,
f12689430f4b commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents: 8609
diff changeset
1001 /**/
8609
40bb2619f5e2 commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents: 8607
diff changeset
1002 1594,
40bb2619f5e2 commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents: 8607
diff changeset
1003 /**/
8607
d762390fb27b commit https://github.com/vim/vim/commit/a889cf4642a89537e3eeecf6d30326bf6aa4776f
Christian Brabandt <cb@256bit.org>
parents: 8605
diff changeset
1004 1593,
d762390fb27b commit https://github.com/vim/vim/commit/a889cf4642a89537e3eeecf6d30326bf6aa4776f
Christian Brabandt <cb@256bit.org>
parents: 8605
diff changeset
1005 /**/
8605
536b9b88d1ca commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents: 8603
diff changeset
1006 1592,
536b9b88d1ca commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents: 8603
diff changeset
1007 /**/
8603
bfa74b84c41c commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents: 8601
diff changeset
1008 1591,
bfa74b84c41c commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents: 8601
diff changeset
1009 /**/
8601
46306a98407c commit https://github.com/vim/vim/commit/3f242a844e83a5a04943869f6e3bcbf8650dc465
Christian Brabandt <cb@256bit.org>
parents: 8599
diff changeset
1010 1590,
46306a98407c commit https://github.com/vim/vim/commit/3f242a844e83a5a04943869f6e3bcbf8650dc465
Christian Brabandt <cb@256bit.org>
parents: 8599
diff changeset
1011 /**/
8599
ddb04cbe1e0c commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534
Christian Brabandt <cb@256bit.org>
parents: 8597
diff changeset
1012 1589,
ddb04cbe1e0c commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534
Christian Brabandt <cb@256bit.org>
parents: 8597
diff changeset
1013 /**/
8597
51de88bf954d commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents: 8595
diff changeset
1014 1588,
51de88bf954d commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents: 8595
diff changeset
1015 /**/
8595
887b378f29d1 commit https://github.com/vim/vim/commit/1c8b4edb9b6cd5248925f3f06ec82486be9fb4ea
Christian Brabandt <cb@256bit.org>
parents: 8593
diff changeset
1016 1587,
887b378f29d1 commit https://github.com/vim/vim/commit/1c8b4edb9b6cd5248925f3f06ec82486be9fb4ea
Christian Brabandt <cb@256bit.org>
parents: 8593
diff changeset
1017 /**/
8593
dc36cef103de commit https://github.com/vim/vim/commit/8a1bb046378f4bc68d6a04af2eab80fb3ce04da6
Christian Brabandt <cb@256bit.org>
parents: 8591
diff changeset
1018 1586,
dc36cef103de commit https://github.com/vim/vim/commit/8a1bb046378f4bc68d6a04af2eab80fb3ce04da6
Christian Brabandt <cb@256bit.org>
parents: 8591
diff changeset
1019 /**/
8591
5bc958a92849 commit https://github.com/vim/vim/commit/d22a18928ebcb465393da1418bb88204b97badb1
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
1020 1585,
5bc958a92849 commit https://github.com/vim/vim/commit/d22a18928ebcb465393da1418bb88204b97badb1
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
1021 /**/
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8587
diff changeset
1022 1584,
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8587
diff changeset
1023 /**/
8587
fb8d7086e99d commit https://github.com/vim/vim/commit/597385ab43093ba27adcb86cdc1b46aba86a0093
Christian Brabandt <cb@256bit.org>
parents: 8585
diff changeset
1024 1583,
fb8d7086e99d commit https://github.com/vim/vim/commit/597385ab43093ba27adcb86cdc1b46aba86a0093
Christian Brabandt <cb@256bit.org>
parents: 8585
diff changeset
1025 /**/
8585
ce37bbedcb65 commit https://github.com/vim/vim/commit/6f2e4b36c9d9908e1cace2b1b96e2c154a837bc2
Christian Brabandt <cb@256bit.org>
parents: 8583
diff changeset
1026 1582,
ce37bbedcb65 commit https://github.com/vim/vim/commit/6f2e4b36c9d9908e1cace2b1b96e2c154a837bc2
Christian Brabandt <cb@256bit.org>
parents: 8583
diff changeset
1027 /**/
8583
537bbbd4e987 commit https://github.com/vim/vim/commit/65639032bb7b17996cd255d1508a1df4ad528a1f
Christian Brabandt <cb@256bit.org>
parents: 8581
diff changeset
1028 1581,
537bbbd4e987 commit https://github.com/vim/vim/commit/65639032bb7b17996cd255d1508a1df4ad528a1f
Christian Brabandt <cb@256bit.org>
parents: 8581
diff changeset
1029 /**/
8581
fd454847836d commit https://github.com/vim/vim/commit/7a5c46a9df7ef01a4f6a620861c35400d5ad28d9
Christian Brabandt <cb@256bit.org>
parents: 8579
diff changeset
1030 1580,
fd454847836d commit https://github.com/vim/vim/commit/7a5c46a9df7ef01a4f6a620861c35400d5ad28d9
Christian Brabandt <cb@256bit.org>
parents: 8579
diff changeset
1031 /**/
8579
556817999955 commit https://github.com/vim/vim/commit/a3dc5e92dcb79bdc4f0103e6eb91de4c7a6ee9a7
Christian Brabandt <cb@256bit.org>
parents: 8577
diff changeset
1032 1579,
556817999955 commit https://github.com/vim/vim/commit/a3dc5e92dcb79bdc4f0103e6eb91de4c7a6ee9a7
Christian Brabandt <cb@256bit.org>
parents: 8577
diff changeset
1033 /**/
8577
63dc856bd13d commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents: 8575
diff changeset
1034 1578,
63dc856bd13d commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents: 8575
diff changeset
1035 /**/
8575
b5209a4e5baf commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e
Christian Brabandt <cb@256bit.org>
parents: 8573
diff changeset
1036 1577,
b5209a4e5baf commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e
Christian Brabandt <cb@256bit.org>
parents: 8573
diff changeset
1037 /**/
8573
c76cb97073bd commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents: 8571
diff changeset
1038 1576,
c76cb97073bd commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents: 8571
diff changeset
1039 /**/
8571
debe6347024d commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897
Christian Brabandt <cb@256bit.org>
parents: 8568
diff changeset
1040 1575,
debe6347024d commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897
Christian Brabandt <cb@256bit.org>
parents: 8568
diff changeset
1041 /**/
8568
17bbbca531be commit https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
Christian Brabandt <cb@256bit.org>
parents: 8566
diff changeset
1042 1574,
17bbbca531be commit https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
Christian Brabandt <cb@256bit.org>
parents: 8566
diff changeset
1043 /**/
8566
28e10c1bed22 commit https://github.com/vim/vim/commit/ce2ec0a82a778ff4d79a2c3309f6cac079d7b5ee
Christian Brabandt <cb@256bit.org>
parents: 8564
diff changeset
1044 1573,
28e10c1bed22 commit https://github.com/vim/vim/commit/ce2ec0a82a778ff4d79a2c3309f6cac079d7b5ee
Christian Brabandt <cb@256bit.org>
parents: 8564
diff changeset
1045 /**/
8564
8818bca7a824 commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368
Christian Brabandt <cb@256bit.org>
parents: 8562
diff changeset
1046 1572,
8818bca7a824 commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368
Christian Brabandt <cb@256bit.org>
parents: 8562
diff changeset
1047 /**/
8562
40b982c98587 commit https://github.com/vim/vim/commit/8e15ffcde757ffc6cfe8b5e384948b3278e9af33
Christian Brabandt <cb@256bit.org>
parents: 8560
diff changeset
1048 1571,
40b982c98587 commit https://github.com/vim/vim/commit/8e15ffcde757ffc6cfe8b5e384948b3278e9af33
Christian Brabandt <cb@256bit.org>
parents: 8560
diff changeset
1049 /**/
8560
f3c636c673f7 commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents: 8558
diff changeset
1050 1570,
f3c636c673f7 commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents: 8558
diff changeset
1051 /**/
8558
22aecf80378e commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents: 8556
diff changeset
1052 1569,
22aecf80378e commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents: 8556
diff changeset
1053 /**/
8556
f4dca5239317 commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents: 8554
diff changeset
1054 1568,
f4dca5239317 commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents: 8554
diff changeset
1055 /**/
8554
7d3548ae729d commit https://github.com/vim/vim/commit/1abb502635c7f317e05a0cf3ea067101f9d684f5
Christian Brabandt <cb@256bit.org>
parents: 8552
diff changeset
1056 1567,
7d3548ae729d commit https://github.com/vim/vim/commit/1abb502635c7f317e05a0cf3ea067101f9d684f5
Christian Brabandt <cb@256bit.org>
parents: 8552
diff changeset
1057 /**/
8552
96968d6bba3e commit https://github.com/vim/vim/commit/4f118be2bb987cdf313da879d2a93ae125e99202
Christian Brabandt <cb@256bit.org>
parents: 8550
diff changeset
1058 1566,
96968d6bba3e commit https://github.com/vim/vim/commit/4f118be2bb987cdf313da879d2a93ae125e99202
Christian Brabandt <cb@256bit.org>
parents: 8550
diff changeset
1059 /**/
8550
56d0eb96c25a commit https://github.com/vim/vim/commit/f1551964448607f8222de2d8f0992ea43eb2fe67
Christian Brabandt <cb@256bit.org>
parents: 8548
diff changeset
1060 1565,
56d0eb96c25a commit https://github.com/vim/vim/commit/f1551964448607f8222de2d8f0992ea43eb2fe67
Christian Brabandt <cb@256bit.org>
parents: 8548
diff changeset
1061 /**/
8548
24db3583c496 commit https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Christian Brabandt <cb@256bit.org>
parents: 8546
diff changeset
1062 1564,
24db3583c496 commit https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Christian Brabandt <cb@256bit.org>
parents: 8546
diff changeset
1063 /**/
8546
996109e24f02 commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17
Christian Brabandt <cb@256bit.org>
parents: 8544
diff changeset
1064 1563,
996109e24f02 commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17
Christian Brabandt <cb@256bit.org>
parents: 8544
diff changeset
1065 /**/
8544
b4850f705181 commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43
Christian Brabandt <cb@256bit.org>
parents: 8542
diff changeset
1066 1562,
b4850f705181 commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43
Christian Brabandt <cb@256bit.org>
parents: 8542
diff changeset
1067 /**/
8542
80cfe52ca3a2 commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911
Christian Brabandt <cb@256bit.org>
parents: 8540
diff changeset
1068 1561,
80cfe52ca3a2 commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911
Christian Brabandt <cb@256bit.org>
parents: 8540
diff changeset
1069 /**/
8540
fec8655cf1bf commit https://github.com/vim/vim/commit/d6c2f0526064eef6f8917d2bad00df707d79ea16
Christian Brabandt <cb@256bit.org>
parents: 8538
diff changeset
1070 1560,
fec8655cf1bf commit https://github.com/vim/vim/commit/d6c2f0526064eef6f8917d2bad00df707d79ea16
Christian Brabandt <cb@256bit.org>
parents: 8538
diff changeset
1071 /**/
8538
c337c813c64d commit https://github.com/vim/vim/commit/1735bc988c546cc962c5f94792815b4d7cb79710
Christian Brabandt <cb@256bit.org>
parents: 8536
diff changeset
1072 1559,
c337c813c64d commit https://github.com/vim/vim/commit/1735bc988c546cc962c5f94792815b4d7cb79710
Christian Brabandt <cb@256bit.org>
parents: 8536
diff changeset
1073 /**/
8536
09041d2fd7d0 commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents: 8534
diff changeset
1074 1558,
09041d2fd7d0 commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents: 8534
diff changeset
1075 /**/
8534
485d4d8a97f6 commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents: 8532
diff changeset
1076 1557,
485d4d8a97f6 commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents: 8532
diff changeset
1077 /**/
8532
3de84783c029 commit https://github.com/vim/vim/commit/a3442cb5056ca62fc71fa03f68a9395e4391caf4
Christian Brabandt <cb@256bit.org>
parents: 8530
diff changeset
1078 1556,
3de84783c029 commit https://github.com/vim/vim/commit/a3442cb5056ca62fc71fa03f68a9395e4391caf4
Christian Brabandt <cb@256bit.org>
parents: 8530
diff changeset
1079 /**/
8530
66afe6d5a9de commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e
Christian Brabandt <cb@256bit.org>
parents: 8528
diff changeset
1080 1555,
66afe6d5a9de commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e
Christian Brabandt <cb@256bit.org>
parents: 8528
diff changeset
1081 /**/
8528
630300c7a26c commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents: 8526
diff changeset
1082 1554,
630300c7a26c commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents: 8526
diff changeset
1083 /**/
8526
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8524
diff changeset
1084 1553,
981cc3bef9f3 commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents: 8524
diff changeset
1085 /**/
8524
2f57bbe870ea commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents: 8522
diff changeset
1086 1552,
2f57bbe870ea commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents: 8522
diff changeset
1087 /**/
8522
721e8d6cb7b5 commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents: 8520
diff changeset
1088 1551,
721e8d6cb7b5 commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents: 8520
diff changeset
1089 /**/
8520
b4350a4d1e01 commit https://github.com/vim/vim/commit/2d8f56acb32428d0f965d42dd13b27100b46fa15
Christian Brabandt <cb@256bit.org>
parents: 8518
diff changeset
1090 1550,
b4350a4d1e01 commit https://github.com/vim/vim/commit/2d8f56acb32428d0f965d42dd13b27100b46fa15
Christian Brabandt <cb@256bit.org>
parents: 8518
diff changeset
1091 /**/
8518
24ac80377d86 commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents: 8516
diff changeset
1092 1549,
24ac80377d86 commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents: 8516
diff changeset
1093 /**/
8516
14ab6c685581 commit https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
Christian Brabandt <cb@256bit.org>
parents: 8514
diff changeset
1094 1548,
14ab6c685581 commit https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
Christian Brabandt <cb@256bit.org>
parents: 8514
diff changeset
1095 /**/
8514
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
1096 1547,
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
1097 /**/
8512
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents: 8510
diff changeset
1098 1546,
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents: 8510
diff changeset
1099 /**/
8510
9f5bd031530d commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents: 8508
diff changeset
1100 1545,
9f5bd031530d commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents: 8508
diff changeset
1101 /**/
8508
13e5a1f02be4 commit https://github.com/vim/vim/commit/583c1f14a4e1d89fe029b1c134d405357468ece7
Christian Brabandt <cb@256bit.org>
parents: 8506
diff changeset
1102 1544,
13e5a1f02be4 commit https://github.com/vim/vim/commit/583c1f14a4e1d89fe029b1c134d405357468ece7
Christian Brabandt <cb@256bit.org>
parents: 8506
diff changeset
1103 /**/
8506
c93c352717b3 commit https://github.com/vim/vim/commit/5a6ec52392b78d41153660d0353d5b86a2dc583c
Christian Brabandt <cb@256bit.org>
parents: 8504
diff changeset
1104 1543,
c93c352717b3 commit https://github.com/vim/vim/commit/5a6ec52392b78d41153660d0353d5b86a2dc583c
Christian Brabandt <cb@256bit.org>
parents: 8504
diff changeset
1105 /**/
8504
0b31cc4b261e commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c
Christian Brabandt <cb@256bit.org>
parents: 8502
diff changeset
1106 1542,
0b31cc4b261e commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c
Christian Brabandt <cb@256bit.org>
parents: 8502
diff changeset
1107 /**/
8502
ee5cb2e9ed5a commit https://github.com/vim/vim/commit/8950a563b306ce76f259573d91c2ddccdf52e32e
Christian Brabandt <cb@256bit.org>
parents: 8500
diff changeset
1108 1541,
ee5cb2e9ed5a commit https://github.com/vim/vim/commit/8950a563b306ce76f259573d91c2ddccdf52e32e
Christian Brabandt <cb@256bit.org>
parents: 8500
diff changeset
1109 /**/
8500
1227dc21865b commit https://github.com/vim/vim/commit/ac42afd10b96424b89762871905e3e785cdfba3d
Christian Brabandt <cb@256bit.org>
parents: 8498
diff changeset
1110 1540,
1227dc21865b commit https://github.com/vim/vim/commit/ac42afd10b96424b89762871905e3e785cdfba3d
Christian Brabandt <cb@256bit.org>
parents: 8498
diff changeset
1111 /**/
8498
42277980a76d commit https://github.com/vim/vim/commit/8e2c942ce49f2555d7dc2088cf3aa856820c5e32
Christian Brabandt <cb@256bit.org>
parents: 8495
diff changeset
1112 1539,
42277980a76d commit https://github.com/vim/vim/commit/8e2c942ce49f2555d7dc2088cf3aa856820c5e32
Christian Brabandt <cb@256bit.org>
parents: 8495
diff changeset
1113 /**/
8495
8877ea0a27ec commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1114 1538,
8877ea0a27ec commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1115 /**/
8493
caed4b2d305f commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents: 8491
diff changeset
1116 1537,
caed4b2d305f commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents: 8491
diff changeset
1117 /**/
8491
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8489
diff changeset
1118 1536,
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8489
diff changeset
1119 /**/
8489
76b9c2305531 commit https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
Christian Brabandt <cb@256bit.org>
parents: 8487
diff changeset
1120 1535,
76b9c2305531 commit https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
Christian Brabandt <cb@256bit.org>
parents: 8487
diff changeset
1121 /**/
8487
ce789e3dc84d commit https://github.com/vim/vim/commit/846cdb227526272e2cd8ecba4f7168e2226cd633
Christian Brabandt <cb@256bit.org>
parents: 8485
diff changeset
1122 1534,
ce789e3dc84d commit https://github.com/vim/vim/commit/846cdb227526272e2cd8ecba4f7168e2226cd633
Christian Brabandt <cb@256bit.org>
parents: 8485
diff changeset
1123 /**/
8485
675ec6cc9021 commit https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
1124 1533,
675ec6cc9021 commit https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
1125 /**/
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8481
diff changeset
1126 1532,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8481
diff changeset
1127 /**/
8481
8924d7adbc22 commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
1128 1531,
8924d7adbc22 commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
1129 /**/
8479
9f63e4506c40 commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents: 8477
diff changeset
1130 1530,
9f63e4506c40 commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents: 8477
diff changeset
1131 /**/
8477
c08c6d19db4d commit https://github.com/vim/vim/commit/29fd03878c41526a586d77b3f3cd7938d26297af
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
1132 1529,
c08c6d19db4d commit https://github.com/vim/vim/commit/29fd03878c41526a586d77b3f3cd7938d26297af
Christian Brabandt <cb@256bit.org>
parents: 8475
diff changeset
1133 /**/
8475
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8473
diff changeset
1134 1528,
aec051e61547 commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents: 8473
diff changeset
1135 /**/
8473
ade1797aa6f4 commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0
Christian Brabandt <cb@256bit.org>
parents: 8471
diff changeset
1136 1527,
ade1797aa6f4 commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0
Christian Brabandt <cb@256bit.org>
parents: 8471
diff changeset
1137 /**/
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8469
diff changeset
1138 1526,
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8469
diff changeset
1139 /**/
8469
42020d59a432 commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents: 8467
diff changeset
1140 1525,
42020d59a432 commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents: 8467
diff changeset
1141 /**/
8467
86a327403fb0 commit https://github.com/vim/vim/commit/045a284a83c2a85113de233d5233eae34724a4b6
Christian Brabandt <cb@256bit.org>
parents: 8465
diff changeset
1142 1524,
86a327403fb0 commit https://github.com/vim/vim/commit/045a284a83c2a85113de233d5233eae34724a4b6
Christian Brabandt <cb@256bit.org>
parents: 8465
diff changeset
1143 /**/
8465
5927180d0b4d commit https://github.com/vim/vim/commit/0622732b32ff4a883e4f490a1b38ada539da8ba2
Christian Brabandt <cb@256bit.org>
parents: 8463
diff changeset
1144 1523,
5927180d0b4d commit https://github.com/vim/vim/commit/0622732b32ff4a883e4f490a1b38ada539da8ba2
Christian Brabandt <cb@256bit.org>
parents: 8463
diff changeset
1145 /**/
8463
508504ca52ac commit https://github.com/vim/vim/commit/6ff02c96519946716069f05c62849986a706033b
Christian Brabandt <cb@256bit.org>
parents: 8461
diff changeset
1146 1522,
508504ca52ac commit https://github.com/vim/vim/commit/6ff02c96519946716069f05c62849986a706033b
Christian Brabandt <cb@256bit.org>
parents: 8461
diff changeset
1147 /**/
8461
988ddc5742f5 commit https://github.com/vim/vim/commit/8322e1f06e8fa39a6bb790a7d8d7db5d7aff3366
Christian Brabandt <cb@256bit.org>
parents: 8459
diff changeset
1148 1521,
988ddc5742f5 commit https://github.com/vim/vim/commit/8322e1f06e8fa39a6bb790a7d8d7db5d7aff3366
Christian Brabandt <cb@256bit.org>
parents: 8459
diff changeset
1149 /**/
8459
9fb171e8466d commit https://github.com/vim/vim/commit/d9d473ea124339c4dd173127db47c4583645ac2c
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
1150 1520,
9fb171e8466d commit https://github.com/vim/vim/commit/d9d473ea124339c4dd173127db47c4583645ac2c
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
1151 /**/
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8455
diff changeset
1152 1519,
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8455
diff changeset
1153 /**/
8455
d0717262d802 commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents: 8453
diff changeset
1154 1518,
d0717262d802 commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents: 8453
diff changeset
1155 /**/
8453
fed4e19bd884 commit https://github.com/vim/vim/commit/367aabdbf76f7df00fd18e39d9378d1360a526ab
Christian Brabandt <cb@256bit.org>
parents: 8451
diff changeset
1156 1517,
fed4e19bd884 commit https://github.com/vim/vim/commit/367aabdbf76f7df00fd18e39d9378d1360a526ab
Christian Brabandt <cb@256bit.org>
parents: 8451
diff changeset
1157 /**/
8451
c0b5c2b0a5ee commit https://github.com/vim/vim/commit/8049253b96838b3584600e5ad229abad37a95b10
Christian Brabandt <cb@256bit.org>
parents: 8449
diff changeset
1158 1516,
c0b5c2b0a5ee commit https://github.com/vim/vim/commit/8049253b96838b3584600e5ad229abad37a95b10
Christian Brabandt <cb@256bit.org>
parents: 8449
diff changeset
1159 /**/
8449
3d567b5839c5 commit https://github.com/vim/vim/commit/9fe885e49ade94e6277db0dd18a5bbc1c94c60c4
Christian Brabandt <cb@256bit.org>
parents: 8447
diff changeset
1160 1515,
3d567b5839c5 commit https://github.com/vim/vim/commit/9fe885e49ade94e6277db0dd18a5bbc1c94c60c4
Christian Brabandt <cb@256bit.org>
parents: 8447
diff changeset
1161 /**/
8447
6f26b680c243 commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents: 8445
diff changeset
1162 1514,
6f26b680c243 commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents: 8445
diff changeset
1163 /**/
8445
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
1164 1513,
dd2e2bd69d0e commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
1165 /**/
8443
6c421014a0b3 commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents: 8441
diff changeset
1166 1512,
6c421014a0b3 commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents: 8441
diff changeset
1167 /**/
8441
768065c86a35 commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents: 8438
diff changeset
1168 1511,
768065c86a35 commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents: 8438
diff changeset
1169 /**/
8438
541ca10b3bc7 commit https://github.com/vim/vim/commit/304563c0b3e24895322ce3a29378388665b4769b
Christian Brabandt <cb@256bit.org>
parents: 8436
diff changeset
1170 1510,
541ca10b3bc7 commit https://github.com/vim/vim/commit/304563c0b3e24895322ce3a29378388665b4769b
Christian Brabandt <cb@256bit.org>
parents: 8436
diff changeset
1171 /**/
8436
0e6fd2f802b3 commit https://github.com/vim/vim/commit/151f656e171f6ffbb0cbeb343cbcf2ffac0c36b0
Christian Brabandt <cb@256bit.org>
parents: 8434
diff changeset
1172 1509,
0e6fd2f802b3 commit https://github.com/vim/vim/commit/151f656e171f6ffbb0cbeb343cbcf2ffac0c36b0
Christian Brabandt <cb@256bit.org>
parents: 8434
diff changeset
1173 /**/
8434
a0e7d7070799 commit https://github.com/vim/vim/commit/47cff3a444be7e99bae52b39b2174c22d58d2f86
Christian Brabandt <cb@256bit.org>
parents: 8432
diff changeset
1174 1508,
a0e7d7070799 commit https://github.com/vim/vim/commit/47cff3a444be7e99bae52b39b2174c22d58d2f86
Christian Brabandt <cb@256bit.org>
parents: 8432
diff changeset
1175 /**/
8432
6af4329b5592 commit https://github.com/vim/vim/commit/4e329fcaf7122370a6d1815a30aaf29476d3f722
Christian Brabandt <cb@256bit.org>
parents: 8430
diff changeset
1176 1507,
6af4329b5592 commit https://github.com/vim/vim/commit/4e329fcaf7122370a6d1815a30aaf29476d3f722
Christian Brabandt <cb@256bit.org>
parents: 8430
diff changeset
1177 /**/
8430
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8428
diff changeset
1178 1506,
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8428
diff changeset
1179 /**/
8428
4e22d0e7bfb1 commit https://github.com/vim/vim/commit/d0b6502a7ace39d6cd30874110a572371d10beae
Christian Brabandt <cb@256bit.org>
parents: 8426
diff changeset
1180 1505,
4e22d0e7bfb1 commit https://github.com/vim/vim/commit/d0b6502a7ace39d6cd30874110a572371d10beae
Christian Brabandt <cb@256bit.org>
parents: 8426
diff changeset
1181 /**/
8426
02ce040591c8 commit https://github.com/vim/vim/commit/3f39f648662bf8723f687d14694041779ed0780c
Christian Brabandt <cb@256bit.org>
parents: 8424
diff changeset
1182 1504,
02ce040591c8 commit https://github.com/vim/vim/commit/3f39f648662bf8723f687d14694041779ed0780c
Christian Brabandt <cb@256bit.org>
parents: 8424
diff changeset
1183 /**/
8424
be45d4921f1f commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3
Christian Brabandt <cb@256bit.org>
parents: 8422
diff changeset
1184 1503,
be45d4921f1f commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3
Christian Brabandt <cb@256bit.org>
parents: 8422
diff changeset
1185 /**/
8422
5d2c84be23b5 commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents: 8420
diff changeset
1186 1502,
5d2c84be23b5 commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents: 8420
diff changeset
1187 /**/
8420
f6d21a33d489 commit https://github.com/vim/vim/commit/38fd4bb2842df7634823b99c655b3896a7a2e988
Christian Brabandt <cb@256bit.org>
parents: 8418
diff changeset
1188 1501,
f6d21a33d489 commit https://github.com/vim/vim/commit/38fd4bb2842df7634823b99c655b3896a7a2e988
Christian Brabandt <cb@256bit.org>
parents: 8418
diff changeset
1189 /**/
8418
89f38c77e11e commit https://github.com/vim/vim/commit/9ef00be261115acb5bae3b3ca45c1d86a19ba2c7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
1190 1500,
89f38c77e11e commit https://github.com/vim/vim/commit/9ef00be261115acb5bae3b3ca45c1d86a19ba2c7
Christian Brabandt <cb@256bit.org>
parents: 8416
diff changeset
1191 /**/
8416
1a6527cce675 commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents: 8414
diff changeset
1192 1499,
1a6527cce675 commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents: 8414
diff changeset
1193 /**/
8414
8c888844de9c commit https://github.com/vim/vim/commit/2588b5a43f049ddf542991050260237051caad77
Christian Brabandt <cb@256bit.org>
parents: 8412
diff changeset
1194 1498,
8c888844de9c commit https://github.com/vim/vim/commit/2588b5a43f049ddf542991050260237051caad77
Christian Brabandt <cb@256bit.org>
parents: 8412
diff changeset
1195 /**/
8412
7ee2b87ba896 commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents: 8410
diff changeset
1196 1497,
7ee2b87ba896 commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents: 8410
diff changeset
1197 /**/
8410
05ec48deb353 commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc
Christian Brabandt <cb@256bit.org>
parents: 8408
diff changeset
1198 1496,
05ec48deb353 commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc
Christian Brabandt <cb@256bit.org>
parents: 8408
diff changeset
1199 /**/
8408
2f1a63269250 commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents: 8406
diff changeset
1200 1495,
2f1a63269250 commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents: 8406
diff changeset
1201 /**/
8406
5d926807c19c commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents: 8404
diff changeset
1202 1494,
5d926807c19c commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents: 8404
diff changeset
1203 /**/
8404
8894d595b786 commit https://github.com/vim/vim/commit/5983ad0b038fa689653246cb304fd43e8ae39a78
Christian Brabandt <cb@256bit.org>
parents: 8402
diff changeset
1204 1493,
8894d595b786 commit https://github.com/vim/vim/commit/5983ad0b038fa689653246cb304fd43e8ae39a78
Christian Brabandt <cb@256bit.org>
parents: 8402
diff changeset
1205 /**/
8402
eed1ca42f9aa commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents: 8399
diff changeset
1206 1492,
eed1ca42f9aa commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents: 8399
diff changeset
1207 /**/
8399
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 8397
diff changeset
1208 1491,
7d1c42e3ce11 commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents: 8397
diff changeset
1209 /**/
8397
1e58a938aafc commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents: 8395
diff changeset
1210 1490,
1e58a938aafc commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents: 8395
diff changeset
1211 /**/
8395
8137d5b642f3 commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents: 8393
diff changeset
1212 1489,
8137d5b642f3 commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents: 8393
diff changeset
1213 /**/
8393
a7f94f0ba183 commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents: 8390
diff changeset
1214 1488,
a7f94f0ba183 commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents: 8390
diff changeset
1215 /**/
8390
2230c0da23bd commit https://github.com/vim/vim/commit/6300317b15eb33409f652c603fb402417fe4eed7
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
1216 1487,
2230c0da23bd commit https://github.com/vim/vim/commit/6300317b15eb33409f652c603fb402417fe4eed7
Christian Brabandt <cb@256bit.org>
parents: 8388
diff changeset
1217 /**/
8388
f5972de59001 commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
1218 1486,
f5972de59001 commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
1219 /**/
8386
3b9a306724ec commit https://github.com/vim/vim/commit/014069a7ac51557e531eb3c8b94e36f2193f6c21
Christian Brabandt <cb@256bit.org>
parents: 8384
diff changeset
1220 1485,
3b9a306724ec commit https://github.com/vim/vim/commit/014069a7ac51557e531eb3c8b94e36f2193f6c21
Christian Brabandt <cb@256bit.org>
parents: 8384
diff changeset
1221 /**/
8384
764dba33605c commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents: 8382
diff changeset
1222 1484,
764dba33605c commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents: 8382
diff changeset
1223 /**/
8382
3dbe93a240d8 commit https://github.com/vim/vim/commit/d6547fc6471d9084f942bdc4ae3aedb39361751d
Christian Brabandt <cb@256bit.org>
parents: 8380
diff changeset
1224 1483,
3dbe93a240d8 commit https://github.com/vim/vim/commit/d6547fc6471d9084f942bdc4ae3aedb39361751d
Christian Brabandt <cb@256bit.org>
parents: 8380
diff changeset
1225 /**/
8380
892d7dcf17ec commit https://github.com/vim/vim/commit/da94fdf2588b3910d38e477a755748ce2c6d2e66
Christian Brabandt <cb@256bit.org>
parents: 8378
diff changeset
1226 1482,
892d7dcf17ec commit https://github.com/vim/vim/commit/da94fdf2588b3910d38e477a755748ce2c6d2e66
Christian Brabandt <cb@256bit.org>
parents: 8378
diff changeset
1227 /**/
8378
52777ec8a394 commit https://github.com/vim/vim/commit/9f7820f83bc994bbbecdca9483b355953f07179b
Christian Brabandt <cb@256bit.org>
parents: 8376
diff changeset
1228 1481,
52777ec8a394 commit https://github.com/vim/vim/commit/9f7820f83bc994bbbecdca9483b355953f07179b
Christian Brabandt <cb@256bit.org>
parents: 8376
diff changeset
1229 /**/
8376
e448f2a5d45b commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents: 8374
diff changeset
1230 1480,
e448f2a5d45b commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents: 8374
diff changeset
1231 /**/
8374
5d834058bf44 commit https://github.com/vim/vim/commit/863c1a9079fa340d663ccafb011729a29186d73e
Christian Brabandt <cb@256bit.org>
parents: 8372
diff changeset
1232 1479,
5d834058bf44 commit https://github.com/vim/vim/commit/863c1a9079fa340d663ccafb011729a29186d73e
Christian Brabandt <cb@256bit.org>
parents: 8372
diff changeset
1233 /**/
8372
ce791ff9e0da commit https://github.com/vim/vim/commit/1bdd42627d619258d0e847f217cfc1c2795f1ac5
Christian Brabandt <cb@256bit.org>
parents: 8370
diff changeset
1234 1478,
ce791ff9e0da commit https://github.com/vim/vim/commit/1bdd42627d619258d0e847f217cfc1c2795f1ac5
Christian Brabandt <cb@256bit.org>
parents: 8370
diff changeset
1235 /**/
8370
cd7ea16d1300 commit https://github.com/vim/vim/commit/b5760a1ce5b700fc32b8bd11948ee189a847c59e
Christian Brabandt <cb@256bit.org>
parents: 8368
diff changeset
1236 1477,
cd7ea16d1300 commit https://github.com/vim/vim/commit/b5760a1ce5b700fc32b8bd11948ee189a847c59e
Christian Brabandt <cb@256bit.org>
parents: 8368
diff changeset
1237 /**/
8368
db2a07b710ed commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents: 8366
diff changeset
1238 1476,
db2a07b710ed commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents: 8366
diff changeset
1239 /**/
8366
6099e8185045 commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents: 8364
diff changeset
1240 1475,
6099e8185045 commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents: 8364
diff changeset
1241 /**/
8364
991d8fd4d841 commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Christian Brabandt <cb@256bit.org>
parents: 8362
diff changeset
1242 1474,
991d8fd4d841 commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Christian Brabandt <cb@256bit.org>
parents: 8362
diff changeset
1243 /**/
8362
a541dd5cfd3a commit https://github.com/vim/vim/commit/d1413d90983fc6c579ad66ba4d4611b057197f94
Christian Brabandt <cb@256bit.org>
parents: 8360
diff changeset
1244 1473,
a541dd5cfd3a commit https://github.com/vim/vim/commit/d1413d90983fc6c579ad66ba4d4611b057197f94
Christian Brabandt <cb@256bit.org>
parents: 8360
diff changeset
1245 /**/
8360
45740f83b3ce commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents: 8358
diff changeset
1246 1472,
45740f83b3ce commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents: 8358
diff changeset
1247 /**/
8358
49d0e094cb93 commit https://github.com/vim/vim/commit/bf73b91c664488ca57e2b4a8eb9b1f36f6625bc7
Christian Brabandt <cb@256bit.org>
parents: 8356
diff changeset
1248 1471,
49d0e094cb93 commit https://github.com/vim/vim/commit/bf73b91c664488ca57e2b4a8eb9b1f36f6625bc7
Christian Brabandt <cb@256bit.org>
parents: 8356
diff changeset
1249 /**/
8356
e0d576743e4f commit https://github.com/vim/vim/commit/289a90551d185c307abd4cfe6baadea8990d956b
Christian Brabandt <cb@256bit.org>
parents: 8354
diff changeset
1250 1470,
e0d576743e4f commit https://github.com/vim/vim/commit/289a90551d185c307abd4cfe6baadea8990d956b
Christian Brabandt <cb@256bit.org>
parents: 8354
diff changeset
1251 /**/
8354
b151c3f9be72 commit https://github.com/vim/vim/commit/42bc6dde46f1b52476cc84ee89277f981b4116c4
Christian Brabandt <cb@256bit.org>
parents: 8352
diff changeset
1252 1469,
b151c3f9be72 commit https://github.com/vim/vim/commit/42bc6dde46f1b52476cc84ee89277f981b4116c4
Christian Brabandt <cb@256bit.org>
parents: 8352
diff changeset
1253 /**/
8352
2c40b40c3220 commit https://github.com/vim/vim/commit/51d1d536802b5d8232d47e56f165ba8a009529b5
Christian Brabandt <cb@256bit.org>
parents: 8350
diff changeset
1254 1468,
2c40b40c3220 commit https://github.com/vim/vim/commit/51d1d536802b5d8232d47e56f165ba8a009529b5
Christian Brabandt <cb@256bit.org>
parents: 8350
diff changeset
1255 /**/
8350
e70fa2e110ec commit https://github.com/vim/vim/commit/10b369f67064cee91a5eb41383a694162c5c5e73
Christian Brabandt <cb@256bit.org>
parents: 8348
diff changeset
1256 1467,
e70fa2e110ec commit https://github.com/vim/vim/commit/10b369f67064cee91a5eb41383a694162c5c5e73
Christian Brabandt <cb@256bit.org>
parents: 8348
diff changeset
1257 /**/
8348
a0cff08e7aa3 commit https://github.com/vim/vim/commit/6b584af3d7337639da27fd847c7c69a406af397e
Christian Brabandt <cb@256bit.org>
parents: 8346
diff changeset
1258 1466,
a0cff08e7aa3 commit https://github.com/vim/vim/commit/6b584af3d7337639da27fd847c7c69a406af397e
Christian Brabandt <cb@256bit.org>
parents: 8346
diff changeset
1259 /**/
8346
8fa75a4c39bd commit https://github.com/vim/vim/commit/cc7f8be3e0e6c4d902b02052a862e21c3a3fbe22
Christian Brabandt <cb@256bit.org>
parents: 8344
diff changeset
1260 1465,
8fa75a4c39bd commit https://github.com/vim/vim/commit/cc7f8be3e0e6c4d902b02052a862e21c3a3fbe22
Christian Brabandt <cb@256bit.org>
parents: 8344
diff changeset
1261 /**/
8344
2aa24f702b8d commit https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Christian Brabandt <cb@256bit.org>
parents: 8342
diff changeset
1262 1464,
2aa24f702b8d commit https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Christian Brabandt <cb@256bit.org>
parents: 8342
diff changeset
1263 /**/
8342
446558924b66 commit https://github.com/vim/vim/commit/a6b8976bb724f8c85dd5699d115d795f7b730298
Christian Brabandt <cb@256bit.org>
parents: 8340
diff changeset
1264 1463,
446558924b66 commit https://github.com/vim/vim/commit/a6b8976bb724f8c85dd5699d115d795f7b730298
Christian Brabandt <cb@256bit.org>
parents: 8340
diff changeset
1265 /**/
8340
c66e1f50c142 commit https://github.com/vim/vim/commit/2f6271b1e7cff985cac66f6850116bcf3fcccd58
Christian Brabandt <cb@256bit.org>
parents: 8338
diff changeset
1266 1462,
c66e1f50c142 commit https://github.com/vim/vim/commit/2f6271b1e7cff985cac66f6850116bcf3fcccd58
Christian Brabandt <cb@256bit.org>
parents: 8338
diff changeset
1267 /**/
8338
3e54b31d50c7 commit https://github.com/vim/vim/commit/a86f14a923d9a242107c16d0852f61f3daf985a8
Christian Brabandt <cb@256bit.org>
parents: 8336
diff changeset
1268 1461,
3e54b31d50c7 commit https://github.com/vim/vim/commit/a86f14a923d9a242107c16d0852f61f3daf985a8
Christian Brabandt <cb@256bit.org>
parents: 8336
diff changeset
1269 /**/
8336
d44ff1525ff0 commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents: 8334
diff changeset
1270 1460,
d44ff1525ff0 commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents: 8334
diff changeset
1271 /**/
8334
ad4b00bf2984 commit https://github.com/vim/vim/commit/e081e21f760bffc24ca98d5f9bbdb5f02e6aea79
Christian Brabandt <cb@256bit.org>
parents: 8332
diff changeset
1272 1459,
ad4b00bf2984 commit https://github.com/vim/vim/commit/e081e21f760bffc24ca98d5f9bbdb5f02e6aea79
Christian Brabandt <cb@256bit.org>
parents: 8332
diff changeset
1273 /**/
8332
07713b8243ac commit https://github.com/vim/vim/commit/fdd6ce4a2f922afac7bd719a00228dbd8539b9c4
Christian Brabandt <cb@256bit.org>
parents: 8330
diff changeset
1274 1458,
07713b8243ac commit https://github.com/vim/vim/commit/fdd6ce4a2f922afac7bd719a00228dbd8539b9c4
Christian Brabandt <cb@256bit.org>
parents: 8330
diff changeset
1275 /**/
8330
ec940c11f749 commit https://github.com/vim/vim/commit/d42119fff228434fe57e88d501c744de0a9fb1b1
Christian Brabandt <cb@256bit.org>
parents: 8328
diff changeset
1276 1457,
ec940c11f749 commit https://github.com/vim/vim/commit/d42119fff228434fe57e88d501c744de0a9fb1b1
Christian Brabandt <cb@256bit.org>
parents: 8328
diff changeset
1277 /**/
8328
0a55dd381410 commit https://github.com/vim/vim/commit/29e1951e14907b62797554ad0cc85cbbe75a1be4
Christian Brabandt <cb@256bit.org>
parents: 8326
diff changeset
1278 1456,
0a55dd381410 commit https://github.com/vim/vim/commit/29e1951e14907b62797554ad0cc85cbbe75a1be4
Christian Brabandt <cb@256bit.org>
parents: 8326
diff changeset
1279 /**/
8326
bec1dcfaa8be commit https://github.com/vim/vim/commit/fc2457e21d136cb366076edd448e67c9732dc40a
Christian Brabandt <cb@256bit.org>
parents: 8324
diff changeset
1280 1455,
bec1dcfaa8be commit https://github.com/vim/vim/commit/fc2457e21d136cb366076edd448e67c9732dc40a
Christian Brabandt <cb@256bit.org>
parents: 8324
diff changeset
1281 /**/
8324
5e88bd55b789 commit https://github.com/vim/vim/commit/9730f74a0b2acb490943393a203a24ab8fab923a
Christian Brabandt <cb@256bit.org>
parents: 8322
diff changeset
1282 1454,
5e88bd55b789 commit https://github.com/vim/vim/commit/9730f74a0b2acb490943393a203a24ab8fab923a
Christian Brabandt <cb@256bit.org>
parents: 8322
diff changeset
1283 /**/
8322
cff44093ddb0 commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents: 8320
diff changeset
1284 1453,
cff44093ddb0 commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents: 8320
diff changeset
1285 /**/
8320
e2021d6feeda commit https://github.com/vim/vim/commit/18b5d6df10a5f08ffebbec85a1cf2828871e3736
Christian Brabandt <cb@256bit.org>
parents: 8318
diff changeset
1286 1452,
e2021d6feeda commit https://github.com/vim/vim/commit/18b5d6df10a5f08ffebbec85a1cf2828871e3736
Christian Brabandt <cb@256bit.org>
parents: 8318
diff changeset
1287 /**/
8318
190d8084cb3a commit https://github.com/vim/vim/commit/707659490d35e8d66e8bbdcfd93b12dc1387d86c
Christian Brabandt <cb@256bit.org>
parents: 8316
diff changeset
1288 1451,
190d8084cb3a commit https://github.com/vim/vim/commit/707659490d35e8d66e8bbdcfd93b12dc1387d86c
Christian Brabandt <cb@256bit.org>
parents: 8316
diff changeset
1289 /**/
8316
058b9e4a291b commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents: 8314
diff changeset
1290 1450,
058b9e4a291b commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents: 8314
diff changeset
1291 /**/
8314
4e057409f1d7 commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents: 8312
diff changeset
1292 1449,
4e057409f1d7 commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents: 8312
diff changeset
1293 /**/
8312
1001ec135d6e commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents: 8310
diff changeset
1294 1448,
1001ec135d6e commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents: 8310
diff changeset
1295 /**/
8310
aec8f8ce8e4c commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents: 8308
diff changeset
1296 1447,
aec8f8ce8e4c commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents: 8308
diff changeset
1297 /**/
8308
c1f29c1a968a commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents: 8306
diff changeset
1298 1446,
c1f29c1a968a commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents: 8306
diff changeset
1299 /**/
8306
7fcf3f6020c1 commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents: 8304
diff changeset
1300 1445,
7fcf3f6020c1 commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents: 8304
diff changeset
1301 /**/
8304
097886a3379b commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents: 8301
diff changeset
1302 1444,
097886a3379b commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents: 8301
diff changeset
1303 /**/
8301
6a4c11fa1aa3 commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents: 8299
diff changeset
1304 1443,
6a4c11fa1aa3 commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents: 8299
diff changeset
1305 /**/
8299
d2a215e8d5b4 commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents: 8297
diff changeset
1306 1442,
d2a215e8d5b4 commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents: 8297
diff changeset
1307 /**/
8297
4929eca308b7 commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents: 8295
diff changeset
1308 1441,
4929eca308b7 commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents: 8295
diff changeset
1309 /**/
8295
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8293
diff changeset
1310 1440,
18fd94bd4eb8 commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents: 8293
diff changeset
1311 /**/
8293
367a7fed630b commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents: 8291
diff changeset
1312 1439,
367a7fed630b commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents: 8291
diff changeset
1313 /**/
8291
ac0c43e7af20 commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
1314 1438,
ac0c43e7af20 commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents: 8289
diff changeset
1315 /**/
8289
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8287
diff changeset
1316 1437,
6ae3fb4fe7c1 commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents: 8287
diff changeset
1317 /**/
8287
56dbae4b73c6 commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents: 8285
diff changeset
1318 1436,
56dbae4b73c6 commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents: 8285
diff changeset
1319 /**/
8285
e05e28dcb590 commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents: 8283
diff changeset
1320 1435,
e05e28dcb590 commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents: 8283
diff changeset
1321 /**/
8283
b8a56d4d83e0 commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
1322 1434,
b8a56d4d83e0 commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
1323 /**/
8281
74b15ed0a259 commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents: 8279
diff changeset
1324 1433,
74b15ed0a259 commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents: 8279
diff changeset
1325 /**/
8279
738c2929d6ad commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents: 8277
diff changeset
1326 1432,
738c2929d6ad commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents: 8277
diff changeset
1327 /**/
8277
fa1e3fa56104 commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents: 8275
diff changeset
1328 1431,
fa1e3fa56104 commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents: 8275
diff changeset
1329 /**/
8275
ff900e499f79 commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents: 8273
diff changeset
1330 1430,
ff900e499f79 commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents: 8273
diff changeset
1331 /**/
8273
0c3210caefa6 commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents: 8271
diff changeset
1332 1429,
0c3210caefa6 commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents: 8271
diff changeset
1333 /**/
8271
770774e66011 commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents: 8269
diff changeset
1334 1428,
770774e66011 commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents: 8269
diff changeset
1335 /**/
8269
553a4c8dd796 commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents: 8267
diff changeset
1336 1427,
553a4c8dd796 commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents: 8267
diff changeset
1337 /**/
8267
108d30ed34ba commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents: 8265
diff changeset
1338 1426,
108d30ed34ba commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents: 8265
diff changeset
1339 /**/
8265
792bc43e69a7 commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents: 8263
diff changeset
1340 1425,
792bc43e69a7 commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents: 8263
diff changeset
1341 /**/
8263
96c0100f22f1 commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents: 8261
diff changeset
1342 1424,
96c0100f22f1 commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents: 8261
diff changeset
1343 /**/
8261
a412b466bedc commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents: 8259
diff changeset
1344 1423,
a412b466bedc commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents: 8259
diff changeset
1345 /**/
8259
99a70c3b902f commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents: 8257
diff changeset
1346 1422,
99a70c3b902f commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents: 8257
diff changeset
1347 /**/
8257
c4ffdda8cdfd commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents: 8255
diff changeset
1348 1421,
c4ffdda8cdfd commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents: 8255
diff changeset
1349 /**/
8255
355652348057 commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents: 8253
diff changeset
1350 1420,
355652348057 commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents: 8253
diff changeset
1351 /**/
8253
1b6a589a0efc commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents: 8251
diff changeset
1352 1419,
1b6a589a0efc commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents: 8251
diff changeset
1353 /**/
8251
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8249
diff changeset
1354 1418,
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8249
diff changeset
1355 /**/
8249
8dd8d96278a4 commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
1356 1417,
8dd8d96278a4 commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents: 8247
diff changeset
1357 /**/
8247
6ee794dc950e commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents: 8244
diff changeset
1358 1416,
6ee794dc950e commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents: 8244
diff changeset
1359 /**/
8244
acc8029e530f commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents: 8242
diff changeset
1360 1415,
acc8029e530f commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents: 8242
diff changeset
1361 /**/
8242
1313d2e282dc commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents: 8240
diff changeset
1362 1414,
1313d2e282dc commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents: 8240
diff changeset
1363 /**/
8240
60586ce747c4 commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents: 8238
diff changeset
1364 1413,
60586ce747c4 commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents: 8238
diff changeset
1365 /**/
8238
d7e1526ae1b9 commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents: 8236
diff changeset
1366 1412,
d7e1526ae1b9 commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents: 8236
diff changeset
1367 /**/
8236
6d221d623c8e commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents: 8234
diff changeset
1368 1411,
6d221d623c8e commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents: 8234
diff changeset
1369 /**/
8234
dc72f4a463e4 commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents: 8232
diff changeset
1370 1410,
dc72f4a463e4 commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents: 8232
diff changeset
1371 /**/
8232
a777ff826523 commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents: 8230
diff changeset
1372 1409,
a777ff826523 commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents: 8230
diff changeset
1373 /**/
8230
51ca0cee512e commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents: 8228
diff changeset
1374 1408,
51ca0cee512e commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents: 8228
diff changeset
1375 /**/
8228
a0e552c51c34 commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents: 8226
diff changeset
1376 1407,
a0e552c51c34 commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents: 8226
diff changeset
1377 /**/
8226
cb0edf7bd0a4 commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents: 8224
diff changeset
1378 1406,
cb0edf7bd0a4 commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents: 8224
diff changeset
1379 /**/
8224
2baf64fead5e commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
1380 1405,
2baf64fead5e commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
1381 /**/
8222
4f0677020a43 commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents: 8220
diff changeset
1382 1404,
4f0677020a43 commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents: 8220
diff changeset
1383 /**/
8220
ad9edad64d22 commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents: 8218
diff changeset
1384 1403,
ad9edad64d22 commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents: 8218
diff changeset
1385 /**/
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
1386 1402,
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
1387 /**/
8216
03af9acbefb0 commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents: 8214
diff changeset
1388 1401,
03af9acbefb0 commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents: 8214
diff changeset
1389 /**/
8214
51b4fba718bf commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents: 8212
diff changeset
1390 1400,
51b4fba718bf commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents: 8212
diff changeset
1391 /**/
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8210
diff changeset
1392 1399,
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8210
diff changeset
1393 /**/
8210
b717dae2f26d commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents: 8208
diff changeset
1394 1398,
b717dae2f26d commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents: 8208
diff changeset
1395 /**/
8208
c11aaa31a0ed commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents: 8206
diff changeset
1396 1397,
c11aaa31a0ed commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents: 8206
diff changeset
1397 /**/
8206
78f2e8c07973 commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents: 8204
diff changeset
1398 1396,
78f2e8c07973 commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents: 8204
diff changeset
1399 /**/
8204
08d251a1c178 commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents: 8202
diff changeset
1400 1395,
08d251a1c178 commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents: 8202
diff changeset
1401 /**/
8202
c16aa03d8db5 commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents: 8200
diff changeset
1402 1394,
c16aa03d8db5 commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents: 8200
diff changeset
1403 /**/
8200
ee84450e604e commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents: 8198
diff changeset
1404 1393,
ee84450e604e commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents: 8198
diff changeset
1405 /**/
8198
7c21dd028e0f commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents: 8196
diff changeset
1406 1392,
7c21dd028e0f commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents: 8196
diff changeset
1407 /**/
8196
cbb2f84da063 commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents: 8194
diff changeset
1408 1391,
cbb2f84da063 commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents: 8194
diff changeset
1409 /**/
8194
265bcedffc15 commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents: 8192
diff changeset
1410 1390,
265bcedffc15 commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents: 8192
diff changeset
1411 /**/
8192
fa2668601c7a commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents: 8190
diff changeset
1412 1389,
fa2668601c7a commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents: 8190
diff changeset
1413 /**/
8190
a8e7b8328cb4 commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents: 8188
diff changeset
1414 1388,
a8e7b8328cb4 commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents: 8188
diff changeset
1415 /**/
8188
9531717f0694 commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents: 8186
diff changeset
1416 1387,
9531717f0694 commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents: 8186
diff changeset
1417 /**/
8186
5fed86dac210 commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents: 8184
diff changeset
1418 1386,
5fed86dac210 commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents: 8184
diff changeset
1419 /**/
8184
1f81c571d0e7 commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents: 8182
diff changeset
1420 1385,
1f81c571d0e7 commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents: 8182
diff changeset
1421 /**/
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8180
diff changeset
1422 1384,
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8180
diff changeset
1423 /**/
8180
1e48ffa2d697 commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents: 8178
diff changeset
1424 1383,
1e48ffa2d697 commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents: 8178
diff changeset
1425 /**/
8178
e77efd7a7dad commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents: 8176
diff changeset
1426 1382,
e77efd7a7dad commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents: 8176
diff changeset
1427 /**/
8176
477c1d855698 commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents: 8174
diff changeset
1428 1381,
477c1d855698 commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents: 8174
diff changeset
1429 /**/
8174
f2286ff0c102 commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents: 8172
diff changeset
1430 1380,
f2286ff0c102 commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents: 8172
diff changeset
1431 /**/
8172
db5c79d93eee commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents: 8170
diff changeset
1432 1379,
db5c79d93eee commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents: 8170
diff changeset
1433 /**/
8170
a0ffb1f3dedc commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents: 8168
diff changeset
1434 1378,
a0ffb1f3dedc commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents: 8168
diff changeset
1435 /**/
8168
454a30a7590e commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents: 8165
diff changeset
1436 1377,
454a30a7590e commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents: 8165
diff changeset
1437 /**/
8165
973686665238 commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents: 8163
diff changeset
1438 1376,
973686665238 commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents: 8163
diff changeset
1439 /**/
8163
d8a8e86f39ad commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents: 8161
diff changeset
1440 1375,
d8a8e86f39ad commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents: 8161
diff changeset
1441 /**/
8161
e9caba58213b commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents: 8159
diff changeset
1442 1374,
e9caba58213b commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents: 8159
diff changeset
1443 /**/
8159
d0958e22d9ff commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents: 8157
diff changeset
1444 1373,
d0958e22d9ff commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents: 8157
diff changeset
1445 /**/
8157
74b44d06d3c7 commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents: 8155
diff changeset
1446 1372,
74b44d06d3c7 commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents: 8155
diff changeset
1447 /**/
8155
6ee6fb27dcea commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents: 8153
diff changeset
1448 1371,
6ee6fb27dcea commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents: 8153
diff changeset
1449 /**/
8153
240deebfadde commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents: 8151
diff changeset
1450 1370,
240deebfadde commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents: 8151
diff changeset
1451 /**/
8151
aa845d10c6fb commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents: 8149
diff changeset
1452 1369,
aa845d10c6fb commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents: 8149
diff changeset
1453 /**/
8149
028e24e4c0f4 commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents: 8146
diff changeset
1454 1368,
028e24e4c0f4 commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents: 8146
diff changeset
1455 /**/
8146
5dacbd22fefd commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents: 8144
diff changeset
1456 1367,
5dacbd22fefd commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents: 8144
diff changeset
1457 /**/
8144
efbb9916290c commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents: 8142
diff changeset
1458 1366,
efbb9916290c commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents: 8142
diff changeset
1459 /**/
8142
71aabce3142e commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents: 8140
diff changeset
1460 1365,
71aabce3142e commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents: 8140
diff changeset
1461 /**/
8140
563c923b1584 commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents: 8138
diff changeset
1462 1364,
563c923b1584 commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents: 8138
diff changeset
1463 /**/
8138
f52504c10387 commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents: 8136
diff changeset
1464 1363,
f52504c10387 commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents: 8136
diff changeset
1465 /**/
8136
9b2d25319c48 commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents: 8134
diff changeset
1466 1362,
9b2d25319c48 commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents: 8134
diff changeset
1467 /**/
8134
8abef552ece7 commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents: 8132
diff changeset
1468 1361,
8abef552ece7 commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents: 8132
diff changeset
1469 /**/
8132
f96536c291d8 commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents: 8130
diff changeset
1470 1360,
f96536c291d8 commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents: 8130
diff changeset
1471 /**/
8130
3462f9cfedf8 commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents: 8128
diff changeset
1472 1359,
3462f9cfedf8 commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents: 8128
diff changeset
1473 /**/
8128
985cd5917560 commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents: 8126
diff changeset
1474 1358,
985cd5917560 commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents: 8126
diff changeset
1475 /**/
8126
0aa9cb77a8dd commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents: 8124
diff changeset
1476 1357,
0aa9cb77a8dd commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents: 8124
diff changeset
1477 /**/
8124
310dd635e8c9 commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents: 8122
diff changeset
1478 1356,
310dd635e8c9 commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents: 8122
diff changeset
1479 /**/
8122
39532ee7dd43 commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents: 8120
diff changeset
1480 1355,
39532ee7dd43 commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents: 8120
diff changeset
1481 /**/
8120
350f8040bd37 commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents: 8118
diff changeset
1482 1354,
350f8040bd37 commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents: 8118
diff changeset
1483 /**/
8118
1f28be191fab commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents: 8116
diff changeset
1484 1353,
1f28be191fab commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents: 8116
diff changeset
1485 /**/
8116
3c1bdf20c8b9 commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents: 8114
diff changeset
1486 1352,
3c1bdf20c8b9 commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents: 8114
diff changeset
1487 /**/
8114
4aea0b0aa714 commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents: 8112
diff changeset
1488 1351,
4aea0b0aa714 commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents: 8112
diff changeset
1489 /**/
8112
a62ff5ff60c1 commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents: 8110
diff changeset
1490 1350,
a62ff5ff60c1 commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents: 8110
diff changeset
1491 /**/
8110
d1974721ddc5 commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents: 8108
diff changeset
1492 1349,
d1974721ddc5 commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents: 8108
diff changeset
1493 /**/
8108
50515f2e81d1 commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents: 8106
diff changeset
1494 1348,
50515f2e81d1 commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents: 8106
diff changeset
1495 /**/
8106
58505cbea7e5 commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents: 8104
diff changeset
1496 1347,
58505cbea7e5 commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents: 8104
diff changeset
1497 /**/
8104
1a03abdc4234 commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents: 8102
diff changeset
1498 1346,
1a03abdc4234 commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents: 8102
diff changeset
1499 /**/
8102
441298d72f3c commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents: 8100
diff changeset
1500 1345,
441298d72f3c commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents: 8100
diff changeset
1501 /**/
8100
ae50910ce279 commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents: 8098
diff changeset
1502 1344,
ae50910ce279 commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents: 8098
diff changeset
1503 /**/
8098
7bc924a34288 commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents: 8096
diff changeset
1504 1343,
7bc924a34288 commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents: 8096
diff changeset
1505 /**/
8096
882ba5080c5c commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents: 8094
diff changeset
1506 1342,
882ba5080c5c commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents: 8094
diff changeset
1507 /**/
8094
18a3f0f05244 commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents: 8092
diff changeset
1508 1341,
18a3f0f05244 commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents: 8092
diff changeset
1509 /**/
8092
d82fb42b611b commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents: 8090
diff changeset
1510 1340,
d82fb42b611b commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents: 8090
diff changeset
1511 /**/
8090
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8088
diff changeset
1512 1339,
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8088
diff changeset
1513 /**/
8088
1b70dae3e79a commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents: 8086
diff changeset
1514 1338,
1b70dae3e79a commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents: 8086
diff changeset
1515 /**/
8086
04ed31f9ef70 commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
1516 1337,
04ed31f9ef70 commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
1517 /**/
8084
3ea56a74077f commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents: 8082
diff changeset
1518 1336,
3ea56a74077f commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents: 8082
diff changeset
1519 /**/
8082
0c7f5abe84b8 commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents: 8080
diff changeset
1520 1335,
0c7f5abe84b8 commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents: 8080
diff changeset
1521 /**/
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8078
diff changeset
1522 1334,
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8078
diff changeset
1523 /**/
8078
7676818d486b commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents: 8076
diff changeset
1524 1333,
7676818d486b commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents: 8076
diff changeset
1525 /**/
8076
3b0127287851 commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents: 8074
diff changeset
1526 1332,
3b0127287851 commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents: 8074
diff changeset
1527 /**/
8074
dc32c8026899 commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents: 8072
diff changeset
1528 1331,
dc32c8026899 commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents: 8072
diff changeset
1529 /**/
8072
38887bf423ba commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents: 8070
diff changeset
1530 1330,
38887bf423ba commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents: 8070
diff changeset
1531 /**/
8070
e4c3f6720b03 commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents: 8068
diff changeset
1532 1329,
e4c3f6720b03 commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents: 8068
diff changeset
1533 /**/
8068
9c6740f2204f commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents: 8066
diff changeset
1534 1328,
9c6740f2204f commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents: 8066
diff changeset
1535 /**/
8066
1aa8ed4ee48b commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents: 8064
diff changeset
1536 1327,
1aa8ed4ee48b commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents: 8064
diff changeset
1537 /**/
8064
1e853c5273d0 commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents: 8062
diff changeset
1538 1326,
1e853c5273d0 commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents: 8062
diff changeset
1539 /**/
8062
7fe3b9dc132b commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
1540 1325,
7fe3b9dc132b commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
1541 /**/
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8057
diff changeset
1542 1324,
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8057
diff changeset
1543 /**/
8057
e407d5bce2f5 commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents: 8055
diff changeset
1544 1323,
e407d5bce2f5 commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents: 8055
diff changeset
1545 /**/
8055
6db4b1c863ec commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
1546 1322,
6db4b1c863ec commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
1547 /**/
8053
774d53057a23 commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents: 8051
diff changeset
1548 1321,
774d53057a23 commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents: 8051
diff changeset
1549 /**/
8051
7e298e8c5741 commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents: 8049
diff changeset
1550 1320,
7e298e8c5741 commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents: 8049
diff changeset
1551 /**/
8049
15253130abd8 commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents: 8047
diff changeset
1552 1319,
15253130abd8 commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents: 8047
diff changeset
1553 /**/
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8045
diff changeset
1554 1318,
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8045
diff changeset
1555 /**/
8045
9f9b74579bdc commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents: 8043
diff changeset
1556 1317,
9f9b74579bdc commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents: 8043
diff changeset
1557 /**/
8043
167e22951df4 commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents: 8041
diff changeset
1558 1316,
167e22951df4 commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents: 8041
diff changeset
1559 /**/
8041
c6443e78cf2d commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents: 8039
diff changeset
1560 1315,
c6443e78cf2d commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents: 8039
diff changeset
1561 /**/
8039
72324c2e890a commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents: 8037
diff changeset
1562 1314,
72324c2e890a commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents: 8037
diff changeset
1563 /**/
8037
9dea1571b352 commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents: 8035
diff changeset
1564 1313,
9dea1571b352 commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents: 8035
diff changeset
1565 /**/
8035
f48041801aac commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents: 8033
diff changeset
1566 1312,
f48041801aac commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents: 8033
diff changeset
1567 /**/
8033
a1b10634a28a commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents: 8031
diff changeset
1568 1311,
a1b10634a28a commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents: 8031
diff changeset
1569 /**/
8031
ece323e2b57f commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents: 8029
diff changeset
1570 1310,
ece323e2b57f commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents: 8029
diff changeset
1571 /**/
8029
770dd91ad9f7 commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents: 8027
diff changeset
1572 1309,
770dd91ad9f7 commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents: 8027
diff changeset
1573 /**/
8027
4fd171e5cedc commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents: 8025
diff changeset
1574 1308,
4fd171e5cedc commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents: 8025
diff changeset
1575 /**/
8025
1f0f08c601b7 commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
1576 1307,
1f0f08c601b7 commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
1577 /**/
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8021
diff changeset
1578 1306,
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8021
diff changeset
1579 /**/
8021
b6b4f354df23 commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents: 8019
diff changeset
1580 1305,
b6b4f354df23 commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents: 8019
diff changeset
1581 /**/
8019
d685893d852e commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents: 8017
diff changeset
1582 1304,
d685893d852e commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents: 8017
diff changeset
1583 /**/
8017
c59a65524084 commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
1584 1303,
c59a65524084 commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
1585 /**/
8015
b421c7f2f172 commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents: 8013
diff changeset
1586 1302,
b421c7f2f172 commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents: 8013
diff changeset
1587 /**/
8013
dfae8bce5920 commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents: 8011
diff changeset
1588 1301,
dfae8bce5920 commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents: 8011
diff changeset
1589 /**/
8011
26f555e9aab1 commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents: 8009
diff changeset
1590 1300,
26f555e9aab1 commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents: 8009
diff changeset
1591 /**/
8009
b2cfa3416ba0 commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents: 8007
diff changeset
1592 1299,
b2cfa3416ba0 commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents: 8007
diff changeset
1593 /**/
8007
ac78cba9e72b commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents: 8005
diff changeset
1594 1298,
ac78cba9e72b commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents: 8005
diff changeset
1595 /**/
8005
d65aa95725d3 commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents: 8003
diff changeset
1596 1297,
d65aa95725d3 commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents: 8003
diff changeset
1597 /**/
8003
94798af62c56 commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents: 8001
diff changeset
1598 1296,
94798af62c56 commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents: 8001
diff changeset
1599 /**/
8001
e5dbeb923ce6 commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents: 7999
diff changeset
1600 1295,
e5dbeb923ce6 commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents: 7999
diff changeset
1601 /**/
7999
92ad477c6ab3 commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents: 7997
diff changeset
1602 1294,
92ad477c6ab3 commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents: 7997
diff changeset
1603 /**/
7997
c1c9ab17e197 commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents: 7995
diff changeset
1604 1293,
c1c9ab17e197 commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents: 7995
diff changeset
1605 /**/
7995
d244f2e46d69 commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents: 7993
diff changeset
1606 1292,
d244f2e46d69 commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents: 7993
diff changeset
1607 /**/
7993
0756eab66b71 commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents: 7990
diff changeset
1608 1291,
0756eab66b71 commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents: 7990
diff changeset
1609 /**/
7990
75de22db840d commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents: 7988
diff changeset
1610 1290,
75de22db840d commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents: 7988
diff changeset
1611 /**/
7988
d3fed9a639db commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents: 7986
diff changeset
1612 1289,
d3fed9a639db commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents: 7986
diff changeset
1613 /**/
7986
8e0d4cd8157a commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents: 7984
diff changeset
1614 1288,
8e0d4cd8157a commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents: 7984
diff changeset
1615 /**/
7984
c166ff6797cb commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents: 7982
diff changeset
1616 1287,
c166ff6797cb commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents: 7982
diff changeset
1617 /**/
7982
5c30ba57aaea commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents: 7979
diff changeset
1618 1286,
5c30ba57aaea commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents: 7979
diff changeset
1619 /**/
7979
22367b9f528a commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents: 7977
diff changeset
1620 1285,
22367b9f528a commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents: 7977
diff changeset
1621 /**/
7977
96fe78b32ad5 commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents: 7975
diff changeset
1622 1284,
96fe78b32ad5 commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents: 7975
diff changeset
1623 /**/
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7973
diff changeset
1624 1283,
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7973
diff changeset
1625 /**/
7973
00344cd730f6 commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents: 7971
diff changeset
1626 1282,
00344cd730f6 commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents: 7971
diff changeset
1627 /**/
7971
f91a24e33475 commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents: 7969
diff changeset
1628 1281,
f91a24e33475 commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents: 7969
diff changeset
1629 /**/
7969
0de25de30ba3 commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents: 7967
diff changeset
1630 1280,
0de25de30ba3 commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents: 7967
diff changeset
1631 /**/
7967
45ea5ebf3a98 commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents: 7965
diff changeset
1632 1279,
45ea5ebf3a98 commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents: 7965
diff changeset
1633 /**/
7965
646d5148fee2 commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents: 7963
diff changeset
1634 1278,
646d5148fee2 commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents: 7963
diff changeset
1635 /**/
7963
d96e38f35e2d commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents: 7961
diff changeset
1636 1277,
d96e38f35e2d commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents: 7961
diff changeset
1637 /**/
7961
a7e58c6e4e9a commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents: 7959
diff changeset
1638 1276,
a7e58c6e4e9a commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents: 7959
diff changeset
1639 /**/
7959
fc9ba91a6533 commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents: 7957
diff changeset
1640 1275,
fc9ba91a6533 commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents: 7957
diff changeset
1641 /**/
7957
b74549818500 commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents: 7955
diff changeset
1642 1274,
b74549818500 commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents: 7955
diff changeset
1643 /**/
7955
a4de8e834b8f commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents: 7953
diff changeset
1644 1273,
a4de8e834b8f commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents: 7953
diff changeset
1645 /**/
7953
a028a16110e2 commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents: 7951
diff changeset
1646 1272,
a028a16110e2 commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents: 7951
diff changeset
1647 /**/
7951
03e716299680 commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents: 7949
diff changeset
1648 1271,
03e716299680 commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents: 7949
diff changeset
1649 /**/
7949
3f7382858d4d commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents: 7947
diff changeset
1650 1270,
3f7382858d4d commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents: 7947
diff changeset
1651 /**/
7947
b2922673917a commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents: 7945
diff changeset
1652 1269,
b2922673917a commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents: 7945
diff changeset
1653 /**/
7945
e72438a11172 commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents: 7943
diff changeset
1654 1268,
e72438a11172 commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents: 7943
diff changeset
1655 /**/
7943
e875f0fbd9c0 commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents: 7941
diff changeset
1656 1267,
e875f0fbd9c0 commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents: 7941
diff changeset
1657 /**/
7941
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7939
diff changeset
1658 1266,
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7939
diff changeset
1659 /**/
7939
dcc0bd6b1574 commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents: 7937
diff changeset
1660 1265,
dcc0bd6b1574 commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents: 7937
diff changeset
1661 /**/
7937
2e905dfc6999 commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
1662 1264,
2e905dfc6999 commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
1663 /**/
7935
3f2e0b62003d commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents: 7933
diff changeset
1664 1263,
3f2e0b62003d commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents: 7933
diff changeset
1665 /**/
7933
1f0743f4f88f commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents: 7931
diff changeset
1666 1262,
1f0743f4f88f commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents: 7931
diff changeset
1667 /**/
7931
2679e636e862 commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents: 7929
diff changeset
1668 1261,
2679e636e862 commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents: 7929
diff changeset
1669 /**/
7929
e44240b5a6da commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents: 7927
diff changeset
1670 1260,
e44240b5a6da commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents: 7927
diff changeset
1671 /**/
7927
2a34dd90beba commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents: 7925
diff changeset
1672 1259,
2a34dd90beba commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents: 7925
diff changeset
1673 /**/
7925
b724dbb299d5 commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents: 7922
diff changeset
1674 1258,
b724dbb299d5 commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents: 7922
diff changeset
1675 /**/
7922
14540239601d commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents: 7920
diff changeset
1676 1257,
14540239601d commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents: 7920
diff changeset
1677 /**/
7920
1ebc7be4dbbf commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents: 7918
diff changeset
1678 1256,
1ebc7be4dbbf commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents: 7918
diff changeset
1679 /**/
7918
ce5a7a613867 commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents: 7916
diff changeset
1680 1255,
ce5a7a613867 commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents: 7916
diff changeset
1681 /**/
7916
54602dcac207 commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents: 7914
diff changeset
1682 1254,
54602dcac207 commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents: 7914
diff changeset
1683 /**/
7914
35973ce58c84 commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents: 7912
diff changeset
1684 1253,
35973ce58c84 commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents: 7912
diff changeset
1685 /**/
7912
1c6ef9113556 commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents: 7910
diff changeset
1686 1252,
1c6ef9113556 commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents: 7910
diff changeset
1687 /**/
7910
e873010fb658 commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents: 7908
diff changeset
1688 1251,
e873010fb658 commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents: 7908
diff changeset
1689 /**/
7908
a343a738010e commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents: 7906
diff changeset
1690 1250,
a343a738010e commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents: 7906
diff changeset
1691 /**/
7906
ea1fd8d750a6 commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents: 7904
diff changeset
1692 1249,
ea1fd8d750a6 commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents: 7904
diff changeset
1693 /**/
7904
14a5de0990a5 commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents: 7902
diff changeset
1694 1248,
14a5de0990a5 commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents: 7902
diff changeset
1695 /**/
7902
f12d6235a753 commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents: 7899
diff changeset
1696 1247,
f12d6235a753 commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents: 7899
diff changeset
1697 /**/
7899
93c61501c2cf commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents: 7897
diff changeset
1698 1246,
93c61501c2cf commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents: 7897
diff changeset
1699 /**/
7897
43071dab7621 commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents: 7895
diff changeset
1700 1245,
43071dab7621 commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents: 7895
diff changeset
1701 /**/
7895
bff95e0d8885 commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents: 7893
diff changeset
1702 1244,
bff95e0d8885 commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents: 7893
diff changeset
1703 /**/
7893
df2b8af14072 commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents: 7891
diff changeset
1704 1243,
df2b8af14072 commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents: 7891
diff changeset
1705 /**/
7891
d14cf20b44dc commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents: 7889
diff changeset
1706 1242,
d14cf20b44dc commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents: 7889
diff changeset
1707 /**/
7889
8e84273089d0 commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents: 7887
diff changeset
1708 1241,
8e84273089d0 commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents: 7887
diff changeset
1709 /**/
7887
a98b93736894 commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents: 7885
diff changeset
1710 1240,
a98b93736894 commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents: 7885
diff changeset
1711 /**/
7885
6e6f829af138 commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents: 7883
diff changeset
1712 1239,
6e6f829af138 commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents: 7883
diff changeset
1713 /**/
7883
98a96e0ca73b commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents: 7881
diff changeset
1714 1238,
98a96e0ca73b commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents: 7881
diff changeset
1715 /**/
7881
e7afe45a202a commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents: 7879
diff changeset
1716 1237,
e7afe45a202a commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents: 7879
diff changeset
1717 /**/
7879
895150cd3e6f commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents: 7877
diff changeset
1718 1236,
895150cd3e6f commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents: 7877
diff changeset
1719 /**/
7877
7fbd2de703a9 commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents: 7874
diff changeset
1720 1235,
7fbd2de703a9 commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents: 7874
diff changeset
1721 /**/
7874
2313f1a94153 commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents: 7872
diff changeset
1722 1234,
2313f1a94153 commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents: 7872
diff changeset
1723 /**/
7872
4b9d4600166f commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents: 7870
diff changeset
1724 1233,
4b9d4600166f commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents: 7870
diff changeset
1725 /**/
7870
fb5ba6fbc843 commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents: 7868
diff changeset
1726 1232,
fb5ba6fbc843 commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents: 7868
diff changeset
1727 /**/
7868
17e6ff1a74f1 commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents: 7866
diff changeset
1728 1231,
17e6ff1a74f1 commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents: 7866
diff changeset
1729 /**/
7866
30a9f5fc3508 commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents: 7864
diff changeset
1730 1230,
30a9f5fc3508 commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents: 7864
diff changeset
1731 /**/
7864
6b0891de44a9 commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents: 7862
diff changeset
1732 1229,
6b0891de44a9 commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents: 7862
diff changeset
1733 /**/
7862
d4fec9208e7e commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents: 7860
diff changeset
1734 1228,
d4fec9208e7e commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents: 7860
diff changeset
1735 /**/
7860
150576e6b984 commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents: 7858
diff changeset
1736 1227,
150576e6b984 commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents: 7858
diff changeset
1737 /**/
7858
e90a16795c74 commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents: 7856
diff changeset
1738 1226,
e90a16795c74 commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents: 7856
diff changeset
1739 /**/
7856
226ed297307f commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents: 7854
diff changeset
1740 1225,
226ed297307f commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents: 7854
diff changeset
1741 /**/
7854
b512d9cce151 commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents: 7852
diff changeset
1742 1224,
b512d9cce151 commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents: 7852
diff changeset
1743 /**/
7852
8818755d8326 commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
1744 1223,
8818755d8326 commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
1745 /**/
7850
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7848
diff changeset
1746 1222,
10f17a228661 commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents: 7848
diff changeset
1747 /**/
7848
798673834bab commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents: 7846
diff changeset
1748 1221,
798673834bab commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents: 7846
diff changeset
1749 /**/
7846
2f7ad0b85929 commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents: 7844
diff changeset
1750 1220,
2f7ad0b85929 commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents: 7844
diff changeset
1751 /**/
7844
6669966db9e9 commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents: 7842
diff changeset
1752 1219,
6669966db9e9 commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents: 7842
diff changeset
1753 /**/
7842
cf744110897d commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents: 7840
diff changeset
1754 1218,
cf744110897d commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents: 7840
diff changeset
1755 /**/
7840
28f569c7dab9 commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents: 7838
diff changeset
1756 1217,
28f569c7dab9 commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents: 7838
diff changeset
1757 /**/
7838
cfed0e9f0ca2 commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents: 7837
diff changeset
1758 1216,
cfed0e9f0ca2 commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents: 7837
diff changeset
1759 /**/
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
1760 1215,
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
1761 /**/
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7833
diff changeset
1762 1214,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7833
diff changeset
1763 /**/
7833
c079097365f3 commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents: 7831
diff changeset
1764 1213,
c079097365f3 commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents: 7831
diff changeset
1765 /**/
7831
d621ab23fd19 commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
1766 1212,
d621ab23fd19 commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
1767 /**/
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7827
diff changeset
1768 1211,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7827
diff changeset
1769 /**/
7827
41789f16d6b2 commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents: 7825
diff changeset
1770 1210,
41789f16d6b2 commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents: 7825
diff changeset
1771 /**/
7825
7898da204b98 commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents: 7823
diff changeset
1772 1209,
7898da204b98 commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents: 7823
diff changeset
1773 /**/
7823
bcef391c101c commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1774 1208,
bcef391c101c commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents: 7821
diff changeset
1775 /**/
7821
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7819
diff changeset
1776 1207,
81794242a275 commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents: 7819
diff changeset
1777 /**/
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7817
diff changeset
1778 1206,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7817
diff changeset
1779 /**/
7817
83861277e6a3 commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents: 7815
diff changeset
1780 1205,
83861277e6a3 commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents: 7815
diff changeset
1781 /**/
7815
3a96dfb42c55 commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents: 7813
diff changeset
1782 1204,
3a96dfb42c55 commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents: 7813
diff changeset
1783 /**/
7813
744c66477ba9 commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents: 7811
diff changeset
1784 1203,
744c66477ba9 commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents: 7811
diff changeset
1785 /**/
7811
7fda54504fee commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents: 7809
diff changeset
1786 1202,
7fda54504fee commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents: 7809
diff changeset
1787 /**/
7809
4635a259ecc0 commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents: 7807
diff changeset
1788 1201,
4635a259ecc0 commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents: 7807
diff changeset
1789 /**/
7807
1a5d34492798 commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1790 1200,
1a5d34492798 commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1791 /**/
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1792 1199,
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1793 /**/
7803
37c929c4a073 commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1794 1198,
37c929c4a073 commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents: 7801
diff changeset
1795 /**/
7801
a1e71a01dbd6 commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1796 1197,
a1e71a01dbd6 commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1797 /**/
7799
af3c41a3c53f commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents: 7797
diff changeset
1798 1196,
af3c41a3c53f commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents: 7797
diff changeset
1799 /**/
7797
0d46cea25641 commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents: 7795
diff changeset
1800 1195,
0d46cea25641 commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents: 7795
diff changeset
1801 /**/
7795
4f23088b47ea commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents: 7793
diff changeset
1802 1194,
4f23088b47ea commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents: 7793
diff changeset
1803 /**/
7793
2981a37cec61 commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents: 7791
diff changeset
1804 1193,
2981a37cec61 commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents: 7791
diff changeset
1805 /**/
7791
6f81cf49da14 commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents: 7788
diff changeset
1806 1192,
6f81cf49da14 commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents: 7788
diff changeset
1807 /**/
7788
192ae655ac91 commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents: 7786
diff changeset
1808 1191,
192ae655ac91 commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents: 7786
diff changeset
1809 /**/
7786
0ee0c7729f28 commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents: 7784
diff changeset
1810 1190,
0ee0c7729f28 commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents: 7784
diff changeset
1811 /**/
7784
29d4ee3f009a commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents: 7782
diff changeset
1812 1189,
29d4ee3f009a commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents: 7782
diff changeset
1813 /**/
7782
3a99194bd187 commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents: 7780
diff changeset
1814 1188,
3a99194bd187 commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents: 7780
diff changeset
1815 /**/
7780
e09af43f98f7 commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents: 7778
diff changeset
1816 1187,
e09af43f98f7 commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents: 7778
diff changeset
1817 /**/
7778
4e09a38129a3 commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents: 7776
diff changeset
1818 1186,
4e09a38129a3 commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents: 7776
diff changeset
1819 /**/
7776
d30f4f9b1024 commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents: 7774
diff changeset
1820 1185,
d30f4f9b1024 commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents: 7774
diff changeset
1821 /**/
7774
656db98806b3 commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents: 7772
diff changeset
1822 1184,
656db98806b3 commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents: 7772
diff changeset
1823 /**/
7772
0677c5b880d1 commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents: 7770
diff changeset
1824 1183,
0677c5b880d1 commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents: 7770
diff changeset
1825 /**/
7770
42c1a4e63d12 commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents: 7768
diff changeset
1826 1182,
42c1a4e63d12 commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents: 7768
diff changeset
1827 /**/
7768
3d8e4e0d7127 commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents: 7765
diff changeset
1828 1181,
3d8e4e0d7127 commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents: 7765
diff changeset
1829 /**/
7765
9c0d554a497e commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents: 7763
diff changeset
1830 1180,
9c0d554a497e commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents: 7763
diff changeset
1831 /**/
7763
26bb1a6abe25 commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents: 7761
diff changeset
1832 1179,
26bb1a6abe25 commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents: 7761
diff changeset
1833 /**/
7761
db5864658024 commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents: 7759
diff changeset
1834 1178,
db5864658024 commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents: 7759
diff changeset
1835 /**/
7759
39be49fd70d9 commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents: 7757
diff changeset
1836 1177,
39be49fd70d9 commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents: 7757
diff changeset
1837 /**/
7757
34bfc3456830 commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents: 7755
diff changeset
1838 1176,
34bfc3456830 commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents: 7755
diff changeset
1839 /**/
7755
b21c2a9dcd7d commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents: 7753
diff changeset
1840 1175,
b21c2a9dcd7d commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents: 7753
diff changeset
1841 /**/
7753
15e67f90b9b2 commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents: 7751
diff changeset
1842 1174,
15e67f90b9b2 commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents: 7751
diff changeset
1843 /**/
7751
d6e62c739839 commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents: 7749
diff changeset
1844 1173,
d6e62c739839 commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents: 7749
diff changeset
1845 /**/
7749
3a1b60f5e89b commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents: 7747
diff changeset
1846 1172,
3a1b60f5e89b commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents: 7747
diff changeset
1847 /**/
7747
e086f4ca4617 commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents: 7745
diff changeset
1848 1171,
e086f4ca4617 commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents: 7745
diff changeset
1849 /**/
7745
555da309a7de commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents: 7743
diff changeset
1850 1170,
555da309a7de commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents: 7743
diff changeset
1851 /**/
7743
6069f43cea4e commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents: 7740
diff changeset
1852 1169,
6069f43cea4e commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents: 7740
diff changeset
1853 /**/
7740
00fc76e6bd99 commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents: 7738
diff changeset
1854 1168,
00fc76e6bd99 commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents: 7738
diff changeset
1855 /**/
7738
598a96d35a0e commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents: 7736
diff changeset
1856 1167,
598a96d35a0e commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents: 7736
diff changeset
1857 /**/
7736
f2ddad8cbce7 commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents: 7734
diff changeset
1858 1166,
f2ddad8cbce7 commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents: 7734
diff changeset
1859 /**/
7734
616769d423fc commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents: 7732
diff changeset
1860 1165,
616769d423fc commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents: 7732
diff changeset
1861 /**/
7732
4a4f1dd1abe8 commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents: 7730
diff changeset
1862 1164,
4a4f1dd1abe8 commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents: 7730
diff changeset
1863 /**/
7730
80ce794827c4 commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents: 7728
diff changeset
1864 1163,
80ce794827c4 commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents: 7728
diff changeset
1865 /**/
7728
e493c5dd85b3 commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents: 7726
diff changeset
1866 1162,
e493c5dd85b3 commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents: 7726
diff changeset
1867 /**/
7726
f6311c321411 commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents: 7724
diff changeset
1868 1161,
f6311c321411 commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents: 7724
diff changeset
1869 /**/
7724
87f3f9536ecf commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents: 7722
diff changeset
1870 1160,
87f3f9536ecf commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents: 7722
diff changeset
1871 /**/
7722
c4f8b1d48f20 commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents: 7720
diff changeset
1872 1159,
c4f8b1d48f20 commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents: 7720
diff changeset
1873 /**/
7720
7c52f11e6df3 commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents: 7718
diff changeset
1874 1158,
7c52f11e6df3 commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents: 7718
diff changeset
1875 /**/
7718
6ebd8bdf41bc commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents: 7716
diff changeset
1876 1157,
6ebd8bdf41bc commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents: 7716
diff changeset
1877 /**/
7716
9d79943791ea commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents: 7714
diff changeset
1878 1156,
9d79943791ea commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents: 7714
diff changeset
1879 /**/
7714
c29a7e38b8ac commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents: 7712
diff changeset
1880 1155,
c29a7e38b8ac commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents: 7712
diff changeset
1881 /**/
7712
bce3b5ddb393 commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents: 7710
diff changeset
1882 1154,
bce3b5ddb393 commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents: 7710
diff changeset
1883 /**/
7710
bf58e9f8d52a commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents: 7708
diff changeset
1884 1153,
bf58e9f8d52a commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents: 7708
diff changeset
1885 /**/
7708
1a595b2a4d5e commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents: 7705
diff changeset
1886 1152,
1a595b2a4d5e commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents: 7705
diff changeset
1887 /**/
7705
1b9a1c10806b commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents: 7703
diff changeset
1888 1151,
1b9a1c10806b commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents: 7703
diff changeset
1889 /**/
7703
39251e981d1f commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents: 7701
diff changeset
1890 1150,
39251e981d1f commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents: 7701
diff changeset
1891 /**/
7701
075810b0cb6c commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents: 7699
diff changeset
1892 1149,
075810b0cb6c commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents: 7699
diff changeset
1893 /**/
7699
854302b82ff9 commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
1894 1148,
854302b82ff9 commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
1895 /**/
7697
f04e2b6feea2 commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents: 7695
diff changeset
1896 1147,
f04e2b6feea2 commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents: 7695
diff changeset
1897 /**/
7695
a865f9773cb2 commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents: 7693
diff changeset
1898 1146,
a865f9773cb2 commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents: 7693
diff changeset
1899 /**/
7693
6157052a0e58 commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents: 7691
diff changeset
1900 1145,
6157052a0e58 commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents: 7691
diff changeset
1901 /**/
7691
fd4175b669e2 commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents: 7689
diff changeset
1902 1144,
fd4175b669e2 commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents: 7689
diff changeset
1903 /**/
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
1904 1143,
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
1905 /**/
7687
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents: 7685
diff changeset
1906 1142,
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents: 7685
diff changeset
1907 /**/
7685
616460b73ee3 commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents: 7683
diff changeset
1908 1141,
616460b73ee3 commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents: 7683
diff changeset
1909 /**/
7683
ec434c82f72c commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents: 7681
diff changeset
1910 1140,
ec434c82f72c commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents: 7681
diff changeset
1911 /**/
7681
07cfa8fea697 commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents: 7679
diff changeset
1912 1139,
07cfa8fea697 commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents: 7679
diff changeset
1913 /**/
7679
c80284cfe1b8 commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents: 7677
diff changeset
1914 1138,
c80284cfe1b8 commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents: 7677
diff changeset
1915 /**/
7677
85a7a945fb87 commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents: 7675
diff changeset
1916 1137,
85a7a945fb87 commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents: 7675
diff changeset
1917 /**/
7675
eb9cc96138a3 commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents: 7672
diff changeset
1918 1136,
eb9cc96138a3 commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents: 7672
diff changeset
1919 /**/
7672
da2eb24b83d2 commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents: 7670
diff changeset
1920 1135,
da2eb24b83d2 commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents: 7670
diff changeset
1921 /**/
7670
fd31843c7b58 commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents: 7668
diff changeset
1922 1134,
fd31843c7b58 commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents: 7668
diff changeset
1923 /**/
7668
21b0a39d13ed commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents: 7666
diff changeset
1924 1133,
21b0a39d13ed commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents: 7666
diff changeset
1925 /**/
7666
8edd1afaf6b7 commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
1926 1132,
8edd1afaf6b7 commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
1927 /**/
7664
1fded31d9e04 commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents: 7662
diff changeset
1928 1131,
1fded31d9e04 commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents: 7662
diff changeset
1929 /**/
7662
4d34891e98f4 commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents: 7660
diff changeset
1930 1130,
4d34891e98f4 commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents: 7660
diff changeset
1931 /**/
7660
066ef357ea91 commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents: 7657
diff changeset
1932 1129,
066ef357ea91 commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents: 7657
diff changeset
1933 /**/
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7655
diff changeset
1934 1128,
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7655
diff changeset
1935 /**/
7655
94f34dc2f254 commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents: 7653
diff changeset
1936 1127,
94f34dc2f254 commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents: 7653
diff changeset
1937 /**/
7653
d4370fef0175 commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents: 7651
diff changeset
1938 1126,
d4370fef0175 commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents: 7651
diff changeset
1939 /**/
7651
c7575b07de98 commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents: 7649
diff changeset
1940 1125,
c7575b07de98 commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents: 7649
diff changeset
1941 /**/
7649
4d97a97495bb commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents: 7647
diff changeset
1942 1124,
4d97a97495bb commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents: 7647
diff changeset
1943 /**/
7647
65b2d593c203 commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents: 7645
diff changeset
1944 1123,
65b2d593c203 commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents: 7645
diff changeset
1945 /**/
7645
1529ae1c456a commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents: 7643
diff changeset
1946 1122,
1529ae1c456a commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents: 7643
diff changeset
1947 /**/
7643
2b2e90fcd72b commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents: 7641
diff changeset
1948 1121,
2b2e90fcd72b commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents: 7641
diff changeset
1949 /**/
7641
b44fc33ef92a commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents: 7639
diff changeset
1950 1120,
b44fc33ef92a commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents: 7639
diff changeset
1951 /**/
7639
0ecb62a66a7a commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents: 7637
diff changeset
1952 1119,
0ecb62a66a7a commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents: 7637
diff changeset
1953 /**/
7637
81f94c1e2e4d commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents: 7635
diff changeset
1954 1118,
81f94c1e2e4d commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents: 7635
diff changeset
1955 /**/
7635
1506f86b120f commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents: 7633
diff changeset
1956 1117,
1506f86b120f commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents: 7633
diff changeset
1957 /**/
7633
2a280b8e7040 commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents: 7631
diff changeset
1958 1116,
2a280b8e7040 commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents: 7631
diff changeset
1959 /**/
7631
ad3e9ea845e7 commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents: 7629
diff changeset
1960 1115,
ad3e9ea845e7 commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents: 7629
diff changeset
1961 /**/
7629
befbed72da87 commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents: 7627
diff changeset
1962 1114,
befbed72da87 commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents: 7627
diff changeset
1963 /**/
7627
d9ec7d22494d commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents: 7625
diff changeset
1964 1113,
d9ec7d22494d commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents: 7625
diff changeset
1965 /**/
7625
b4384c581806 commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents: 7623
diff changeset
1966 1112,
b4384c581806 commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents: 7623
diff changeset
1967 /**/
7623
2720952e9acb commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents: 7621
diff changeset
1968 1111,
2720952e9acb commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents: 7621
diff changeset
1969 /**/
7621
503534e56ce1 commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
1970 1110,
503534e56ce1 commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
1971 /**/
7619
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7617
diff changeset
1972 1109,
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7617
diff changeset
1973 /**/
7617
80bc36419c21 commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents: 7615
diff changeset
1974 1108,
80bc36419c21 commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents: 7615
diff changeset
1975 /**/
7615
228ff048db20 commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
1976 1107,
228ff048db20 commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
1977 /**/
7613
4456fa2d22e8 commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents: 7611
diff changeset
1978 1106,
4456fa2d22e8 commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents: 7611
diff changeset
1979 /**/
7611
9c420b8db435 commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents: 7609
diff changeset
1980 1105,
9c420b8db435 commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents: 7609
diff changeset
1981 /**/
7609
77a14f3bc18b commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents: 7607
diff changeset
1982 1104,
77a14f3bc18b commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents: 7607
diff changeset
1983 /**/
7607
33b43ec0a005 commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents: 7605
diff changeset
1984 1103,
33b43ec0a005 commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents: 7605
diff changeset
1985 /**/
7605
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7603
diff changeset
1986 1102,
8fc60af6dbf5 commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents: 7603
diff changeset
1987 /**/
7603
d3892f6c917e commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents: 7602
diff changeset
1988 1101,
d3892f6c917e commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents: 7602
diff changeset
1989 /**/
7602
a82b2d79e61b commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents: 7600
diff changeset
1990 1100,
a82b2d79e61b commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents: 7600
diff changeset
1991 /**/
7600
fa59fafb6a94 commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents: 7598
diff changeset
1992 1099,
fa59fafb6a94 commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents: 7598
diff changeset
1993 /**/
7598
1a528724f9d6 commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents: 7595
diff changeset
1994 1098,
1a528724f9d6 commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents: 7595
diff changeset
1995 /**/
7595
99e93f72ff91 commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents: 7593
diff changeset
1996 1097,
99e93f72ff91 commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents: 7593
diff changeset
1997 /**/
7593
87e607fb6853 commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents: 7591
diff changeset
1998 1096,
87e607fb6853 commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents: 7591
diff changeset
1999 /**/
7591
4447dc38bc22 commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents: 7588
diff changeset
2000 1095,
4447dc38bc22 commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents: 7588
diff changeset
2001 /**/
7588
0738fa9c4971 commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents: 7586
diff changeset
2002 1094,
0738fa9c4971 commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents: 7586
diff changeset
2003 /**/
7586
9fc996244059 commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents: 7584
diff changeset
2004 1093,
9fc996244059 commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents: 7584
diff changeset
2005 /**/
7584
9b7de205336d commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents: 7582
diff changeset
2006 1092,
9b7de205336d commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents: 7582
diff changeset
2007 /**/
7582
e0acbccdf1fc commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents: 7580
diff changeset
2008 1091,
e0acbccdf1fc commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents: 7580
diff changeset
2009 /**/
7580
e9c8eacb6760 commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents: 7578
diff changeset
2010 1090,
e9c8eacb6760 commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents: 7578
diff changeset
2011 /**/
7578
fdae4c496775 commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents: 7576
diff changeset
2012 1089,
fdae4c496775 commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents: 7576
diff changeset
2013 /**/
7576
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2014 1088,
e008ca0e2af2 commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents: 7574
diff changeset
2015 /**/
7574
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7572
diff changeset
2016 1087,
b872724c37db commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents: 7572
diff changeset
2017 /**/
7572
992fe73d4ee6 commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2018 1086,
992fe73d4ee6 commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents: 7570
diff changeset
2019 /**/
7570
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
2020 1085,
4250ecde6009 commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents: 7568
diff changeset
2021 /**/
7568
5274513d3f54 commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents: 7566
diff changeset
2022 1084,
5274513d3f54 commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents: 7566
diff changeset
2023 /**/
7566
1dd5b27a79b1 commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents: 7564
diff changeset
2024 1083,
1dd5b27a79b1 commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents: 7564
diff changeset
2025 /**/
7564
aee06f1762e0 commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents: 7562
diff changeset
2026 1082,
aee06f1762e0 commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents: 7562
diff changeset
2027 /**/
7562
f73876aa9a13 commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents: 7560
diff changeset
2028 1081,
f73876aa9a13 commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents: 7560
diff changeset
2029 /**/
7560
fb84355cd972 commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents: 7558
diff changeset
2030 1080,
fb84355cd972 commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents: 7558
diff changeset
2031 /**/
7558
9a4c9dccd603 commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents: 7555
diff changeset
2032 1079,
9a4c9dccd603 commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents: 7555
diff changeset
2033 /**/
7555
5bbfac219f20 commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents: 7553
diff changeset
2034 1078,
5bbfac219f20 commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents: 7553
diff changeset
2035 /**/
7553
f0205ac9818f commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
2036 1077,
f0205ac9818f commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents: 7551
diff changeset
2037 /**/
7551
f624d7671e0c commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents: 7549
diff changeset
2038 1076,
f624d7671e0c commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents: 7549
diff changeset
2039 /**/
7549
b80fb2cfd62b commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents: 7547
diff changeset
2040 1075,
b80fb2cfd62b commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents: 7547
diff changeset
2041 /**/
7547
567e027a3ea1 commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents: 7545
diff changeset
2042 1074,
567e027a3ea1 commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents: 7545
diff changeset
2043 /**/
7545
4c922651fd78 commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents: 7542
diff changeset
2044 1073,
4c922651fd78 commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents: 7542
diff changeset
2045 /**/
7542
7df80e470272 commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents: 7540
diff changeset
2046 1072,
7df80e470272 commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents: 7540
diff changeset
2047 /**/
7540
b910bb01832a commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents: 7538
diff changeset
2048 1071,
b910bb01832a commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents: 7538
diff changeset
2049 /**/
7538
c9fc24b76293 commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents: 7536
diff changeset
2050 1070,
c9fc24b76293 commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents: 7536
diff changeset
2051 /**/
7536
30b74472ff81 commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents: 7534
diff changeset
2052 1069,
30b74472ff81 commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents: 7534
diff changeset
2053 /**/
7534
0765665083be commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents: 7532
diff changeset
2054 1068,
0765665083be commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents: 7532
diff changeset
2055 /**/
7532
0acbe61244ac commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents: 7530
diff changeset
2056 1067,
0acbe61244ac commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents: 7530
diff changeset
2057 /**/
7530
5d1b5fd708c6 commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents: 7528
diff changeset
2058 1066,
5d1b5fd708c6 commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents: 7528
diff changeset
2059 /**/
7528
53163e4d9e4f commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents: 7526
diff changeset
2060 1065,
53163e4d9e4f commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents: 7526
diff changeset
2061 /**/
7526
08c1f73efcde commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents: 7523
diff changeset
2062 1064,
08c1f73efcde commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents: 7523
diff changeset
2063 /**/
7523
55cd9a99514d commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents: 7521
diff changeset
2064 1063,
55cd9a99514d commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents: 7521
diff changeset
2065 /**/
7521
665330ac1d78 commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents: 7519
diff changeset
2066 1062,
665330ac1d78 commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents: 7519
diff changeset
2067 /**/
7519
98fede2c9574 commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents: 7517
diff changeset
2068 1061,
98fede2c9574 commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents: 7517
diff changeset
2069 /**/
7517
9d67399f49c6 commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents: 7515
diff changeset
2070 1060,
9d67399f49c6 commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents: 7515
diff changeset
2071 /**/
7515
cc0398578d2f commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents: 7513
diff changeset
2072 1059,
cc0398578d2f commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents: 7513
diff changeset
2073 /**/
7513
37e061ec063c commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents: 7511
diff changeset
2074 1058,
37e061ec063c commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents: 7511
diff changeset
2075 /**/
7511
9985800f116d commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents: 7509
diff changeset
2076 1057,
9985800f116d commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents: 7509
diff changeset
2077 /**/
7509
a64793340689 commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents: 7506
diff changeset
2078 1056,
a64793340689 commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents: 7506
diff changeset
2079 /**/
7506
cfc0d60f6233 commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents: 7504
diff changeset
2080 1055,
cfc0d60f6233 commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents: 7504
diff changeset
2081 /**/
7504
013f285f31a6 commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents: 7502
diff changeset
2082 1054,
013f285f31a6 commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents: 7502
diff changeset
2083 /**/
7502
3e306ae760d0 commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents: 7500
diff changeset
2084 1053,
3e306ae760d0 commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents: 7500
diff changeset
2085 /**/
7500
ef568437e49a commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents: 7498
diff changeset
2086 1052,
ef568437e49a commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents: 7498
diff changeset
2087 /**/
7498
3fcd3d235f7b commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents: 7496
diff changeset
2088 1051,
3fcd3d235f7b commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents: 7496
diff changeset
2089 /**/
7496
6d969668bfc8 commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents: 7494
diff changeset
2090 1050,
6d969668bfc8 commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents: 7494
diff changeset
2091 /**/
7494
b4419a42ac32 commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents: 7492
diff changeset
2092 1049,
b4419a42ac32 commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents: 7492
diff changeset
2093 /**/
7492
26d13d73837f commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents: 7490
diff changeset
2094 1048,
26d13d73837f commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents: 7490
diff changeset
2095 /**/
7490
4a81ecde8701 commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents: 7488
diff changeset
2096 1047,
4a81ecde8701 commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents: 7488
diff changeset
2097 /**/
7488
6f14d7da2d8a commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents: 7486
diff changeset
2098 1046,
6f14d7da2d8a commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents: 7486
diff changeset
2099 /**/
7486
8d09c2ce1825 commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents: 7484
diff changeset
2100 1045,
8d09c2ce1825 commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents: 7484
diff changeset
2101 /**/
7484
1fe988587423 commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents: 7482
diff changeset
2102 1044,
1fe988587423 commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents: 7482
diff changeset
2103 /**/
7482
52d76b2f56c7 commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents: 7480
diff changeset
2104 1043,
52d76b2f56c7 commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents: 7480
diff changeset
2105 /**/
7480
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7478
diff changeset
2106 1042,
a49163681559 commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents: 7478
diff changeset
2107 /**/
7478
dbfa0f9ab289 commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents: 7475
diff changeset
2108 1041,
dbfa0f9ab289 commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents: 7475
diff changeset
2109 /**/
7475
6b5ce5161d6d commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents: 7473
diff changeset
2110 1040,
6b5ce5161d6d commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents: 7473
diff changeset
2111 /**/
7473
ef60fac8f3eb commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents: 7471
diff changeset
2112 1039,
ef60fac8f3eb commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents: 7471
diff changeset
2113 /**/
7471
c79a52efcf2f commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents: 7469
diff changeset
2114 1038,
c79a52efcf2f commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents: 7469
diff changeset
2115 /**/
7469
15eefe1b0dad commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents: 7467
diff changeset
2116 1037,
15eefe1b0dad commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents: 7467
diff changeset
2117 /**/
7467
765110dd332c commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents: 7465
diff changeset
2118 1036,
765110dd332c commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents: 7465
diff changeset
2119 /**/
7465
71e2aca45b81 commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents: 7462
diff changeset
2120 1035,
71e2aca45b81 commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents: 7462
diff changeset
2121 /**/
7462
eb7b199f3d01 commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents: 7460
diff changeset
2122 1034,
eb7b199f3d01 commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents: 7460
diff changeset
2123 /**/
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7458
diff changeset
2124 1033,
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7458
diff changeset
2125 /**/
7458
e583db6c4fd4 commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents: 7456
diff changeset
2126 1032,
e583db6c4fd4 commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents: 7456
diff changeset
2127 /**/
7456
2c5e813e8852 commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents: 7454
diff changeset
2128 1031,
2c5e813e8852 commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents: 7454
diff changeset
2129 /**/
7454
4ff843da79fd commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents: 7452
diff changeset
2130 1030,
4ff843da79fd commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents: 7452
diff changeset
2131 /**/
7452
b3eb1dfbc1fa commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents: 7450
diff changeset
2132 1029,
b3eb1dfbc1fa commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents: 7450
diff changeset
2133 /**/
7450
e159dff12e40 commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
2134 1028,
e159dff12e40 commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents: 7447
diff changeset
2135 /**/
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7445
diff changeset
2136 1027,
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7445
diff changeset
2137 /**/
7445
e81526d6709f commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents: 7443
diff changeset
2138 1026,
e81526d6709f commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents: 7443
diff changeset
2139 /**/
7443
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7441
diff changeset
2140 1025,
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7441
diff changeset
2141 /**/
7441
7017b495ca53 commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
2142 1024,
7017b495ca53 commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
2143 /**/
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7437
diff changeset
2144 1023,
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7437
diff changeset
2145 /**/
7437
388977454c14 commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents: 7435
diff changeset
2146 1022,
388977454c14 commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents: 7435
diff changeset
2147 /**/
7435
a4b4cbf8d044 commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents: 7433
diff changeset
2148 1021,
a4b4cbf8d044 commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents: 7433
diff changeset
2149 /**/
7433
b5d07f5e78ba commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents: 7430
diff changeset
2150 1020,
b5d07f5e78ba commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents: 7430
diff changeset
2151 /**/
7430
e2fe7a67b3a4 commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents: 7428
diff changeset
2152 1019,
e2fe7a67b3a4 commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents: 7428
diff changeset
2153 /**/
7428
a4838cba1f48 commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents: 7426
diff changeset
2154 1018,
a4838cba1f48 commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents: 7426
diff changeset
2155 /**/
7426
779a7c14c795 commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents: 7424
diff changeset
2156 1017,
779a7c14c795 commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents: 7424
diff changeset
2157 /**/
7424
c260e4df3a24 commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents: 7422
diff changeset
2158 1016,
c260e4df3a24 commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents: 7422
diff changeset
2159 /**/
7422
35af1e06696b commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents: 7420
diff changeset
2160 1015,
35af1e06696b commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents: 7420
diff changeset
2161 /**/
7420
37092e334ef2 commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents: 7418
diff changeset
2162 1014,
37092e334ef2 commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents: 7418
diff changeset
2163 /**/
7418
e7874551bb34 commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents: 7416
diff changeset
2164 1013,
e7874551bb34 commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents: 7416
diff changeset
2165 /**/
7416
cd69647bb839 commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents: 7414
diff changeset
2166 1012,
cd69647bb839 commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents: 7414
diff changeset
2167 /**/
7414
d467ca80d3c1 commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
2168 1011,
d467ca80d3c1 commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
2169 /**/
7412
bc5de65e499a commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
2170 1010,
bc5de65e499a commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents: 7410
diff changeset
2171 /**/
7410
08e62c4fc17d commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents: 7408
diff changeset
2172 1009,
08e62c4fc17d commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents: 7408
diff changeset
2173 /**/
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7406
diff changeset
2174 1008,
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7406
diff changeset
2175 /**/
7406
c97735aaef9f commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents: 7404
diff changeset
2176 1007,
c97735aaef9f commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents: 7404
diff changeset
2177 /**/
7404
fb61ce5915fc commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents: 7402
diff changeset
2178 1006,
fb61ce5915fc commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents: 7402
diff changeset
2179 /**/
7402
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7399
diff changeset
2180 1005,
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7399
diff changeset
2181 /**/
7399
d45f2dbdac8d commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents: 7397
diff changeset
2182 1004,
d45f2dbdac8d commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents: 7397
diff changeset
2183 /**/
7397
7ec544daecd5 commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents: 7395
diff changeset
2184 1003,
7ec544daecd5 commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents: 7395
diff changeset
2185 /**/
7395
377253525da5 commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents: 7393
diff changeset
2186 1002,
377253525da5 commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents: 7393
diff changeset
2187 /**/
7393
467b7c511585 commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents: 7391
diff changeset
2188 1001,
467b7c511585 commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents: 7391
diff changeset
2189 /**/
7391
4761fed349ed commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents: 7389
diff changeset
2190 1000,
4761fed349ed commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents: 7389
diff changeset
2191 /**/
7389
f7ed82d38e6d commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents: 7387
diff changeset
2192 999,
f7ed82d38e6d commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents: 7387
diff changeset
2193 /**/
7387
702f694c9396 commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents: 7385
diff changeset
2194 998,
702f694c9396 commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents: 7385
diff changeset
2195 /**/
7385
160f4b03d8d0 commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
2196 997,
160f4b03d8d0 commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
2197 /**/
7382
58958b8c9881 commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents: 7380
diff changeset
2198 996,
58958b8c9881 commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents: 7380
diff changeset
2199 /**/
7380
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 7378
diff changeset
2200 995,
055a0b587a3e commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents: 7378
diff changeset
2201 /**/
7378
a6c23c3c5880 commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents: 7376
diff changeset
2202 994,
a6c23c3c5880 commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents: 7376
diff changeset
2203 /**/
7376
88843d12c82b commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents: 7374
diff changeset
2204 993,
88843d12c82b commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents: 7374
diff changeset
2205 /**/
7374
7e367104f6b6 commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents: 7372
diff changeset
2206 992,
7e367104f6b6 commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents: 7372
diff changeset
2207 /**/
7372
6b057079a836 commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents: 7370
diff changeset
2208 991,
6b057079a836 commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents: 7370
diff changeset
2209 /**/
7370
e396c6134266 commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents: 7368
diff changeset
2210 990,
e396c6134266 commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents: 7368
diff changeset
2211 /**/
7368
adc796ba7dda commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents: 7366
diff changeset
2212 989,
adc796ba7dda commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents: 7366
diff changeset
2213 /**/
7366
eec1dc8ca160 commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents: 7364
diff changeset
2214 988,
eec1dc8ca160 commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents: 7364
diff changeset
2215 /**/
7364
fe2f6b92d806 commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents: 7362
diff changeset
2216 987,
fe2f6b92d806 commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents: 7362
diff changeset
2217 /**/
7362
16c67ab8eafd commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents: 7360
diff changeset
2218 986,
16c67ab8eafd commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents: 7360
diff changeset
2219 /**/
7360
b20095ba6fc2 commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents: 7358
diff changeset
2220 985,
b20095ba6fc2 commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents: 7358
diff changeset
2221 /**/
7358
6fbeef3b65e6 commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents: 7356
diff changeset
2222 984,
6fbeef3b65e6 commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents: 7356
diff changeset
2223 /**/
7356
f0eb9aa9eb32 commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents: 7354
diff changeset
2224 983,
f0eb9aa9eb32 commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents: 7354
diff changeset
2225 /**/
7354
81dc9e30aad6 commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents: 7352
diff changeset
2226 982,
81dc9e30aad6 commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents: 7352
diff changeset
2227 /**/
7352
ddab7ae8796d commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents: 7350
diff changeset
2228 981,
ddab7ae8796d commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents: 7350
diff changeset
2229 /**/
7350
5ac8ee7bf4ff commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents: 7347
diff changeset
2230 980,
5ac8ee7bf4ff commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents: 7347
diff changeset
2231 /**/
7347
8977b399cf55 commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents: 7345
diff changeset
2232 979,
8977b399cf55 commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents: 7345
diff changeset
2233 /**/
7345
e88aee1842ba commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents: 7344
diff changeset
2234 978,
e88aee1842ba commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents: 7344
diff changeset
2235 /**/
7344
68f2cac6b0db commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents: 7342
diff changeset
2236 977,
68f2cac6b0db commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents: 7342
diff changeset
2237 /**/
7342
b871e4bdb319 commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
2238 976,
b871e4bdb319 commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
2239 /**/
7340
645abb8d8daf commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents: 7338
diff changeset
2240 975,
645abb8d8daf commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents: 7338
diff changeset
2241 /**/
7338
96d5dd9e7bc9 commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
2242 974,
96d5dd9e7bc9 commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents: 7336
diff changeset
2243 /**/
7336
4c5f53a60543 commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
2244 973,
4c5f53a60543 commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
2245 /**/
7334
6890f5a58109 commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents: 7332
diff changeset
2246 972,
6890f5a58109 commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents: 7332
diff changeset
2247 /**/
7332
38e4f3a246eb commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents: 7330
diff changeset
2248 971,
38e4f3a246eb commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents: 7330
diff changeset
2249 /**/
7330
8ab712f2c3b8 commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents: 7328
diff changeset
2250 970,
8ab712f2c3b8 commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents: 7328
diff changeset
2251 /**/
7328
6679f41bddea commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents: 7326
diff changeset
2252 969,
6679f41bddea commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents: 7326
diff changeset
2253 /**/
7326
d4e1c1705137 commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents: 7324
diff changeset
2254 968,
d4e1c1705137 commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents: 7324
diff changeset
2255 /**/
7324
a3b8a63c88ef commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents: 7322
diff changeset
2256 967,
a3b8a63c88ef commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents: 7322
diff changeset
2257 /**/
7322
6f398bb76c29 commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents: 7320
diff changeset
2258 966,
6f398bb76c29 commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents: 7320
diff changeset
2259 /**/
7320
cc484bbb73dc commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents: 7318
diff changeset
2260 965,
cc484bbb73dc commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents: 7318
diff changeset
2261 /**/
7318
de124c05fe4f commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents: 7316
diff changeset
2262 964,
de124c05fe4f commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents: 7316
diff changeset
2263 /**/
7316
6170f4945b83 commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents: 7313
diff changeset
2264 963,
6170f4945b83 commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents: 7313
diff changeset
2265 /**/
7313
2062247be2d0 commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents: 7311
diff changeset
2266 962,
2062247be2d0 commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents: 7311
diff changeset
2267 /**/
7311
743c258ca3ab commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents: 7309
diff changeset
2268 961,
743c258ca3ab commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents: 7309
diff changeset
2269 /**/
7309
c412b0922c27 commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents: 7307
diff changeset
2270 960,
c412b0922c27 commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents: 7307
diff changeset
2271 /**/
7307
5d9e27621ffa commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents: 7305
diff changeset
2272 959,
5d9e27621ffa commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents: 7305
diff changeset
2273 /**/
7305
372c785c04b6 commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents: 7303
diff changeset
2274 958,
372c785c04b6 commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents: 7303
diff changeset
2275 /**/
7303
88f9d339026b commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents: 7301
diff changeset
2276 957,
88f9d339026b commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents: 7301
diff changeset
2277 /**/
7301
514f51fa1966 commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents: 7299
diff changeset
2278 956,
514f51fa1966 commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents: 7299
diff changeset
2279 /**/
7299
e31e803a2910 commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents: 7297
diff changeset
2280 955,
e31e803a2910 commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents: 7297
diff changeset
2281 /**/
7297
67c7a524b84f commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents: 7295
diff changeset
2282 954,
67c7a524b84f commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents: 7295
diff changeset
2283 /**/
7295
6922fcadafe6 commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents: 7293
diff changeset
2284 953,
6922fcadafe6 commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents: 7293
diff changeset
2285 /**/
7293
979f8a595326 commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents: 7291
diff changeset
2286 952,
979f8a595326 commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents: 7291
diff changeset
2287 /**/
7291
6ffc75d807bd commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents: 7289
diff changeset
2288 951,
6ffc75d807bd commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents: 7289
diff changeset
2289 /**/
7289
32efe489afc5 commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents: 7287
diff changeset
2290 950,
32efe489afc5 commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents: 7287
diff changeset
2291 /**/
7287
6fcadba9ec7a commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents: 7285
diff changeset
2292 949,
6fcadba9ec7a commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents: 7285
diff changeset
2293 /**/
7285
a34232b17763 commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents: 7283
diff changeset
2294 948,
a34232b17763 commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents: 7283
diff changeset
2295 /**/
7283
631cd8059bf4 commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents: 7281
diff changeset
2296 947,
631cd8059bf4 commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents: 7281
diff changeset
2297 /**/
7281
2a4593702d5c commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents: 7279
diff changeset
2298 946,
2a4593702d5c commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents: 7279
diff changeset
2299 /**/
7279
b5e9810b389d commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents: 7277
diff changeset
2300 945,
b5e9810b389d commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents: 7277
diff changeset
2301 /**/
7277
6600871bb38c commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents: 7275
diff changeset
2302 944,
6600871bb38c commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents: 7275
diff changeset
2303 /**/
7275
4b4ac70f5173 commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents: 7273
diff changeset
2304 943,
4b4ac70f5173 commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents: 7273
diff changeset
2305 /**/
7273
73207eca53f5 commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
2306 942,
73207eca53f5 commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
2307 /**/
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7264
diff changeset
2308 941,
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7264
diff changeset
2309 /**/
7264
b1b86aa171cd commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents: 7262
diff changeset
2310 940,
b1b86aa171cd commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents: 7262
diff changeset
2311 /**/
7262
fadf7fc3b666 commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents: 7260
diff changeset
2312 939,
fadf7fc3b666 commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents: 7260
diff changeset
2313 /**/
7260
8ba562cb3e07 commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents: 7258
diff changeset
2314 938,
8ba562cb3e07 commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents: 7258
diff changeset
2315 /**/
7258
7245d8635ac7 commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents: 7256
diff changeset
2316 937,
7245d8635ac7 commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents: 7256
diff changeset
2317 /**/
7256
79270eaac6de commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents: 7254
diff changeset
2318 936,
79270eaac6de commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents: 7254
diff changeset
2319 /**/
7254
b4b7b06c7951 commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents: 7252
diff changeset
2320 935,
b4b7b06c7951 commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents: 7252
diff changeset
2321 /**/
7252
1b591fcf2517 commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents: 7250
diff changeset
2322 934,
1b591fcf2517 commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents: 7250
diff changeset
2323 /**/
7250
99476f1aaacd commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents: 7248
diff changeset
2324 933,
99476f1aaacd commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents: 7248
diff changeset
2325 /**/
7248
dc7b1567d057 commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents: 7246
diff changeset
2326 932,
dc7b1567d057 commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents: 7246
diff changeset
2327 /**/
7246
a69b5e4beefd commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents: 7243
diff changeset
2328 931,
a69b5e4beefd commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents: 7243
diff changeset
2329 /**/
7243
861a44fc5183 commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents: 7241
diff changeset
2330 930,
861a44fc5183 commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents: 7241
diff changeset
2331 /**/
7241
0c1278704b5c commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents: 7239
diff changeset
2332 929,
0c1278704b5c commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents: 7239
diff changeset
2333 /**/
7239
89c6f7c6704a commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents: 7237
diff changeset
2334 928,
89c6f7c6704a commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents: 7237
diff changeset
2335 /**/
7237
2a95fa0a07b5 commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents: 7235
diff changeset
2336 927,
2a95fa0a07b5 commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents: 7235
diff changeset
2337 /**/
7235
e45271250496 commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
2338 926,
e45271250496 commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents: 7233
diff changeset
2339 /**/
7233
9487ea110214 commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents: 7231
diff changeset
2340 925,
9487ea110214 commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents: 7231
diff changeset
2341 /**/
7231
a4d10eec6356 commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents: 7229
diff changeset
2342 924,
a4d10eec6356 commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents: 7229
diff changeset
2343 /**/
7229
ae360f1df2aa commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents: 7226
diff changeset
2344 923,
ae360f1df2aa commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents: 7226
diff changeset
2345 /**/
7226
9b350a65138a commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents: 7224
diff changeset
2346 922,
9b350a65138a commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents: 7224
diff changeset
2347 /**/
7224
42bf8902d4da commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents: 7222
diff changeset
2348 921,
42bf8902d4da commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents: 7222
diff changeset
2349 /**/
7222
4e86d5700260 commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents: 7220
diff changeset
2350 920,
4e86d5700260 commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents: 7220
diff changeset
2351 /**/
7220
1931b890e7d7 commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
2352 919,
1931b890e7d7 commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
2353 /**/
7218
36dc8df8560f commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents: 7216
diff changeset
2354 918,
36dc8df8560f commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents: 7216
diff changeset
2355 /**/
7216
310925215e17 commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents: 7214
diff changeset
2356 917,
310925215e17 commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents: 7214
diff changeset
2357 /**/
7214
e036defe034e commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents: 7212
diff changeset
2358 916,
e036defe034e commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents: 7212
diff changeset
2359 /**/
7212
55c67e16e4fd commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents: 7210
diff changeset
2360 915,
55c67e16e4fd commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents: 7210
diff changeset
2361 /**/
7210
08b50e436093 commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents: 7208
diff changeset
2362 914,
08b50e436093 commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents: 7208
diff changeset
2363 /**/
7208
2c00f6b312bf commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents: 7206
diff changeset
2364 913,
2c00f6b312bf commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents: 7206
diff changeset
2365 /**/
7206
c6a7305972fe commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents: 7204
diff changeset
2366 912,
c6a7305972fe commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents: 7204
diff changeset
2367 /**/
7204
5fad7bc0fe83 commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents: 7202
diff changeset
2368 911,
5fad7bc0fe83 commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents: 7202
diff changeset
2369 /**/
7202
de43f10a3850 commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents: 7200
diff changeset
2370 910,
de43f10a3850 commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents: 7200
diff changeset
2371 /**/
7200
bc951043f655 commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents: 7198
diff changeset
2372 909,
bc951043f655 commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents: 7198
diff changeset
2373 /**/
7198
b58e16f9119e commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents: 7196
diff changeset
2374 908,
b58e16f9119e commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents: 7196
diff changeset
2375 /**/
7196
42717d048817 commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
2376 907,
42717d048817 commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
2377 /**/
7194
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7191
diff changeset
2378 906,
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7191
diff changeset
2379 /**/
7191
692dac7183de commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents: 7189
diff changeset
2380 905,
692dac7183de commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents: 7189
diff changeset
2381 /**/
7189
0b4387f570ec commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents: 7186
diff changeset
2382 904,
0b4387f570ec commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents: 7186
diff changeset
2383 /**/
7186
41885de3d577 commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
2384 903,
41885de3d577 commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
2385 /**/
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7181
diff changeset
2386 902,
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7181
diff changeset
2387 /**/
7181
ce8b286e89ef commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents: 7179
diff changeset
2388 901,
ce8b286e89ef commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents: 7179
diff changeset
2389 /**/
7179
f7d6cc6b78b5 commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents: 7177
diff changeset
2390 900,
f7d6cc6b78b5 commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents: 7177
diff changeset
2391 /**/
7177
c4d677c50b9b commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents: 7174
diff changeset
2392 899,
c4d677c50b9b commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents: 7174
diff changeset
2393 /**/
7174
22f87d5e9533 commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents: 7172
diff changeset
2394 898,
22f87d5e9533 commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents: 7172
diff changeset
2395 /**/
7172
ad57f5b5bd6c commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents: 7170
diff changeset
2396 897,
ad57f5b5bd6c commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents: 7170
diff changeset
2397 /**/
7170
beb67ef38f88 commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents: 7168
diff changeset
2398 896,
beb67ef38f88 commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents: 7168
diff changeset
2399 /**/
7168
0f2807c05687 commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents: 7166
diff changeset
2400 895,
0f2807c05687 commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents: 7166
diff changeset
2401 /**/
7166
fbec41e5651e commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents: 7164
diff changeset
2402 894,
fbec41e5651e commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents: 7164
diff changeset
2403 /**/
7164
d3c57e7f489a commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents: 7162
diff changeset
2404 893,
d3c57e7f489a commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents: 7162
diff changeset
2405 /**/
7162
fe090e9cd10a commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents: 7160
diff changeset
2406 892,
fe090e9cd10a commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents: 7160
diff changeset
2407 /**/
7160
accd3a0e9bf4 commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents: 7158
diff changeset
2408 891,
accd3a0e9bf4 commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents: 7158
diff changeset
2409 /**/
7158
43ac8dc380c7 commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents: 7156
diff changeset
2410 890,
43ac8dc380c7 commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents: 7156
diff changeset
2411 /**/
7156
0b4e65cf84fb commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents: 7154
diff changeset
2412 889,
0b4e65cf84fb commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents: 7154
diff changeset
2413 /**/
7154
a01294e1c02f commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents: 7152
diff changeset
2414 888,
a01294e1c02f commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents: 7152
diff changeset
2415 /**/
7152
cbdc02d71a18 commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2416 887,
cbdc02d71a18 commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2417 /**/
7150
46390681bd80 commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents: 7148
diff changeset
2418 886,
46390681bd80 commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents: 7148
diff changeset
2419 /**/
7148
339e657a6ed6 commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents: 7145
diff changeset
2420 885,
339e657a6ed6 commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents: 7145
diff changeset
2421 /**/
7145
7669c1269190 commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents: 7143
diff changeset
2422 884,
7669c1269190 commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents: 7143
diff changeset
2423 /**/
7143
fe6d525d12f4 commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents: 7141
diff changeset
2424 883,
fe6d525d12f4 commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents: 7141
diff changeset
2425 /**/
7141
4e8f07fc7ca3 commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents: 7139
diff changeset
2426 882,
4e8f07fc7ca3 commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents: 7139
diff changeset
2427 /**/
7139
d1e35ca56c73 commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents: 7137
diff changeset
2428 881,
d1e35ca56c73 commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents: 7137
diff changeset
2429 /**/
7137
41896b9720cc commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents: 7135
diff changeset
2430 880,
41896b9720cc commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents: 7135
diff changeset
2431 /**/
7135
9d4986f52df8 commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents: 7133
diff changeset
2432 879,
9d4986f52df8 commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents: 7133
diff changeset
2433 /**/
7133
48ce650e8a27 commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents: 7131
diff changeset
2434 878,
48ce650e8a27 commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents: 7131
diff changeset
2435 /**/
7131
cc5570ed684e commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents: 7129
diff changeset
2436 877,
cc5570ed684e commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents: 7129
diff changeset
2437 /**/
7129
aaf96b1aa605 commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents: 7127
diff changeset
2438 876,
aaf96b1aa605 commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents: 7127
diff changeset
2439 /**/
7127
e945a8e35535 commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents: 7125
diff changeset
2440 875,
e945a8e35535 commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents: 7125
diff changeset
2441 /**/
7125
52a7ba315f03 commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents: 7123
diff changeset
2442 874,
52a7ba315f03 commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents: 7123
diff changeset
2443 /**/
7123
077ae8b63e15 commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents: 7121
diff changeset
2444 873,
077ae8b63e15 commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents: 7121
diff changeset
2445 /**/
7121
a497a9868255 commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents: 7119
diff changeset
2446 872,
a497a9868255 commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents: 7119
diff changeset
2447 /**/
7119
6bc1695b7f11 commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents: 7117
diff changeset
2448 871,
6bc1695b7f11 commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents: 7117
diff changeset
2449 /**/
7117
9946e87686c8 commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents: 7115
diff changeset
2450 870,
9946e87686c8 commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents: 7115
diff changeset
2451 /**/
7115
ec89519dfeea commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents: 7113
diff changeset
2452 869,
ec89519dfeea commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents: 7113
diff changeset
2453 /**/
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7111
diff changeset
2454 868,
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7111
diff changeset
2455 /**/
7111
57c354f0115c commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents: 7109
diff changeset
2456 867,
57c354f0115c commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents: 7109
diff changeset
2457 /**/
7109
fa95595fbc52 commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents: 7107
diff changeset
2458 866,
fa95595fbc52 commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents: 7107
diff changeset
2459 /**/
7107
84efaf06f195 commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents: 7105
diff changeset
2460 865,
84efaf06f195 commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents: 7105
diff changeset
2461 /**/
7105
f4456e686406 commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents: 7103
diff changeset
2462 864,
f4456e686406 commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents: 7103
diff changeset
2463 /**/
7103
84d318257a45 commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents: 7101
diff changeset
2464 863,
84d318257a45 commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents: 7101
diff changeset
2465 /**/
7101
793ca14b5654 commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents: 7098
diff changeset
2466 862,
793ca14b5654 commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents: 7098
diff changeset
2467 /**/
7098
70b56e5eccb2 commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents: 7096
diff changeset
2468 861,
70b56e5eccb2 commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents: 7096
diff changeset
2469 /**/
7096
00b9f0c048db commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents: 7094
diff changeset
2470 860,
00b9f0c048db commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents: 7094
diff changeset
2471 /**/
7094
66137191901a commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents: 7092
diff changeset
2472 859,
66137191901a commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents: 7092
diff changeset
2473 /**/
7092
64e30831fa42 commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents: 7090
diff changeset
2474 858,
64e30831fa42 commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents: 7090
diff changeset
2475 /**/
7090
052043fc57ab commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents: 7088
diff changeset
2476 857,
052043fc57ab commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents: 7088
diff changeset
2477 /**/
7088
8a58dde655a8 commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents: 7086
diff changeset
2478 856,
8a58dde655a8 commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents: 7086
diff changeset
2479 /**/
7086
3825da022231 commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents: 7084
diff changeset
2480 855,
3825da022231 commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents: 7084
diff changeset
2481 /**/
7084
1c039023af1c commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents: 7082
diff changeset
2482 854,
1c039023af1c commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents: 7082
diff changeset
2483 /**/
7082
ad4c039349f6 commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents: 7080
diff changeset
2484 853,
ad4c039349f6 commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents: 7080
diff changeset
2485 /**/
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2486 852,
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2487 /**/
7078
383d6f39669b commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents: 7076
diff changeset
2488 851,
383d6f39669b commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents: 7076
diff changeset
2489 /**/
7076
6ad58a7e995b commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents: 7074
diff changeset
2490 850,
6ad58a7e995b commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents: 7074
diff changeset
2491 /**/
7074
c8efa41dd451 commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents: 7072
diff changeset
2492 849,
c8efa41dd451 commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents: 7072
diff changeset
2493 /**/
7072
05afb5be93bd commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents: 7070
diff changeset
2494 848,
05afb5be93bd commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents: 7070
diff changeset
2495 /**/
7070
d92910c0c415 commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents: 7068
diff changeset
2496 847,
d92910c0c415 commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents: 7068
diff changeset
2497 /**/
7068
a55f35ed381b commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents: 7066
diff changeset
2498 846,
a55f35ed381b commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents: 7066
diff changeset
2499 /**/
7066
094c8ccdc279 commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents: 7064
diff changeset
2500 845,
094c8ccdc279 commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents: 7064
diff changeset
2501 /**/
7064
5fc5c5bf2233 commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents: 7062
diff changeset
2502 844,
5fc5c5bf2233 commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents: 7062
diff changeset
2503 /**/
7062
6deb9d802fe4 commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents: 7060
diff changeset
2504 843,
6deb9d802fe4 commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents: 7060
diff changeset
2505 /**/
7060
41ccc6f95954 commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
2506 842,
41ccc6f95954 commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
2507 /**/
7058
64dc5b11ad33 commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents: 7056
diff changeset
2508 841,
64dc5b11ad33 commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents: 7056
diff changeset
2509 /**/
7056
1ebd7608cfd9 commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents: 7054
diff changeset
2510 840,
1ebd7608cfd9 commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents: 7054
diff changeset
2511 /**/
7054
3a1a6d6fb9b3 commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents: 7052
diff changeset
2512 839,
3a1a6d6fb9b3 commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents: 7052
diff changeset
2513 /**/
7052
9ec3329823f9 commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents: 7049
diff changeset
2514 838,
9ec3329823f9 commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents: 7049
diff changeset
2515 /**/
7049
2ebc20378f68 commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents: 7046
diff changeset
2516 837,
2ebc20378f68 commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents: 7046
diff changeset
2517 /**/
7046
fd409a0800fd commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents: 7044
diff changeset
2518 836,
fd409a0800fd commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents: 7044
diff changeset
2519 /**/
7044
7758d6245c3a commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents: 7042
diff changeset
2520 835,
7758d6245c3a commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents: 7042
diff changeset
2521 /**/
7042
e8eccb9621f7 commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents: 7040
diff changeset
2522 834,
e8eccb9621f7 commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents: 7040
diff changeset
2523 /**/
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7038
diff changeset
2524 833,
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7038
diff changeset
2525 /**/
7038
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
2526 832,
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
2527 /**/
7036
5f00b8d7148f commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2528 831,
5f00b8d7148f commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2529 /**/
7034
e668b160ac68 commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents: 7032
diff changeset
2530 830,
e668b160ac68 commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents: 7032
diff changeset
2531 /**/
7032
320c97a73272 commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents: 7030
diff changeset
2532 829,
320c97a73272 commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents: 7030
diff changeset
2533 /**/
7030
8d513ddfe3ec commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents: 7021
diff changeset
2534 828,
8d513ddfe3ec commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents: 7021
diff changeset
2535 /**/
7021
47680d36e484 patch 7.4.827
Bram Moolenaar <bram@vim.org>
parents: 7019
diff changeset
2536 827,
47680d36e484 patch 7.4.827
Bram Moolenaar <bram@vim.org>
parents: 7019
diff changeset
2537 /**/
7019
db0328a2fa2a patch 7.4.826
Bram Moolenaar <bram@vim.org>
parents: 7017
diff changeset
2538 826,
db0328a2fa2a patch 7.4.826
Bram Moolenaar <bram@vim.org>
parents: 7017
diff changeset
2539 /**/
7017
0dbbdcf13e03 patch 7.4.825
Bram Moolenaar <bram@vim.org>
parents: 7014
diff changeset
2540 825,
0dbbdcf13e03 patch 7.4.825
Bram Moolenaar <bram@vim.org>
parents: 7014
diff changeset
2541 /**/
7014
962b3ae252a9 patch 7.4.824
Bram Moolenaar <bram@vim.org>
parents: 7011
diff changeset
2542 824,
962b3ae252a9 patch 7.4.824
Bram Moolenaar <bram@vim.org>
parents: 7011
diff changeset
2543 /**/
7011
6cde6404ff7c patch 7.4.823
Bram Moolenaar <bram@vim.org>
parents: 7009
diff changeset
2544 823,
6cde6404ff7c patch 7.4.823
Bram Moolenaar <bram@vim.org>
parents: 7009
diff changeset
2545 /**/
7009
286fd54c7ae3 patch 7.4.822
Bram Moolenaar <bram@vim.org>
parents: 7007
diff changeset
2546 822,
286fd54c7ae3 patch 7.4.822
Bram Moolenaar <bram@vim.org>
parents: 7007
diff changeset
2547 /**/
7007
5ea5bd9c18d2 patch 7.4.821
Bram Moolenaar <bram@vim.org>
parents: 7005
diff changeset
2548 821,
5ea5bd9c18d2 patch 7.4.821
Bram Moolenaar <bram@vim.org>
parents: 7005
diff changeset
2549 /**/
7005
bb44542231dc patch 7.4.820
Bram Moolenaar <bram@vim.org>
parents: 7003
diff changeset
2550 820,
bb44542231dc patch 7.4.820
Bram Moolenaar <bram@vim.org>
parents: 7003
diff changeset
2551 /**/
7003
bc269cf15ccd patch 7.4.819
Bram Moolenaar <bram@vim.org>
parents: 7001
diff changeset
2552 819,
bc269cf15ccd patch 7.4.819
Bram Moolenaar <bram@vim.org>
parents: 7001
diff changeset
2553 /**/
7001
27f8247d2619 patch 7.4.818
Bram Moolenaar <bram@vim.org>
parents: 6999
diff changeset
2554 818,
27f8247d2619 patch 7.4.818
Bram Moolenaar <bram@vim.org>
parents: 6999
diff changeset
2555 /**/
6999
dc1b678f0e4e patch 7.4.817
Bram Moolenaar <bram@vim.org>
parents: 6997
diff changeset
2556 817,
dc1b678f0e4e patch 7.4.817
Bram Moolenaar <bram@vim.org>
parents: 6997
diff changeset
2557 /**/
6997
cdd862e0f896 patch 7.4.816
Bram Moolenaar <bram@vim.org>
parents: 6995
diff changeset
2558 816,
cdd862e0f896 patch 7.4.816
Bram Moolenaar <bram@vim.org>
parents: 6995
diff changeset
2559 /**/
6995
fc099c55a36a patch 7.4.815
Bram Moolenaar <bram@vim.org>
parents: 6993
diff changeset
2560 815,
fc099c55a36a patch 7.4.815
Bram Moolenaar <bram@vim.org>
parents: 6993
diff changeset
2561 /**/
6993
dcc108222d70 patch 7.4.814
Bram Moolenaar <bram@vim.org>
parents: 6991
diff changeset
2562 814,
dcc108222d70 patch 7.4.814
Bram Moolenaar <bram@vim.org>
parents: 6991
diff changeset
2563 /**/
6991
814f1f569e4a patch 7.4.813
Bram Moolenaar <bram@vim.org>
parents: 6989
diff changeset
2564 813,
814f1f569e4a patch 7.4.813
Bram Moolenaar <bram@vim.org>
parents: 6989
diff changeset
2565 /**/
6989
c0a23e04c929 patch 7.4.812
Bram Moolenaar <bram@vim.org>
parents: 6987
diff changeset
2566 812,
c0a23e04c929 patch 7.4.812
Bram Moolenaar <bram@vim.org>
parents: 6987
diff changeset
2567 /**/
6987
1661dd8df592 patch 7.4.811
Bram Moolenaar <bram@vim.org>
parents: 6985
diff changeset
2568 811,
1661dd8df592 patch 7.4.811
Bram Moolenaar <bram@vim.org>
parents: 6985
diff changeset
2569 /**/
6985
a07c3f9cd616 patch 7.4.810
Bram Moolenaar <bram@vim.org>
parents: 6983
diff changeset
2570 810,
a07c3f9cd616 patch 7.4.810
Bram Moolenaar <bram@vim.org>
parents: 6983
diff changeset
2571 /**/
6983
c7d12c7eb2b6 patch 7.4.809
Bram Moolenaar <bram@vim.org>
parents: 6981
diff changeset
2572 809,
c7d12c7eb2b6 patch 7.4.809
Bram Moolenaar <bram@vim.org>
parents: 6981
diff changeset
2573 /**/
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6979
diff changeset
2574 808,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6979
diff changeset
2575 /**/
6979
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6977
diff changeset
2576 807,
a25618cbc68a patch 7.4.807
Bram Moolenaar <bram@vim.org>
parents: 6977
diff changeset
2577 /**/
6977
b10995a2f7c3 patch 7.4.806
Bram Moolenaar <bram@vim.org>
parents: 6975
diff changeset
2578 806,
b10995a2f7c3 patch 7.4.806
Bram Moolenaar <bram@vim.org>
parents: 6975
diff changeset
2579 /**/
6975
7b5f9313f40b patch 7.4.805
Bram Moolenaar <bram@vim.org>
parents: 6973
diff changeset
2580 805,
7b5f9313f40b patch 7.4.805
Bram Moolenaar <bram@vim.org>
parents: 6973
diff changeset
2581 /**/
6973
7b35ee02b3c5 patch 7.4.804
Bram Moolenaar <bram@vim.org>
parents: 6971
diff changeset
2582 804,
7b35ee02b3c5 patch 7.4.804
Bram Moolenaar <bram@vim.org>
parents: 6971
diff changeset
2583 /**/
6971
e859731ea1cd patch 7.4.803
Bram Moolenaar <bram@vim.org>
parents: 6969
diff changeset
2584 803,
e859731ea1cd patch 7.4.803
Bram Moolenaar <bram@vim.org>
parents: 6969
diff changeset
2585 /**/
6969
417201526af3 patch 7.4.802
Bram Moolenaar <bram@vim.org>
parents: 6967
diff changeset
2586 802,
417201526af3 patch 7.4.802
Bram Moolenaar <bram@vim.org>
parents: 6967
diff changeset
2587 /**/
6967
20ed78fab428 patch 7.4.801
Bram Moolenaar <bram@vim.org>
parents: 6965
diff changeset
2588 801,
20ed78fab428 patch 7.4.801
Bram Moolenaar <bram@vim.org>
parents: 6965
diff changeset
2589 /**/
6965
86d43639de31 patch 7.4.800
Bram Moolenaar <bram@vim.org>
parents: 6963
diff changeset
2590 800,
86d43639de31 patch 7.4.800
Bram Moolenaar <bram@vim.org>
parents: 6963
diff changeset
2591 /**/
6963
4bf9538ff25e patch 7.4.799
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
2592 799,
4bf9538ff25e patch 7.4.799
Bram Moolenaar <bram@vim.org>
parents: 6961
diff changeset
2593 /**/
6961
c2b132add309 patch 7.4.798
Bram Moolenaar <bram@vim.org>
parents: 6959
diff changeset
2594 798,
c2b132add309 patch 7.4.798
Bram Moolenaar <bram@vim.org>
parents: 6959
diff changeset
2595 /**/
6959
87cb71d54e8a patch 7.4.797
Bram Moolenaar <bram@vim.org>
parents: 6957
diff changeset
2596 797,
87cb71d54e8a patch 7.4.797
Bram Moolenaar <bram@vim.org>
parents: 6957
diff changeset
2597 /**/
6957
d19e79d29bf9 patch 7.4.796
Bram Moolenaar <bram@vim.org>
parents: 6954
diff changeset
2598 796,
d19e79d29bf9 patch 7.4.796
Bram Moolenaar <bram@vim.org>
parents: 6954
diff changeset
2599 /**/
6954
a958ac497a81 patch 7.4.795
Bram Moolenaar <bram@vim.org>
parents: 6952
diff changeset
2600 795,
a958ac497a81 patch 7.4.795
Bram Moolenaar <bram@vim.org>
parents: 6952
diff changeset
2601 /**/
6952
98d1d53edc66 patch 7.4.794
Bram Moolenaar <bram@vim.org>
parents: 6949
diff changeset
2602 794,
98d1d53edc66 patch 7.4.794
Bram Moolenaar <bram@vim.org>
parents: 6949
diff changeset
2603 /**/
6949
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6947
diff changeset
2604 793,
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6947
diff changeset
2605 /**/
6947
1efa7c2b9368 patch 7.4.792
Bram Moolenaar <bram@vim.org>
parents: 6945
diff changeset
2606 792,
1efa7c2b9368 patch 7.4.792
Bram Moolenaar <bram@vim.org>
parents: 6945
diff changeset
2607 /**/
6945
957a3bb312fa patch 7.4.791
Bram Moolenaar <bram@vim.org>
parents: 6943
diff changeset
2608 791,
957a3bb312fa patch 7.4.791
Bram Moolenaar <bram@vim.org>
parents: 6943
diff changeset
2609 /**/
6943
d37e168dee20 patch 7.4.790
Bram Moolenaar <bram@vim.org>
parents: 6941
diff changeset
2610 790,
d37e168dee20 patch 7.4.790
Bram Moolenaar <bram@vim.org>
parents: 6941
diff changeset
2611 /**/
6941
b63f09edb493 patch 7.4.789
Bram Moolenaar <bram@vim.org>
parents: 6939
diff changeset
2612 789,
b63f09edb493 patch 7.4.789
Bram Moolenaar <bram@vim.org>
parents: 6939
diff changeset
2613 /**/
6939
ca0990adc2e3 patch 7.4.788
Bram Moolenaar <bram@vim.org>
parents: 6937
diff changeset
2614 788,
ca0990adc2e3 patch 7.4.788
Bram Moolenaar <bram@vim.org>
parents: 6937
diff changeset
2615 /**/
6937
c31bd9ca75d2 patch 7.4.787
Bram Moolenaar <bram@vim.org>
parents: 6935
diff changeset
2616 787,
c31bd9ca75d2 patch 7.4.787
Bram Moolenaar <bram@vim.org>
parents: 6935
diff changeset
2617 /**/
6935
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
2618 786,
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
2619 /**/
6933
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6931
diff changeset
2620 785,
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6931
diff changeset
2621 /**/
6931
f587f6857010 patch 7.4.784
Bram Moolenaar <bram@vim.org>
parents: 6929
diff changeset
2622 784,
f587f6857010 patch 7.4.784
Bram Moolenaar <bram@vim.org>
parents: 6929
diff changeset
2623 /**/
6929
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
2624 783,
e55929fca0cf patch 7.4.783
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
2625 /**/
6927
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6925
diff changeset
2626 782,
58d9f967ae1a patch 7.4.782
Bram Moolenaar <bram@vim.org>
parents: 6925
diff changeset
2627 /**/
6925
30c9301f33ed patch 7.4.781
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
2628 781,
30c9301f33ed patch 7.4.781
Bram Moolenaar <bram@vim.org>
parents: 6923
diff changeset
2629 /**/
6923
9a13e3910e3d patch 7.4.780
Bram Moolenaar <bram@vim.org>
parents: 6921
diff changeset
2630 780,
9a13e3910e3d patch 7.4.780
Bram Moolenaar <bram@vim.org>
parents: 6921
diff changeset
2631 /**/
6921
1f78058351a6 patch 7.4.779
Bram Moolenaar <bram@vim.org>
parents: 6919
diff changeset
2632 779,
1f78058351a6 patch 7.4.779
Bram Moolenaar <bram@vim.org>
parents: 6919
diff changeset
2633 /**/
6919
dd094497f9fa patch 7.4.778
Bram Moolenaar <bram@vim.org>
parents: 6916
diff changeset
2634 778,
dd094497f9fa patch 7.4.778
Bram Moolenaar <bram@vim.org>
parents: 6916
diff changeset
2635 /**/
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents: 6914
diff changeset
2636 777,
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents: 6914
diff changeset
2637 /**/
6914
94b179585851 patch 7.4.776
Bram Moolenaar <bram@vim.org>
parents: 6911
diff changeset
2638 776,
94b179585851 patch 7.4.776
Bram Moolenaar <bram@vim.org>
parents: 6911
diff changeset
2639 /**/
6911
e09a7ff88046 patch 7.4.775
Bram Moolenaar <bram@vim.org>
parents: 6909
diff changeset
2640 775,
e09a7ff88046 patch 7.4.775
Bram Moolenaar <bram@vim.org>
parents: 6909
diff changeset
2641 /**/
6909
676906c33768 patch 7.4.774
Bram Moolenaar <bram@vim.org>
parents: 6907
diff changeset
2642 774,
676906c33768 patch 7.4.774
Bram Moolenaar <bram@vim.org>
parents: 6907
diff changeset
2643 /**/
6907
5b1eefbf9a53 patch 7.4.773
Bram Moolenaar <bram@vim.org>
parents: 6905
diff changeset
2644 773,
5b1eefbf9a53 patch 7.4.773
Bram Moolenaar <bram@vim.org>
parents: 6905
diff changeset
2645 /**/
6905
d973e23c3bf8 patch 7.4.772
Bram Moolenaar <bram@vim.org>
parents: 6903
diff changeset
2646 772,
d973e23c3bf8 patch 7.4.772
Bram Moolenaar <bram@vim.org>
parents: 6903
diff changeset
2647 /**/
6903
dd923806ae3b patch 7.4.771
Bram Moolenaar <bram@vim.org>
parents: 6901
diff changeset
2648 771,
dd923806ae3b patch 7.4.771
Bram Moolenaar <bram@vim.org>
parents: 6901
diff changeset
2649 /**/
6901
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6899
diff changeset
2650 770,
2ce6b77a49de patch 7.4.770
Bram Moolenaar <bram@vim.org>
parents: 6899
diff changeset
2651 /**/
6899
cfd9a2befd67 patch 7.4.769
Bram Moolenaar <bram@vim.org>
parents: 6897
diff changeset
2652 769,
cfd9a2befd67 patch 7.4.769
Bram Moolenaar <bram@vim.org>
parents: 6897
diff changeset
2653 /**/
6897
d3a23af4bba1 patch 7.4.768
Bram Moolenaar <bram@vim.org>
parents: 6895
diff changeset
2654 768,
d3a23af4bba1 patch 7.4.768
Bram Moolenaar <bram@vim.org>
parents: 6895
diff changeset
2655 /**/
6895
63ac0cdf3b28 patch 7.4.767
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
2656 767,
63ac0cdf3b28 patch 7.4.767
Bram Moolenaar <bram@vim.org>
parents: 6893
diff changeset
2657 /**/
6893
31a14cb3a8e3 patch 7.4.766
Bram Moolenaar <bram@vim.org>
parents: 6891
diff changeset
2658 766,
31a14cb3a8e3 patch 7.4.766
Bram Moolenaar <bram@vim.org>
parents: 6891
diff changeset
2659 /**/
6891
f9876721bedc patch 7.4.765
Bram Moolenaar <bram@vim.org>
parents: 6889
diff changeset
2660 765,
f9876721bedc patch 7.4.765
Bram Moolenaar <bram@vim.org>
parents: 6889
diff changeset
2661 /**/
6889
9d41289b5512 patch 7.4.764
Bram Moolenaar <bram@vim.org>
parents: 6887
diff changeset
2662 764,
9d41289b5512 patch 7.4.764
Bram Moolenaar <bram@vim.org>
parents: 6887
diff changeset
2663 /**/
6887
2b7e36955265 patch 7.4.763
Bram Moolenaar <bram@vim.org>
parents: 6885
diff changeset
2664 763,
2b7e36955265 patch 7.4.763
Bram Moolenaar <bram@vim.org>
parents: 6885
diff changeset
2665 /**/
6885
ce209c5103a3 patch 7.4.762
Bram Moolenaar <bram@vim.org>
parents: 6882
diff changeset
2666 762,
ce209c5103a3 patch 7.4.762
Bram Moolenaar <bram@vim.org>
parents: 6882
diff changeset
2667 /**/
6882
7bd926109eea patch 7.4.761
Bram Moolenaar <bram@vim.org>
parents: 6880
diff changeset
2668 761,
7bd926109eea patch 7.4.761
Bram Moolenaar <bram@vim.org>
parents: 6880
diff changeset
2669 /**/
6880
bcc0909b379e patch 7.4.760
Bram Moolenaar <bram@vim.org>
parents: 6878
diff changeset
2670 760,
bcc0909b379e patch 7.4.760
Bram Moolenaar <bram@vim.org>
parents: 6878
diff changeset
2671 /**/
6878
02466bf84bab patch 7.4.759
Bram Moolenaar <bram@vim.org>
parents: 6876
diff changeset
2672 759,
02466bf84bab patch 7.4.759
Bram Moolenaar <bram@vim.org>
parents: 6876
diff changeset
2673 /**/
6876
4ece46045a5a patch 7.4.758
Bram Moolenaar <bram@vim.org>
parents: 6874
diff changeset
2674 758,
4ece46045a5a patch 7.4.758
Bram Moolenaar <bram@vim.org>
parents: 6874
diff changeset
2675 /**/
6874
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6872
diff changeset
2676 757,
a89cff862dda patch 7.4.757
Bram Moolenaar <bram@vim.org>
parents: 6872
diff changeset
2677 /**/
6872
64ff14cbb665 patch 7.4.756
Bram Moolenaar <bram@vim.org>
parents: 6870
diff changeset
2678 756,
64ff14cbb665 patch 7.4.756
Bram Moolenaar <bram@vim.org>
parents: 6870
diff changeset
2679 /**/
6870
66ab6ec256d1 patch 7.4.755
Bram Moolenaar <bram@vim.org>
parents: 6868
diff changeset
2680 755,
66ab6ec256d1 patch 7.4.755
Bram Moolenaar <bram@vim.org>
parents: 6868
diff changeset
2681 /**/
6868
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
2682 754,
9798a98a1583 patch 7.4.754
Bram Moolenaar <bram@vim.org>
parents: 6866
diff changeset
2683 /**/
6866
8ebcd7f1ff5b patch 7.4.753
Bram Moolenaar <bram@vim.org>
parents: 6864
diff changeset
2684 753,
8ebcd7f1ff5b patch 7.4.753
Bram Moolenaar <bram@vim.org>
parents: 6864
diff changeset
2685 /**/
6864
c9a5d51c9161 patch 7.4.752
Bram Moolenaar <bram@vim.org>
parents: 6862
diff changeset
2686 752,
c9a5d51c9161 patch 7.4.752
Bram Moolenaar <bram@vim.org>
parents: 6862
diff changeset
2687 /**/
6862
db53fd1a7d5c patch 7.4.751
Bram Moolenaar <bram@vim.org>
parents: 6860
diff changeset
2688 751,
db53fd1a7d5c patch 7.4.751
Bram Moolenaar <bram@vim.org>
parents: 6860
diff changeset
2689 /**/
6860
809e3aa59c6f patch 7.4.750
Bram Moolenaar <bram@vim.org>
parents: 6858
diff changeset
2690 750,
809e3aa59c6f patch 7.4.750
Bram Moolenaar <bram@vim.org>
parents: 6858
diff changeset
2691 /**/
6858
e73d5ac8b16b patch 7.4.749
Bram Moolenaar <bram@vim.org>
parents: 6856
diff changeset
2692 749,
e73d5ac8b16b patch 7.4.749
Bram Moolenaar <bram@vim.org>
parents: 6856
diff changeset
2693 /**/
6856
566e193323ce patch 7.4.748
Bram Moolenaar <bram@vim.org>
parents: 6853
diff changeset
2694 748,
566e193323ce patch 7.4.748
Bram Moolenaar <bram@vim.org>
parents: 6853
diff changeset
2695 /**/
6853
d1a87b307a50 patch 7.4.747
Bram Moolenaar <bram@vim.org>
parents: 6851
diff changeset
2696 747,
d1a87b307a50 patch 7.4.747
Bram Moolenaar <bram@vim.org>
parents: 6851
diff changeset
2697 /**/
6851
b782813c73a6 patch 7.4.746
Bram Moolenaar <bram@vim.org>
parents: 6849
diff changeset
2698 746,
b782813c73a6 patch 7.4.746
Bram Moolenaar <bram@vim.org>
parents: 6849
diff changeset
2699 /**/
6849
f4e5704c5c43 patch 7.4.745
Bram Moolenaar <bram@vim.org>
parents: 6847
diff changeset
2700 745,
f4e5704c5c43 patch 7.4.745
Bram Moolenaar <bram@vim.org>
parents: 6847
diff changeset
2701 /**/
6847
18ec2c5a5ce7 patch 7.4.744
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
2702 744,
18ec2c5a5ce7 patch 7.4.744
Bram Moolenaar <bram@vim.org>
parents: 6845
diff changeset
2703 /**/
6845
ac13f3533571 patch 7.4.743
Bram Moolenaar <bram@vim.org>
parents: 6843
diff changeset
2704 743,
ac13f3533571 patch 7.4.743
Bram Moolenaar <bram@vim.org>
parents: 6843
diff changeset
2705 /**/
6843
50cdebea094f patch 7.4.742
Bram Moolenaar <bram@vim.org>
parents: 6841
diff changeset
2706 742,
50cdebea094f patch 7.4.742
Bram Moolenaar <bram@vim.org>
parents: 6841
diff changeset
2707 /**/
6841
0f1cc87630d8 patch 7.4.741
Bram Moolenaar <bram@vim.org>
parents: 6838
diff changeset
2708 741,
0f1cc87630d8 patch 7.4.741
Bram Moolenaar <bram@vim.org>
parents: 6838
diff changeset
2709 /**/
6838
0229cfffc560 patch 7.4.740
Bram Moolenaar <bram@vim.org>
parents: 6836
diff changeset
2710 740,
0229cfffc560 patch 7.4.740
Bram Moolenaar <bram@vim.org>
parents: 6836
diff changeset
2711 /**/
6836
541abe8d5f55 patch 7.4.739
Bram Moolenaar <bram@vim.org>
parents: 6834
diff changeset
2712 739,
541abe8d5f55 patch 7.4.739
Bram Moolenaar <bram@vim.org>
parents: 6834
diff changeset
2713 /**/
6834
8730db0c187b patch 7.4.738
Bram Moolenaar <bram@vim.org>
parents: 6832
diff changeset
2714 738,
8730db0c187b patch 7.4.738
Bram Moolenaar <bram@vim.org>
parents: 6832
diff changeset
2715 /**/
6832
1ccf96128410 patch 7.4.737
Bram Moolenaar <bram@vim.org>
parents: 6830
diff changeset
2716 737,
1ccf96128410 patch 7.4.737
Bram Moolenaar <bram@vim.org>
parents: 6830
diff changeset
2717 /**/
6830
70fdcdaf96a6 patch 7.4.736
Bram Moolenaar <bram@vim.org>
parents: 6828
diff changeset
2718 736,
70fdcdaf96a6 patch 7.4.736
Bram Moolenaar <bram@vim.org>
parents: 6828
diff changeset
2719 /**/
6828
734c89ddf7b3 patch 7.4.735
Bram Moolenaar <bram@vim.org>
parents: 6826
diff changeset
2720 735,
734c89ddf7b3 patch 7.4.735
Bram Moolenaar <bram@vim.org>
parents: 6826
diff changeset
2721 /**/
6826
bf3e6012dfbd patch 7.4.734
Bram Moolenaar <bram@vim.org>
parents: 6824
diff changeset
2722 734,
bf3e6012dfbd patch 7.4.734
Bram Moolenaar <bram@vim.org>
parents: 6824
diff changeset
2723 /**/
6824
095b538d58a6 patch 7.4.733
Bram Moolenaar <bram@vim.org>
parents: 6821
diff changeset
2724 733,
095b538d58a6 patch 7.4.733
Bram Moolenaar <bram@vim.org>
parents: 6821
diff changeset
2725 /**/
6821
cd7a7975f92c patch 7.4.732
Bram Moolenaar <bram@vim.org>
parents: 6819
diff changeset
2726 732,
cd7a7975f92c patch 7.4.732
Bram Moolenaar <bram@vim.org>
parents: 6819
diff changeset
2727 /**/
6819
5f24d6d51333 patch 7.4.731
Bram Moolenaar <bram@vim.org>
parents: 6817
diff changeset
2728 731,
5f24d6d51333 patch 7.4.731
Bram Moolenaar <bram@vim.org>
parents: 6817
diff changeset
2729 /**/
6817
cd47def2214a patch 7.4.730
Bram Moolenaar <bram@vim.org>
parents: 6815
diff changeset
2730 730,
cd47def2214a patch 7.4.730
Bram Moolenaar <bram@vim.org>
parents: 6815
diff changeset
2731 /**/
6815
f0e7dc5e7282 patch 7.4.729
Bram Moolenaar <bram@vim.org>
parents: 6813
diff changeset
2732 729,
f0e7dc5e7282 patch 7.4.729
Bram Moolenaar <bram@vim.org>
parents: 6813
diff changeset
2733 /**/
6813
ea0468670fbe patch 7.4.728
Bram Moolenaar <bram@vim.org>
parents: 6811
diff changeset
2734 728,
ea0468670fbe patch 7.4.728
Bram Moolenaar <bram@vim.org>
parents: 6811
diff changeset
2735 /**/
6811
cc3f3d35c549 patch 7.4.727
Bram Moolenaar <bram@vim.org>
parents: 6809
diff changeset
2736 727,
cc3f3d35c549 patch 7.4.727
Bram Moolenaar <bram@vim.org>
parents: 6809
diff changeset
2737 /**/
6809
932370264f0f patch 7.4.726
Bram Moolenaar <bram@vim.org>
parents: 6807
diff changeset
2738 726,
932370264f0f patch 7.4.726
Bram Moolenaar <bram@vim.org>
parents: 6807
diff changeset
2739 /**/
6807
399216850e36 patch 7.4.725
Bram Moolenaar <bram@vim.org>
parents: 6805
diff changeset
2740 725,
399216850e36 patch 7.4.725
Bram Moolenaar <bram@vim.org>
parents: 6805
diff changeset
2741 /**/
6805
81cb471657e0 patch 7.4.724
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
2742 724,
81cb471657e0 patch 7.4.724
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
2743 /**/
6803
8accadbf0cbd patch 7.4.723
Bram Moolenaar <bram@vim.org>
parents: 6801
diff changeset
2744 723,
8accadbf0cbd patch 7.4.723
Bram Moolenaar <bram@vim.org>
parents: 6801
diff changeset
2745 /**/
6801
47ebd4065059 patch 7.4.722
Bram Moolenaar <bram@vim.org>
parents: 6799
diff changeset
2746 722,
47ebd4065059 patch 7.4.722
Bram Moolenaar <bram@vim.org>
parents: 6799
diff changeset
2747 /**/
6799
45d3208c8754 patch 7.4.721
Bram Moolenaar <bram@vim.org>
parents: 6797
diff changeset
2748 721,
45d3208c8754 patch 7.4.721
Bram Moolenaar <bram@vim.org>
parents: 6797
diff changeset
2749 /**/
6797
56a735cff1a0 patch 7.4.720
Bram Moolenaar <bram@vim.org>
parents: 6795
diff changeset
2750 720,
56a735cff1a0 patch 7.4.720
Bram Moolenaar <bram@vim.org>
parents: 6795
diff changeset
2751 /**/
6795
adb3699fa30c patch 7.4.719
Bram Moolenaar <bram@vim.org>
parents: 6793
diff changeset
2752 719,
adb3699fa30c patch 7.4.719
Bram Moolenaar <bram@vim.org>
parents: 6793
diff changeset
2753 /**/
6793
e1d59836eecc patch 7.4.718
Bram Moolenaar <bram@vim.org>
parents: 6791
diff changeset
2754 718,
e1d59836eecc patch 7.4.718
Bram Moolenaar <bram@vim.org>
parents: 6791
diff changeset
2755 /**/
6791
1805e45ce4d6 patch 7.4.717
Bram Moolenaar <bram@vim.org>
parents: 6789
diff changeset
2756 717,
1805e45ce4d6 patch 7.4.717
Bram Moolenaar <bram@vim.org>
parents: 6789
diff changeset
2757 /**/
6789
874c953aca49 patch 7.4.716
Bram Moolenaar <bram@vim.org>
parents: 6787
diff changeset
2758 716,
874c953aca49 patch 7.4.716
Bram Moolenaar <bram@vim.org>
parents: 6787
diff changeset
2759 /**/
6787
5caf46fd6e24 patch 7.4.715
Bram Moolenaar <bram@vim.org>
parents: 6785
diff changeset
2760 715,
5caf46fd6e24 patch 7.4.715
Bram Moolenaar <bram@vim.org>
parents: 6785
diff changeset
2761 /**/
6785
de90405940be patch 7.4.714
Bram Moolenaar <bram@vim.org>
parents: 6783
diff changeset
2762 714,
de90405940be patch 7.4.714
Bram Moolenaar <bram@vim.org>
parents: 6783
diff changeset
2763 /**/
6783
56e121fd109b patch 7.4.713
Bram Moolenaar <bram@vim.org>
parents: 6781
diff changeset
2764 713,
56e121fd109b patch 7.4.713
Bram Moolenaar <bram@vim.org>
parents: 6781
diff changeset
2765 /**/
6781
f2a751a9ee72 patch 7.4.712
Bram Moolenaar <bram@vim.org>
parents: 6779
diff changeset
2766 712,
f2a751a9ee72 patch 7.4.712
Bram Moolenaar <bram@vim.org>
parents: 6779
diff changeset
2767 /**/
6779
64a32aca7919 patch 7.4.711
Bram Moolenaar <bram@vim.org>
parents: 6777
diff changeset
2768 711,
64a32aca7919 patch 7.4.711
Bram Moolenaar <bram@vim.org>
parents: 6777
diff changeset
2769 /**/
6777
a8962f0e0d34 patch 7.4.710
Bram Moolenaar <bram@vim.org>
parents: 6775
diff changeset
2770 710,
a8962f0e0d34 patch 7.4.710
Bram Moolenaar <bram@vim.org>
parents: 6775
diff changeset
2771 /**/
6775
c0bc9b60fb8a patch 7.4.709
Bram Moolenaar <bram@vim.org>
parents: 6773
diff changeset
2772 709,
c0bc9b60fb8a patch 7.4.709
Bram Moolenaar <bram@vim.org>
parents: 6773
diff changeset
2773 /**/
6773
eb4b705a5d6a patch 7.4.708
Bram Moolenaar <bram@vim.org>
parents: 6771
diff changeset
2774 708,
eb4b705a5d6a patch 7.4.708
Bram Moolenaar <bram@vim.org>
parents: 6771
diff changeset
2775 /**/
6771
63b2bc619d5a patch 7.4.707
Bram Moolenaar <bram@vim.org>
parents: 6769
diff changeset
2776 707,
63b2bc619d5a patch 7.4.707
Bram Moolenaar <bram@vim.org>
parents: 6769
diff changeset
2777 /**/
6769
fbcf54fc3a77 patch 7.4.706
Bram Moolenaar <bram@vim.org>
parents: 6767
diff changeset
2778 706,
fbcf54fc3a77 patch 7.4.706
Bram Moolenaar <bram@vim.org>
parents: 6767
diff changeset
2779 /**/
6767
d118a2c541d5 patch 7.4.705
Bram Moolenaar <bram@vim.org>
parents: 6765
diff changeset
2780 705,
d118a2c541d5 patch 7.4.705
Bram Moolenaar <bram@vim.org>
parents: 6765
diff changeset
2781 /**/
6765
ec46a5ca1b51 patch 7.4.704
Bram Moolenaar <bram@vim.org>
parents: 6763
diff changeset
2782 704,
ec46a5ca1b51 patch 7.4.704
Bram Moolenaar <bram@vim.org>
parents: 6763
diff changeset
2783 /**/
6763
e026e4f106a5 patch 7.4.703
Bram Moolenaar <bram@vim.org>
parents: 6761
diff changeset
2784 703,
e026e4f106a5 patch 7.4.703
Bram Moolenaar <bram@vim.org>
parents: 6761
diff changeset
2785 /**/
6761
203888fa7192 patch 7.4.702
Bram Moolenaar <bram@vim.org>
parents: 6759
diff changeset
2786 702,
203888fa7192 patch 7.4.702
Bram Moolenaar <bram@vim.org>
parents: 6759
diff changeset
2787 /**/
6759
b019669eee53 patch 7.4.701
Bram Moolenaar <bram@vim.org>
parents: 6755
diff changeset
2788 701,
b019669eee53 patch 7.4.701
Bram Moolenaar <bram@vim.org>
parents: 6755
diff changeset
2789 /**/
6755
b85fcd9b858d patch 7.4.700
Bram Moolenaar <bram@vim.org>
parents: 6753
diff changeset
2790 700,
b85fcd9b858d patch 7.4.700
Bram Moolenaar <bram@vim.org>
parents: 6753
diff changeset
2791 /**/
6753
c1aa837853ea patch 7.4.699
Bram Moolenaar <bram@vim.org>
parents: 6751
diff changeset
2792 699,
c1aa837853ea patch 7.4.699
Bram Moolenaar <bram@vim.org>
parents: 6751
diff changeset
2793 /**/
6751
f5b262981753 patch 7.4.698
Bram Moolenaar <bram@vim.org>
parents: 6749
diff changeset
2794 698,
f5b262981753 patch 7.4.698
Bram Moolenaar <bram@vim.org>
parents: 6749
diff changeset
2795 /**/
6749
57e81ce74c06 patch 7.4.697
Bram Moolenaar <bram@vim.org>
parents: 6747
diff changeset
2796 697,
57e81ce74c06 patch 7.4.697
Bram Moolenaar <bram@vim.org>
parents: 6747
diff changeset
2797 /**/
6747
4c4c8a53347b patch 7.4.696
Bram Moolenaar <bram@vim.org>
parents: 6745
diff changeset
2798 696,
4c4c8a53347b patch 7.4.696
Bram Moolenaar <bram@vim.org>
parents: 6745
diff changeset
2799 /**/
6745
7f9a158cf1d9 patch 7.4.695
Bram Moolenaar <bram@vim.org>
parents: 6742
diff changeset
2800 695,
7f9a158cf1d9 patch 7.4.695
Bram Moolenaar <bram@vim.org>
parents: 6742
diff changeset
2801 /**/
6742
cdddbd63bcfe patch 7.4.694
Bram Moolenaar <bram@vim.org>
parents: 6739
diff changeset
2802 694,
cdddbd63bcfe patch 7.4.694
Bram Moolenaar <bram@vim.org>
parents: 6739
diff changeset
2803 /**/
6739
f012247e8ec8 patch 7.4.693
Bram Moolenaar <bram@vim.org>
parents: 6737
diff changeset
2804 693,
f012247e8ec8 patch 7.4.693
Bram Moolenaar <bram@vim.org>
parents: 6737
diff changeset
2805 /**/
6737
9a07975061ed patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)
Bram Moolenaar <bram@vim.org>
parents: 6735
diff changeset
2806 692,
9a07975061ed patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)
Bram Moolenaar <bram@vim.org>
parents: 6735
diff changeset
2807 /**/
6735
f6021786b775 patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents: 6733
diff changeset
2808 691,
f6021786b775 patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents: 6733
diff changeset
2809 /**/
6733
5f6077b10738 patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents: 6731
diff changeset
2810 690,
5f6077b10738 patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents: 6731
diff changeset
2811 /**/
6731
7d40186f767a updated for version 7.4.689
Bram Moolenaar <bram@vim.org>
parents: 6729
diff changeset
2812 689,
7d40186f767a updated for version 7.4.689
Bram Moolenaar <bram@vim.org>
parents: 6729
diff changeset
2813 /**/
6729
e25417c299bb updated for version 7.4.688
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
2814 688,
e25417c299bb updated for version 7.4.688
Bram Moolenaar <bram@vim.org>
parents: 6727
diff changeset
2815 /**/
6727
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6725
diff changeset
2816 687,
7c5a0c69e1ac updated for version 7.4.687
Bram Moolenaar <bram@vim.org>
parents: 6725
diff changeset
2817 /**/
6725
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6723
diff changeset
2818 686,
bc62d1988bf2 updated for version 7.4.686
Bram Moolenaar <bram@vim.org>
parents: 6723
diff changeset
2819 /**/
6723
eefee03a37fe updated for version 7.4.685
Bram Moolenaar <bram@vim.org>
parents: 6721
diff changeset
2820 685,
eefee03a37fe updated for version 7.4.685
Bram Moolenaar <bram@vim.org>
parents: 6721
diff changeset
2821 /**/
6721
7347229a646a updated for version 7.4.684
Bram Moolenaar <bram@vim.org>
parents: 6719
diff changeset
2822 684,
7347229a646a updated for version 7.4.684
Bram Moolenaar <bram@vim.org>
parents: 6719
diff changeset
2823 /**/
6719
6f55637de261 updated for version 7.4.683
Bram Moolenaar <bram@vim.org>
parents: 6717
diff changeset
2824 683,
6f55637de261 updated for version 7.4.683
Bram Moolenaar <bram@vim.org>
parents: 6717
diff changeset
2825 /**/
6717
f242cf1f9897 updated for version 7.4.682
Bram Moolenaar <bram@vim.org>
parents: 6714
diff changeset
2826 682,
f242cf1f9897 updated for version 7.4.682
Bram Moolenaar <bram@vim.org>
parents: 6714
diff changeset
2827 /**/
6714
dc96dd80aef8 updated for version 7.4.681
Bram Moolenaar <bram@vim.org>
parents: 6712
diff changeset
2828 681,
dc96dd80aef8 updated for version 7.4.681
Bram Moolenaar <bram@vim.org>
parents: 6712
diff changeset
2829 /**/
6712
c939d19bd86e updated for version 7.4.680
Bram Moolenaar <bram@vim.org>
parents: 6710
diff changeset
2830 680,
c939d19bd86e updated for version 7.4.680
Bram Moolenaar <bram@vim.org>
parents: 6710
diff changeset
2831 /**/
6710
43a07fa78155 updated for version 7.4.679
Bram Moolenaar <bram@vim.org>
parents: 6708
diff changeset
2832 679,
43a07fa78155 updated for version 7.4.679
Bram Moolenaar <bram@vim.org>
parents: 6708
diff changeset
2833 /**/
6708
b225e8fed8cc updated for version 7.4.678
Bram Moolenaar <bram@vim.org>
parents: 6706
diff changeset
2834 678,
b225e8fed8cc updated for version 7.4.678
Bram Moolenaar <bram@vim.org>
parents: 6706
diff changeset
2835 /**/
6706
c8ff693e9ebc updated for version 7.4.677
Bram Moolenaar <bram@vim.org>
parents: 6704
diff changeset
2836 677,
c8ff693e9ebc updated for version 7.4.677
Bram Moolenaar <bram@vim.org>
parents: 6704
diff changeset
2837 /**/
6704
692bc2c52002 updated for version 7.4.676
Bram Moolenaar <bram@vim.org>
parents: 6702
diff changeset
2838 676,
692bc2c52002 updated for version 7.4.676
Bram Moolenaar <bram@vim.org>
parents: 6702
diff changeset
2839 /**/
6702
d879db7c2f56 updated for version 7.4.675
Bram Moolenaar <bram@vim.org>
parents: 6700
diff changeset
2840 675,
d879db7c2f56 updated for version 7.4.675
Bram Moolenaar <bram@vim.org>
parents: 6700
diff changeset
2841 /**/
6700
f26c1d294156 updated for version 7.4.674
Bram Moolenaar <bram@vim.org>
parents: 6698
diff changeset
2842 674,
f26c1d294156 updated for version 7.4.674
Bram Moolenaar <bram@vim.org>
parents: 6698
diff changeset
2843 /**/
6698
67e7a819c811 updated for version 7.4.673
Bram Moolenaar <bram@vim.org>
parents: 6695
diff changeset
2844 673,
67e7a819c811 updated for version 7.4.673
Bram Moolenaar <bram@vim.org>
parents: 6695
diff changeset
2845 /**/
6695
6529590f6c43 updated for version 7.4.672
Bram Moolenaar <bram@vim.org>
parents: 6693
diff changeset
2846 672,
6529590f6c43 updated for version 7.4.672
Bram Moolenaar <bram@vim.org>
parents: 6693
diff changeset
2847 /**/
6693
8faab3792a92 updated for version 7.4.671
Bram Moolenaar <bram@vim.org>
parents: 6691
diff changeset
2848 671,
8faab3792a92 updated for version 7.4.671
Bram Moolenaar <bram@vim.org>
parents: 6691
diff changeset
2849 /**/
6691
c4cb95fb4c58 updated for version 7.4.670
Bram Moolenaar <bram@vim.org>
parents: 6689
diff changeset
2850 670,
c4cb95fb4c58 updated for version 7.4.670
Bram Moolenaar <bram@vim.org>
parents: 6689
diff changeset
2851 /**/
6689
97cc4ee3e095 updated for version 7.4.669
Bram Moolenaar <bram@vim.org>
parents: 6687
diff changeset
2852 669,
97cc4ee3e095 updated for version 7.4.669
Bram Moolenaar <bram@vim.org>
parents: 6687
diff changeset
2853 /**/
6687
c52bb45c6752 updated for version 7.4.668
Bram Moolenaar <bram@vim.org>
parents: 6685
diff changeset
2854 668,
c52bb45c6752 updated for version 7.4.668
Bram Moolenaar <bram@vim.org>
parents: 6685
diff changeset
2855 /**/
6685
fd495ad521dc updated for version 7.4.667
Bram Moolenaar <bram@vim.org>
parents: 6683
diff changeset
2856 667,
fd495ad521dc updated for version 7.4.667
Bram Moolenaar <bram@vim.org>
parents: 6683
diff changeset
2857 /**/
6683
781104cb0d06 updated for version 7.4.666
Bram Moolenaar <bram@vim.org>
parents: 6681
diff changeset
2858 666,
781104cb0d06 updated for version 7.4.666
Bram Moolenaar <bram@vim.org>
parents: 6681
diff changeset
2859 /**/
6681
80abb7288d39 updated for version 7.4.665
Bram Moolenaar <bram@vim.org>
parents: 6679
diff changeset
2860 665,
80abb7288d39 updated for version 7.4.665
Bram Moolenaar <bram@vim.org>
parents: 6679
diff changeset
2861 /**/
6679
27d9a4d8c168 updated for version 7.4.664
Bram Moolenaar <bram@vim.org>
parents: 6677
diff changeset
2862 664,
27d9a4d8c168 updated for version 7.4.664
Bram Moolenaar <bram@vim.org>
parents: 6677
diff changeset
2863 /**/
6677
77172f5bac73 updated for version 7.4.663
Bram Moolenaar <bram@vim.org>
parents: 6675
diff changeset
2864 663,
77172f5bac73 updated for version 7.4.663
Bram Moolenaar <bram@vim.org>
parents: 6675
diff changeset
2865 /**/
6675
24e0b6dd52e1 updated for version 7.4.662
Bram Moolenaar <bram@vim.org>
parents: 6673
diff changeset
2866 662,
24e0b6dd52e1 updated for version 7.4.662
Bram Moolenaar <bram@vim.org>
parents: 6673
diff changeset
2867 /**/
6673
21719d38d2ff updated for version 7.4.661
Bram Moolenaar <bram@vim.org>
parents: 6671
diff changeset
2868 661,
21719d38d2ff updated for version 7.4.661
Bram Moolenaar <bram@vim.org>
parents: 6671
diff changeset
2869 /**/
6671
476a12a96bb1 updated for version 7.4.660
Bram Moolenaar <bram@vim.org>
parents: 6669
diff changeset
2870 660,
476a12a96bb1 updated for version 7.4.660
Bram Moolenaar <bram@vim.org>
parents: 6669
diff changeset
2871 /**/
6669
5a12a6861367 updated for version 7.4.659
Bram Moolenaar <bram@vim.org>
parents: 6667
diff changeset
2872 659,
5a12a6861367 updated for version 7.4.659
Bram Moolenaar <bram@vim.org>
parents: 6667
diff changeset
2873 /**/
6667
9f74286c4404 updated for version 7.4.658
Bram Moolenaar <bram@vim.org>
parents: 6665
diff changeset
2874 658,
9f74286c4404 updated for version 7.4.658
Bram Moolenaar <bram@vim.org>
parents: 6665
diff changeset
2875 /**/
6665
9fda0c52db0b updated for version 7.4.657
Bram Moolenaar <bram@vim.org>
parents: 6663
diff changeset
2876 657,
9fda0c52db0b updated for version 7.4.657
Bram Moolenaar <bram@vim.org>
parents: 6663
diff changeset
2877 /**/
6663
056809de0b29 updated for version 7.4.656
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
2878 656,
056809de0b29 updated for version 7.4.656
Bram Moolenaar <bram@vim.org>
parents: 6661
diff changeset
2879 /**/
6661
950e24f26ef8 updated for version 7.4.655
Bram Moolenaar <bram@vim.org>
parents: 6659
diff changeset
2880 655,
950e24f26ef8 updated for version 7.4.655
Bram Moolenaar <bram@vim.org>
parents: 6659
diff changeset
2881 /**/
6659
6f1e4b7942c3 updated for version 7.4.654
Bram Moolenaar <bram@vim.org>
parents: 6657
diff changeset
2882 654,
6f1e4b7942c3 updated for version 7.4.654
Bram Moolenaar <bram@vim.org>
parents: 6657
diff changeset
2883 /**/
6657
41d50eba0c0f updated for version 7.4.653
Bram Moolenaar <bram@vim.org>
parents: 6655
diff changeset
2884 653,
41d50eba0c0f updated for version 7.4.653
Bram Moolenaar <bram@vim.org>
parents: 6655
diff changeset
2885 /**/
6655
6c94cedccda4 updated for version 7.4.652
Bram Moolenaar <bram@vim.org>
parents: 6653
diff changeset
2886 652,
6c94cedccda4 updated for version 7.4.652
Bram Moolenaar <bram@vim.org>
parents: 6653
diff changeset
2887 /**/
6653
2c7f279d419c updated for version 7.4.651
Bram Moolenaar <bram@vim.org>
parents: 6651
diff changeset
2888 651,
2c7f279d419c updated for version 7.4.651
Bram Moolenaar <bram@vim.org>
parents: 6651
diff changeset
2889 /**/
6651
7026d6f3367f updated for version 7.4.650
Bram Moolenaar <bram@vim.org>
parents: 6649
diff changeset
2890 650,
7026d6f3367f updated for version 7.4.650
Bram Moolenaar <bram@vim.org>
parents: 6649
diff changeset
2891 /**/
6649
8bee881c3ca5 updated for version 7.4.649
Bram Moolenaar <bram@vim.org>
parents: 6645
diff changeset
2892 649,
8bee881c3ca5 updated for version 7.4.649
Bram Moolenaar <bram@vim.org>
parents: 6645
diff changeset
2893 /**/
6645
0a859da6714b updated for version 7.4.648
Bram Moolenaar <bram@vim.org>
parents: 6643
diff changeset
2894 648,
0a859da6714b updated for version 7.4.648
Bram Moolenaar <bram@vim.org>
parents: 6643
diff changeset
2895 /**/
6643
4f9c3e62d4d4 updated for version 7.4.647
Bram Moolenaar <bram@vim.org>
parents: 6641
diff changeset
2896 647,
4f9c3e62d4d4 updated for version 7.4.647
Bram Moolenaar <bram@vim.org>
parents: 6641
diff changeset
2897 /**/
6641
ceda6d8af447 updated for version 7.4.646
Bram Moolenaar <bram@vim.org>
parents: 6639
diff changeset
2898 646,
ceda6d8af447 updated for version 7.4.646
Bram Moolenaar <bram@vim.org>
parents: 6639
diff changeset
2899 /**/
6639
342568f82d82 updated for version 7.4.645
Bram Moolenaar <bram@vim.org>
parents: 6637
diff changeset
2900 645,
342568f82d82 updated for version 7.4.645
Bram Moolenaar <bram@vim.org>
parents: 6637
diff changeset
2901 /**/
6637
a12d422ed16c updated for version 7.4.644
Bram Moolenaar <bram@vim.org>
parents: 6635
diff changeset
2902 644,
a12d422ed16c updated for version 7.4.644
Bram Moolenaar <bram@vim.org>
parents: 6635
diff changeset
2903 /**/
6635
050e6df85f99 updated for version 7.4.643
Bram Moolenaar <bram@vim.org>
parents: 6633
diff changeset
2904 643,
050e6df85f99 updated for version 7.4.643
Bram Moolenaar <bram@vim.org>
parents: 6633
diff changeset
2905 /**/
6633
75444015837a updated for version 7.4.642
Bram Moolenaar <bram@vim.org>
parents: 6631
diff changeset
2906 642,
75444015837a updated for version 7.4.642
Bram Moolenaar <bram@vim.org>
parents: 6631
diff changeset
2907 /**/
6631
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6629
diff changeset
2908 641,
e527af42e108 updated for version 7.4.641
Bram Moolenaar <bram@vim.org>
parents: 6629
diff changeset
2909 /**/
6629
347747485343 updated for version 7.4.640
Bram Moolenaar <bram@vim.org>
parents: 6627
diff changeset
2910 640,
347747485343 updated for version 7.4.640
Bram Moolenaar <bram@vim.org>
parents: 6627
diff changeset
2911 /**/
6627
43f444efe6a2 updated for version 7.4.639
Bram Moolenaar <bram@vim.org>
parents: 6625
diff changeset
2912 639,
43f444efe6a2 updated for version 7.4.639
Bram Moolenaar <bram@vim.org>
parents: 6625
diff changeset
2913 /**/
6625
199ce895e162 updated for version 7.4.638
Bram Moolenaar <bram@vim.org>
parents: 6623
diff changeset
2914 638,
199ce895e162 updated for version 7.4.638
Bram Moolenaar <bram@vim.org>
parents: 6623
diff changeset
2915 /**/
6623
a532340f3940 updated for version 7.4.637
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
2916 637,
a532340f3940 updated for version 7.4.637
Bram Moolenaar <bram@vim.org>
parents: 6620
diff changeset
2917 /**/
6620
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6618
diff changeset
2918 636,
578c16fbab66 updated for version 7.4.636
Bram Moolenaar <bram@vim.org>
parents: 6618
diff changeset
2919 /**/
6618
a871b5070d59 updated for version 7.4.635
Bram Moolenaar <bram@vim.org>
parents: 6616
diff changeset
2920 635,
a871b5070d59 updated for version 7.4.635
Bram Moolenaar <bram@vim.org>
parents: 6616
diff changeset
2921 /**/
6616
290631797b76 updated for version 7.4.634
Bram Moolenaar <bram@vim.org>
parents: 6614
diff changeset
2922 634,
290631797b76 updated for version 7.4.634
Bram Moolenaar <bram@vim.org>
parents: 6614
diff changeset
2923 /**/
6614
03688be95994 updated for version 7.4.633
Bram Moolenaar <bram@vim.org>
parents: 6612
diff changeset
2924 633,
03688be95994 updated for version 7.4.633
Bram Moolenaar <bram@vim.org>
parents: 6612
diff changeset
2925 /**/
6612
cd7b5bbe4952 updated for version 7.4.632
Bram Moolenaar <bram@vim.org>
parents: 6610
diff changeset
2926 632,
cd7b5bbe4952 updated for version 7.4.632
Bram Moolenaar <bram@vim.org>
parents: 6610
diff changeset
2927 /**/
6610
86f00f7678eb updated for version 7.4.631
Bram Moolenaar <bram@vim.org>
parents: 6608
diff changeset
2928 631,
86f00f7678eb updated for version 7.4.631
Bram Moolenaar <bram@vim.org>
parents: 6608
diff changeset
2929 /**/
6608
a5ba0921efcb updated for version 7.4.630
Bram Moolenaar <bram@vim.org>
parents: 6606
diff changeset
2930 630,
a5ba0921efcb updated for version 7.4.630
Bram Moolenaar <bram@vim.org>
parents: 6606
diff changeset
2931 /**/
6606
f28c171348fb updated for version 7.4.629
Bram Moolenaar <bram@vim.org>
parents: 6604
diff changeset
2932 629,
f28c171348fb updated for version 7.4.629
Bram Moolenaar <bram@vim.org>
parents: 6604
diff changeset
2933 /**/
6604
6eecaf5a18ca updated for version 7.4.628
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
2934 628,
6eecaf5a18ca updated for version 7.4.628
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
2935 /**/
6602
c77ef1bf9623 updated for version 7.4.627
Bram Moolenaar <bram@vim.org>
parents: 6600
diff changeset
2936 627,
c77ef1bf9623 updated for version 7.4.627
Bram Moolenaar <bram@vim.org>
parents: 6600
diff changeset
2937 /**/
6600
68e0e6bb8250 updated for version 7.4.626
Bram Moolenaar <bram@vim.org>
parents: 6598
diff changeset
2938 626,
68e0e6bb8250 updated for version 7.4.626
Bram Moolenaar <bram@vim.org>
parents: 6598
diff changeset
2939 /**/
6598
4b1e3b3aa78a updated for version 7.4.625
Bram Moolenaar <bram@vim.org>
parents: 6596
diff changeset
2940 625,
4b1e3b3aa78a updated for version 7.4.625
Bram Moolenaar <bram@vim.org>
parents: 6596
diff changeset
2941 /**/
6596
f8f2a61e538d updated for version 7.4.624
Bram Moolenaar <bram@vim.org>
parents: 6594
diff changeset
2942 624,
f8f2a61e538d updated for version 7.4.624
Bram Moolenaar <bram@vim.org>
parents: 6594
diff changeset
2943 /**/
6594
3cca9b0cc1a0 updated for version 7.4.623
Bram Moolenaar <bram@vim.org>
parents: 6592
diff changeset
2944 623,
3cca9b0cc1a0 updated for version 7.4.623
Bram Moolenaar <bram@vim.org>
parents: 6592
diff changeset
2945 /**/
6592
599112d00aa9 updated for version 7.4.622
Bram Moolenaar <bram@vim.org>
parents: 6590
diff changeset
2946 622,
599112d00aa9 updated for version 7.4.622
Bram Moolenaar <bram@vim.org>
parents: 6590
diff changeset
2947 /**/
6590
f884a1140a0a updated for version 7.4.621
Bram Moolenaar <bram@vim.org>
parents: 6588
diff changeset
2948 621,
f884a1140a0a updated for version 7.4.621
Bram Moolenaar <bram@vim.org>
parents: 6588
diff changeset
2949 /**/
6588
1ffe91b5e514 updated for version 7.4.620
Bram Moolenaar <bram@vim.org>
parents: 6586
diff changeset
2950 620,
1ffe91b5e514 updated for version 7.4.620
Bram Moolenaar <bram@vim.org>
parents: 6586
diff changeset
2951 /**/
6586
9ac723b9f54d updated for version 7.4.619
Bram Moolenaar <bram@vim.org>
parents: 6584
diff changeset
2952 619,
9ac723b9f54d updated for version 7.4.619
Bram Moolenaar <bram@vim.org>
parents: 6584
diff changeset
2953 /**/
6584
d129b939a190 updated for version 7.4.618
Bram Moolenaar <bram@vim.org>
parents: 6581
diff changeset
2954 618,
d129b939a190 updated for version 7.4.618
Bram Moolenaar <bram@vim.org>
parents: 6581
diff changeset
2955 /**/
6581
05202d6ba0ef updated for version 7.4.617
Bram Moolenaar <bram@vim.org>
parents: 6579
diff changeset
2956 617,
05202d6ba0ef updated for version 7.4.617
Bram Moolenaar <bram@vim.org>
parents: 6579
diff changeset
2957 /**/
6579
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6577
diff changeset
2958 616,
a287b0e9e87b updated for version 7.4.616
Bram Moolenaar <bram@vim.org>
parents: 6577
diff changeset
2959 /**/
6577
7092ec5d5ef1 updated for version 7.4.615
Bram Moolenaar <bram@vim.org>
parents: 6575
diff changeset
2960 615,
7092ec5d5ef1 updated for version 7.4.615
Bram Moolenaar <bram@vim.org>
parents: 6575
diff changeset
2961 /**/
6575
a7e485b683d8 updated for version 7.4.614
Bram Moolenaar <bram@vim.org>
parents: 6573
diff changeset
2962 614,
a7e485b683d8 updated for version 7.4.614
Bram Moolenaar <bram@vim.org>
parents: 6573
diff changeset
2963 /**/
6573
ffba266e064d updated for version 7.4.613
Bram Moolenaar <bram@vim.org>
parents: 6571
diff changeset
2964 613,
ffba266e064d updated for version 7.4.613
Bram Moolenaar <bram@vim.org>
parents: 6571
diff changeset
2965 /**/
6571
75238dbe8543 updated for version 7.4.612
Bram Moolenaar <bram@vim.org>
parents: 6569
diff changeset
2966 612,
75238dbe8543 updated for version 7.4.612
Bram Moolenaar <bram@vim.org>
parents: 6569
diff changeset
2967 /**/
6569
7fa1a7359a56 updated for version 7.4.611
Bram Moolenaar <bram@vim.org>
parents: 6567
diff changeset
2968 611,
7fa1a7359a56 updated for version 7.4.611
Bram Moolenaar <bram@vim.org>
parents: 6567
diff changeset
2969 /**/
6567
d6473d6501fd updated for version 7.4.610
Bram Moolenaar <bram@vim.org>
parents: 6565
diff changeset
2970 610,
d6473d6501fd updated for version 7.4.610
Bram Moolenaar <bram@vim.org>
parents: 6565
diff changeset
2971 /**/
6565
38add5a3d617 updated for version 7.4.609
Bram Moolenaar <bram@vim.org>
parents: 6563
diff changeset
2972 609,
38add5a3d617 updated for version 7.4.609
Bram Moolenaar <bram@vim.org>
parents: 6563
diff changeset
2973 /**/
6563
6b86d256fd33 updated for version 7.4.608
Bram Moolenaar <bram@vim.org>
parents: 6561
diff changeset
2974 608,
6b86d256fd33 updated for version 7.4.608
Bram Moolenaar <bram@vim.org>
parents: 6561
diff changeset
2975 /**/
6561
52b89a52ffd4 updated for version 7.4.607
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
2976 607,
52b89a52ffd4 updated for version 7.4.607
Bram Moolenaar <bram@vim.org>
parents: 6559
diff changeset
2977 /**/
6559
22f164bd7e8e updated for version 7.4.606
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
2978 606,
22f164bd7e8e updated for version 7.4.606
Bram Moolenaar <bram@vim.org>
parents: 6557
diff changeset
2979 /**/
6557
c1ed973fb58f updated for version 7.4.605
Bram Moolenaar <bram@vim.org>
parents: 6555
diff changeset
2980 605,
c1ed973fb58f updated for version 7.4.605
Bram Moolenaar <bram@vim.org>
parents: 6555
diff changeset
2981 /**/
6555
f625b6302d04 updated for version 7.4.604
Bram Moolenaar <bram@vim.org>
parents: 6553
diff changeset
2982 604,
f625b6302d04 updated for version 7.4.604
Bram Moolenaar <bram@vim.org>
parents: 6553
diff changeset
2983 /**/
6553
0c8738124a7b updated for version 7.4.603
Bram Moolenaar <bram@vim.org>
parents: 6551
diff changeset
2984 603,
0c8738124a7b updated for version 7.4.603
Bram Moolenaar <bram@vim.org>
parents: 6551
diff changeset
2985 /**/
6551
4e31d9f7c896 updated for version 7.4.602
Bram Moolenaar <bram@vim.org>
parents: 6549
diff changeset
2986 602,
4e31d9f7c896 updated for version 7.4.602
Bram Moolenaar <bram@vim.org>
parents: 6549
diff changeset
2987 /**/
6549
2561531decf1 updated for version 7.4.601
Bram Moolenaar <bram@vim.org>
parents: 6547
diff changeset
2988 601,
2561531decf1 updated for version 7.4.601
Bram Moolenaar <bram@vim.org>
parents: 6547
diff changeset
2989 /**/
6547
436d6c9e57f2 updated for version 7.4.600
Bram Moolenaar <bram@vim.org>
parents: 6545
diff changeset
2990 600,
436d6c9e57f2 updated for version 7.4.600
Bram Moolenaar <bram@vim.org>
parents: 6545
diff changeset
2991 /**/
6545
1ef8ce97fc40 updated for version 7.4.599
Bram Moolenaar <bram@vim.org>
parents: 6543
diff changeset
2992 599,
1ef8ce97fc40 updated for version 7.4.599
Bram Moolenaar <bram@vim.org>
parents: 6543
diff changeset
2993 /**/
6543
b01ca71f93b2 updated for version 7.4.598
Bram Moolenaar <bram@vim.org>
parents: 6541
diff changeset
2994 598,
b01ca71f93b2 updated for version 7.4.598
Bram Moolenaar <bram@vim.org>
parents: 6541
diff changeset
2995 /**/
6541
c124a8f34ed1 updated for version 7.4.597
Bram Moolenaar <bram@vim.org>
parents: 6539
diff changeset
2996 597,
c124a8f34ed1 updated for version 7.4.597
Bram Moolenaar <bram@vim.org>
parents: 6539
diff changeset
2997 /**/
6539
6da912e32896 updated for version 7.4.596
Bram Moolenaar <bram@vim.org>
parents: 6537
diff changeset
2998 596,
6da912e32896 updated for version 7.4.596
Bram Moolenaar <bram@vim.org>
parents: 6537
diff changeset
2999 /**/
6537
d83436d11987 updated for version 7.4.595
Bram Moolenaar <bram@vim.org>
parents: 6535
diff changeset
3000 595,
d83436d11987 updated for version 7.4.595
Bram Moolenaar <bram@vim.org>
parents: 6535
diff changeset
3001 /**/
6535
f9d02ce2f745 updated for version 7.4.594
Bram Moolenaar <bram@vim.org>
parents: 6533
diff changeset
3002 594,
f9d02ce2f745 updated for version 7.4.594
Bram Moolenaar <bram@vim.org>
parents: 6533
diff changeset
3003 /**/
6533
bdc8e71633e4 updated for version 7.4.593
Bram Moolenaar <bram@vim.org>
parents: 6531
diff changeset
3004 593,
bdc8e71633e4 updated for version 7.4.593
Bram Moolenaar <bram@vim.org>
parents: 6531
diff changeset
3005 /**/
6531
005a6b650866 updated for version 7.4.592
Bram Moolenaar <bram@vim.org>
parents: 6528
diff changeset
3006 592,
005a6b650866 updated for version 7.4.592
Bram Moolenaar <bram@vim.org>
parents: 6528
diff changeset
3007 /**/
6528
7b8e3be930f3 updated for version 7.4.591
Bram Moolenaar <bram@vim.org>
parents: 6526
diff changeset
3008 591,
7b8e3be930f3 updated for version 7.4.591
Bram Moolenaar <bram@vim.org>
parents: 6526
diff changeset
3009 /**/
6526
5b8d26b85437 updated for version 7.4.590
Bram Moolenaar <bram@vim.org>
parents: 6524
diff changeset
3010 590,
5b8d26b85437 updated for version 7.4.590
Bram Moolenaar <bram@vim.org>
parents: 6524
diff changeset
3011 /**/
6524
8ff2d1b611bf updated for version 7.4.589
Bram Moolenaar <bram@vim.org>
parents: 6522
diff changeset
3012 589,
8ff2d1b611bf updated for version 7.4.589
Bram Moolenaar <bram@vim.org>
parents: 6522
diff changeset
3013 /**/
6522
a03e143b9358 updated for version 7.4.588
Bram Moolenaar <bram@vim.org>
parents: 6520
diff changeset
3014 588,
a03e143b9358 updated for version 7.4.588
Bram Moolenaar <bram@vim.org>
parents: 6520
diff changeset
3015 /**/
6520
70793fedd25a updated for version 7.4.587
Bram Moolenaar <bram@vim.org>
parents: 6518
diff changeset
3016 587,
70793fedd25a updated for version 7.4.587
Bram Moolenaar <bram@vim.org>
parents: 6518
diff changeset
3017 /**/
6518
667cb2eb17a5 updated for version 7.4.586
Bram Moolenaar <bram@vim.org>
parents: 6516
diff changeset
3018 586,
667cb2eb17a5 updated for version 7.4.586
Bram Moolenaar <bram@vim.org>
parents: 6516
diff changeset
3019 /**/
6516
1d3139ae6ce6 updated for version 7.4.585
Bram Moolenaar <bram@vim.org>
parents: 6514
diff changeset
3020 585,
1d3139ae6ce6 updated for version 7.4.585
Bram Moolenaar <bram@vim.org>
parents: 6514
diff changeset
3021 /**/
6514
79b3d83592c5 updated for version 7.4.584
Bram Moolenaar <bram@vim.org>
parents: 6512
diff changeset
3022 584,
79b3d83592c5 updated for version 7.4.584
Bram Moolenaar <bram@vim.org>
parents: 6512
diff changeset
3023 /**/
6512
f2978794e801 updated for version 7.4.583
Bram Moolenaar <bram@vim.org>
parents: 6510
diff changeset
3024 583,
f2978794e801 updated for version 7.4.583
Bram Moolenaar <bram@vim.org>
parents: 6510
diff changeset
3025 /**/
6510
dfd593d81818 updated for version 7.4.582
Bram Moolenaar <bram@vim.org>
parents: 6508
diff changeset
3026 582,
dfd593d81818 updated for version 7.4.582
Bram Moolenaar <bram@vim.org>
parents: 6508
diff changeset
3027 /**/
6508
e1874a4524f8 updated for version 7.4.581
Bram Moolenaar <bram@vim.org>
parents: 6506
diff changeset
3028 581,
e1874a4524f8 updated for version 7.4.581
Bram Moolenaar <bram@vim.org>
parents: 6506
diff changeset
3029 /**/
6506
a5a6f1467b1e updated for version 7.4.580
Bram Moolenaar <bram@vim.org>
parents: 6503
diff changeset
3030 580,
a5a6f1467b1e updated for version 7.4.580
Bram Moolenaar <bram@vim.org>
parents: 6503
diff changeset
3031 /**/
6503
134a7d55f9fa updated for version 7.4.579
Bram Moolenaar <bram@vim.org>
parents: 6501
diff changeset
3032 579,
134a7d55f9fa updated for version 7.4.579
Bram Moolenaar <bram@vim.org>
parents: 6501
diff changeset
3033 /**/
6501
b7b3afcae90e updated for version 7.4.578
Bram Moolenaar <bram@vim.org>
parents: 6499
diff changeset
3034 578,
b7b3afcae90e updated for version 7.4.578
Bram Moolenaar <bram@vim.org>
parents: 6499
diff changeset
3035 /**/
6499
bcf9d3a6007f updated for version 7.4.577
Bram Moolenaar <bram@vim.org>
parents: 6497
diff changeset
3036 577,
bcf9d3a6007f updated for version 7.4.577
Bram Moolenaar <bram@vim.org>
parents: 6497
diff changeset
3037 /**/
6497
749fc929da45 updated for version 7.4.576
Bram Moolenaar <bram@vim.org>
parents: 6495
diff changeset
3038 576,
749fc929da45 updated for version 7.4.576
Bram Moolenaar <bram@vim.org>
parents: 6495
diff changeset
3039 /**/
6495
fe0f33ac63af updated for version 7.4.575
Bram Moolenaar <bram@vim.org>
parents: 6493
diff changeset
3040 575,
fe0f33ac63af updated for version 7.4.575
Bram Moolenaar <bram@vim.org>
parents: 6493
diff changeset
3041 /**/
6493
45ff9dd354ea updated for version 7.4.574
Bram Moolenaar <bram@vim.org>
parents: 6491
diff changeset
3042 574,
45ff9dd354ea updated for version 7.4.574
Bram Moolenaar <bram@vim.org>
parents: 6491
diff changeset
3043 /**/
6491
8cfbc34ae4aa updated for version 7.4.573
Bram Moolenaar <bram@vim.org>
parents: 6489
diff changeset
3044 573,
8cfbc34ae4aa updated for version 7.4.573
Bram Moolenaar <bram@vim.org>
parents: 6489
diff changeset
3045 /**/
6489
cba15023c403 updated for version 7.4.572
Bram Moolenaar <bram@vim.org>
parents: 6487
diff changeset
3046 572,
cba15023c403 updated for version 7.4.572
Bram Moolenaar <bram@vim.org>
parents: 6487
diff changeset
3047 /**/
6487
97b2ff29ae3a updated for version 7.4.571
Bram Moolenaar <bram@vim.org>
parents: 6485
diff changeset
3048 571,
97b2ff29ae3a updated for version 7.4.571
Bram Moolenaar <bram@vim.org>
parents: 6485
diff changeset
3049 /**/
6485
816c584ff174 updated for version 7.4.570
Bram Moolenaar <bram@vim.org>
parents: 6482
diff changeset
3050 570,
816c584ff174 updated for version 7.4.570
Bram Moolenaar <bram@vim.org>
parents: 6482
diff changeset
3051 /**/
6482
ccb6962585f1 updated for version 7.4.569
Bram Moolenaar <bram@vim.org>
parents: 6480
diff changeset
3052 569,
ccb6962585f1 updated for version 7.4.569
Bram Moolenaar <bram@vim.org>
parents: 6480
diff changeset
3053 /**/
6480
747cbac7047b updated for version 7.4.568
Bram Moolenaar <bram@vim.org>
parents: 6477
diff changeset
3054 568,
747cbac7047b updated for version 7.4.568
Bram Moolenaar <bram@vim.org>
parents: 6477
diff changeset
3055 /**/
6477
0b245c8dbd19 updated for version 7.4.567
Bram Moolenaar <bram@vim.org>
parents: 6474
diff changeset
3056 567,
0b245c8dbd19 updated for version 7.4.567
Bram Moolenaar <bram@vim.org>
parents: 6474
diff changeset
3057 /**/
6474
a88d4dc02bf4 updated for version 7.4.566
Bram Moolenaar <bram@vim.org>
parents: 6472
diff changeset
3058 566,
a88d4dc02bf4 updated for version 7.4.566
Bram Moolenaar <bram@vim.org>
parents: 6472
diff changeset
3059 /**/
6472
22f95a018b13 updated for version 7.4.565
Bram Moolenaar <bram@vim.org>
parents: 6470
diff changeset
3060 565,
22f95a018b13 updated for version 7.4.565
Bram Moolenaar <bram@vim.org>
parents: 6470
diff changeset
3061 /**/
6470
9657929ee562 updated for version 7.4.564
Bram Moolenaar <bram@vim.org>
parents: 6468
diff changeset
3062 564,
9657929ee562 updated for version 7.4.564
Bram Moolenaar <bram@vim.org>
parents: 6468
diff changeset
3063 /**/
6468
9dc52b404c1b updated for version 7.4.563
Bram Moolenaar <bram@vim.org>
parents: 6466
diff changeset
3064 563,
9dc52b404c1b updated for version 7.4.563
Bram Moolenaar <bram@vim.org>
parents: 6466
diff changeset
3065 /**/
6466
b5df99582638 updated for version 7.4.562
Bram Moolenaar <bram@vim.org>
parents: 6464
diff changeset
3066 562,
b5df99582638 updated for version 7.4.562
Bram Moolenaar <bram@vim.org>
parents: 6464
diff changeset
3067 /**/
6464
82c6a3bddb23 updated for version 7.4.561
Bram Moolenaar <bram@vim.org>
parents: 6462
diff changeset
3068 561,
82c6a3bddb23 updated for version 7.4.561
Bram Moolenaar <bram@vim.org>
parents: 6462
diff changeset
3069 /**/
6462
86aacd619ac0 updated for version 7.4.560
Bram Moolenaar <bram@vim.org>
parents: 6460
diff changeset
3070 560,
86aacd619ac0 updated for version 7.4.560
Bram Moolenaar <bram@vim.org>
parents: 6460
diff changeset
3071 /**/
6460
29f5cfca3388 updated for version 7.4.559
Bram Moolenaar <bram@vim.org>
parents: 6458
diff changeset
3072 559,
29f5cfca3388 updated for version 7.4.559
Bram Moolenaar <bram@vim.org>
parents: 6458
diff changeset
3073 /**/
6458
48111d5fd8a8 updated for version 7.4.558
Bram Moolenaar <bram@vim.org>
parents: 6456
diff changeset
3074 558,
48111d5fd8a8 updated for version 7.4.558
Bram Moolenaar <bram@vim.org>
parents: 6456
diff changeset
3075 /**/
6456
fcd5a3207100 updated for version 7.4.557
Bram Moolenaar <bram@vim.org>
parents: 6454
diff changeset
3076 557,
fcd5a3207100 updated for version 7.4.557
Bram Moolenaar <bram@vim.org>
parents: 6454
diff changeset
3077 /**/
6454
a35752526cd0 updated for version 7.4.556
Bram Moolenaar <bram@vim.org>
parents: 6452
diff changeset
3078 556,
a35752526cd0 updated for version 7.4.556
Bram Moolenaar <bram@vim.org>
parents: 6452
diff changeset
3079 /**/
6452
c12439378869 updated for version 7.4.555
Bram Moolenaar <bram@vim.org>
parents: 6450
diff changeset
3080 555,
c12439378869 updated for version 7.4.555
Bram Moolenaar <bram@vim.org>
parents: 6450
diff changeset
3081 /**/
6450
7e4c22ecc679 updated for version 7.4.554
Bram Moolenaar <bram@vim.org>
parents: 6448
diff changeset
3082 554,
7e4c22ecc679 updated for version 7.4.554
Bram Moolenaar <bram@vim.org>
parents: 6448
diff changeset
3083 /**/
6448
e13f8073c9f9 updated for version 7.4.553
Bram Moolenaar <bram@vim.org>
parents: 6445
diff changeset
3084 553,
e13f8073c9f9 updated for version 7.4.553
Bram Moolenaar <bram@vim.org>
parents: 6445
diff changeset
3085 /**/
6445
c8d6dbdd1156 updated for version 7.4.552
Bram Moolenaar <bram@vim.org>
parents: 6443
diff changeset
3086 552,
c8d6dbdd1156 updated for version 7.4.552
Bram Moolenaar <bram@vim.org>
parents: 6443
diff changeset
3087 /**/
6443
eb0fb921e197 updated for version 7.4.551
Bram Moolenaar <bram@vim.org>
parents: 6441
diff changeset
3088 551,
eb0fb921e197 updated for version 7.4.551
Bram Moolenaar <bram@vim.org>
parents: 6441
diff changeset
3089 /**/
6441
7cda721eadb0 updated for version 7.4.550
Bram Moolenaar <bram@vim.org>
parents: 6438
diff changeset
3090 550,
7cda721eadb0 updated for version 7.4.550
Bram Moolenaar <bram@vim.org>
parents: 6438
diff changeset
3091 /**/
6438
1fd9f1d43660 updated for version 7.4.549
Bram Moolenaar <bram@vim.org>
parents: 6436
diff changeset
3092 549,
1fd9f1d43660 updated for version 7.4.549
Bram Moolenaar <bram@vim.org>
parents: 6436
diff changeset
3093 /**/
6436
26a20ce3532c updated for version 7.4.548
Bram Moolenaar <bram@vim.org>
parents: 6434
diff changeset
3094 548,
26a20ce3532c updated for version 7.4.548
Bram Moolenaar <bram@vim.org>
parents: 6434
diff changeset
3095 /**/
6434
19726451aabe updated for version 7.4.547
Bram Moolenaar <bram@vim.org>
parents: 6432
diff changeset
3096 547,
19726451aabe updated for version 7.4.547
Bram Moolenaar <bram@vim.org>
parents: 6432
diff changeset
3097 /**/
6432
84190359b979 updated for version 7.4.546
Bram Moolenaar <bram@vim.org>
parents: 6430
diff changeset
3098 546,
84190359b979 updated for version 7.4.546
Bram Moolenaar <bram@vim.org>
parents: 6430
diff changeset
3099 /**/
6430
d2239abd3edb updated for version 7.4.545
Bram Moolenaar <bram@vim.org>
parents: 6428
diff changeset
3100 545,
d2239abd3edb updated for version 7.4.545
Bram Moolenaar <bram@vim.org>
parents: 6428
diff changeset
3101 /**/
6428
89143424f604 updated for version 7.4.544
Bram Moolenaar <bram@vim.org>
parents: 6426
diff changeset
3102 544,
89143424f604 updated for version 7.4.544
Bram Moolenaar <bram@vim.org>
parents: 6426
diff changeset
3103 /**/
6426
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6424
diff changeset
3104 543,
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6424
diff changeset
3105 /**/
6424
de877dab1c31 updated for version 7.4.542
Bram Moolenaar <bram@vim.org>
parents: 6422
diff changeset
3106 542,
de877dab1c31 updated for version 7.4.542
Bram Moolenaar <bram@vim.org>
parents: 6422
diff changeset
3107 /**/
6422
9fbb9c60ab41 updated for version 7.4.541
Bram Moolenaar <bram@vim.org>
parents: 6419
diff changeset
3108 541,
9fbb9c60ab41 updated for version 7.4.541
Bram Moolenaar <bram@vim.org>
parents: 6419
diff changeset
3109 /**/
6419
93aca8cdd7b8 updated for version 7.4.540
Bram Moolenaar <bram@vim.org>
parents: 6417
diff changeset
3110 540,
93aca8cdd7b8 updated for version 7.4.540
Bram Moolenaar <bram@vim.org>
parents: 6417
diff changeset
3111 /**/
6417
77fe94082f53 updated for version 7.4.539
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3112 539,
77fe94082f53 updated for version 7.4.539
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3113 /**/
6415
3421b24e419c updated for version 7.4.538
Bram Moolenaar <bram@vim.org>
parents: 6413
diff changeset
3114 538,
3421b24e419c updated for version 7.4.538
Bram Moolenaar <bram@vim.org>
parents: 6413
diff changeset
3115 /**/
6413
01c668384bcc updated for version 7.4.537
Bram Moolenaar <bram@vim.org>
parents: 6411
diff changeset
3116 537,
01c668384bcc updated for version 7.4.537
Bram Moolenaar <bram@vim.org>
parents: 6411
diff changeset
3117 /**/
6411
d51d47bd77c2 updated for version 7.4.536
Bram Moolenaar <bram@vim.org>
parents: 6409
diff changeset
3118 536,
d51d47bd77c2 updated for version 7.4.536
Bram Moolenaar <bram@vim.org>
parents: 6409
diff changeset
3119 /**/
6409
83c5fd1b55bc updated for version 7.4.535
Bram Moolenaar <bram@vim.org>
parents: 6406
diff changeset
3120 535,
83c5fd1b55bc updated for version 7.4.535
Bram Moolenaar <bram@vim.org>
parents: 6406
diff changeset
3121 /**/
6406
ee28ddfc7b7c updated for version 7.4.534
Bram Moolenaar <bram@vim.org>
parents: 6404
diff changeset
3122 534,
ee28ddfc7b7c updated for version 7.4.534
Bram Moolenaar <bram@vim.org>
parents: 6404
diff changeset
3123 /**/
6404
18953e121be6 updated for version 7.4.533
Bram Moolenaar <bram@vim.org>
parents: 6402
diff changeset
3124 533,
18953e121be6 updated for version 7.4.533
Bram Moolenaar <bram@vim.org>
parents: 6402
diff changeset
3125 /**/
6402
7f48abe500e1 updated for version 7.4.532
Bram Moolenaar <bram@vim.org>
parents: 6400
diff changeset
3126 532,
7f48abe500e1 updated for version 7.4.532
Bram Moolenaar <bram@vim.org>
parents: 6400
diff changeset
3127 /**/
6400
2c0cddd0df8c updated for version 7.4.531
Bram Moolenaar <bram@vim.org>
parents: 6398
diff changeset
3128 531,
2c0cddd0df8c updated for version 7.4.531
Bram Moolenaar <bram@vim.org>
parents: 6398
diff changeset
3129 /**/
6398
5a76e36f07b1 updated for version 7.4.530
Bram Moolenaar <bram@vim.org>
parents: 6396
diff changeset
3130 530,
5a76e36f07b1 updated for version 7.4.530
Bram Moolenaar <bram@vim.org>
parents: 6396
diff changeset
3131 /**/
6396
72d5a533ec87 updated for version 7.4.529
Bram Moolenaar <bram@vim.org>
parents: 6394
diff changeset
3132 529,
72d5a533ec87 updated for version 7.4.529
Bram Moolenaar <bram@vim.org>
parents: 6394
diff changeset
3133 /**/
6394
5f49ac8426df updated for version 7.4.528
Bram Moolenaar <bram@vim.org>
parents: 6392
diff changeset
3134 528,
5f49ac8426df updated for version 7.4.528
Bram Moolenaar <bram@vim.org>
parents: 6392
diff changeset
3135 /**/
6392
2bb019eb60ca updated for version 7.4.527
Bram Moolenaar <bram@vim.org>
parents: 6390
diff changeset
3136 527,
2bb019eb60ca updated for version 7.4.527
Bram Moolenaar <bram@vim.org>
parents: 6390
diff changeset
3137 /**/
6390
230b52b9d35e updated for version 7.4.526
Bram Moolenaar <bram@vim.org>
parents: 6388
diff changeset
3138 526,
230b52b9d35e updated for version 7.4.526
Bram Moolenaar <bram@vim.org>
parents: 6388
diff changeset
3139 /**/
6388
2587209317b7 updated for version 7.4.525
Bram Moolenaar <bram@vim.org>
parents: 6386
diff changeset
3140 525,
2587209317b7 updated for version 7.4.525
Bram Moolenaar <bram@vim.org>
parents: 6386
diff changeset
3141 /**/
6386
762ab69c2d13 updated for version 7.4.524
Bram Moolenaar <bram@vim.org>
parents: 6383
diff changeset
3142 524,
762ab69c2d13 updated for version 7.4.524
Bram Moolenaar <bram@vim.org>
parents: 6383
diff changeset
3143 /**/
6383
9c9c70625444 updated for version 7.4.523
Bram Moolenaar <bram@vim.org>
parents: 6381
diff changeset
3144 523,
9c9c70625444 updated for version 7.4.523
Bram Moolenaar <bram@vim.org>
parents: 6381
diff changeset
3145 /**/
6381
870480df8275 updated for version 7.4.522
Bram Moolenaar <bram@vim.org>
parents: 6379
diff changeset
3146 522,
870480df8275 updated for version 7.4.522
Bram Moolenaar <bram@vim.org>
parents: 6379
diff changeset
3147 /**/
6379
39274bfbfba5 updated for version 7.4.521
Bram Moolenaar <bram@vim.org>
parents: 6377
diff changeset
3148 521,
39274bfbfba5 updated for version 7.4.521
Bram Moolenaar <bram@vim.org>
parents: 6377
diff changeset
3149 /**/
6377
392dad030b8d updated for version 7.4.520
Bram Moolenaar <bram@vim.org>
parents: 6375
diff changeset
3150 520,
392dad030b8d updated for version 7.4.520
Bram Moolenaar <bram@vim.org>
parents: 6375
diff changeset
3151 /**/
6375
27a36d1013a6 updated for version 7.4.519
Bram Moolenaar <bram@vim.org>
parents: 6373
diff changeset
3152 519,
27a36d1013a6 updated for version 7.4.519
Bram Moolenaar <bram@vim.org>
parents: 6373
diff changeset
3153 /**/
6373
383cb9ddb561 updated for version 7.4.518
Bram Moolenaar <bram@vim.org>
parents: 6371
diff changeset
3154 518,
383cb9ddb561 updated for version 7.4.518
Bram Moolenaar <bram@vim.org>
parents: 6371
diff changeset
3155 /**/
6371
93560d4bca68 updated for version 7.4.517
Bram Moolenaar <bram@vim.org>
parents: 6367
diff changeset
3156 517,
93560d4bca68 updated for version 7.4.517
Bram Moolenaar <bram@vim.org>
parents: 6367
diff changeset
3157 /**/
6367
81c9b19ee0fb updated for version 7.4.516
Bram Moolenaar <bram@vim.org>
parents: 6365
diff changeset
3158 516,
81c9b19ee0fb updated for version 7.4.516
Bram Moolenaar <bram@vim.org>
parents: 6365
diff changeset
3159 /**/
6365
387e63680524 updated for version 7.4.515
Bram Moolenaar <bram@vim.org>
parents: 6363
diff changeset
3160 515,
387e63680524 updated for version 7.4.515
Bram Moolenaar <bram@vim.org>
parents: 6363
diff changeset
3161 /**/
6363
e6c5ff35500d updated for version 7.4.514
Bram Moolenaar <bram@vim.org>
parents: 6361
diff changeset
3162 514,
e6c5ff35500d updated for version 7.4.514
Bram Moolenaar <bram@vim.org>
parents: 6361
diff changeset
3163 /**/
6361
6ad9facba57d updated for version 7.4.513
Bram Moolenaar <bram@vim.org>
parents: 6359
diff changeset
3164 513,
6ad9facba57d updated for version 7.4.513
Bram Moolenaar <bram@vim.org>
parents: 6359
diff changeset
3165 /**/
6359
9f9058aeba0d updated for version 7.4.512
Bram Moolenaar <bram@vim.org>
parents: 6357
diff changeset
3166 512,
9f9058aeba0d updated for version 7.4.512
Bram Moolenaar <bram@vim.org>
parents: 6357
diff changeset
3167 /**/
6357
7623d953d3bc updated for version 7.4.511
Bram Moolenaar <bram@vim.org>
parents: 6355
diff changeset
3168 511,
7623d953d3bc updated for version 7.4.511
Bram Moolenaar <bram@vim.org>
parents: 6355
diff changeset
3169 /**/
6355
05850b74218b updated for version 7.4.510
Bram Moolenaar <bram@vim.org>
parents: 6353
diff changeset
3170 510,
05850b74218b updated for version 7.4.510
Bram Moolenaar <bram@vim.org>
parents: 6353
diff changeset
3171 /**/
6353
60659773c73b updated for version 7.4.509
Bram Moolenaar <bram@vim.org>
parents: 6351
diff changeset
3172 509,
60659773c73b updated for version 7.4.509
Bram Moolenaar <bram@vim.org>
parents: 6351
diff changeset
3173 /**/
6351
65df2fba429b updated for version 7.4.508
Bram Moolenaar <bram@vim.org>
parents: 6349
diff changeset
3174 508,
65df2fba429b updated for version 7.4.508
Bram Moolenaar <bram@vim.org>
parents: 6349
diff changeset
3175 /**/
6349
5b2ff413125b updated for version 7.4.507
Bram Moolenaar <bram@vim.org>
parents: 6347
diff changeset
3176 507,
5b2ff413125b updated for version 7.4.507
Bram Moolenaar <bram@vim.org>
parents: 6347
diff changeset
3177 /**/
6347
79a667b879e7 updated for version 7.4.506
Bram Moolenaar <bram@vim.org>
parents: 6345
diff changeset
3178 506,
79a667b879e7 updated for version 7.4.506
Bram Moolenaar <bram@vim.org>
parents: 6345
diff changeset
3179 /**/
6345
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6343
diff changeset
3180 505,
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6343
diff changeset
3181 /**/
6343
edfa81ea1711 updated for version 7.4.504
Bram Moolenaar <bram@vim.org>
parents: 6341
diff changeset
3182 504,
edfa81ea1711 updated for version 7.4.504
Bram Moolenaar <bram@vim.org>
parents: 6341
diff changeset
3183 /**/
6341
094a87e76155 updated for version 7.4.503
Bram Moolenaar <bram@vim.org>
parents: 6339
diff changeset
3184 503,
094a87e76155 updated for version 7.4.503
Bram Moolenaar <bram@vim.org>
parents: 6339
diff changeset
3185 /**/
6339
7b28dc1d756e updated for version 7.4.502
Bram Moolenaar <bram@vim.org>
parents: 6337
diff changeset
3186 502,
7b28dc1d756e updated for version 7.4.502
Bram Moolenaar <bram@vim.org>
parents: 6337
diff changeset
3187 /**/
6337
0ed561752653 updated for version 7.4.501
Bram Moolenaar <bram@vim.org>
parents: 6334
diff changeset
3188 501,
0ed561752653 updated for version 7.4.501
Bram Moolenaar <bram@vim.org>
parents: 6334
diff changeset
3189 /**/
6334
fd4dc6581b0e updated for version 7.4.500
Bram Moolenaar <bram@vim.org>
parents: 6332
diff changeset
3190 500,
fd4dc6581b0e updated for version 7.4.500
Bram Moolenaar <bram@vim.org>
parents: 6332
diff changeset
3191 /**/
6332
65e72747feca updated for version 7.4.499
Bram Moolenaar <bram@vim.org>
parents: 6330
diff changeset
3192 499,
65e72747feca updated for version 7.4.499
Bram Moolenaar <bram@vim.org>
parents: 6330
diff changeset
3193 /**/
6330
24ee7a7a26b1 updated for version 7.4.498
Bram Moolenaar <bram@vim.org>
parents: 6328
diff changeset
3194 498,
24ee7a7a26b1 updated for version 7.4.498
Bram Moolenaar <bram@vim.org>
parents: 6328
diff changeset
3195 /**/
6328
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents: 6326
diff changeset
3196 497,
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents: 6326
diff changeset
3197 /**/
6326
112c80234ce3 updated for version 7.4.496
Bram Moolenaar <bram@vim.org>
parents: 6324
diff changeset
3198 496,
112c80234ce3 updated for version 7.4.496
Bram Moolenaar <bram@vim.org>
parents: 6324
diff changeset
3199 /**/
6324
0079791cbbea updated for version 7.4.495
Bram Moolenaar <bram@vim.org>
parents: 6322
diff changeset
3200 495,
0079791cbbea updated for version 7.4.495
Bram Moolenaar <bram@vim.org>
parents: 6322
diff changeset
3201 /**/
6322
85d8cde3b432 updated for version 7.4.494
Bram Moolenaar <bram@vim.org>
parents: 6320
diff changeset
3202 494,
85d8cde3b432 updated for version 7.4.494
Bram Moolenaar <bram@vim.org>
parents: 6320
diff changeset
3203 /**/
6320
a0daa5feaccb updated for version 7.4.493
Bram Moolenaar <bram@vim.org>
parents: 6318
diff changeset
3204 493,
a0daa5feaccb updated for version 7.4.493
Bram Moolenaar <bram@vim.org>
parents: 6318
diff changeset
3205 /**/
6318
5e998fc610d5 updated for version 7.4.492
Bram Moolenaar <bram@vim.org>
parents: 6316
diff changeset
3206 492,
5e998fc610d5 updated for version 7.4.492
Bram Moolenaar <bram@vim.org>
parents: 6316
diff changeset
3207 /**/
6316
5f54e1995751 updated for version 7.4.491
Bram Moolenaar <bram@vim.org>
parents: 6314
diff changeset
3208 491,
5f54e1995751 updated for version 7.4.491
Bram Moolenaar <bram@vim.org>
parents: 6314
diff changeset
3209 /**/
6314
df92c2b2a179 updated for version 7.4.490
Bram Moolenaar <bram@vim.org>
parents: 6312
diff changeset
3210 490,
df92c2b2a179 updated for version 7.4.490
Bram Moolenaar <bram@vim.org>
parents: 6312
diff changeset
3211 /**/
6312
31c78e590806 updated for version 7.4.489
Bram Moolenaar <bram@vim.org>
parents: 6310
diff changeset
3212 489,
31c78e590806 updated for version 7.4.489
Bram Moolenaar <bram@vim.org>
parents: 6310
diff changeset
3213 /**/
6310
3ec6e0ef4a67 updated for version 7.4.488
Bram Moolenaar <bram@vim.org>
parents: 6307
diff changeset
3214 488,
3ec6e0ef4a67 updated for version 7.4.488
Bram Moolenaar <bram@vim.org>
parents: 6307
diff changeset
3215 /**/
6307
1f9577e9ef1b updated for version 7.4.487
Bram Moolenaar <bram@vim.org>
parents: 6305
diff changeset
3216 487,
1f9577e9ef1b updated for version 7.4.487
Bram Moolenaar <bram@vim.org>
parents: 6305
diff changeset
3217 /**/
6305
b8caf7045e3d updated for version 7.4.486
Bram Moolenaar <bram@vim.org>
parents: 6303
diff changeset
3218 486,
b8caf7045e3d updated for version 7.4.486
Bram Moolenaar <bram@vim.org>
parents: 6303
diff changeset
3219 /**/
6303
7844d92941fd updated for version 7.4.485
Bram Moolenaar <bram@vim.org>
parents: 6301
diff changeset
3220 485,
7844d92941fd updated for version 7.4.485
Bram Moolenaar <bram@vim.org>
parents: 6301
diff changeset
3221 /**/
6301
76526e7100b0 updated for version 7.4.484
Bram Moolenaar <bram@vim.org>
parents: 6299
diff changeset
3222 484,
76526e7100b0 updated for version 7.4.484
Bram Moolenaar <bram@vim.org>
parents: 6299
diff changeset
3223 /**/
6299
3eb160c5b3a1 updated for version 7.4.483
Bram Moolenaar <bram@vim.org>
parents: 6297
diff changeset
3224 483,
3eb160c5b3a1 updated for version 7.4.483
Bram Moolenaar <bram@vim.org>
parents: 6297
diff changeset
3225 /**/
6297
488bb7c4ace0 updated for version 7.4.482
Bram Moolenaar <bram@vim.org>
parents: 6295
diff changeset
3226 482,
488bb7c4ace0 updated for version 7.4.482
Bram Moolenaar <bram@vim.org>
parents: 6295
diff changeset
3227 /**/
6295
15e88e3750e3 updated for version 7.4.481
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
3228 481,
15e88e3750e3 updated for version 7.4.481
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
3229 /**/
6293
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
3230 480,
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
3231 /**/
6290
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6288
diff changeset
3232 479,
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6288
diff changeset
3233 /**/
6288
fcb898dea2bc updated for version 7.4.478
Bram Moolenaar <bram@vim.org>
parents: 6286
diff changeset
3234 478,
fcb898dea2bc updated for version 7.4.478
Bram Moolenaar <bram@vim.org>
parents: 6286
diff changeset
3235 /**/
6286
f21a2f67bdbb updated for version 7.4.477
Bram Moolenaar <bram@vim.org>
parents: 6284
diff changeset
3236 477,
f21a2f67bdbb updated for version 7.4.477
Bram Moolenaar <bram@vim.org>
parents: 6284
diff changeset
3237 /**/
6284
4c29b75cae19 updated for version 7.4.476
Bram Moolenaar <bram@vim.org>
parents: 6282
diff changeset
3238 476,
4c29b75cae19 updated for version 7.4.476
Bram Moolenaar <bram@vim.org>
parents: 6282
diff changeset
3239 /**/
6282
0446fa17bd95 updated for version 7.4.475
Bram Moolenaar <bram@vim.org>
parents: 6280
diff changeset
3240 475,
0446fa17bd95 updated for version 7.4.475
Bram Moolenaar <bram@vim.org>
parents: 6280
diff changeset
3241 /**/
6280
7f2472960aa1 updated for version 7.4.474
Bram Moolenaar <bram@vim.org>
parents: 6278
diff changeset
3242 474,
7f2472960aa1 updated for version 7.4.474
Bram Moolenaar <bram@vim.org>
parents: 6278
diff changeset
3243 /**/
6278
1cdd5804b538 updated for version 7.4.473
Bram Moolenaar <bram@vim.org>
parents: 6276
diff changeset
3244 473,
1cdd5804b538 updated for version 7.4.473
Bram Moolenaar <bram@vim.org>
parents: 6276
diff changeset
3245 /**/
6276
af998690a884 updated for version 7.4.472
Bram Moolenaar <bram@vim.org>
parents: 6274
diff changeset
3246 472,
af998690a884 updated for version 7.4.472
Bram Moolenaar <bram@vim.org>
parents: 6274
diff changeset
3247 /**/
6274
3005da486a71 updated for version 7.4.471
Bram Moolenaar <bram@vim.org>
parents: 6272
diff changeset
3248 471,
3005da486a71 updated for version 7.4.471
Bram Moolenaar <bram@vim.org>
parents: 6272
diff changeset
3249 /**/
6272
9d5b8b015e5f updated for version 7.4.470
Bram Moolenaar <bram@vim.org>
parents: 6270
diff changeset
3250 470,
9d5b8b015e5f updated for version 7.4.470
Bram Moolenaar <bram@vim.org>
parents: 6270
diff changeset
3251 /**/
6270
a6f5a4ac4d46 updated for version 7.4.469
Bram Moolenaar <bram@vim.org>
parents: 6268
diff changeset
3252 469,
a6f5a4ac4d46 updated for version 7.4.469
Bram Moolenaar <bram@vim.org>
parents: 6268
diff changeset
3253 /**/
6268
4f7f236d773d updated for version 7.4.468
Bram Moolenaar <bram@vim.org>
parents: 6266
diff changeset
3254 468,
4f7f236d773d updated for version 7.4.468
Bram Moolenaar <bram@vim.org>
parents: 6266
diff changeset
3255 /**/
6266
0a4efa3d2019 updated for version 7.4.467
Bram Moolenaar <bram@vim.org>
parents: 6264
diff changeset
3256 467,
0a4efa3d2019 updated for version 7.4.467
Bram Moolenaar <bram@vim.org>
parents: 6264
diff changeset
3257 /**/
6264
521c49b6de9d updated for version 7.4.466
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
3258 466,
521c49b6de9d updated for version 7.4.466
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
3259 /**/
6262
452e8b2a0ab3 updated for version 7.4.465
Bram Moolenaar <bram@vim.org>
parents: 6260
diff changeset
3260 465,
452e8b2a0ab3 updated for version 7.4.465
Bram Moolenaar <bram@vim.org>
parents: 6260
diff changeset
3261 /**/
6260
74c65620c985 updated for version 7.4.464
Bram Moolenaar <bram@vim.org>
parents: 6257
diff changeset
3262 464,
74c65620c985 updated for version 7.4.464
Bram Moolenaar <bram@vim.org>
parents: 6257
diff changeset
3263 /**/
6257
6f80b9a773db updated for version 7.4.463
Bram Moolenaar <bram@vim.org>
parents: 6255
diff changeset
3264 463,
6f80b9a773db updated for version 7.4.463
Bram Moolenaar <bram@vim.org>
parents: 6255
diff changeset
3265 /**/
6255
c0d93d67572b updated for version 7.4.462
Bram Moolenaar <bram@vim.org>
parents: 6253
diff changeset
3266 462,
c0d93d67572b updated for version 7.4.462
Bram Moolenaar <bram@vim.org>
parents: 6253
diff changeset
3267 /**/
6253
4eba2bdb26f2 updated for version 7.4.461
Bram Moolenaar <bram@vim.org>
parents: 6251
diff changeset
3268 461,
4eba2bdb26f2 updated for version 7.4.461
Bram Moolenaar <bram@vim.org>
parents: 6251
diff changeset
3269 /**/
6251
d5eba03293a6 updated for version 7.4.460
Bram Moolenaar <bram@vim.org>
parents: 6249
diff changeset
3270 460,
d5eba03293a6 updated for version 7.4.460
Bram Moolenaar <bram@vim.org>
parents: 6249
diff changeset
3271 /**/
6249
7816c24ff890 updated for version 7.4.459
Bram Moolenaar <bram@vim.org>
parents: 6247
diff changeset
3272 459,
7816c24ff890 updated for version 7.4.459
Bram Moolenaar <bram@vim.org>
parents: 6247
diff changeset
3273 /**/
6247
fe1827921d50 updated for version 7.4.458
Bram Moolenaar <bram@vim.org>
parents: 6245
diff changeset
3274 458,
fe1827921d50 updated for version 7.4.458
Bram Moolenaar <bram@vim.org>
parents: 6245
diff changeset
3275 /**/
6245
96761b6789f6 updated for version 7.4.457
Bram Moolenaar <bram@vim.org>
parents: 6243
diff changeset
3276 457,
96761b6789f6 updated for version 7.4.457
Bram Moolenaar <bram@vim.org>
parents: 6243
diff changeset
3277 /**/
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6241
diff changeset
3278 456,
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6241
diff changeset
3279 /**/
6241
ebc72764fa1e updated for version 7.4.455
Bram Moolenaar <bram@vim.org>
parents: 6239
diff changeset
3280 455,
ebc72764fa1e updated for version 7.4.455
Bram Moolenaar <bram@vim.org>
parents: 6239
diff changeset
3281 /**/
6239
0cdff7c26855 updated for version 7.4.454
Bram Moolenaar <bram@vim.org>
parents: 6236
diff changeset
3282 454,
0cdff7c26855 updated for version 7.4.454
Bram Moolenaar <bram@vim.org>
parents: 6236
diff changeset
3283 /**/
6236
c72eb8499a9d updated for version 7.4.453
Bram Moolenaar <bram@vim.org>
parents: 6234
diff changeset
3284 453,
c72eb8499a9d updated for version 7.4.453
Bram Moolenaar <bram@vim.org>
parents: 6234
diff changeset
3285 /**/
6234
78aad99db762 updated for version 7.4.452
Bram Moolenaar <bram@vim.org>
parents: 6232
diff changeset
3286 452,
78aad99db762 updated for version 7.4.452
Bram Moolenaar <bram@vim.org>
parents: 6232
diff changeset
3287 /**/
6232
ac6cfdc02695 updated for version 7.4.451
Bram Moolenaar <bram@vim.org>
parents: 6230
diff changeset
3288 451,
ac6cfdc02695 updated for version 7.4.451
Bram Moolenaar <bram@vim.org>
parents: 6230
diff changeset
3289 /**/
6230
7c9abc70ffc1 updated for version 7.4.450
Bram Moolenaar <bram@vim.org>
parents: 6228
diff changeset
3290 450,
7c9abc70ffc1 updated for version 7.4.450
Bram Moolenaar <bram@vim.org>
parents: 6228
diff changeset
3291 /**/
6228
cb5480096f1b updated for version 7.4.449
Bram Moolenaar <bram@vim.org>
parents: 6226
diff changeset
3292 449,
cb5480096f1b updated for version 7.4.449
Bram Moolenaar <bram@vim.org>
parents: 6226
diff changeset
3293 /**/
6226
2fd96725b063 updated for version 7.4.448
Bram Moolenaar <bram@vim.org>
parents: 6224
diff changeset
3294 448,
2fd96725b063 updated for version 7.4.448
Bram Moolenaar <bram@vim.org>
parents: 6224
diff changeset
3295 /**/
6224
0d2c821cdc25 updated for version 7.4.447
Bram Moolenaar <bram@vim.org>
parents: 6222
diff changeset
3296 447,
0d2c821cdc25 updated for version 7.4.447
Bram Moolenaar <bram@vim.org>
parents: 6222
diff changeset
3297 /**/
6222
63121fdd093f updated for version 7.4.446
Bram Moolenaar <bram@vim.org>
parents: 6220
diff changeset
3298 446,
63121fdd093f updated for version 7.4.446
Bram Moolenaar <bram@vim.org>
parents: 6220
diff changeset
3299 /**/
6220
1138726736fb updated for version 7.4.445
Bram Moolenaar <bram@vim.org>
parents: 6218
diff changeset
3300 445,
1138726736fb updated for version 7.4.445
Bram Moolenaar <bram@vim.org>
parents: 6218
diff changeset
3301 /**/
6218
d4cc9f48d5a4 updated for version 7.4.444
Bram Moolenaar <bram@vim.org>
parents: 6216
diff changeset
3302 444,
d4cc9f48d5a4 updated for version 7.4.444
Bram Moolenaar <bram@vim.org>
parents: 6216
diff changeset
3303 /**/
6216
f1ba154c3a12 updated for version 7.4.443
Bram Moolenaar <bram@vim.org>
parents: 6214
diff changeset
3304 443,
f1ba154c3a12 updated for version 7.4.443
Bram Moolenaar <bram@vim.org>
parents: 6214
diff changeset
3305 /**/
6214
8c3c067b4ae3 updated for version 7.4.442
Bram Moolenaar <bram@vim.org>
parents: 6211
diff changeset
3306 442,
8c3c067b4ae3 updated for version 7.4.442
Bram Moolenaar <bram@vim.org>
parents: 6211
diff changeset
3307 /**/
6211
e754b23b7d1c updated for version 7.4.441
Bram Moolenaar <bram@vim.org>
parents: 6209
diff changeset
3308 441,
e754b23b7d1c updated for version 7.4.441
Bram Moolenaar <bram@vim.org>
parents: 6209
diff changeset
3309 /**/
6209
1f578cd9a657 updated for version 7.4.440
Bram Moolenaar <bram@vim.org>
parents: 6207
diff changeset
3310 440,
1f578cd9a657 updated for version 7.4.440
Bram Moolenaar <bram@vim.org>
parents: 6207
diff changeset
3311 /**/
6207
07b28e96af8b updated for version 7.4.439
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
3312 439,
07b28e96af8b updated for version 7.4.439
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
3313 /**/
6205
db3b8fe8330e updated for version 7.4.438
Bram Moolenaar <bram@vim.org>
parents: 6203
diff changeset
3314 438,
db3b8fe8330e updated for version 7.4.438
Bram Moolenaar <bram@vim.org>
parents: 6203
diff changeset
3315 /**/
6203
8515b42f939c updated for version 7.4.437
Bram Moolenaar <bram@vim.org>
parents: 6201
diff changeset
3316 437,
8515b42f939c updated for version 7.4.437
Bram Moolenaar <bram@vim.org>
parents: 6201
diff changeset
3317 /**/
6201
52fa8300ce20 updated for version 7.4.436
Bram Moolenaar <bram@vim.org>
parents: 6199
diff changeset
3318 436,
52fa8300ce20 updated for version 7.4.436
Bram Moolenaar <bram@vim.org>
parents: 6199
diff changeset
3319 /**/
6199
b98af9af378e updated for version 7.4.435
Bram Moolenaar <bram@vim.org>
parents: 6197
diff changeset
3320 435,
b98af9af378e updated for version 7.4.435
Bram Moolenaar <bram@vim.org>
parents: 6197
diff changeset
3321 /**/
6197
4176c48c7dd5 updated for version 7.4.434
Bram Moolenaar <bram@vim.org>
parents: 6195
diff changeset
3322 434,
4176c48c7dd5 updated for version 7.4.434
Bram Moolenaar <bram@vim.org>
parents: 6195
diff changeset
3323 /**/
6195
dd3dac42cb9b updated for version 7.4.433
Bram Moolenaar <bram@vim.org>
parents: 6193
diff changeset
3324 433,
dd3dac42cb9b updated for version 7.4.433
Bram Moolenaar <bram@vim.org>
parents: 6193
diff changeset
3325 /**/
6193
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6191
diff changeset
3326 432,
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6191
diff changeset
3327 /**/
6191
5672a06e4bd8 updated for version 7.4.431
Bram Moolenaar <bram@vim.org>
parents: 6189
diff changeset
3328 431,
5672a06e4bd8 updated for version 7.4.431
Bram Moolenaar <bram@vim.org>
parents: 6189
diff changeset
3329 /**/
6189
f4e9c65a18d4 updated for version 7.4.430
Bram Moolenaar <bram@vim.org>
parents: 6187
diff changeset
3330 430,
f4e9c65a18d4 updated for version 7.4.430
Bram Moolenaar <bram@vim.org>
parents: 6187
diff changeset
3331 /**/
6187
e98e415ea3b8 updated for version 7.4.429
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
3332 429,
e98e415ea3b8 updated for version 7.4.429
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
3333 /**/
6185
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6183
diff changeset
3334 428,
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6183
diff changeset
3335 /**/
6183
fca35aa9380a updated for version 7.4.427
Bram Moolenaar <bram@vim.org>
parents: 6181
diff changeset
3336 427,
fca35aa9380a updated for version 7.4.427
Bram Moolenaar <bram@vim.org>
parents: 6181
diff changeset
3337 /**/
6181
7ab9a9cf2859 updated for version 7.4.426
Bram Moolenaar <bram@vim.org>
parents: 6178
diff changeset
3338 426,
7ab9a9cf2859 updated for version 7.4.426
Bram Moolenaar <bram@vim.org>
parents: 6178
diff changeset
3339 /**/
6178
2e804ebb3ee8 updated for version 7.4.425
Bram Moolenaar <bram@vim.org>
parents: 6176
diff changeset
3340 425,
2e804ebb3ee8 updated for version 7.4.425
Bram Moolenaar <bram@vim.org>
parents: 6176
diff changeset
3341 /**/
6176
85a1802ae810 updated for version 7.4.424
Bram Moolenaar <bram@vim.org>
parents: 6174
diff changeset
3342 424,
85a1802ae810 updated for version 7.4.424
Bram Moolenaar <bram@vim.org>
parents: 6174
diff changeset
3343 /**/
6174
96a4fa8e530c updated for version 7.4.423
Bram Moolenaar <bram@vim.org>
parents: 6172
diff changeset
3344 423,
96a4fa8e530c updated for version 7.4.423
Bram Moolenaar <bram@vim.org>
parents: 6172
diff changeset
3345 /**/
6172
69da1498ce89 updated for version 7.4.422
Bram Moolenaar <bram@vim.org>
parents: 6170
diff changeset
3346 422,
69da1498ce89 updated for version 7.4.422
Bram Moolenaar <bram@vim.org>
parents: 6170
diff changeset
3347 /**/
6170
3ee39fe2df7d updated for version 7.4.421
Bram Moolenaar <bram@vim.org>
parents: 6168
diff changeset
3348 421,
3ee39fe2df7d updated for version 7.4.421
Bram Moolenaar <bram@vim.org>
parents: 6168
diff changeset
3349 /**/
6168
93aa03401309 updated for version 7.4.420
Bram Moolenaar <bram@vim.org>
parents: 6166
diff changeset
3350 420,
93aa03401309 updated for version 7.4.420
Bram Moolenaar <bram@vim.org>
parents: 6166
diff changeset
3351 /**/
6166
0a42938f449c updated for version 7.4.419
Bram Moolenaar <bram@vim.org>
parents: 6164
diff changeset
3352 419,
0a42938f449c updated for version 7.4.419
Bram Moolenaar <bram@vim.org>
parents: 6164
diff changeset
3353 /**/
6164
00f58478e38b updated for version 7.4.418
Bram Moolenaar <bram@vim.org>
parents: 6162
diff changeset
3354 418,
00f58478e38b updated for version 7.4.418
Bram Moolenaar <bram@vim.org>
parents: 6162
diff changeset
3355 /**/
6162
e60327caf909 updated for version 7.4.417
Bram Moolenaar <bram@vim.org>
parents: 6160
diff changeset
3356 417,
e60327caf909 updated for version 7.4.417
Bram Moolenaar <bram@vim.org>
parents: 6160
diff changeset
3357 /**/
6160
735bd597a8ff updated for version 7.4.416
Bram Moolenaar <bram@vim.org>
parents: 6158
diff changeset
3358 416,
735bd597a8ff updated for version 7.4.416
Bram Moolenaar <bram@vim.org>
parents: 6158
diff changeset
3359 /**/
6158
353442863d85 Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents: 6154
diff changeset
3360 415,
353442863d85 Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents: 6154
diff changeset
3361 /**/
6154
67edf731a240 updated for version 7.4.414
Bram Moolenaar <bram@vim.org>
parents: 6151
diff changeset
3362 414,
67edf731a240 updated for version 7.4.414
Bram Moolenaar <bram@vim.org>
parents: 6151
diff changeset
3363 /**/
6151
121613e72e39 updated for version 7.4.413
Bram Moolenaar <bram@vim.org>
parents: 6149
diff changeset
3364 413,
121613e72e39 updated for version 7.4.413
Bram Moolenaar <bram@vim.org>
parents: 6149
diff changeset
3365 /**/
6149
4c845a1600d2 updated for version 7.4.412
Bram Moolenaar <bram@vim.org>
parents: 6147
diff changeset
3366 412,
4c845a1600d2 updated for version 7.4.412
Bram Moolenaar <bram@vim.org>
parents: 6147
diff changeset
3367 /**/
6147
d4e0c197e979 updated for version 7.4.411
Bram Moolenaar <bram@vim.org>
parents: 6145
diff changeset
3368 411,
d4e0c197e979 updated for version 7.4.411
Bram Moolenaar <bram@vim.org>
parents: 6145
diff changeset
3369 /**/
6145
2fd550c75256 updated for version 7.4.410
Bram Moolenaar <bram@vim.org>
parents: 6143
diff changeset
3370 410,
2fd550c75256 updated for version 7.4.410
Bram Moolenaar <bram@vim.org>
parents: 6143
diff changeset
3371 /**/
6143
de35e123e63c updated for version 7.4.409
Bram Moolenaar <bram@vim.org>
parents: 6140
diff changeset
3372 409,
de35e123e63c updated for version 7.4.409
Bram Moolenaar <bram@vim.org>
parents: 6140
diff changeset
3373 /**/
6140
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6138
diff changeset
3374 408,
cb3218a69c2f updated for version 7.4.408
Bram Moolenaar <bram@vim.org>
parents: 6138
diff changeset
3375 /**/
6138
3f92ef156c66 updated for version 7.4.407
Bram Moolenaar <bram@vim.org>
parents: 6136
diff changeset
3376 407,
3f92ef156c66 updated for version 7.4.407
Bram Moolenaar <bram@vim.org>
parents: 6136
diff changeset
3377 /**/
6136
1134bba900c1 updated for version 7.4.406
Bram Moolenaar <bram@vim.org>
parents: 6134
diff changeset
3378 406,
1134bba900c1 updated for version 7.4.406
Bram Moolenaar <bram@vim.org>
parents: 6134
diff changeset
3379 /**/
6134
4c25af735304 updated for version 7.4.405
Bram Moolenaar <bram@vim.org>
parents: 6132
diff changeset
3380 405,
4c25af735304 updated for version 7.4.405
Bram Moolenaar <bram@vim.org>
parents: 6132
diff changeset
3381 /**/
6132
0242c27e40e1 updated for version 7.4.404
Bram Moolenaar <bram@vim.org>
parents: 6130
diff changeset
3382 404,
0242c27e40e1 updated for version 7.4.404
Bram Moolenaar <bram@vim.org>
parents: 6130
diff changeset
3383 /**/
6130
86fb698a38d5 updated for version 7.4.403
Bram Moolenaar <bram@vim.org>
parents: 6128
diff changeset
3384 403,
86fb698a38d5 updated for version 7.4.403
Bram Moolenaar <bram@vim.org>
parents: 6128
diff changeset
3385 /**/
6128
3aa37ad2c4ed updated for version 7.4.402
Bram Moolenaar <bram@vim.org>
parents: 6126
diff changeset
3386 402,
3aa37ad2c4ed updated for version 7.4.402
Bram Moolenaar <bram@vim.org>
parents: 6126
diff changeset
3387 /**/
6126
ab71bb81b84e updated for version 7.4.401
Bram Moolenaar <bram@vim.org>
parents: 6124
diff changeset
3388 401,
ab71bb81b84e updated for version 7.4.401
Bram Moolenaar <bram@vim.org>
parents: 6124
diff changeset
3389 /**/
6124
50a658bf4cff updated for version 7.4.400
Bram Moolenaar <bram@vim.org>
parents: 6122
diff changeset
3390 400,
50a658bf4cff updated for version 7.4.400
Bram Moolenaar <bram@vim.org>
parents: 6122
diff changeset
3391 /**/
6122
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 6120
diff changeset
3392 399,
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents: 6120
diff changeset
3393 /**/
6120
f62b2e76dd80 updated for version 7.4.398
Bram Moolenaar <bram@vim.org>
parents: 6118
diff changeset
3394 398,
f62b2e76dd80 updated for version 7.4.398
Bram Moolenaar <bram@vim.org>
parents: 6118
diff changeset
3395 /**/
6118
8d361608fe86 updated for version 7.4.397
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
3396 397,
8d361608fe86 updated for version 7.4.397
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
3397 /**/
6116
7766142fc7d3 updated for version 7.4.396
Bram Moolenaar <bram@vim.org>
parents: 6114
diff changeset
3398 396,
7766142fc7d3 updated for version 7.4.396
Bram Moolenaar <bram@vim.org>
parents: 6114
diff changeset
3399 /**/
6114
65b0974c5beb updated for version 7.4.395
Bram Moolenaar <bram@vim.org>
parents: 6112
diff changeset
3400 395,
65b0974c5beb updated for version 7.4.395
Bram Moolenaar <bram@vim.org>
parents: 6112
diff changeset
3401 /**/
6112
d594c1552137 updated for version 7.4.394
Bram Moolenaar <bram@vim.org>
parents: 6110
diff changeset
3402 394,
d594c1552137 updated for version 7.4.394
Bram Moolenaar <bram@vim.org>
parents: 6110
diff changeset
3403 /**/
6110
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
3404 393,
1bff71d20262 updated for version 7.4.393
Bram Moolenaar <bram@vim.org>
parents: 6108
diff changeset
3405 /**/
6108
589fd07888ab updated for version 7.4.392
Bram Moolenaar <bram@vim.org>
parents: 6106
diff changeset
3406 392,
589fd07888ab updated for version 7.4.392
Bram Moolenaar <bram@vim.org>
parents: 6106
diff changeset
3407 /**/
6106
f051e50a6a5f updated for version 7.4.391
Bram Moolenaar <bram@vim.org>
parents: 6104
diff changeset
3408 391,
f051e50a6a5f updated for version 7.4.391
Bram Moolenaar <bram@vim.org>
parents: 6104
diff changeset
3409 /**/
6104
d3a674f6c737 updated for version 7.4.390
Bram Moolenaar <bram@vim.org>
parents: 6102
diff changeset
3410 390,
d3a674f6c737 updated for version 7.4.390
Bram Moolenaar <bram@vim.org>
parents: 6102
diff changeset
3411 /**/
6102
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6100
diff changeset
3412 389,
3d206df5c828 updated for version 7.4.389
Bram Moolenaar <bram@vim.org>
parents: 6100
diff changeset
3413 /**/
6100
76e7fb736c0e updated for version 7.4.388
Bram Moolenaar <bram@vim.org>
parents: 6098
diff changeset
3414 388,
76e7fb736c0e updated for version 7.4.388
Bram Moolenaar <bram@vim.org>
parents: 6098
diff changeset
3415 /**/
6098
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6096
diff changeset
3416 387,
975d96776111 updated for version 7.4.387
Bram Moolenaar <bram@vim.org>
parents: 6096
diff changeset
3417 /**/
6096
09af7cb358f0 updated for version 7.4.386
Bram Moolenaar <bram@vim.org>
parents: 6094
diff changeset
3418 386,
09af7cb358f0 updated for version 7.4.386
Bram Moolenaar <bram@vim.org>
parents: 6094
diff changeset
3419 /**/
6094
6e24b97dde69 updated for version 7.4.385
Bram Moolenaar <bram@vim.org>
parents: 6092
diff changeset
3420 385,
6e24b97dde69 updated for version 7.4.385
Bram Moolenaar <bram@vim.org>
parents: 6092
diff changeset
3421 /**/
6092
6f88e2dafbf6 updated for version 7.4.384
Bram Moolenaar <bram@vim.org>
parents: 6089
diff changeset
3422 384,
6f88e2dafbf6 updated for version 7.4.384
Bram Moolenaar <bram@vim.org>
parents: 6089
diff changeset
3423 /**/
6089
2f02675bc4b0 updated for version 7.4.383
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
3424 383,
2f02675bc4b0 updated for version 7.4.383
Bram Moolenaar <bram@vim.org>
parents: 6087
diff changeset
3425 /**/
6087
dbd7dc1ea2e6 updated for version 7.4.382
Bram Moolenaar <bram@vim.org>
parents: 6085
diff changeset
3426 382,
dbd7dc1ea2e6 updated for version 7.4.382
Bram Moolenaar <bram@vim.org>
parents: 6085
diff changeset
3427 /**/
6085
0a3d958e346e updated for version 7.4.381
Bram Moolenaar <bram@vim.org>
parents: 6083
diff changeset
3428 381,
0a3d958e346e updated for version 7.4.381
Bram Moolenaar <bram@vim.org>
parents: 6083
diff changeset
3429 /**/
6083
7cfbad4a78bf updated for version 7.4.380
Bram Moolenaar <bram@vim.org>
parents: 6081
diff changeset
3430 380,
7cfbad4a78bf updated for version 7.4.380
Bram Moolenaar <bram@vim.org>
parents: 6081
diff changeset
3431 /**/
6081
16cfdf28be40 updated for version 7.4.379
Bram Moolenaar <bram@vim.org>
parents: 6079
diff changeset
3432 379,
16cfdf28be40 updated for version 7.4.379
Bram Moolenaar <bram@vim.org>
parents: 6079
diff changeset
3433 /**/
6079
75ae211df37d updated for version 7.4.378
Bram Moolenaar <bram@vim.org>
parents: 6077
diff changeset
3434 378,
75ae211df37d updated for version 7.4.378
Bram Moolenaar <bram@vim.org>
parents: 6077
diff changeset
3435 /**/
6077
255561411d7a updated for version 7.4.377
Bram Moolenaar <bram@vim.org>
parents: 6075
diff changeset
3436 377,
255561411d7a updated for version 7.4.377
Bram Moolenaar <bram@vim.org>
parents: 6075
diff changeset
3437 /**/
6075
c3bb76e5b235 updated for version 7.4.376
Bram Moolenaar <bram@vim.org>
parents: 6073
diff changeset
3438 376,
c3bb76e5b235 updated for version 7.4.376
Bram Moolenaar <bram@vim.org>
parents: 6073
diff changeset
3439 /**/
6073
5a5492d676ab updated for version 7.4.375
Bram Moolenaar <bram@vim.org>
parents: 6071
diff changeset
3440 375,
5a5492d676ab updated for version 7.4.375
Bram Moolenaar <bram@vim.org>
parents: 6071
diff changeset
3441 /**/
6071
f59c4bf0ac3b updated for version 7.4.374
Bram Moolenaar <bram@vim.org>
parents: 6068
diff changeset
3442 374,
f59c4bf0ac3b updated for version 7.4.374
Bram Moolenaar <bram@vim.org>
parents: 6068
diff changeset
3443 /**/
6068
353330c512a9 updated for version 7.4.373
Bram Moolenaar <bram@vim.org>
parents: 6066
diff changeset
3444 373,
353330c512a9 updated for version 7.4.373
Bram Moolenaar <bram@vim.org>
parents: 6066
diff changeset
3445 /**/
6066
a122efb555c4 updated for version 7.4.372
Bram Moolenaar <bram@vim.org>
parents: 6064
diff changeset
3446 372,
a122efb555c4 updated for version 7.4.372
Bram Moolenaar <bram@vim.org>
parents: 6064
diff changeset
3447 /**/
6064
d44f298c43c7 updated for version 7.4.371
Bram Moolenaar <bram@vim.org>
parents: 6062
diff changeset
3448 371,
d44f298c43c7 updated for version 7.4.371
Bram Moolenaar <bram@vim.org>
parents: 6062
diff changeset
3449 /**/
6062
50575818a97f updated for version 7.4.370
Bram Moolenaar <bram@vim.org>
parents: 6060
diff changeset
3450 370,
50575818a97f updated for version 7.4.370
Bram Moolenaar <bram@vim.org>
parents: 6060
diff changeset
3451 /**/
6060
72ee0db83788 updated for version 7.4.369
Bram Moolenaar <bram@vim.org>
parents: 6058
diff changeset
3452 369,
72ee0db83788 updated for version 7.4.369
Bram Moolenaar <bram@vim.org>
parents: 6058
diff changeset
3453 /**/
6058
021e16be3c02 updated for version 7.4.368
Bram Moolenaar <bram@vim.org>
parents: 6056
diff changeset
3454 368,
021e16be3c02 updated for version 7.4.368
Bram Moolenaar <bram@vim.org>
parents: 6056
diff changeset
3455 /**/
6056
bdbe2037066d updated for version 7.4.367
Bram Moolenaar <bram@vim.org>
parents: 6054
diff changeset
3456 367,
bdbe2037066d updated for version 7.4.367
Bram Moolenaar <bram@vim.org>
parents: 6054
diff changeset
3457 /**/
6054
ad775b587065 updated for version 7.4.366
Bram Moolenaar <bram@vim.org>
parents: 6052
diff changeset
3458 366,
ad775b587065 updated for version 7.4.366
Bram Moolenaar <bram@vim.org>
parents: 6052
diff changeset
3459 /**/
6052
4625fa27ba6f updated for version 7.4.365
Bram Moolenaar <bram@vim.org>
parents: 6049
diff changeset
3460 365,
4625fa27ba6f updated for version 7.4.365
Bram Moolenaar <bram@vim.org>
parents: 6049
diff changeset
3461 /**/
6049
7b3248267575 updated for version 7.4.364
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
3462 364,
7b3248267575 updated for version 7.4.364
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
3463 /**/
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6045
diff changeset
3464 363,
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 6045
diff changeset
3465 /**/
6045
7fa2bed947fd updated for version 7.4.362
Bram Moolenaar <bram@vim.org>
parents: 6043
diff changeset
3466 362,
7fa2bed947fd updated for version 7.4.362
Bram Moolenaar <bram@vim.org>
parents: 6043
diff changeset
3467 /**/
6043
a97e5b9dbc26 updated for version 7.4.361
Bram Moolenaar <bram@vim.org>
parents: 6041
diff changeset
3468 361,
a97e5b9dbc26 updated for version 7.4.361
Bram Moolenaar <bram@vim.org>
parents: 6041
diff changeset
3469 /**/
6041
761687c6808f updated for version 7.4.360
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3470 360,
761687c6808f updated for version 7.4.360
Bram Moolenaar <bram@vim.org>
parents: 6039
diff changeset
3471 /**/
6039
182c7b987283 updated for version 7.4.359
Bram Moolenaar <bram@vim.org>
parents: 6037
diff changeset
3472 359,
182c7b987283 updated for version 7.4.359
Bram Moolenaar <bram@vim.org>
parents: 6037
diff changeset
3473 /**/
6037
771b97ba3b47 updated for version 7.4.358
Bram Moolenaar <bram@vim.org>
parents: 6035
diff changeset
3474 358,
771b97ba3b47 updated for version 7.4.358
Bram Moolenaar <bram@vim.org>
parents: 6035
diff changeset
3475 /**/
6035
4eedfc4911a1 updated for version 7.4.357
Bram Moolenaar <bram@vim.org>
parents: 6033
diff changeset
3476 357,
4eedfc4911a1 updated for version 7.4.357
Bram Moolenaar <bram@vim.org>
parents: 6033
diff changeset
3477 /**/
6033
34465a179ce2 updated for version 7.4.356
Bram Moolenaar <bram@vim.org>
parents: 6030
diff changeset
3478 356,
34465a179ce2 updated for version 7.4.356
Bram Moolenaar <bram@vim.org>
parents: 6030
diff changeset
3479 /**/
6030
9a4efda75b5e updated for version 7.4.355
Bram Moolenaar <bram@vim.org>
parents: 6028
diff changeset
3480 355,
9a4efda75b5e updated for version 7.4.355
Bram Moolenaar <bram@vim.org>
parents: 6028
diff changeset
3481 /**/
6028
5deaa4e9812d updated for version 7.4.354
Bram Moolenaar <bram@vim.org>
parents: 6026
diff changeset
3482 354,
5deaa4e9812d updated for version 7.4.354
Bram Moolenaar <bram@vim.org>
parents: 6026
diff changeset
3483 /**/
6026
d42a1d3b74d4 updated for version 7.4.353
Bram Moolenaar <bram@vim.org>
parents: 6024
diff changeset
3484 353,
d42a1d3b74d4 updated for version 7.4.353
Bram Moolenaar <bram@vim.org>
parents: 6024
diff changeset
3485 /**/
6024
b4962cf3a1c0 updated for version 7.4.352
Bram Moolenaar <bram@vim.org>
parents: 6022
diff changeset
3486 352,
b4962cf3a1c0 updated for version 7.4.352
Bram Moolenaar <bram@vim.org>
parents: 6022
diff changeset
3487 /**/
6022
f9ec944e4474 updated for version 7.4.351
Bram Moolenaar <bram@vim.org>
parents: 6020
diff changeset
3488 351,
f9ec944e4474 updated for version 7.4.351
Bram Moolenaar <bram@vim.org>
parents: 6020
diff changeset
3489 /**/
6020
ad005d0114c1 updated for version 7.4.350
Bram Moolenaar <bram@vim.org>
parents: 6018
diff changeset
3490 350,
ad005d0114c1 updated for version 7.4.350
Bram Moolenaar <bram@vim.org>
parents: 6018
diff changeset
3491 /**/
6018
79950dae1d7d updated for version 7.4.349
Bram Moolenaar <bram@vim.org>
parents: 6016
diff changeset
3492 349,
79950dae1d7d updated for version 7.4.349
Bram Moolenaar <bram@vim.org>
parents: 6016
diff changeset
3493 /**/
6016
0b7586868f6d updated for version 7.4.348
Bram Moolenaar <bram@vim.org>
parents: 6014
diff changeset
3494 348,
0b7586868f6d updated for version 7.4.348
Bram Moolenaar <bram@vim.org>
parents: 6014
diff changeset
3495 /**/
6014
a162d41f10e1 updated for version 7.4.347
Bram Moolenaar <bram@vim.org>
parents: 6012
diff changeset
3496 347,
a162d41f10e1 updated for version 7.4.347
Bram Moolenaar <bram@vim.org>
parents: 6012
diff changeset
3497 /**/
6012
3248c6e40aee updated for version 7.4.346
Bram Moolenaar <bram@vim.org>
parents: 6010
diff changeset
3498 346,
3248c6e40aee updated for version 7.4.346
Bram Moolenaar <bram@vim.org>
parents: 6010
diff changeset
3499 /**/
6010
ea2c5dfee1b0 updated for version 7.4.345
Bram Moolenaar <bram@vim.org>
parents: 6007
diff changeset
3500 345,
ea2c5dfee1b0 updated for version 7.4.345
Bram Moolenaar <bram@vim.org>
parents: 6007
diff changeset
3501 /**/
6007
ce284c205558 updated for version 7.4.344
Bram Moolenaar <bram@vim.org>
parents: 6005
diff changeset
3502 344,
ce284c205558 updated for version 7.4.344
Bram Moolenaar <bram@vim.org>
parents: 6005
diff changeset
3503 /**/
6005
539ce56d8f35 updated for version 7.4.343
Bram Moolenaar <bram@vim.org>
parents: 6003
diff changeset
3504 343,
539ce56d8f35 updated for version 7.4.343
Bram Moolenaar <bram@vim.org>
parents: 6003
diff changeset
3505 /**/
6003
8dcc6f142460 updated for version 7.4.342
Bram Moolenaar <bram@vim.org>
parents: 6001
diff changeset
3506 342,
8dcc6f142460 updated for version 7.4.342
Bram Moolenaar <bram@vim.org>
parents: 6001
diff changeset
3507 /**/
6001
adc4a84f72eb updated for version 7.4.341
Bram Moolenaar <bram@vim.org>
parents: 5999
diff changeset
3508 341,
adc4a84f72eb updated for version 7.4.341
Bram Moolenaar <bram@vim.org>
parents: 5999
diff changeset
3509 /**/
5999
03f95f5e311b updated for version 7.4.340
Bram Moolenaar <bram@vim.org>
parents: 5997
diff changeset
3510 340,
03f95f5e311b updated for version 7.4.340
Bram Moolenaar <bram@vim.org>
parents: 5997
diff changeset
3511 /**/
5997
fd7110d0c3bf updated for version 7.4.339
Bram Moolenaar <bram@vim.org>
parents: 5995
diff changeset
3512 339,
fd7110d0c3bf updated for version 7.4.339
Bram Moolenaar <bram@vim.org>
parents: 5995
diff changeset
3513 /**/
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5993
diff changeset
3514 338,
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5993
diff changeset
3515 /**/
5993
0206ac84ff5f updated for version 7.4.337
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
3516 337,
0206ac84ff5f updated for version 7.4.337
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
3517 /**/
5991
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5989
diff changeset
3518 336,
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5989
diff changeset
3519 /**/
5989
8ad2ecd11602 updated for version 7.4.335
Bram Moolenaar <bram@vim.org>
parents: 5987
diff changeset
3520 335,
8ad2ecd11602 updated for version 7.4.335
Bram Moolenaar <bram@vim.org>
parents: 5987
diff changeset
3521 /**/
5987
03d260a8ea0c updated for version 7.4.334
Bram Moolenaar <bram@vim.org>
parents: 5985
diff changeset
3522 334,
03d260a8ea0c updated for version 7.4.334
Bram Moolenaar <bram@vim.org>
parents: 5985
diff changeset
3523 /**/
5985
8ae50e3ef8bf updated for version 7.4.333
Bram Moolenaar <bram@vim.org>
parents: 5983
diff changeset
3524 333,
8ae50e3ef8bf updated for version 7.4.333
Bram Moolenaar <bram@vim.org>
parents: 5983
diff changeset
3525 /**/
5983
8fed02d53b45 updated for version 7.4.332
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
3526 332,
8fed02d53b45 updated for version 7.4.332
Bram Moolenaar <bram@vim.org>
parents: 5981
diff changeset
3527 /**/
5981
6d984caa0409 updated for version 7.4.331
Bram Moolenaar <bram@vim.org>
parents: 5979
diff changeset
3528 331,
6d984caa0409 updated for version 7.4.331
Bram Moolenaar <bram@vim.org>
parents: 5979
diff changeset
3529 /**/
5979
f9fa2e506b9f updated for version 7.4.330
Bram Moolenaar <bram@vim.org>
parents: 5977
diff changeset
3530 330,
f9fa2e506b9f updated for version 7.4.330
Bram Moolenaar <bram@vim.org>
parents: 5977
diff changeset
3531 /**/
5977
018df65085f8 updated for version 7.4.329
Bram Moolenaar <bram@vim.org>
parents: 5975
diff changeset
3532 329,
018df65085f8 updated for version 7.4.329
Bram Moolenaar <bram@vim.org>
parents: 5975
diff changeset
3533 /**/
5975
01d9ffdd6e6f updated for version 7.4.328
Bram Moolenaar <bram@vim.org>
parents: 5973
diff changeset
3534 328,
01d9ffdd6e6f updated for version 7.4.328
Bram Moolenaar <bram@vim.org>
parents: 5973
diff changeset
3535 /**/
5973
99d8f2d72dcd updated for version 7.4.327
Bram Moolenaar <bram@vim.org>
parents: 5971
diff changeset
3536 327,
99d8f2d72dcd updated for version 7.4.327
Bram Moolenaar <bram@vim.org>
parents: 5971
diff changeset
3537 /**/
5971
1dbcb23ae7a8 updated for version 7.4.326
Bram Moolenaar <bram@vim.org>
parents: 5969
diff changeset
3538 326,
1dbcb23ae7a8 updated for version 7.4.326
Bram Moolenaar <bram@vim.org>
parents: 5969
diff changeset
3539 /**/
5969
1f288d247548 updated for version 7.4.325
Bram Moolenaar <bram@vim.org>
parents: 5966
diff changeset
3540 325,
1f288d247548 updated for version 7.4.325
Bram Moolenaar <bram@vim.org>
parents: 5966
diff changeset
3541 /**/
5966
c476e0ac8b40 updated for version 7.4.324
Bram Moolenaar <bram@vim.org>
parents: 5964
diff changeset
3542 324,
c476e0ac8b40 updated for version 7.4.324
Bram Moolenaar <bram@vim.org>
parents: 5964
diff changeset
3543 /**/
5964
238f5027830c updated for version 7.4.323
Bram Moolenaar <bram@vim.org>
parents: 5962
diff changeset
3544 323,
238f5027830c updated for version 7.4.323
Bram Moolenaar <bram@vim.org>
parents: 5962
diff changeset
3545 /**/
5962
fd96c55d683d updated for version 7.4.322
Bram Moolenaar <bram@vim.org>
parents: 5960
diff changeset
3546 322,
fd96c55d683d updated for version 7.4.322
Bram Moolenaar <bram@vim.org>
parents: 5960
diff changeset
3547 /**/
5960
c052937aae8c updated for version 7.4.321
Bram Moolenaar <bram@vim.org>
parents: 5958
diff changeset
3548 321,
c052937aae8c updated for version 7.4.321
Bram Moolenaar <bram@vim.org>
parents: 5958
diff changeset
3549 /**/
5958
f7bc601823e5 updated for version 7.4.320
Bram Moolenaar <bram@vim.org>
parents: 5956
diff changeset
3550 320,
f7bc601823e5 updated for version 7.4.320
Bram Moolenaar <bram@vim.org>
parents: 5956
diff changeset
3551 /**/
5956
a076237d1c38 updated for version 7.4.319
Bram Moolenaar <bram@vim.org>
parents: 5954
diff changeset
3552 319,
a076237d1c38 updated for version 7.4.319
Bram Moolenaar <bram@vim.org>
parents: 5954
diff changeset
3553 /**/
5954
5c47dacf397c updated for version 7.4.318
Bram Moolenaar <bram@vim.org>
parents: 5952
diff changeset
3554 318,
5c47dacf397c updated for version 7.4.318
Bram Moolenaar <bram@vim.org>
parents: 5952
diff changeset
3555 /**/
5952
8ffcb546d782 updated for version 7.4.317
Bram Moolenaar <bram@vim.org>
parents: 5950
diff changeset
3556 317,
8ffcb546d782 updated for version 7.4.317
Bram Moolenaar <bram@vim.org>
parents: 5950
diff changeset
3557 /**/
5950
0fc665889e8f updated for version 7.4.316
Bram Moolenaar <bram@vim.org>
parents: 5948
diff changeset
3558 316,
0fc665889e8f updated for version 7.4.316
Bram Moolenaar <bram@vim.org>
parents: 5948
diff changeset
3559 /**/
5948
646616b6ff4d updated for version 7.4.315
Bram Moolenaar <bram@vim.org>
parents: 5946
diff changeset
3560 315,
646616b6ff4d updated for version 7.4.315
Bram Moolenaar <bram@vim.org>
parents: 5946
diff changeset
3561 /**/
5946
4d7af1962d6c updated for version 7.4.314
Bram Moolenaar <bram@vim.org>
parents: 5944
diff changeset
3562 314,
4d7af1962d6c updated for version 7.4.314
Bram Moolenaar <bram@vim.org>
parents: 5944
diff changeset
3563 /**/
5944
332a5c2b2956 updated for version 7.4.313
Bram Moolenaar <bram@vim.org>
parents: 5942
diff changeset
3564 313,
332a5c2b2956 updated for version 7.4.313
Bram Moolenaar <bram@vim.org>
parents: 5942
diff changeset
3565 /**/
5942
66eead134d68 updated for version 7.4.312
Bram Moolenaar <bram@vim.org>
parents: 5940
diff changeset
3566 312,
66eead134d68 updated for version 7.4.312
Bram Moolenaar <bram@vim.org>
parents: 5940
diff changeset
3567 /**/
5940
f6f754304324 updated for version 7.4.311
Bram Moolenaar <bram@vim.org>
parents: 5938
diff changeset
3568 311,
f6f754304324 updated for version 7.4.311
Bram Moolenaar <bram@vim.org>
parents: 5938
diff changeset
3569 /**/
5938
ccac0aa34eea updated for version 7.4.310
Bram Moolenaar <bram@vim.org>
parents: 5936
diff changeset
3570 310,
ccac0aa34eea updated for version 7.4.310
Bram Moolenaar <bram@vim.org>
parents: 5936
diff changeset
3571 /**/
5936
88a6e9f33822 updated for version 7.4.309
Bram Moolenaar <bram@vim.org>
parents: 5934
diff changeset
3572 309,
88a6e9f33822 updated for version 7.4.309
Bram Moolenaar <bram@vim.org>
parents: 5934
diff changeset
3573 /**/
5934
e3d2b8d83bb3 updated for version 7.4.308
Bram Moolenaar <bram@vim.org>
parents: 5932
diff changeset
3574 308,
e3d2b8d83bb3 updated for version 7.4.308
Bram Moolenaar <bram@vim.org>
parents: 5932
diff changeset
3575 /**/
5932
06c10522d321 updated for version 7.4.307
Bram Moolenaar <bram@vim.org>
parents: 5930
diff changeset
3576 307,
06c10522d321 updated for version 7.4.307
Bram Moolenaar <bram@vim.org>
parents: 5930
diff changeset
3577 /**/
5930
05e1d8afcc5e updated for version 7.4.306
Bram Moolenaar <bram@vim.org>
parents: 5927
diff changeset
3578 306,
05e1d8afcc5e updated for version 7.4.306
Bram Moolenaar <bram@vim.org>
parents: 5927
diff changeset
3579 /**/
5927
63e7cc62402d updated for version 7.4.305
Bram Moolenaar <bram@vim.org>
parents: 5925
diff changeset
3580 305,
63e7cc62402d updated for version 7.4.305
Bram Moolenaar <bram@vim.org>
parents: 5925
diff changeset
3581 /**/
5925
fed2e0967f81 updated for version 7.4.304
Bram Moolenaar <bram@vim.org>
parents: 5923
diff changeset
3582 304,
fed2e0967f81 updated for version 7.4.304
Bram Moolenaar <bram@vim.org>
parents: 5923
diff changeset
3583 /**/
5923
463ef551e9f6 updated for version 7.4.303
Bram Moolenaar <bram@vim.org>
parents: 5921
diff changeset
3584 303,
463ef551e9f6 updated for version 7.4.303
Bram Moolenaar <bram@vim.org>
parents: 5921
diff changeset
3585 /**/
5921
df141c80ea3a updated for version 7.4.302
Bram Moolenaar <bram@vim.org>
parents: 5919
diff changeset
3586 302,
df141c80ea3a updated for version 7.4.302
Bram Moolenaar <bram@vim.org>
parents: 5919
diff changeset
3587 /**/
5919
8cb42aa3c495 updated for version 7.4.301
Bram Moolenaar <bram@vim.org>
parents: 5917
diff changeset
3588 301,
8cb42aa3c495 updated for version 7.4.301
Bram Moolenaar <bram@vim.org>
parents: 5917
diff changeset
3589 /**/
5917
1157079ca5f1 updated for version 7.4.300
Bram Moolenaar <bram@vim.org>
parents: 5915
diff changeset
3590 300,
1157079ca5f1 updated for version 7.4.300
Bram Moolenaar <bram@vim.org>
parents: 5915
diff changeset
3591 /**/
5915
daebf8ce6608 updated for version 7.4.299
Bram Moolenaar <bram@vim.org>
parents: 5913
diff changeset
3592 299,
daebf8ce6608 updated for version 7.4.299
Bram Moolenaar <bram@vim.org>
parents: 5913
diff changeset
3593 /**/
5913
156f891d520e updated for version 7.4.298
Bram Moolenaar <bram@vim.org>
parents: 5911
diff changeset
3594 298,
156f891d520e updated for version 7.4.298
Bram Moolenaar <bram@vim.org>
parents: 5911
diff changeset
3595 /**/
5911
81f5a056b2a5 updated for version 7.4.297
Bram Moolenaar <bram@vim.org>
parents: 5909
diff changeset
3596 297,
81f5a056b2a5 updated for version 7.4.297
Bram Moolenaar <bram@vim.org>
parents: 5909
diff changeset
3597 /**/
5909
53b87d790574 updated for version 7.4.296
Bram Moolenaar <bram@vim.org>
parents: 5905
diff changeset
3598 296,
53b87d790574 updated for version 7.4.296
Bram Moolenaar <bram@vim.org>
parents: 5905
diff changeset
3599 /**/
5905
662ae48e7e24 updated for version 7.4.295
Bram Moolenaar <bram@vim.org>
parents: 5903
diff changeset
3600 295,
662ae48e7e24 updated for version 7.4.295
Bram Moolenaar <bram@vim.org>
parents: 5903
diff changeset
3601 /**/
5903
fdea5ea9afd1 updated for version 7.4.294
Bram Moolenaar <bram@vim.org>
parents: 5901
diff changeset
3602 294,
fdea5ea9afd1 updated for version 7.4.294
Bram Moolenaar <bram@vim.org>
parents: 5901
diff changeset
3603 /**/
5901
10fc95f48546 updated for version 7.4.293
Bram Moolenaar <bram@vim.org>
parents: 5899
diff changeset
3604 293,
10fc95f48546 updated for version 7.4.293
Bram Moolenaar <bram@vim.org>
parents: 5899
diff changeset
3605 /**/
5899
60cdaa05a6ad updated for version 7.4.292
Bram Moolenaar <bram@vim.org>
parents: 5897
diff changeset
3606 292,
60cdaa05a6ad updated for version 7.4.292
Bram Moolenaar <bram@vim.org>
parents: 5897
diff changeset
3607 /**/
5897
b5972833add9 updated for version 7.4.291
Bram Moolenaar <bram@vim.org>
parents: 5895
diff changeset
3608 291,
b5972833add9 updated for version 7.4.291
Bram Moolenaar <bram@vim.org>
parents: 5895
diff changeset
3609 /**/
5895
b871734bf54e updated for version 7.4.290
Bram Moolenaar <bram@vim.org>
parents: 5893
diff changeset
3610 290,
b871734bf54e updated for version 7.4.290
Bram Moolenaar <bram@vim.org>
parents: 5893
diff changeset
3611 /**/
5893
99374096a76b updated for version 7.4.289
Bram Moolenaar <bram@vim.org>
parents: 5891
diff changeset
3612 289,
99374096a76b updated for version 7.4.289
Bram Moolenaar <bram@vim.org>
parents: 5891
diff changeset
3613 /**/
5891
7965cb6a435a updated for version 7.4.288
Bram Moolenaar <bram@vim.org>
parents: 5889
diff changeset
3614 288,
7965cb6a435a updated for version 7.4.288
Bram Moolenaar <bram@vim.org>
parents: 5889
diff changeset
3615 /**/
5889
66fe4908b649 updated for version 7.4.287
Bram Moolenaar <bram@vim.org>
parents: 5887
diff changeset
3616 287,
66fe4908b649 updated for version 7.4.287
Bram Moolenaar <bram@vim.org>
parents: 5887
diff changeset
3617 /**/
5887
be19015ef43c updated for version 7.4.286
Bram Moolenaar <bram@vim.org>
parents: 5885
diff changeset
3618 286,
be19015ef43c updated for version 7.4.286
Bram Moolenaar <bram@vim.org>
parents: 5885
diff changeset
3619 /**/
5885
5cb1828fd005 updated for version 7.4.285
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
3620 285,
5cb1828fd005 updated for version 7.4.285
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
3621 /**/
5883
3c35ca9666e8 updated for version 7.4.284
Bram Moolenaar <bram@vim.org>
parents: 5881
diff changeset
3622 284,
3c35ca9666e8 updated for version 7.4.284
Bram Moolenaar <bram@vim.org>
parents: 5881
diff changeset
3623 /**/
5881
aa99d04fa7e2 updated for version 7.4.283
Bram Moolenaar <bram@vim.org>
parents: 5879
diff changeset
3624 283,
aa99d04fa7e2 updated for version 7.4.283
Bram Moolenaar <bram@vim.org>
parents: 5879
diff changeset
3625 /**/
5879
6d0a1132dd71 updated for version 7.4.282
Bram Moolenaar <bram@vim.org>
parents: 5877
diff changeset
3626 282,
6d0a1132dd71 updated for version 7.4.282
Bram Moolenaar <bram@vim.org>
parents: 5877
diff changeset
3627 /**/
5877
24c90f1fec85 updated for version 7.4.281
Bram Moolenaar <bram@vim.org>
parents: 5875
diff changeset
3628 281,
24c90f1fec85 updated for version 7.4.281
Bram Moolenaar <bram@vim.org>
parents: 5875
diff changeset
3629 /**/
5875
daf7e98675cf updated for version 7.4.280
Bram Moolenaar <bram@vim.org>
parents: 5873
diff changeset
3630 280,
daf7e98675cf updated for version 7.4.280
Bram Moolenaar <bram@vim.org>
parents: 5873
diff changeset
3631 /**/
5873
8e9db1f27a00 updated for version 7.4.279
Bram Moolenaar <bram@vim.org>
parents: 5871
diff changeset
3632 279,
8e9db1f27a00 updated for version 7.4.279
Bram Moolenaar <bram@vim.org>
parents: 5871
diff changeset
3633 /**/
5871
b4ce0e1fb5a6 updated for version 7.4.278
Bram Moolenaar <bram@vim.org>
parents: 5869
diff changeset
3634 278,
b4ce0e1fb5a6 updated for version 7.4.278
Bram Moolenaar <bram@vim.org>
parents: 5869
diff changeset
3635 /**/
5869
373204662d82 updated for version 7.4.277
Bram Moolenaar <bram@vim.org>
parents: 5867
diff changeset
3636 277,
373204662d82 updated for version 7.4.277
Bram Moolenaar <bram@vim.org>
parents: 5867
diff changeset
3637 /**/
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
3638 276,
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
3639 /**/
5865
8a3117a4887c updated for version 7.4.275
Bram Moolenaar <bram@vim.org>
parents: 5863
diff changeset
3640 275,
8a3117a4887c updated for version 7.4.275
Bram Moolenaar <bram@vim.org>
parents: 5863
diff changeset
3641 /**/
5863
1ee3fc5b40ae updated for version 7.4.274
Bram Moolenaar <bram@vim.org>
parents: 5860
diff changeset
3642 274,
1ee3fc5b40ae updated for version 7.4.274
Bram Moolenaar <bram@vim.org>
parents: 5860
diff changeset
3643 /**/
5860
747afb6a6de4 updated for version 7.4.273
Bram Moolenaar <bram@vim.org>
parents: 5858
diff changeset
3644 273,
747afb6a6de4 updated for version 7.4.273
Bram Moolenaar <bram@vim.org>
parents: 5858
diff changeset
3645 /**/
5858
00228400629e updated for version 7.4.272
Bram Moolenaar <bram@vim.org>
parents: 5856
diff changeset
3646 272,
00228400629e updated for version 7.4.272
Bram Moolenaar <bram@vim.org>
parents: 5856
diff changeset
3647 /**/
5856
88b0571de432 updated for version 7.4.271
Bram Moolenaar <bram@vim.org>
parents: 5854
diff changeset
3648 271,
88b0571de432 updated for version 7.4.271
Bram Moolenaar <bram@vim.org>
parents: 5854
diff changeset
3649 /**/
5854
c519c446c548 updated for version 7.4.270
Bram Moolenaar <bram@vim.org>
parents: 5852
diff changeset
3650 270,
c519c446c548 updated for version 7.4.270
Bram Moolenaar <bram@vim.org>
parents: 5852
diff changeset
3651 /**/
5852
81c26975e8f9 updated for version 7.4.269
Bram Moolenaar <bram@vim.org>
parents: 5850
diff changeset
3652 269,
81c26975e8f9 updated for version 7.4.269
Bram Moolenaar <bram@vim.org>
parents: 5850
diff changeset
3653 /**/
5850
1a5ed2626b26 updated for version 7.4.268
Bram Moolenaar <bram@vim.org>
parents: 5848
diff changeset
3654 268,
1a5ed2626b26 updated for version 7.4.268
Bram Moolenaar <bram@vim.org>
parents: 5848
diff changeset
3655 /**/
5848
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5846
diff changeset
3656 267,
75f222d67cea updated for version 7.4.267
Bram Moolenaar <bram@vim.org>
parents: 5846
diff changeset
3657 /**/
5846
8f84e906d454 updated for version 7.4.266
Bram Moolenaar <bram@vim.org>
parents: 5844
diff changeset
3658 266,
8f84e906d454 updated for version 7.4.266
Bram Moolenaar <bram@vim.org>
parents: 5844
diff changeset
3659 /**/
5844
8ec9d2196bee updated for version 7.4.265
Bram Moolenaar <bram@vim.org>
parents: 5842
diff changeset
3660 265,
8ec9d2196bee updated for version 7.4.265
Bram Moolenaar <bram@vim.org>
parents: 5842
diff changeset
3661 /**/
5842
00acac0af680 updated for version 7.4.264
Bram Moolenaar <bram@vim.org>
parents: 5840
diff changeset
3662 264,
00acac0af680 updated for version 7.4.264
Bram Moolenaar <bram@vim.org>
parents: 5840
diff changeset
3663 /**/
5840
af1bb39774f4 updated for version 7.4.263
Bram Moolenaar <bram@vim.org>
parents: 5838
diff changeset
3664 263,
af1bb39774f4 updated for version 7.4.263
Bram Moolenaar <bram@vim.org>
parents: 5838
diff changeset
3665 /**/
5838
0ea551fa607d updated for version 7.4.262
Bram Moolenaar <bram@vim.org>
parents: 5836
diff changeset
3666 262,
0ea551fa607d updated for version 7.4.262
Bram Moolenaar <bram@vim.org>
parents: 5836
diff changeset
3667 /**/
5836
43c6cd07c8de updated for version 7.4.261
Bram Moolenaar <bram@vim.org>
parents: 5834
diff changeset
3668 261,
43c6cd07c8de updated for version 7.4.261
Bram Moolenaar <bram@vim.org>
parents: 5834
diff changeset
3669 /**/
5834
6bc874e4789a updated for version 7.4.260
Bram Moolenaar <bram@vim.org>
parents: 5832
diff changeset
3670 260,
6bc874e4789a updated for version 7.4.260
Bram Moolenaar <bram@vim.org>
parents: 5832
diff changeset
3671 /**/
5832
e4cd5bb75029 updated for version 7.4.259
Bram Moolenaar <bram@vim.org>
parents: 5830
diff changeset
3672 259,
e4cd5bb75029 updated for version 7.4.259
Bram Moolenaar <bram@vim.org>
parents: 5830
diff changeset
3673 /**/
5830
e8ffd1e6c8dc updated for version 7.4.258
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
3674 258,
e8ffd1e6c8dc updated for version 7.4.258
Bram Moolenaar <bram@vim.org>
parents: 5828
diff changeset
3675 /**/
5828
17903ded5e9a updated for version 7.4.257
Bram Moolenaar <bram@vim.org>
parents: 5826
diff changeset
3676 257,
17903ded5e9a updated for version 7.4.257
Bram Moolenaar <bram@vim.org>
parents: 5826
diff changeset
3677 /**/
5826
afb542ea210c updated for version 7.4.256
Bram Moolenaar <bram@vim.org>
parents: 5824
diff changeset
3678 256,
afb542ea210c updated for version 7.4.256
Bram Moolenaar <bram@vim.org>
parents: 5824
diff changeset
3679 /**/
5824
5595506b985a updated for version 7.4.255
Bram Moolenaar <bram@vim.org>
parents: 5822
diff changeset
3680 255,
5595506b985a updated for version 7.4.255
Bram Moolenaar <bram@vim.org>
parents: 5822
diff changeset
3681 /**/
5822
251acc686ca4 updated for version 7.4.254
Bram Moolenaar <bram@vim.org>
parents: 5820
diff changeset
3682 254,
251acc686ca4 updated for version 7.4.254
Bram Moolenaar <bram@vim.org>
parents: 5820
diff changeset
3683 /**/
5820
4901a36479f2 updated for version 7.4.253
Bram Moolenaar <bram@vim.org>
parents: 5818
diff changeset
3684 253,
4901a36479f2 updated for version 7.4.253
Bram Moolenaar <bram@vim.org>
parents: 5818
diff changeset
3685 /**/
5818
a43a8262e1ce updated for version 7.4.252
Bram Moolenaar <bram@vim.org>
parents: 5816
diff changeset
3686 252,
a43a8262e1ce updated for version 7.4.252
Bram Moolenaar <bram@vim.org>
parents: 5816
diff changeset
3687 /**/
5816
29eb4c2a33ac updated for version 7.4.251
Bram Moolenaar <bram@vim.org>
parents: 5812
diff changeset
3688 251,
29eb4c2a33ac updated for version 7.4.251
Bram Moolenaar <bram@vim.org>
parents: 5812
diff changeset
3689 /**/
5812
a8f3f4589628 updated for version 7.4.250
Bram Moolenaar <bram@vim.org>
parents: 5810
diff changeset
3690 250,
a8f3f4589628 updated for version 7.4.250
Bram Moolenaar <bram@vim.org>
parents: 5810
diff changeset
3691 /**/
5810
0b9a66ea49f4 updated for version 7.4.249
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
3692 249,
0b9a66ea49f4 updated for version 7.4.249
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
3693 /**/
5808
e5f1f2ea0b4a updated for version 7.4.248
Bram Moolenaar <bram@vim.org>
parents: 5806
diff changeset
3694 248,
e5f1f2ea0b4a updated for version 7.4.248
Bram Moolenaar <bram@vim.org>
parents: 5806
diff changeset
3695 /**/
5806
76863b4b48a3 updated for version 7.4.247
Bram Moolenaar <bram@vim.org>
parents: 5804
diff changeset
3696 247,
76863b4b48a3 updated for version 7.4.247
Bram Moolenaar <bram@vim.org>
parents: 5804
diff changeset
3697 /**/
5804
2cbac5608217 updated for version 7.4.246
Bram Moolenaar <bram@vim.org>
parents: 5802
diff changeset
3698 246,
2cbac5608217 updated for version 7.4.246
Bram Moolenaar <bram@vim.org>
parents: 5802
diff changeset
3699 /**/
5802
80421d934ebd updated for version 7.4.245
Bram Moolenaar <bram@vim.org>
parents: 5800
diff changeset
3700 245,
80421d934ebd updated for version 7.4.245
Bram Moolenaar <bram@vim.org>
parents: 5800
diff changeset
3701 /**/
5800
da17c7de616e updated for version 7.4.244
Bram Moolenaar <bram@vim.org>
parents: 5798
diff changeset
3702 244,
da17c7de616e updated for version 7.4.244
Bram Moolenaar <bram@vim.org>
parents: 5798
diff changeset
3703 /**/
5798
9f8fa56f1906 updated for version 7.4.243
Bram Moolenaar <bram@vim.org>
parents: 5796
diff changeset
3704 243,
9f8fa56f1906 updated for version 7.4.243
Bram Moolenaar <bram@vim.org>
parents: 5796
diff changeset
3705 /**/
5796
f084024c0ddb updated for version 7.4.242
Bram Moolenaar <bram@vim.org>
parents: 5794
diff changeset
3706 242,
f084024c0ddb updated for version 7.4.242
Bram Moolenaar <bram@vim.org>
parents: 5794
diff changeset
3707 /**/
5794
a63d0cd691dc updated for version 7.4.241
Bram Moolenaar <bram@vim.org>
parents: 5792
diff changeset
3708 241,
a63d0cd691dc updated for version 7.4.241
Bram Moolenaar <bram@vim.org>
parents: 5792
diff changeset
3709 /**/
5792
8d1ba0a23588 updated for version 7.4.240
Bram Moolenaar <bram@vim.org>
parents: 5790
diff changeset
3710 240,
8d1ba0a23588 updated for version 7.4.240
Bram Moolenaar <bram@vim.org>
parents: 5790
diff changeset
3711 /**/
5790
98bfec9ea760 updated for version 7.4.239
Bram Moolenaar <bram@vim.org>
parents: 5788
diff changeset
3712 239,
98bfec9ea760 updated for version 7.4.239
Bram Moolenaar <bram@vim.org>
parents: 5788
diff changeset
3713 /**/
5788
410ef4f1a3d2 updated for version 7.4.238
Bram Moolenaar <bram@vim.org>
parents: 5786
diff changeset
3714 238,
410ef4f1a3d2 updated for version 7.4.238
Bram Moolenaar <bram@vim.org>
parents: 5786
diff changeset
3715 /**/
5786
71b165a378ad updated for version 7.4.237
Bram Moolenaar <bram@vim.org>
parents: 5784
diff changeset
3716 237,
71b165a378ad updated for version 7.4.237
Bram Moolenaar <bram@vim.org>
parents: 5784
diff changeset
3717 /**/
5784
a44087db7238 updated for version 7.4.236
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
3718 236,
a44087db7238 updated for version 7.4.236
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
3719 /**/
5782
5ab2946f7ce5 updated for version 7.4.235
Bram Moolenaar <bram@vim.org>
parents: 5780
diff changeset
3720 235,
5ab2946f7ce5 updated for version 7.4.235
Bram Moolenaar <bram@vim.org>
parents: 5780
diff changeset
3721 /**/
5780
d2286df8719d updated for version 7.4.234
Bram Moolenaar <bram@vim.org>
parents: 5778
diff changeset
3722 234,
d2286df8719d updated for version 7.4.234
Bram Moolenaar <bram@vim.org>
parents: 5778
diff changeset
3723 /**/
5778
22a1d5762ba3 updated for version 7.4.233
Bram Moolenaar <bram@vim.org>
parents: 5776
diff changeset
3724 233,
22a1d5762ba3 updated for version 7.4.233
Bram Moolenaar <bram@vim.org>
parents: 5776
diff changeset
3725 /**/
5776
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5774
diff changeset
3726 232,
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5774
diff changeset
3727 /**/
5774
0a295a3c9e47 updated for version 7.4.231
Bram Moolenaar <bram@vim.org>
parents: 5772
diff changeset
3728 231,
0a295a3c9e47 updated for version 7.4.231
Bram Moolenaar <bram@vim.org>
parents: 5772
diff changeset
3729 /**/
5772
57ecd7a8c0f0 updated for version 7.4.230
Bram Moolenaar <bram@vim.org>
parents: 5770
diff changeset
3730 230,
57ecd7a8c0f0 updated for version 7.4.230
Bram Moolenaar <bram@vim.org>
parents: 5770
diff changeset
3731 /**/
5770
839cca5ec18d updated for version 7.4.229
Bram Moolenaar <bram@vim.org>
parents: 5768
diff changeset
3732 229,
839cca5ec18d updated for version 7.4.229
Bram Moolenaar <bram@vim.org>
parents: 5768
diff changeset
3733 /**/
5768
3ee5808a293c updated for version 7.4.228
Bram Moolenaar <bram@vim.org>
parents: 5766
diff changeset
3734 228,
3ee5808a293c updated for version 7.4.228
Bram Moolenaar <bram@vim.org>
parents: 5766
diff changeset
3735 /**/
5766
b0a9df477096 updated for version 7.4.227
Bram Moolenaar <bram@vim.org>
parents: 5764
diff changeset
3736 227,
b0a9df477096 updated for version 7.4.227
Bram Moolenaar <bram@vim.org>
parents: 5764
diff changeset
3737 /**/
5764
b650f2db8f96 updated for version 7.4.226
Bram Moolenaar <bram@vim.org>
parents: 5761
diff changeset
3738 226,
b650f2db8f96 updated for version 7.4.226
Bram Moolenaar <bram@vim.org>
parents: 5761
diff changeset
3739 /**/
5761
eeb150c07647 updated for version 7.4.225
Bram Moolenaar <bram@vim.org>
parents: 5759
diff changeset
3740 225,
eeb150c07647 updated for version 7.4.225
Bram Moolenaar <bram@vim.org>
parents: 5759
diff changeset
3741 /**/
5759
092b8f61021b updated for version 7.4.224
Bram Moolenaar <bram@vim.org>
parents: 5757
diff changeset
3742 224,
092b8f61021b updated for version 7.4.224
Bram Moolenaar <bram@vim.org>
parents: 5757
diff changeset
3743 /**/
5757
4b78922d557c updated for version 7.4.223
Bram Moolenaar <bram@vim.org>
parents: 5755
diff changeset
3744 223,
4b78922d557c updated for version 7.4.223
Bram Moolenaar <bram@vim.org>
parents: 5755
diff changeset
3745 /**/
5755
9123b4d3ef05 updated for version 7.4.222
Bram Moolenaar <bram@vim.org>
parents: 5753
diff changeset
3746 222,
9123b4d3ef05 updated for version 7.4.222
Bram Moolenaar <bram@vim.org>
parents: 5753
diff changeset
3747 /**/
5753
a548aae15b3a updated for version 7.4.221
Bram Moolenaar <bram@vim.org>
parents: 5751
diff changeset
3748 221,
a548aae15b3a updated for version 7.4.221
Bram Moolenaar <bram@vim.org>
parents: 5751
diff changeset
3749 /**/
5751
1e272e318daa updated for version 7.4.220
Bram Moolenaar <bram@vim.org>
parents: 5749
diff changeset
3750 220,
1e272e318daa updated for version 7.4.220
Bram Moolenaar <bram@vim.org>
parents: 5749
diff changeset
3751 /**/
5749
37af1e6e91bb updated for version 7.4.219
Bram Moolenaar <bram@vim.org>
parents: 5747
diff changeset
3752 219,
37af1e6e91bb updated for version 7.4.219
Bram Moolenaar <bram@vim.org>
parents: 5747
diff changeset
3753 /**/
5747
ddc3f32a4b21 updated for version 7.4.218
Bram Moolenaar <bram@vim.org>
parents: 5745
diff changeset
3754 218,
ddc3f32a4b21 updated for version 7.4.218
Bram Moolenaar <bram@vim.org>
parents: 5745
diff changeset
3755 /**/
5745
2f225a17c26b updated for version 7.4.217
Bram Moolenaar <bram@vim.org>
parents: 5743
diff changeset
3756 217,
2f225a17c26b updated for version 7.4.217
Bram Moolenaar <bram@vim.org>
parents: 5743
diff changeset
3757 /**/
5743
bf1775553d3b updated for version 7.4.216
Bram Moolenaar <bram@vim.org>
parents: 5741
diff changeset
3758 216,
bf1775553d3b updated for version 7.4.216
Bram Moolenaar <bram@vim.org>
parents: 5741
diff changeset
3759 /**/
5741
f069a3a0f844 updated for version 7.4.215
Bram Moolenaar <bram@vim.org>
parents: 5739
diff changeset
3760 215,
f069a3a0f844 updated for version 7.4.215
Bram Moolenaar <bram@vim.org>
parents: 5739
diff changeset
3761 /**/
5739
fe02fdfbdec0 updated for version 7.4.214
Bram Moolenaar <bram@vim.org>
parents: 5737
diff changeset
3762 214,
fe02fdfbdec0 updated for version 7.4.214
Bram Moolenaar <bram@vim.org>
parents: 5737
diff changeset
3763 /**/
5737
e25a04c1c515 updated for version 7.4.213
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3764 213,
e25a04c1c515 updated for version 7.4.213
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3765 /**/
5735
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5732
diff changeset
3766 212,
50dbef5e774a updated for version 7.4.212
Bram Moolenaar <bram@vim.org>
parents: 5732
diff changeset
3767 /**/
5732
e90bef2240c8 updated for version 7.4.211
Bram Moolenaar <bram@vim.org>
parents: 5730
diff changeset
3768 211,
e90bef2240c8 updated for version 7.4.211
Bram Moolenaar <bram@vim.org>
parents: 5730
diff changeset
3769 /**/
5730
420fd9cb86d5 updated for version 7.4.210
Bram Moolenaar <bram@vim.org>
parents: 5728
diff changeset
3770 210,
420fd9cb86d5 updated for version 7.4.210
Bram Moolenaar <bram@vim.org>
parents: 5728
diff changeset
3771 /**/
5728
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5726
diff changeset
3772 209,
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5726
diff changeset
3773 /**/
5726
9b5541e276aa updated for version 7.4.208
Bram Moolenaar <bram@vim.org>
parents: 5724
diff changeset
3774 208,
9b5541e276aa updated for version 7.4.208
Bram Moolenaar <bram@vim.org>
parents: 5724
diff changeset
3775 /**/
5724
2aa909427e44 updated for version 7.4.207
Bram Moolenaar <bram@vim.org>
parents: 5722
diff changeset
3776 207,
2aa909427e44 updated for version 7.4.207
Bram Moolenaar <bram@vim.org>
parents: 5722
diff changeset
3777 /**/
5722
7e826028d399 updated for version 7.4.206
Bram Moolenaar <bram@vim.org>
parents: 5720
diff changeset
3778 206,
7e826028d399 updated for version 7.4.206
Bram Moolenaar <bram@vim.org>
parents: 5720
diff changeset
3779 /**/
5720
0ace3a24c2a0 updated for version 7.4.205
Bram Moolenaar <bram@vim.org>
parents: 5718
diff changeset
3780 205,
0ace3a24c2a0 updated for version 7.4.205
Bram Moolenaar <bram@vim.org>
parents: 5718
diff changeset
3781 /**/
5718
f5120cbf16b9 updated for version 7.4.204
Bram Moolenaar <bram@vim.org>
parents: 5716
diff changeset
3782 204,
f5120cbf16b9 updated for version 7.4.204
Bram Moolenaar <bram@vim.org>
parents: 5716
diff changeset
3783 /**/
5716
fb24b025c7cf updated for version 7.4.203
Bram Moolenaar <bram@vim.org>
parents: 5714
diff changeset
3784 203,
fb24b025c7cf updated for version 7.4.203
Bram Moolenaar <bram@vim.org>
parents: 5714
diff changeset
3785 /**/
5714
22d7af9ff3e5 updated for version 7.4.202
Bram Moolenaar <bram@vim.org>
parents: 5712
diff changeset
3786 202,
22d7af9ff3e5 updated for version 7.4.202
Bram Moolenaar <bram@vim.org>
parents: 5712
diff changeset
3787 /**/
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5710
diff changeset
3788 201,
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5710
diff changeset
3789 /**/
5710
0559091e6f09 updated for version 7.4.200
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
3790 200,
0559091e6f09 updated for version 7.4.200
Bram Moolenaar <bram@vim.org>
parents: 5708
diff changeset
3791 /**/
5708
54b1a90c9373 updated for version 7.4.199
Bram Moolenaar <bram@vim.org>
parents: 5706
diff changeset
3792 199,
54b1a90c9373 updated for version 7.4.199
Bram Moolenaar <bram@vim.org>
parents: 5706
diff changeset
3793 /**/
5706
705f398ce6f5 updated for version 7.4.198
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
3794 198,
705f398ce6f5 updated for version 7.4.198
Bram Moolenaar <bram@vim.org>
parents: 5704
diff changeset
3795 /**/
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 5702
diff changeset
3796 197,
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 5702
diff changeset
3797 /**/
5702
1ed6acdbfef5 updated for version 7.4.196
Bram Moolenaar <bram@vim.org>
parents: 5700
diff changeset
3798 196,
1ed6acdbfef5 updated for version 7.4.196
Bram Moolenaar <bram@vim.org>
parents: 5700
diff changeset
3799 /**/
5700
c2e88a40d530 updated for version 7.4.195
Bram Moolenaar <bram@vim.org>
parents: 5698
diff changeset
3800 195,
c2e88a40d530 updated for version 7.4.195
Bram Moolenaar <bram@vim.org>
parents: 5698
diff changeset
3801 /**/
5698
767103b5bcb0 updated for version 7.4.194
Bram Moolenaar <bram@vim.org>
parents: 5695
diff changeset
3802 194,
767103b5bcb0 updated for version 7.4.194
Bram Moolenaar <bram@vim.org>
parents: 5695
diff changeset
3803 /**/
5695
a8650e2a0b5a updated for version 7.4.193
Bram Moolenaar <bram@vim.org>
parents: 5693
diff changeset
3804 193,
a8650e2a0b5a updated for version 7.4.193
Bram Moolenaar <bram@vim.org>
parents: 5693
diff changeset
3805 /**/
5693
04c4ef8c0a1b updated for version 7.4.192
Bram Moolenaar <bram@vim.org>
parents: 5690
diff changeset
3806 192,
04c4ef8c0a1b updated for version 7.4.192
Bram Moolenaar <bram@vim.org>
parents: 5690
diff changeset
3807 /**/
5690
40f18a1c1592 updated for version 7.4.191
Bram Moolenaar <bram@vim.org>
parents: 5688
diff changeset
3808 191,
40f18a1c1592 updated for version 7.4.191
Bram Moolenaar <bram@vim.org>
parents: 5688
diff changeset
3809 /**/
5688
6050f52d7cd8 updated for version 7.4.190
Bram Moolenaar <bram@vim.org>
parents: 5686
diff changeset
3810 190,
6050f52d7cd8 updated for version 7.4.190
Bram Moolenaar <bram@vim.org>
parents: 5686
diff changeset
3811 /**/
5686
0a9990bbd94a updated for version 7.4.189
Bram Moolenaar <bram@vim.org>
parents: 5684
diff changeset
3812 189,
0a9990bbd94a updated for version 7.4.189
Bram Moolenaar <bram@vim.org>
parents: 5684
diff changeset
3813 /**/
5684
136f05449f29 updated for version 7.4.188
Bram Moolenaar <bram@vim.org>
parents: 5682
diff changeset
3814 188,
136f05449f29 updated for version 7.4.188
Bram Moolenaar <bram@vim.org>
parents: 5682
diff changeset
3815 /**/
5682
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5680
diff changeset
3816 187,
a1c07956171a updated for version 7.4.187
Bram Moolenaar <bram@vim.org>
parents: 5680
diff changeset
3817 /**/
5680
4d12112c5efa updated for version 7.4.186
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
3818 186,
4d12112c5efa updated for version 7.4.186
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
3819 /**/
5678
b06e58f8dd30 updated for version 7.4.185
Bram Moolenaar <bram@vim.org>
parents: 5676
diff changeset
3820 185,
b06e58f8dd30 updated for version 7.4.185
Bram Moolenaar <bram@vim.org>
parents: 5676
diff changeset
3821 /**/
5676
9ac2fc63501d updated for version 7.4.184
Bram Moolenaar <bram@vim.org>
parents: 5674
diff changeset
3822 184,
9ac2fc63501d updated for version 7.4.184
Bram Moolenaar <bram@vim.org>
parents: 5674
diff changeset
3823 /**/
5674
1e2bfe4f3e90 updated for version 7.4.183
Bram Moolenaar <bram@vim.org>
parents: 5672
diff changeset
3824 183,
1e2bfe4f3e90 updated for version 7.4.183
Bram Moolenaar <bram@vim.org>
parents: 5672
diff changeset
3825 /**/
5672
708a6a590521 updated for version 7.4.182
Bram Moolenaar <bram@vim.org>
parents: 5670
diff changeset
3826 182,
708a6a590521 updated for version 7.4.182
Bram Moolenaar <bram@vim.org>
parents: 5670
diff changeset
3827 /**/
5670
cb5683bcde03 updated for version 7.4.181
Bram Moolenaar <bram@vim.org>
parents: 5668
diff changeset
3828 181,
cb5683bcde03 updated for version 7.4.181
Bram Moolenaar <bram@vim.org>
parents: 5668
diff changeset
3829 /**/
5668
b1b8b097539a updated for version 7.4.180
Bram Moolenaar <bram@vim.org>
parents: 5666
diff changeset
3830 180,
b1b8b097539a updated for version 7.4.180
Bram Moolenaar <bram@vim.org>
parents: 5666
diff changeset
3831 /**/
5666
d1c8c1d64034 updated for version 7.4.179
Bram Moolenaar <bram@vim.org>
parents: 5664
diff changeset
3832 179,
d1c8c1d64034 updated for version 7.4.179
Bram Moolenaar <bram@vim.org>
parents: 5664
diff changeset
3833 /**/
5664
647e6bb15aa3 updated for version 7.4.178
Bram Moolenaar <bram@vim.org>
parents: 5661
diff changeset
3834 178,
647e6bb15aa3 updated for version 7.4.178
Bram Moolenaar <bram@vim.org>
parents: 5661
diff changeset
3835 /**/
5661
df3b0b70d8c1 updated for version 7.4.177
Bram Moolenaar <bram@vim.org>
parents: 5659
diff changeset
3836 177,
df3b0b70d8c1 updated for version 7.4.177
Bram Moolenaar <bram@vim.org>
parents: 5659
diff changeset
3837 /**/
5659
ae228baaec2c updated for version 7.4.176
Bram Moolenaar <bram@vim.org>
parents: 5657
diff changeset
3838 176,
ae228baaec2c updated for version 7.4.176
Bram Moolenaar <bram@vim.org>
parents: 5657
diff changeset
3839 /**/
5657
6b69d8dde19e updated for version 7.4.175
Bram Moolenaar <bram@vim.org>
parents: 5655
diff changeset
3840 175,
6b69d8dde19e updated for version 7.4.175
Bram Moolenaar <bram@vim.org>
parents: 5655
diff changeset
3841 /**/
5655
f2c8d86c460d updated for version 7.4.174
Bram Moolenaar <bram@vim.org>
parents: 5653
diff changeset
3842 174,
f2c8d86c460d updated for version 7.4.174
Bram Moolenaar <bram@vim.org>
parents: 5653
diff changeset
3843 /**/
5653
233ad7b960d0 updated for version 7.4.173
Bram Moolenaar <bram@vim.org>
parents: 5651
diff changeset
3844 173,
233ad7b960d0 updated for version 7.4.173
Bram Moolenaar <bram@vim.org>
parents: 5651
diff changeset
3845 /**/
5651
391e10afccf6 updated for version 7.4.172
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
3846 172,
391e10afccf6 updated for version 7.4.172
Bram Moolenaar <bram@vim.org>
parents: 5649
diff changeset
3847 /**/
5649
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5647
diff changeset
3848 171,
beb037a6c270 updated for version 7.4.171
Bram Moolenaar <bram@vim.org>
parents: 5647
diff changeset
3849 /**/
5647
8122eab8fcdb updated for version 7.4.170
Bram Moolenaar <bram@vim.org>
parents: 5645
diff changeset
3850 170,
8122eab8fcdb updated for version 7.4.170
Bram Moolenaar <bram@vim.org>
parents: 5645
diff changeset
3851 /**/
5645
4e3a9dd25d42 updated for version 7.4.169
Bram Moolenaar <bram@vim.org>
parents: 5643
diff changeset
3852 169,
4e3a9dd25d42 updated for version 7.4.169
Bram Moolenaar <bram@vim.org>
parents: 5643
diff changeset
3853 /**/
5643
e61a2b709f69 updated for version 7.4.168
Bram Moolenaar <bram@vim.org>
parents: 5641
diff changeset
3854 168,
e61a2b709f69 updated for version 7.4.168
Bram Moolenaar <bram@vim.org>
parents: 5641
diff changeset
3855 /**/
5641
22387c8eec43 updated for version 7.4.167
Bram Moolenaar <bram@vim.org>
parents: 5639
diff changeset
3856 167,
22387c8eec43 updated for version 7.4.167
Bram Moolenaar <bram@vim.org>
parents: 5639
diff changeset
3857 /**/
5639
5d03c3747121 updated for version 7.4.166
Bram Moolenaar <bram@vim.org>
parents: 5637
diff changeset
3858 166,
5d03c3747121 updated for version 7.4.166
Bram Moolenaar <bram@vim.org>
parents: 5637
diff changeset
3859 /**/
5637
c82339d8fdae updated for version 7.4.165
Bram Moolenaar <bram@vim.org>
parents: 5635
diff changeset
3860 165,
c82339d8fdae updated for version 7.4.165
Bram Moolenaar <bram@vim.org>
parents: 5635
diff changeset
3861 /**/
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
3862 164,
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
3863 /**/
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5631
diff changeset
3864 163,
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5631
diff changeset
3865 /**/
5631
477665b4105f updated for version 7.4.162
Bram Moolenaar <bram@vim.org>
parents: 5629
diff changeset
3866 162,
477665b4105f updated for version 7.4.162
Bram Moolenaar <bram@vim.org>
parents: 5629
diff changeset
3867 /**/
5629
91f3908748c2 updated for version 7.4.161
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
3868 161,
91f3908748c2 updated for version 7.4.161
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
3869 /**/
5627
f29febf858be updated for version 7.4.160
Bram Moolenaar <bram@vim.org>
parents: 5625
diff changeset
3870 160,
f29febf858be updated for version 7.4.160
Bram Moolenaar <bram@vim.org>
parents: 5625
diff changeset
3871 /**/
5625
a95a151402be updated for version 7.4.159
Bram Moolenaar <bram@vim.org>
parents: 5623
diff changeset
3872 159,
a95a151402be updated for version 7.4.159
Bram Moolenaar <bram@vim.org>
parents: 5623
diff changeset
3873 /**/
5623
d59544f3022b updated for version 7.4.158
Bram Moolenaar <bram@vim.org>
parents: 5621
diff changeset
3874 158,
d59544f3022b updated for version 7.4.158
Bram Moolenaar <bram@vim.org>
parents: 5621
diff changeset
3875 /**/
5621
be61f315eafe updated for version 7.4.157
Bram Moolenaar <bram@vim.org>
parents: 5619
diff changeset
3876 157,
be61f315eafe updated for version 7.4.157
Bram Moolenaar <bram@vim.org>
parents: 5619
diff changeset
3877 /**/
5619
05a5cb0d6b37 updated for version 7.4.156
Bram Moolenaar <bram@vim.org>
parents: 5616
diff changeset
3878 156,
05a5cb0d6b37 updated for version 7.4.156
Bram Moolenaar <bram@vim.org>
parents: 5616
diff changeset
3879 /**/
5616
fa53233519c6 updated for version 7.4.155
Bram Moolenaar <bram@vim.org>
parents: 5614
diff changeset
3880 155,
fa53233519c6 updated for version 7.4.155
Bram Moolenaar <bram@vim.org>
parents: 5614
diff changeset
3881 /**/
5614
71837ace77df updated for version 7.4.154
Bram Moolenaar <bram@vim.org>
parents: 5612
diff changeset
3882 154,
71837ace77df updated for version 7.4.154
Bram Moolenaar <bram@vim.org>
parents: 5612
diff changeset
3883 /**/
5612
30e300c0b2c1 updated for version 7.4.153
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
3884 153,
30e300c0b2c1 updated for version 7.4.153
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
3885 /**/
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5608
diff changeset
3886 152,
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5608
diff changeset
3887 /**/
5608
ec02e1474bc2 updated for version 7.4.151
Bram Moolenaar <bram@vim.org>
parents: 5606
diff changeset
3888 151,
ec02e1474bc2 updated for version 7.4.151
Bram Moolenaar <bram@vim.org>
parents: 5606
diff changeset
3889 /**/
5606
15960ebc2ee8 updated for version 7.4.150
Bram Moolenaar <bram@vim.org>
parents: 5604
diff changeset
3890 150,
15960ebc2ee8 updated for version 7.4.150
Bram Moolenaar <bram@vim.org>
parents: 5604
diff changeset
3891 /**/
5604
b43363a7b4c7 updated for version 7.4.149
Bram Moolenaar <bram@vim.org>
parents: 5602
diff changeset
3892 149,
b43363a7b4c7 updated for version 7.4.149
Bram Moolenaar <bram@vim.org>
parents: 5602
diff changeset
3893 /**/
5602
8507bf8874d8 updated for version 7.4.148
Bram Moolenaar <bram@vim.org>
parents: 5600
diff changeset
3894 148,
8507bf8874d8 updated for version 7.4.148
Bram Moolenaar <bram@vim.org>
parents: 5600
diff changeset
3895 /**/
5600
d289f2167d70 updated for version 7.4.147
Bram Moolenaar <bram@vim.org>
parents: 5598
diff changeset
3896 147,
d289f2167d70 updated for version 7.4.147
Bram Moolenaar <bram@vim.org>
parents: 5598
diff changeset
3897 /**/
5598
ec93f50f1d93 updated for version 7.4.146
Bram Moolenaar <bram@vim.org>
parents: 5596
diff changeset
3898 146,
ec93f50f1d93 updated for version 7.4.146
Bram Moolenaar <bram@vim.org>
parents: 5596
diff changeset
3899 /**/
5596
1098b7b6e147 updated for version 7.4.145
Bram Moolenaar <bram@vim.org>
parents: 5594
diff changeset
3900 145,
1098b7b6e147 updated for version 7.4.145
Bram Moolenaar <bram@vim.org>
parents: 5594
diff changeset
3901 /**/
5594
bcf25cc08236 updated for version 7.4.144
Bram Moolenaar <bram@vim.org>
parents: 5592
diff changeset
3902 144,
bcf25cc08236 updated for version 7.4.144
Bram Moolenaar <bram@vim.org>
parents: 5592
diff changeset
3903 /**/
5592
d11f223f4c75 updated for version 7.4.143
Bram Moolenaar <bram@vim.org>
parents: 5590
diff changeset
3904 143,
d11f223f4c75 updated for version 7.4.143
Bram Moolenaar <bram@vim.org>
parents: 5590
diff changeset
3905 /**/
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
3906 142,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
3907 /**/
5588
2ca470c6096e updated for version 7.4.141
Bram Moolenaar <bram@vim.org>
parents: 5586
diff changeset
3908 141,
2ca470c6096e updated for version 7.4.141
Bram Moolenaar <bram@vim.org>
parents: 5586
diff changeset
3909 /**/
5586
505cf1943dc2 updated for version 7.4.140
Bram Moolenaar <bram@vim.org>
parents: 5584
diff changeset
3910 140,
505cf1943dc2 updated for version 7.4.140
Bram Moolenaar <bram@vim.org>
parents: 5584
diff changeset
3911 /**/
5584
c8c80c9d2e22 updated for version 7.4.139
Bram Moolenaar <bram@vim.org>
parents: 5582
diff changeset
3912 139,
c8c80c9d2e22 updated for version 7.4.139
Bram Moolenaar <bram@vim.org>
parents: 5582
diff changeset
3913 /**/
5582
6eb60041548c updated for version 7.4.138
Bram Moolenaar <bram@vim.org>
parents: 5580
diff changeset
3914 138,
6eb60041548c updated for version 7.4.138
Bram Moolenaar <bram@vim.org>
parents: 5580
diff changeset
3915 /**/
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
3916 137,
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
3917 /**/
5578
3881cd916014 updated for version 7.4.136
Bram Moolenaar <bram@vim.org>
parents: 5575
diff changeset
3918 136,
3881cd916014 updated for version 7.4.136
Bram Moolenaar <bram@vim.org>
parents: 5575
diff changeset
3919 /**/
5575
1aeb7f4d6527 updated for version 7.4.135
Bram Moolenaar <bram@vim.org>
parents: 5573
diff changeset
3920 135,
1aeb7f4d6527 updated for version 7.4.135
Bram Moolenaar <bram@vim.org>
parents: 5573
diff changeset
3921 /**/
5573
0defb460a0eb updated for version 7.4.134
Bram Moolenaar <bram@vim.org>
parents: 5571
diff changeset
3922 134,
0defb460a0eb updated for version 7.4.134
Bram Moolenaar <bram@vim.org>
parents: 5571
diff changeset
3923 /**/
5571
6a28a9cf5153 updated for version 7.4.133
Bram Moolenaar <bram@vim.org>
parents: 5569
diff changeset
3924 133,
6a28a9cf5153 updated for version 7.4.133
Bram Moolenaar <bram@vim.org>
parents: 5569
diff changeset
3925 /**/
5569
1b09d6792520 updated for version 7.4.132
Bram Moolenaar <bram@vim.org>
parents: 5566
diff changeset
3926 132,
1b09d6792520 updated for version 7.4.132
Bram Moolenaar <bram@vim.org>
parents: 5566
diff changeset
3927 /**/
5566
4b23119cb584 updated for version 7.4.131
Bram Moolenaar <bram@vim.org>
parents: 5564
diff changeset
3928 131,
4b23119cb584 updated for version 7.4.131
Bram Moolenaar <bram@vim.org>
parents: 5564
diff changeset
3929 /**/
5564
cf722c092360 updated for version 7.4.130
Bram Moolenaar <bram@vim.org>
parents: 5562
diff changeset
3930 130,
cf722c092360 updated for version 7.4.130
Bram Moolenaar <bram@vim.org>
parents: 5562
diff changeset
3931 /**/
5562
1e28c0fad344 updated for version 7.4.129
Bram Moolenaar <bram@vim.org>
parents: 5560
diff changeset
3932 129,
1e28c0fad344 updated for version 7.4.129
Bram Moolenaar <bram@vim.org>
parents: 5560
diff changeset
3933 /**/
5560
4b92012f6b18 updated for version 7.4.128
Bram Moolenaar <bram@vim.org>
parents: 5558
diff changeset
3934 128,
4b92012f6b18 updated for version 7.4.128
Bram Moolenaar <bram@vim.org>
parents: 5558
diff changeset
3935 /**/
5558
6f5a7d394300 updated for version 7.4.127
Bram Moolenaar <bram@vim.org>
parents: 5556
diff changeset
3936 127,
6f5a7d394300 updated for version 7.4.127
Bram Moolenaar <bram@vim.org>
parents: 5556
diff changeset
3937 /**/
5556
b14554844756 updated for version 7.4.126
Bram Moolenaar <bram@vim.org>
parents: 5553
diff changeset
3938 126,
b14554844756 updated for version 7.4.126
Bram Moolenaar <bram@vim.org>
parents: 5553
diff changeset
3939 /**/
5553
45ef9d2096e8 updated for version 7.4.125
Bram Moolenaar <bram@vim.org>
parents: 5551
diff changeset
3940 125,
45ef9d2096e8 updated for version 7.4.125
Bram Moolenaar <bram@vim.org>
parents: 5551
diff changeset
3941 /**/
5551
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3942 124,
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3943 /**/
5549
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3944 123,
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3945 /**/
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5545
diff changeset
3946 122,
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5545
diff changeset
3947 /**/
5545
4bf53c1ef37a updated for version 7.4.121
Bram Moolenaar <bram@vim.org>
parents: 5543
diff changeset
3948 121,
4bf53c1ef37a updated for version 7.4.121
Bram Moolenaar <bram@vim.org>
parents: 5543
diff changeset
3949 /**/
5543
ca0e43bbf8f9 updated for version 7.4.120
Bram Moolenaar <bram@vim.org>
parents: 5541
diff changeset
3950 120,
ca0e43bbf8f9 updated for version 7.4.120
Bram Moolenaar <bram@vim.org>
parents: 5541
diff changeset
3951 /**/
5541
2f99966971b0 updated for version 7.4.119
Bram Moolenaar <bram@vim.org>
parents: 5539
diff changeset
3952 119,
2f99966971b0 updated for version 7.4.119
Bram Moolenaar <bram@vim.org>
parents: 5539
diff changeset
3953 /**/
5539
62c720661f81 updated for version 7.4.118
Bram Moolenaar <bram@vim.org>
parents: 5537
diff changeset
3954 118,
62c720661f81 updated for version 7.4.118
Bram Moolenaar <bram@vim.org>
parents: 5537
diff changeset
3955 /**/
5537
805ad8488dc8 updated for version 7.4.117
Bram Moolenaar <bram@vim.org>
parents: 5535
diff changeset
3956 117,
805ad8488dc8 updated for version 7.4.117
Bram Moolenaar <bram@vim.org>
parents: 5535
diff changeset
3957 /**/
5535
40aff213baff updated for version 7.4.116
Bram Moolenaar <bram@vim.org>
parents: 5533
diff changeset
3958 116,
40aff213baff updated for version 7.4.116
Bram Moolenaar <bram@vim.org>
parents: 5533
diff changeset
3959 /**/
5533
e35c69ad4823 updated for version 7.4.115
Bram Moolenaar <bram@vim.org>
parents: 5531
diff changeset
3960 115,
e35c69ad4823 updated for version 7.4.115
Bram Moolenaar <bram@vim.org>
parents: 5531
diff changeset
3961 /**/
5531
6db758f82227 updated for version 7.4.114
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
3962 114,
6db758f82227 updated for version 7.4.114
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
3963 /**/
5529
0e21e2a38ec6 updated for version 7.4.113
Bram Moolenaar <bram@vim.org>
parents: 5527
diff changeset
3964 113,
0e21e2a38ec6 updated for version 7.4.113
Bram Moolenaar <bram@vim.org>
parents: 5527
diff changeset
3965 /**/
5527
af8217e4ed7e updated for version 7.4.112
Bram Moolenaar <bram@vim.org>
parents: 5525
diff changeset
3966 112,
af8217e4ed7e updated for version 7.4.112
Bram Moolenaar <bram@vim.org>
parents: 5525
diff changeset
3967 /**/
5525
3fbda56bb200 updated for version 7.4.111
Bram Moolenaar <bram@vim.org>
parents: 5523
diff changeset
3968 111,
3fbda56bb200 updated for version 7.4.111
Bram Moolenaar <bram@vim.org>
parents: 5523
diff changeset
3969 /**/
5523
6e54d1b3408c updated for version 7.4.110
Bram Moolenaar <bram@vim.org>
parents: 5521
diff changeset
3970 110,
6e54d1b3408c updated for version 7.4.110
Bram Moolenaar <bram@vim.org>
parents: 5521
diff changeset
3971 /**/
5521
1cdf51706774 updated for version 7.4.109
Bram Moolenaar <bram@vim.org>
parents: 5519
diff changeset
3972 109,
1cdf51706774 updated for version 7.4.109
Bram Moolenaar <bram@vim.org>
parents: 5519
diff changeset
3973 /**/
5519
fa31c5b82424 updated for version 7.4.108
Bram Moolenaar <bram@vim.org>
parents: 5517
diff changeset
3974 108,
fa31c5b82424 updated for version 7.4.108
Bram Moolenaar <bram@vim.org>
parents: 5517
diff changeset
3975 /**/
5517
064e2a080e2e updated for version 7.4.107
Bram Moolenaar <bram@vim.org>
parents: 5515
diff changeset
3976 107,
064e2a080e2e updated for version 7.4.107
Bram Moolenaar <bram@vim.org>
parents: 5515
diff changeset
3977 /**/
5515
de9a01851ebd updated for version 7.4.106
Bram Moolenaar <bram@vim.org>
parents: 5513
diff changeset
3978 106,
de9a01851ebd updated for version 7.4.106
Bram Moolenaar <bram@vim.org>
parents: 5513
diff changeset
3979 /**/
5513
eed95874f30e updated for version 7.4.105
Bram Moolenaar <bram@vim.org>
parents: 5511
diff changeset
3980 105,
eed95874f30e updated for version 7.4.105
Bram Moolenaar <bram@vim.org>
parents: 5511
diff changeset
3981 /**/
5511
dd7d1a86b311 updated for version 7.4.104
Bram Moolenaar <bram@vim.org>
parents: 5508
diff changeset
3982 104,
dd7d1a86b311 updated for version 7.4.104
Bram Moolenaar <bram@vim.org>
parents: 5508
diff changeset
3983 /**/
5508
4db151014f93 updated for version 7.4.103
Bram Moolenaar <bram@vim.org>
parents: 5506
diff changeset
3984 103,
4db151014f93 updated for version 7.4.103
Bram Moolenaar <bram@vim.org>
parents: 5506
diff changeset
3985 /**/
5506
9417f4de27a2 updated for version 7.4.102
Bram Moolenaar <bram@vim.org>
parents: 5504
diff changeset
3986 102,
9417f4de27a2 updated for version 7.4.102
Bram Moolenaar <bram@vim.org>
parents: 5504
diff changeset
3987 /**/
5504
ec5d11403c19 updated for version 7.4.101
Bram Moolenaar <bram@vim.org>
parents: 5502
diff changeset
3988 101,
ec5d11403c19 updated for version 7.4.101
Bram Moolenaar <bram@vim.org>
parents: 5502
diff changeset
3989 /**/
5502
5ad60cd88339 updated for version 7.4.100
Bram Moolenaar <bram@vim.org>
parents: 5500
diff changeset
3990 100,
5ad60cd88339 updated for version 7.4.100
Bram Moolenaar <bram@vim.org>
parents: 5500
diff changeset
3991 /**/
5500
8451f643a13e updated for version 7.4.099
Bram Moolenaar <bram@vim.org>
parents: 5498
diff changeset
3992 99,
8451f643a13e updated for version 7.4.099
Bram Moolenaar <bram@vim.org>
parents: 5498
diff changeset
3993 /**/
5498
79a8bac614c0 updated for version 7.4.098
Bram Moolenaar <bram@vim.org>
parents: 5496
diff changeset
3994 98,
79a8bac614c0 updated for version 7.4.098
Bram Moolenaar <bram@vim.org>
parents: 5496
diff changeset
3995 /**/
5496
93c8296281dd updated for version 7.4.097
Bram Moolenaar <bram@vim.org>
parents: 5494
diff changeset
3996 97,
93c8296281dd updated for version 7.4.097
Bram Moolenaar <bram@vim.org>
parents: 5494
diff changeset
3997 /**/
5494
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5492
diff changeset
3998 96,
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5492
diff changeset
3999 /**/
5492
acbe5414cb7f updated for version 7.4.095
Bram Moolenaar <bram@vim.org>
parents: 5490
diff changeset
4000 95,
acbe5414cb7f updated for version 7.4.095
Bram Moolenaar <bram@vim.org>
parents: 5490
diff changeset
4001 /**/
5490
68b5f8abca93 updated for version 7.4.094
Bram Moolenaar <bram@vim.org>
parents: 5488
diff changeset
4002 94,
68b5f8abca93 updated for version 7.4.094
Bram Moolenaar <bram@vim.org>
parents: 5488
diff changeset
4003 /**/
5488
33f3e277ceab updated for version 7.4.093
Bram Moolenaar <bram@vim.org>
parents: 5485
diff changeset
4004 93,
33f3e277ceab updated for version 7.4.093
Bram Moolenaar <bram@vim.org>
parents: 5485
diff changeset
4005 /**/
5485
1b4cb2c6b285 updated for version 7.4.092
Bram Moolenaar <bram@vim.org>
parents: 5483
diff changeset
4006 92,
1b4cb2c6b285 updated for version 7.4.092
Bram Moolenaar <bram@vim.org>
parents: 5483
diff changeset
4007 /**/
5483
9502d1caf90b updated for version 7.4.091
Bram Moolenaar <bram@vim.org>
parents: 5481
diff changeset
4008 91,
9502d1caf90b updated for version 7.4.091
Bram Moolenaar <bram@vim.org>
parents: 5481
diff changeset
4009 /**/
5481
31217cc48e7d updated for version 7.4.090
Bram Moolenaar <bram@vim.org>
parents: 5479
diff changeset
4010 90,
31217cc48e7d updated for version 7.4.090
Bram Moolenaar <bram@vim.org>
parents: 5479
diff changeset
4011 /**/
5479
6707c44cec61 updated for version 7.4.089
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
4012 89,
6707c44cec61 updated for version 7.4.089
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
4013 /**/
5477
853a76c7fded updated for version 7.4.088
Bram Moolenaar <bram@vim.org>
parents: 5475
diff changeset
4014 88,
853a76c7fded updated for version 7.4.088
Bram Moolenaar <bram@vim.org>
parents: 5475
diff changeset
4015 /**/
5475
9334c994be7b updated for version 7.4.087
Bram Moolenaar <bram@vim.org>
parents: 5473
diff changeset
4016 87,
9334c994be7b updated for version 7.4.087
Bram Moolenaar <bram@vim.org>
parents: 5473
diff changeset
4017 /**/
5473
60a5b7b82016 updated for version 7.4.086
Bram Moolenaar <bram@vim.org>
parents: 5471
diff changeset
4018 86,
60a5b7b82016 updated for version 7.4.086
Bram Moolenaar <bram@vim.org>
parents: 5471
diff changeset
4019 /**/
5471
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5469
diff changeset
4020 85,
70c3289803b3 updated for version 7.4.085
Bram Moolenaar <bram@vim.org>
parents: 5469
diff changeset
4021 /**/
5469
a56f60cf6834 updated for version 7.4.084
Bram Moolenaar <bram@vim.org>
parents: 5467
diff changeset
4022 84,
a56f60cf6834 updated for version 7.4.084
Bram Moolenaar <bram@vim.org>
parents: 5467
diff changeset
4023 /**/
5467
6367a766027d updated for version 7.4.083
Bram Moolenaar <bram@vim.org>
parents: 5464
diff changeset
4024 83,
6367a766027d updated for version 7.4.083
Bram Moolenaar <bram@vim.org>
parents: 5464
diff changeset
4025 /**/
5464
9c777e2c7024 updated for version 7.4.082
Bram Moolenaar <bram@vim.org>
parents: 5462
diff changeset
4026 82,
9c777e2c7024 updated for version 7.4.082
Bram Moolenaar <bram@vim.org>
parents: 5462
diff changeset
4027 /**/
5462
42927712b3d9 updated for version 7.4.081
Bram Moolenaar <bram@vim.org>
parents: 5460
diff changeset
4028 81,
42927712b3d9 updated for version 7.4.081
Bram Moolenaar <bram@vim.org>
parents: 5460
diff changeset
4029 /**/
5460
c5166fa10464 updated for version 7.4.080
Bram Moolenaar <bram@vim.org>
parents: 5458
diff changeset
4030 80,
c5166fa10464 updated for version 7.4.080
Bram Moolenaar <bram@vim.org>
parents: 5458
diff changeset
4031 /**/
5458
6ae816249627 updated for version 7.4.079
Bram Moolenaar <bram@vim.org>
parents: 5456
diff changeset
4032 79,
6ae816249627 updated for version 7.4.079
Bram Moolenaar <bram@vim.org>
parents: 5456
diff changeset
4033 /**/
5456
5c3064feddd7 updated for version 7.4.078
Bram Moolenaar <bram@vim.org>
parents: 5454
diff changeset
4034 78,
5c3064feddd7 updated for version 7.4.078
Bram Moolenaar <bram@vim.org>
parents: 5454
diff changeset
4035 /**/
5454
53bc55e58fef updated for version 7.4.077
Bram Moolenaar <bram@vim.org>
parents: 5452
diff changeset
4036 77,
53bc55e58fef updated for version 7.4.077
Bram Moolenaar <bram@vim.org>
parents: 5452
diff changeset
4037 /**/
5452
8f0c264db1e7 updated for version 7.4.076
Bram Moolenaar <bram@vim.org>
parents: 5450
diff changeset
4038 76,
8f0c264db1e7 updated for version 7.4.076
Bram Moolenaar <bram@vim.org>
parents: 5450
diff changeset
4039 /**/
5450
829aa8c8449d updated for version 7.4.075
Bram Moolenaar <bram@vim.org>
parents: 5448
diff changeset
4040 75,
829aa8c8449d updated for version 7.4.075
Bram Moolenaar <bram@vim.org>
parents: 5448
diff changeset
4041 /**/
5448
9818311eeca0 updated for version 7.4.074
Bram Moolenaar <bram@vim.org>
parents: 5446
diff changeset
4042 74,
9818311eeca0 updated for version 7.4.074
Bram Moolenaar <bram@vim.org>
parents: 5446
diff changeset
4043 /**/
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5444
diff changeset
4044 73,
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5444
diff changeset
4045 /**/
5444
d563839a9be0 updated for version 7.4.072
Bram Moolenaar <bram@vim.org>
parents: 5442
diff changeset
4046 72,
d563839a9be0 updated for version 7.4.072
Bram Moolenaar <bram@vim.org>
parents: 5442
diff changeset
4047 /**/
5442
faf7e86203b5 updated for version 7.4.071
Bram Moolenaar <bram@vim.org>
parents: 5440
diff changeset
4048 71,
faf7e86203b5 updated for version 7.4.071
Bram Moolenaar <bram@vim.org>
parents: 5440
diff changeset
4049 /**/
5440
e6f3f66028d4 updated for version 7.4.070
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
4050 70,
e6f3f66028d4 updated for version 7.4.070
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
4051 /**/
5438
878ed73c7070 updated for version 7.4.069
Bram Moolenaar <bram@vim.org>
parents: 5436
diff changeset
4052 69,
878ed73c7070 updated for version 7.4.069
Bram Moolenaar <bram@vim.org>
parents: 5436
diff changeset
4053 /**/
5436
efa40be729c2 updated for version 7.4.068
Bram Moolenaar <bram@vim.org>
parents: 5434
diff changeset
4054 68,
efa40be729c2 updated for version 7.4.068
Bram Moolenaar <bram@vim.org>
parents: 5434
diff changeset
4055 /**/
5434
86bf09a1b6d0 updated for version 7.4.067
Bram Moolenaar <bram@vim.org>
parents: 5432
diff changeset
4056 67,
86bf09a1b6d0 updated for version 7.4.067
Bram Moolenaar <bram@vim.org>
parents: 5432
diff changeset
4057 /**/
5432
38b948f534e4 updated for version 7.4.066
Bram Moolenaar <bram@vim.org>
parents: 5430
diff changeset
4058 66,
38b948f534e4 updated for version 7.4.066
Bram Moolenaar <bram@vim.org>
parents: 5430
diff changeset
4059 /**/
5430
7f341db39d5b updated for version 7.4.065
Bram Moolenaar <bram@vim.org>
parents: 5428
diff changeset
4060 65,
7f341db39d5b updated for version 7.4.065
Bram Moolenaar <bram@vim.org>
parents: 5428
diff changeset
4061 /**/
5428
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5426
diff changeset
4062 64,
d06223965468 updated for version 7.4.064
Bram Moolenaar <bram@vim.org>
parents: 5426
diff changeset
4063 /**/
5426
9cedb4dfd4c8 updated for version 7.4.063
Bram Moolenaar <bram@vim.org>
parents: 5423
diff changeset
4064 63,
9cedb4dfd4c8 updated for version 7.4.063
Bram Moolenaar <bram@vim.org>
parents: 5423
diff changeset
4065 /**/
5423
d59a0b8e5584 updated for version 7.4.062
Bram Moolenaar <bram@vim.org>
parents: 5421
diff changeset
4066 62,
d59a0b8e5584 updated for version 7.4.062
Bram Moolenaar <bram@vim.org>
parents: 5421
diff changeset
4067 /**/
5421
739074bdceb8 updated for version 7.4.061
Bram Moolenaar <bram@vim.org>
parents: 5419
diff changeset
4068 61,
739074bdceb8 updated for version 7.4.061
Bram Moolenaar <bram@vim.org>
parents: 5419
diff changeset
4069 /**/
5419
46ca8fcee525 updated for version 7.4.060
Bram Moolenaar <bram@vim.org>
parents: 5417
diff changeset
4070 60,
46ca8fcee525 updated for version 7.4.060
Bram Moolenaar <bram@vim.org>
parents: 5417
diff changeset
4071 /**/
5417
2a72805a3038 updated for version 7.4.059
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
4072 59,
2a72805a3038 updated for version 7.4.059
Bram Moolenaar <bram@vim.org>
parents: 5415
diff changeset
4073 /**/
5415
fa8447ec5823 updated for version 7.4.058
Bram Moolenaar <bram@vim.org>
parents: 5413
diff changeset
4074 58,
fa8447ec5823 updated for version 7.4.058
Bram Moolenaar <bram@vim.org>
parents: 5413
diff changeset
4075 /**/
5413
3109053ce4e3 updated for version 7.4.057
Bram Moolenaar <bram@vim.org>
parents: 5411
diff changeset
4076 57,
3109053ce4e3 updated for version 7.4.057
Bram Moolenaar <bram@vim.org>
parents: 5411
diff changeset
4077 /**/
5411
8d83c219fc7b updated for version 7.4.056
Bram Moolenaar <bram@vim.org>
parents: 5409
diff changeset
4078 56,
8d83c219fc7b updated for version 7.4.056
Bram Moolenaar <bram@vim.org>
parents: 5409
diff changeset
4079 /**/
5409
38a755adc580 updated for version 7.4.055
Bram Moolenaar <bram@vim.org>
parents: 5407
diff changeset
4080 55,
38a755adc580 updated for version 7.4.055
Bram Moolenaar <bram@vim.org>
parents: 5407
diff changeset
4081 /**/
5407
7b760cda2bbf updated for version 7.4.054
Bram Moolenaar <bram@vim.org>
parents: 5405
diff changeset
4082 54,
7b760cda2bbf updated for version 7.4.054
Bram Moolenaar <bram@vim.org>
parents: 5405
diff changeset
4083 /**/
5405
733193bf24c3 updated for version 7.4.053
Bram Moolenaar <bram@vim.org>
parents: 5403
diff changeset
4084 53,
733193bf24c3 updated for version 7.4.053
Bram Moolenaar <bram@vim.org>
parents: 5403
diff changeset
4085 /**/
5403
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5401
diff changeset
4086 52,
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5401
diff changeset
4087 /**/
5401
e7a2f217a385 updated for version 7.4.051
Bram Moolenaar <bram@vim.org>
parents: 5398
diff changeset
4088 51,
e7a2f217a385 updated for version 7.4.051
Bram Moolenaar <bram@vim.org>
parents: 5398
diff changeset
4089 /**/
5398
eb33cadafcab updated for version 7.4.050
Bram Moolenaar <bram@vim.org>
parents: 5396
diff changeset
4090 50,
eb33cadafcab updated for version 7.4.050
Bram Moolenaar <bram@vim.org>
parents: 5396
diff changeset
4091 /**/
5396
15c1b8a20da6 updated for version 7.4.049
Bram Moolenaar <bram@vim.org>
parents: 5394
diff changeset
4092 49,
15c1b8a20da6 updated for version 7.4.049
Bram Moolenaar <bram@vim.org>
parents: 5394
diff changeset
4093 /**/
5394
31c9acfeda8f updated for version 7.4.048
Bram Moolenaar <bram@vim.org>
parents: 5392
diff changeset
4094 48,
31c9acfeda8f updated for version 7.4.048
Bram Moolenaar <bram@vim.org>
parents: 5392
diff changeset
4095 /**/
5392
c21b2f52f1dd updated for version 7.4.047
Bram Moolenaar <bram@vim.org>
parents: 5390
diff changeset
4096 47,
c21b2f52f1dd updated for version 7.4.047
Bram Moolenaar <bram@vim.org>
parents: 5390
diff changeset
4097 /**/
5390
68056d414f09 updated for version 7.4.046
Bram Moolenaar <bram@vim.org>
parents: 5388
diff changeset
4098 46,
68056d414f09 updated for version 7.4.046
Bram Moolenaar <bram@vim.org>
parents: 5388
diff changeset
4099 /**/
5388
8ced827b2e8b updated for version 7.4.045
Bram Moolenaar <bram@vim.org>
parents: 5386
diff changeset
4100 45,
8ced827b2e8b updated for version 7.4.045
Bram Moolenaar <bram@vim.org>
parents: 5386
diff changeset
4101 /**/
5386
c0e3990aed3f updated for version 7.4.044
Bram Moolenaar <bram@vim.org>
parents: 5384
diff changeset
4102 44,
c0e3990aed3f updated for version 7.4.044
Bram Moolenaar <bram@vim.org>
parents: 5384
diff changeset
4103 /**/
5384
6d11572e2c8b updated for version 7.4.043
Bram Moolenaar <bram@vim.org>
parents: 5382
diff changeset
4104 43,
6d11572e2c8b updated for version 7.4.043
Bram Moolenaar <bram@vim.org>
parents: 5382
diff changeset
4105 /**/
5382
70915ede509a updated for version 7.4.042
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
4106 42,
70915ede509a updated for version 7.4.042
Bram Moolenaar <bram@vim.org>
parents: 5380
diff changeset
4107 /**/
5380
408f2a1a953f updated for version 7.4.041
Bram Moolenaar <bram@vim.org>
parents: 5378
diff changeset
4108 41,
408f2a1a953f updated for version 7.4.041
Bram Moolenaar <bram@vim.org>
parents: 5378
diff changeset
4109 /**/
5378
8336fd924e05 updated for version 7.4.040
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
4110 40,
8336fd924e05 updated for version 7.4.040
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
4111 /**/
5376
4dfba3df303c updated for version 7.4.039
Bram Moolenaar <bram@vim.org>
parents: 5374
diff changeset
4112 39,
4dfba3df303c updated for version 7.4.039
Bram Moolenaar <bram@vim.org>
parents: 5374
diff changeset
4113 /**/
5374
6daa78b6b99a updated for version 7.4.038
Bram Moolenaar <bram@vim.org>
parents: 5372
diff changeset
4114 38,
6daa78b6b99a updated for version 7.4.038
Bram Moolenaar <bram@vim.org>
parents: 5372
diff changeset
4115 /**/
5372
c3d379c2a115 updated for version 7.4.037
Bram Moolenaar <bram@vim.org>
parents: 5370
diff changeset
4116 37,
c3d379c2a115 updated for version 7.4.037
Bram Moolenaar <bram@vim.org>
parents: 5370
diff changeset
4117 /**/
5370
90e2f0729a0d updated for version 7.4.036
Bram Moolenaar <bram@vim.org>
parents: 5367
diff changeset
4118 36,
90e2f0729a0d updated for version 7.4.036
Bram Moolenaar <bram@vim.org>
parents: 5367
diff changeset
4119 /**/
5367
5481f188dcbb updated for version 7.4.035
Bram Moolenaar <bram@vim.org>
parents: 5365
diff changeset
4120 35,
5481f188dcbb updated for version 7.4.035
Bram Moolenaar <bram@vim.org>
parents: 5365
diff changeset
4121 /**/
5365
22dfcd1494e4 updated for version 7.4.034
Bram Moolenaar <bram@vim.org>
parents: 5363
diff changeset
4122 34,
22dfcd1494e4 updated for version 7.4.034
Bram Moolenaar <bram@vim.org>
parents: 5363
diff changeset
4123 /**/
5363
91f6a28e010d updated for version 7.4.033
Bram Moolenaar <bram@vim.org>
parents: 5360
diff changeset
4124 33,
91f6a28e010d updated for version 7.4.033
Bram Moolenaar <bram@vim.org>
parents: 5360
diff changeset
4125 /**/
5360
71e92a1cb37d updated for version 7.4.032
Bram Moolenaar <bram@vim.org>
parents: 5358
diff changeset
4126 32,
71e92a1cb37d updated for version 7.4.032
Bram Moolenaar <bram@vim.org>
parents: 5358
diff changeset
4127 /**/
5358
b21b5dcdca21 updated for version 7.4.031
Bram Moolenaar <bram@vim.org>
parents: 5356
diff changeset
4128 31,
b21b5dcdca21 updated for version 7.4.031
Bram Moolenaar <bram@vim.org>
parents: 5356
diff changeset
4129 /**/
5356
0978e99043d2 updated for version 7.4.030
Bram Moolenaar <bram@vim.org>
parents: 5353
diff changeset
4130 30,
0978e99043d2 updated for version 7.4.030
Bram Moolenaar <bram@vim.org>
parents: 5353
diff changeset
4131 /**/
5353
2d3fbc68b3a8 updated for version 7.4.029
Bram Moolenaar <bram@vim.org>
parents: 5351
diff changeset
4132 29,
2d3fbc68b3a8 updated for version 7.4.029
Bram Moolenaar <bram@vim.org>
parents: 5351
diff changeset
4133 /**/
5351
923738744a60 updated for version 7.4.028
Bram Moolenaar <bram@vim.org>
parents: 5349
diff changeset
4134 28,
923738744a60 updated for version 7.4.028
Bram Moolenaar <bram@vim.org>
parents: 5349
diff changeset
4135 /**/
5349
73cc7272de5e updated for version 7.4.027
Bram Moolenaar <bram@vim.org>
parents: 5347
diff changeset
4136 27,
73cc7272de5e updated for version 7.4.027
Bram Moolenaar <bram@vim.org>
parents: 5347
diff changeset
4137 /**/
5347
6bbb2ae990c9 updated for version 7.4.026
Bram Moolenaar <bram@vim.org>
parents: 5345
diff changeset
4138 26,
6bbb2ae990c9 updated for version 7.4.026
Bram Moolenaar <bram@vim.org>
parents: 5345
diff changeset
4139 /**/
5345
9085d32d7424 updated for version 7.4.025
Bram Moolenaar <bram@vim.org>
parents: 5343
diff changeset
4140 25,
9085d32d7424 updated for version 7.4.025
Bram Moolenaar <bram@vim.org>
parents: 5343
diff changeset
4141 /**/
5343
00d61a47df66 updated for version 7.4.024
Bram Moolenaar <bram@vim.org>
parents: 5341
diff changeset
4142 24,
00d61a47df66 updated for version 7.4.024
Bram Moolenaar <bram@vim.org>
parents: 5341
diff changeset
4143 /**/
5341
09361f13580b updated for version 7.4.023
Bram Moolenaar <bram@vim.org>
parents: 5338
diff changeset
4144 23,
09361f13580b updated for version 7.4.023
Bram Moolenaar <bram@vim.org>
parents: 5338
diff changeset
4145 /**/
5338
965044860b7f updated for version 7.4.022
Bram Moolenaar <bram@vim.org>
parents: 5336
diff changeset
4146 22,
965044860b7f updated for version 7.4.022
Bram Moolenaar <bram@vim.org>
parents: 5336
diff changeset
4147 /**/
5336
c514693882b9 updated for version 7.4.021
Bram Moolenaar <bram@vim.org>
parents: 5334
diff changeset
4148 21,
c514693882b9 updated for version 7.4.021
Bram Moolenaar <bram@vim.org>
parents: 5334
diff changeset
4149 /**/
5334
c1ae5baa41f4 updated for version 7.4.020
Bram Moolenaar <bram@vim.org>
parents: 5332
diff changeset
4150 20,
c1ae5baa41f4 updated for version 7.4.020
Bram Moolenaar <bram@vim.org>
parents: 5332
diff changeset
4151 /**/
5332
d5eb32dc231c updated for version 7.4.019
Bram Moolenaar <bram@vim.org>
parents: 5330
diff changeset
4152 19,
d5eb32dc231c updated for version 7.4.019
Bram Moolenaar <bram@vim.org>
parents: 5330
diff changeset
4153 /**/
5330
460d5be9395e updated for version 7.4.018
Bram Moolenaar <bram@vim.org>
parents: 5328
diff changeset
4154 18,
460d5be9395e updated for version 7.4.018
Bram Moolenaar <bram@vim.org>
parents: 5328
diff changeset
4155 /**/
5328
c47c8cd5fe5c updated for version 7.4.017
Bram Moolenaar <bram@vim.org>
parents: 5326
diff changeset
4156 17,
c47c8cd5fe5c updated for version 7.4.017
Bram Moolenaar <bram@vim.org>
parents: 5326
diff changeset
4157 /**/
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
4158 16,
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
4159 /**/
5324
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5322
diff changeset
4160 15,
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5322
diff changeset
4161 /**/
5322
9801d06e7b4c updated for version 7.4.014
Bram Moolenaar <bram@vim.org>
parents: 5320
diff changeset
4162 14,
9801d06e7b4c updated for version 7.4.014
Bram Moolenaar <bram@vim.org>
parents: 5320
diff changeset
4163 /**/
5320
07737d3aa817 updated for version 7.4.013
Bram Moolenaar <bram@vim.org>
parents: 5318
diff changeset
4164 13,
07737d3aa817 updated for version 7.4.013
Bram Moolenaar <bram@vim.org>
parents: 5318
diff changeset
4165 /**/
5318
8e28c23e482c updated for version 7.4.012
Bram Moolenaar <bram@vim.org>
parents: 5316
diff changeset
4166 12,
8e28c23e482c updated for version 7.4.012
Bram Moolenaar <bram@vim.org>
parents: 5316
diff changeset
4167 /**/
5316
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
4168 11,
54e66395831c updated for version 7.4.011
Bram Moolenaar <bram@vim.org>
parents: 5314
diff changeset
4169 /**/
5314
bb358cc41d92 updated for version 7.4.010
Bram Moolenaar <bram@vim.org>
parents: 5312
diff changeset
4170 10,
bb358cc41d92 updated for version 7.4.010
Bram Moolenaar <bram@vim.org>
parents: 5312
diff changeset
4171 /**/
5312
8b5d80861c5e updated for version 7.4.009
Bram Moolenaar <bram@vim.org>
parents: 5310
diff changeset
4172 9,
8b5d80861c5e updated for version 7.4.009
Bram Moolenaar <bram@vim.org>
parents: 5310
diff changeset
4173 /**/
5310
b04bdb2c5fce updated for version 7.4.008
Bram Moolenaar <bram@vim.org>
parents: 5308
diff changeset
4174 8,
b04bdb2c5fce updated for version 7.4.008
Bram Moolenaar <bram@vim.org>
parents: 5308
diff changeset
4175 /**/
5308
4fe1dfc7014e updated for version 7.4.007
Bram Moolenaar <bram@vim.org>
parents: 5306
diff changeset
4176 7,
4fe1dfc7014e updated for version 7.4.007
Bram Moolenaar <bram@vim.org>
parents: 5306
diff changeset
4177 /**/
5306
2374a05efe20 updated for version 7.4.006
Bram Moolenaar <bram@vim.org>
parents: 5304
diff changeset
4178 6,
2374a05efe20 updated for version 7.4.006
Bram Moolenaar <bram@vim.org>
parents: 5304
diff changeset
4179 /**/
5304
3640cf4c0d4b updated for version 7.4.005
Bram Moolenaar <bram@vim.org>
parents: 5302
diff changeset
4180 5,
3640cf4c0d4b updated for version 7.4.005
Bram Moolenaar <bram@vim.org>
parents: 5302
diff changeset
4181 /**/
5302
f6247eaf4e1d updated for version 7.4.004
Bram Moolenaar <bram@vim.org>
parents: 5300
diff changeset
4182 4,
f6247eaf4e1d updated for version 7.4.004
Bram Moolenaar <bram@vim.org>
parents: 5300
diff changeset
4183 /**/
5300
560a6a232950 updated for version 7.4.003
Bram Moolenaar <bram@vim.org>
parents: 5298
diff changeset
4184 3,
560a6a232950 updated for version 7.4.003
Bram Moolenaar <bram@vim.org>
parents: 5298
diff changeset
4185 /**/
5298
e29f11399cce updated for version 7.4.002
Bram Moolenaar <bram@vim.org>
parents: 5296
diff changeset
4186 2,
e29f11399cce updated for version 7.4.002
Bram Moolenaar <bram@vim.org>
parents: 5296
diff changeset
4187 /**/
5296
3e9107b86b68 updated for version 7.4.001
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
4188 1,
3e9107b86b68 updated for version 7.4.001
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
4189 /**/
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4190 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4191 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4192
1760
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4193 /*
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4194 * Place to put a short description when adding a feature with a patch.
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4195 * Keep it short, e.g.,: "relative numbers", "persistent undo".
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4196 * Also add a comment marker to separate the lines.
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4197 * See the official Vim patches for the diff format: It must use a context of
1777
7209e03df100 updated for version 7.2-075
vimboss
parents: 1776
diff changeset
4198 * one line only. Create it by hand or use "diff -C2" and edit the patch.
1760
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4199 */
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4200 static char *(extra_patches[]) =
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4201 { /* Add your patch description below this line */
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4202 /**/
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4203 NULL
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4204 };
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4205
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4206 int
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4207 highest_patch(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4208 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4209 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4210 int h = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4211
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4212 for (i = 0; included_patches[i] != 0; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4213 if (included_patches[i] > h)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4214 h = included_patches[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4215 return h;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4216 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4217
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4218 #if defined(FEAT_EVAL) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4219 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4220 * Return TRUE if patch "n" has been included.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4221 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4222 int
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4223 has_patch(int n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4224 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4225 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4226
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4227 for (i = 0; included_patches[i] != 0; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4228 if (included_patches[i] == n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4229 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4230 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4231 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4232 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4233
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4234 void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4235 ex_version(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4236 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4237 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4238 * Ignore a ":version 9.99" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4239 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4240 if (*eap->arg == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4241 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4242 msg_putchar('\n');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4243 list_version();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4244 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4245 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4246
4147
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4247 /*
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4248 * List all features aligned in columns, dictionary style.
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4249 */
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4250 static void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4251 list_features(void)
4147
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4252 {
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4253 int i;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4254 int ncol;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4255 int nrow;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4256 int nfeat = 0;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4257 int width = 0;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4258
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4259 /* Find the length of the longest feature name, use that + 1 as the column
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4260 * width */
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4261 for (i = 0; features[i] != NULL; ++i)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4262 {
4160
670e576a58d1 updated for version 7.3.832
Bram Moolenaar <bram@vim.org>
parents: 4157
diff changeset
4263 int l = (int)STRLEN(features[i]);
4147
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4264
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4265 if (l > width)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4266 width = l;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4267 ++nfeat;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4268 }
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4269 width += 1;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4270
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4271 if (Columns < width)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4272 {
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4273 /* Not enough screen columns - show one per line */
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4274 for (i = 0; features[i] != NULL; ++i)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4275 {
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4276 version_msg(features[i]);
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4277 if (msg_col > 0)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4278 msg_putchar('\n');
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4279 }
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4280 return;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4281 }
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4282
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4283 /* The rightmost column doesn't need a separator.
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4284 * Sacrifice it to fit in one more column if possible. */
4170
14698f63de8d updated for version 7.3.837
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4285 ncol = (int) (Columns + 1) / width;
4147
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4286 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0);
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4287
4170
14698f63de8d updated for version 7.3.837
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4288 /* i counts columns then rows. idx counts rows then columns. */
4147
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4289 for (i = 0; !got_int && i < nrow * ncol; ++i)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4290 {
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4291 int idx = (i / ncol) + (i % ncol) * nrow;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4292
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4293 if (idx < nfeat)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4294 {
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4295 int last_col = (i + 1) % ncol == 0;
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4296
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4297 msg_puts((char_u *)features[idx]);
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4298 if (last_col)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4299 {
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4300 if (msg_col > 0)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4301 msg_putchar('\n');
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4302 }
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4303 else
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4304 {
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4305 while (msg_col % width)
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4306 msg_putchar(' ');
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4307 }
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4308 }
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4309 else
4170
14698f63de8d updated for version 7.3.837
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4310 {
14698f63de8d updated for version 7.3.837
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4311 if (msg_col > 0)
14698f63de8d updated for version 7.3.837
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4312 msg_putchar('\n');
14698f63de8d updated for version 7.3.837
Bram Moolenaar <bram@vim.org>
parents: 4168
diff changeset
4313 }
4147
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4314 }
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4315 }
4160
670e576a58d1 updated for version 7.3.832
Bram Moolenaar <bram@vim.org>
parents: 4157
diff changeset
4316
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4317 void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4318 list_version(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4319 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4320 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4321 int first;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4322 char *s = "";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4323
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4324 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4325 * When adding features here, don't forget to update the list of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4326 * internal variables in eval.c!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4327 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4328 MSG(longVersion);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4329 #ifdef WIN3264
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4330 # ifdef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4331 # if defined(_MSC_VER) && (_MSC_VER <= 1010)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4332 /* Only MS VC 4.1 and earlier can do Win32s */
1607
4f1130893a1c updated for version 7.1-320
vimboss
parents: 1606
diff changeset
4333 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4334 # else
990
9adbd26f7fee updated for version 7.0-116
vimboss
parents: 989
diff changeset
4335 # ifdef _WIN64
1607
4f1130893a1c updated for version 7.1-320
vimboss
parents: 1606
diff changeset
4336 MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
990
9adbd26f7fee updated for version 7.0-116
vimboss
parents: 989
diff changeset
4337 # else
1607
4f1130893a1c updated for version 7.1-320
vimboss
parents: 1606
diff changeset
4338 MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
990
9adbd26f7fee updated for version 7.0-116
vimboss
parents: 989
diff changeset
4339 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4340 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4341 if (gui_is_win32s())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4342 MSG_PUTS(_(" in Win32s mode"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4343 # ifdef FEAT_OLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4344 MSG_PUTS(_(" with OLE support"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4345 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4346 # else
1607
4f1130893a1c updated for version 7.1-320
vimboss
parents: 1606
diff changeset
4347 # ifdef _WIN64
4f1130893a1c updated for version 7.1-320
vimboss
parents: 1606
diff changeset
4348 MSG_PUTS(_("\nMS-Windows 64-bit console version"));
4f1130893a1c updated for version 7.1-320
vimboss
parents: 1606
diff changeset
4349 # else
4f1130893a1c updated for version 7.1-320
vimboss
parents: 1606
diff changeset
4350 MSG_PUTS(_("\nMS-Windows 32-bit console version"));
4f1130893a1c updated for version 7.1-320
vimboss
parents: 1606
diff changeset
4351 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4352 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4353 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4354 #ifdef MACOS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4355 # ifdef MACOS_X
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4356 # ifdef MACOS_X_UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4357 MSG_PUTS(_("\nMacOS X (unix) version"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4358 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4359 MSG_PUTS(_("\nMacOS X version"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4360 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4361 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4362 MSG_PUTS(_("\nMacOS version"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4363 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4364 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4365
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4366 #ifdef VMS
1705
5b43a3a9454a updated for version 7.2-003
vimboss
parents: 1704
diff changeset
4367 MSG_PUTS(_("\nOpenVMS version"));
1045
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 1044
diff changeset
4368 # ifdef HAVE_PATHDEF
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 1044
diff changeset
4369 if (*compiled_arch != NUL)
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 1044
diff changeset
4370 {
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 1044
diff changeset
4371 MSG_PUTS(" - ");
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 1044
diff changeset
4372 MSG_PUTS(compiled_arch);
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 1044
diff changeset
4373 }
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 1044
diff changeset
4374 # endif
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 1044
diff changeset
4375
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4376 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4377
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4378 /* Print the list of patch numbers if there is at least one. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4379 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4380 if (included_patches[0] != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4381 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4382 MSG_PUTS(_("\nIncluded patches: "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4383 first = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4384 /* find last one */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4385 for (i = 0; included_patches[i] != 0; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4386 ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4387 while (--i >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4388 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4389 if (first < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4390 first = included_patches[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4391 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4392 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4393 MSG_PUTS(s);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4394 s = ", ";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4395 msg_outnum((long)first);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4396 if (first != included_patches[i])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4397 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4398 MSG_PUTS("-");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4399 msg_outnum((long)included_patches[i]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4400 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4401 first = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4402 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4403 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4404 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4405
1760
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4406 /* Print the list of extra patch descriptions if there is at least one. */
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4407 if (extra_patches[0] != NULL)
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4408 {
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4409 MSG_PUTS(_("\nExtra patches: "));
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4410 s = "";
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4411 for (i = 0; extra_patches[i] != NULL; ++i)
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4412 {
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4413 MSG_PUTS(s);
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4414 s = ", ";
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4415 MSG_PUTS(extra_patches[i]);
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4416 }
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4417 }
f3d3545d6bf6 updated for version 7.2-058
vimboss
parents: 1759
diff changeset
4418
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4419 #ifdef MODIFIED_BY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4420 MSG_PUTS("\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4421 MSG_PUTS(_("Modified by "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4422 MSG_PUTS(MODIFIED_BY);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4423 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4424
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4425 #ifdef HAVE_PATHDEF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4426 if (*compiled_user != NUL || *compiled_sys != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4427 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4428 MSG_PUTS(_("\nCompiled "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4429 if (*compiled_user != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4430 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4431 MSG_PUTS(_("by "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4432 MSG_PUTS(compiled_user);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4433 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4434 if (*compiled_sys != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4435 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4436 MSG_PUTS("@");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4437 MSG_PUTS(compiled_sys);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4438 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4439 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4440 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4441
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4442 #ifdef FEAT_HUGE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4443 MSG_PUTS(_("\nHuge version "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4444 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4445 # ifdef FEAT_BIG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4446 MSG_PUTS(_("\nBig version "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4447 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4448 # ifdef FEAT_NORMAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4449 MSG_PUTS(_("\nNormal version "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4450 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4451 # ifdef FEAT_SMALL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4452 MSG_PUTS(_("\nSmall version "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4453 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4454 MSG_PUTS(_("\nTiny version "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4455 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4456 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4457 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4458 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4459 #ifndef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4460 MSG_PUTS(_("without GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4461 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4462 # ifdef FEAT_GUI_GTK
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
4463 # ifdef USE_GTK3
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
4464 MSG_PUTS(_("with GTK3 GUI."));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4465 # else
8218
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
4466 # ifdef FEAT_GUI_GNOME
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
4467 MSG_PUTS(_("with GTK2-GNOME GUI."));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
4468 # else
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
4469 MSG_PUTS(_("with GTK2 GUI."));
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
4470 # endif
3456e2ebebd4 commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents: 8216
diff changeset
4471 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4472 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4473 # ifdef FEAT_GUI_MOTIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4474 MSG_PUTS(_("with X11-Motif GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4475 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4476 # ifdef FEAT_GUI_ATHENA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4477 # ifdef FEAT_GUI_NEXTAW
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4478 MSG_PUTS(_("with X11-neXtaw GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4479 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4480 MSG_PUTS(_("with X11-Athena GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4481 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4482 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4483 # ifdef FEAT_GUI_PHOTON
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4484 MSG_PUTS(_("with Photon GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4485 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4486 # if defined(MSWIN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4487 MSG_PUTS(_("with GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4488 # else
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
4489 # if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4490 MSG_PUTS(_("with Carbon GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4491 # else
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
4492 # if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4493 MSG_PUTS(_("with Cocoa GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4494 # else
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2214
diff changeset
4495 # if defined(MACOS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4496 MSG_PUTS(_("with (classic) GUI."));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4497 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4498 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4499 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4500 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4501 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4502 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4503 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4504 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4505 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4506 version_msg(_(" Features included (+) or not (-):\n"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4507
4147
646cb6b6ff23 updated for version 7.3.826
Bram Moolenaar <bram@vim.org>
parents: 4145
diff changeset
4508 list_features();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4509
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4510 #ifdef SYS_VIMRC_FILE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4511 version_msg(_(" system vimrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4512 version_msg(SYS_VIMRC_FILE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4513 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4514 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4515 #ifdef USR_VIMRC_FILE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4516 version_msg(_(" user vimrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4517 version_msg(USR_VIMRC_FILE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4518 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4519 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4520 #ifdef USR_VIMRC_FILE2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4521 version_msg(_(" 2nd user vimrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4522 version_msg(USR_VIMRC_FILE2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4523 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4524 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4525 #ifdef USR_VIMRC_FILE3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4526 version_msg(_(" 3rd user vimrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4527 version_msg(USR_VIMRC_FILE3);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4528 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4529 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4530 #ifdef USR_EXRC_FILE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4531 version_msg(_(" user exrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4532 version_msg(USR_EXRC_FILE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4533 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4534 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4535 #ifdef USR_EXRC_FILE2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4536 version_msg(_(" 2nd user exrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4537 version_msg(USR_EXRC_FILE2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4538 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4539 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4540 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4541 # ifdef SYS_GVIMRC_FILE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4542 version_msg(_(" system gvimrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4543 version_msg(SYS_GVIMRC_FILE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4544 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4545 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4546 version_msg(_(" user gvimrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4547 version_msg(USR_GVIMRC_FILE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4548 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4549 # ifdef USR_GVIMRC_FILE2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4550 version_msg(_("2nd user gvimrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4551 version_msg(USR_GVIMRC_FILE2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4552 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4553 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4554 # ifdef USR_GVIMRC_FILE3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4555 version_msg(_("3rd user gvimrc file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4556 version_msg(USR_GVIMRC_FILE3);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4557 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4558 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4559 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4560 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4561 # ifdef SYS_MENU_FILE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4562 version_msg(_(" system menu file: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4563 version_msg(SYS_MENU_FILE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4564 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4565 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4566 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4567 #ifdef HAVE_PATHDEF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4568 if (*default_vim_dir != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4569 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4570 version_msg(_(" fall-back for $VIM: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4571 version_msg((char *)default_vim_dir);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4572 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4573 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4574 if (*default_vimruntime_dir != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4575 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4576 version_msg(_(" f-b for $VIMRUNTIME: \""));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4577 version_msg((char *)default_vimruntime_dir);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4578 version_msg("\"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4579 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4580 version_msg(_("Compilation: "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4581 version_msg((char *)all_cflags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4582 version_msg("\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4583 #ifdef VMS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4584 if (*compiler_version != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4585 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4586 version_msg(_("Compiler: "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4587 version_msg((char *)compiler_version);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4588 version_msg("\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4589 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4590 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4591 version_msg(_("Linking: "));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4592 version_msg((char *)all_lflags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4593 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4594 #ifdef DEBUG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4595 version_msg("\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4596 version_msg(_(" DEBUG BUILD"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4597 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4598 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4599
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4600 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4601 * Output a string for the version message. If it's going to wrap, output a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4602 * newline, unless the message is too long to fit on the screen anyway.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4603 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4604 static void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4605 version_msg(char *s)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4606 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4607 int len = (int)STRLEN(s);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4608
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4609 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4610 && *s != '\n')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4611 msg_putchar('\n');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4612 if (!got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4613 MSG_PUTS(s);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4614 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4615
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
4616 static void do_intro_line(int row, char_u *mesg, int add_version, int attr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4617
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4618 /*
5126
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4619 * Show the intro message when not editing a file.
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4620 */
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4621 void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4622 maybe_intro_message(void)
5126
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4623 {
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4624 if (bufempty()
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4625 && curbuf->b_fname == NULL
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4626 #ifdef FEAT_WINDOWS
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4627 && firstwin->w_next == NULL
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4628 #endif
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4629 && vim_strchr(p_shm, SHM_INTRO) == NULL)
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4630 intro_message(FALSE);
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4631 }
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4632
71859e71b1f9 updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents: 5124
diff changeset
4633 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4634 * Give an introductory message about Vim.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4635 * Only used when starting Vim on an empty file, without a file name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4636 * Or with the ":intro" command (for Sven :-).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4637 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4638 void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4639 intro_message(
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4640 int colon) /* TRUE for ":intro" */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4641 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4642 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4643 int row;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4644 int blanklines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4645 int sponsor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4646 char *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4647 static char *(lines[]) =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4648 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4649 N_("VIM - Vi IMproved"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4650 "",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4651 N_("version "),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4652 N_("by Bram Moolenaar et al."),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4653 #ifdef MODIFIED_BY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4654 " ",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4655 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4656 N_("Vim is open source and freely distributable"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4657 "",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4658 N_("Help poor children in Uganda!"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4659 N_("type :help iccf<Enter> for information "),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4660 "",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4661 N_("type :q<Enter> to exit "),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4662 N_("type :help<Enter> or <F1> for on-line help"),
26
404aac550f35 updated for version 7.0017
vimboss
parents: 14
diff changeset
4663 N_("type :help version7<Enter> for version info"),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4664 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4665 "",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4666 N_("Running in Vi compatible mode"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4667 N_("type :set nocp<Enter> for Vim defaults"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4668 N_("type :help cp-default<Enter> for info on this"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4669 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4670 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4671 static char *(gui_lines[]) =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4672 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4673 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4674 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4675 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4676 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4677 #ifdef MODIFIED_BY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4678 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4679 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4680 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4681 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4682 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4683 N_("menu Help->Orphans for information "),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4684 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4685 N_("Running modeless, typed text is inserted"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4686 N_("menu Edit->Global Settings->Toggle Insert Mode "),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4687 N_(" for two modes "),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4688 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4689 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4690 NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4691 N_("menu Edit->Global Settings->Toggle Vi Compatible"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4692 N_(" for Vim defaults "),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4693 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4694 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4695
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4696 /* blanklines = screen height - # message lines */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4697 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4698 if (!p_cp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4699 blanklines += 4; /* add 4 for not showing "Vi compatible" message */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4700 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4701 if (mch_windows95())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4702 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4703 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4704
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4705 #ifdef FEAT_WINDOWS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4706 /* Don't overwrite a statusline. Depends on 'cmdheight'. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4707 if (p_ls > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4708 blanklines -= Rows - topframe->fr_height;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4709 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4710 if (blanklines < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4711 blanklines = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4712
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4713 /* Show the sponsor and register message one out of four times, the Uganda
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4714 * message two out of four times. */
615
7fe13e0f5dce updated for version 7.0175
vimboss
parents: 574
diff changeset
4715 sponsor = (int)time(NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4716 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4717
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4718 /* start displaying the message lines after half of the blank lines */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4719 row = blanklines / 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4720 if ((row >= 2 && Columns >= 50) || colon)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4721 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4722 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4723 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4724 p = lines[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4725 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4726 if (p_im && gui.in_use && gui_lines[i] != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4727 p = gui_lines[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4728 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4729 if (p == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4730 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4731 if (!p_cp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4732 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4733 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4734 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4735 if (sponsor != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4736 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4737 if (strstr(p, "children") != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4738 p = sponsor < 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4739 ? N_("Sponsor Vim development!")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4740 : N_("Become a registered Vim user!");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4741 else if (strstr(p, "iccf") != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4742 p = sponsor < 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4743 ? N_("type :help sponsor<Enter> for information ")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4744 : N_("type :help register<Enter> for information ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4745 else if (strstr(p, "Orphans") != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4746 p = N_("menu Help->Sponsor/Register for information ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4747 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4748 if (*p != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4749 do_intro_line(row, (char_u *)_(p), i == 2, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4750 ++row;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4751 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4752 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4753 if (mch_windows95())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4754 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4755 do_intro_line(++row,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4756 (char_u *)_("WARNING: Windows 95/98/ME detected"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4757 FALSE, hl_attr(HLF_E));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4758 do_intro_line(++row,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4759 (char_u *)_("type :help windows95<Enter> for info on this"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4760 FALSE, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4761 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4762 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4763 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4764
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4765 /* Make the wait-return message appear just below the text. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4766 if (colon)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4767 msg_row = row;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4768 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4769
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4770 static void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4771 do_intro_line(
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4772 int row,
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4773 char_u *mesg,
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4774 int add_version,
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4775 int attr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4776 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4777 char_u vers[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4778 int col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4779 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4780 int l;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4781 int clen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4782 #ifdef MODIFIED_BY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4783 # define MODBY_LEN 150
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4784 char_u modby[MODBY_LEN];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4785
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4786 if (*mesg == ' ')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4787 {
1491
a135270b7549 updated for version 7.1-206
vimboss
parents: 1490
diff changeset
4788 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4789 l = STRLEN(modby);
1491
a135270b7549 updated for version 7.1-206
vimboss
parents: 1490
diff changeset
4790 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4791 mesg = modby;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4792 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4793 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4794
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4795 /* Center the message horizontally. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4796 col = vim_strsize(mesg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4797 if (add_version)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4798 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4799 STRCPY(vers, mediumVersion);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4800 if (highest_patch())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4801 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4802 /* Check for 9.9x or 9.9xx, alpha/beta version */
2619
6a80537ac7aa updated for version 7.3.041
Bram Moolenaar <bram@vim.org>
parents: 2618
diff changeset
4803 if (isalpha((int)vers[3]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4804 {
3396
43259e4542c7 updated for version 7.3.464
Bram Moolenaar <bram@vim.org>
parents: 3394
diff changeset
4805 int len = (isalpha((int)vers[4])) ? 5 : 4;
43259e4542c7 updated for version 7.3.464
Bram Moolenaar <bram@vim.org>
parents: 3394
diff changeset
4806 sprintf((char *)vers + len, ".%d%s", highest_patch(),
43259e4542c7 updated for version 7.3.464
Bram Moolenaar <bram@vim.org>
parents: 3394
diff changeset
4807 mediumVersion + len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4808 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4809 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4810 sprintf((char *)vers + 3, ".%d", highest_patch());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4811 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4812 col += (int)STRLEN(vers);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4813 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4814 col = (Columns - col) / 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4815 if (col < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4816 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4817
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4818 /* Split up in parts to highlight <> items differently. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4819 for (p = mesg; *p != NUL; p += l)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4820 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4821 clen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4822 for (l = 0; p[l] != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4823 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4824 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4825 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4826 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4827 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4828 clen += ptr2cells(p + l);
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 419
diff changeset
4829 l += (*mb_ptr2len)(p + l) - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4830 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4831 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4832 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4833 clen += byte2cells(p[l]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4834 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4835 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4836 col += clen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4837 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4838
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4839 /* Add the version number to the version line. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4840 if (add_version)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4841 screen_puts(vers, row, col, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4842 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4843
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4844 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4845 * ":intro": clear screen, display intro screen and wait for return.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4846 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4847 void
7837
33ba2adb6065 commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
4848 ex_intro(exarg_T *eap UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4849 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4850 screenclear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4851 intro_message(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4852 wait_return(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4853 }