Mercurial > vim
annotate src/version.c @ 9225:b0b2bd8e5217 v7.4.1896
commit https://github.com/vim/vim/commit/82faa259cc42379f2a17d598a2a39d14048685b0
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 4 20:14:07 2016 +0200
patch 7.4.1896
Problem: Invoking mark_adjust() when adding a new line below the last line
is pointless.
Solution: Skip calling mark_adjust() when appending below the last line.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 04 Jun 2016 20:15:06 +0200 |
parents | 6c4d610fce0a |
children | ea504064c996 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 #include "vim.h" | |
11 | |
12 #ifdef AMIGA | |
13 # include <time.h> /* for time() */ | |
14 #endif | |
15 | |
16 /* | |
17 * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred) | |
18 * It has been changed beyond recognition since then. | |
19 * | |
26 | 20 * Differences between version 6.x and 7.x can be found with ":help version7". |
7 | 21 * Differences between version 5.x and 6.x can be found with ":help version6". |
22 * Differences between version 4.x and 5.x can be found with ":help version5". | |
23 * Differences between version 3.0 and 4.x can be found with ":help version4". | |
24 * All the remarks about older versions have been removed, they are not very | |
25 * interesting. | |
26 */ | |
27 | |
28 #include "version.h" | |
29 | |
378 | 30 char *Version = VIM_VERSION_SHORT; |
31 static char *mediumVersion = VIM_VERSION_MEDIUM; | |
7 | 32 |
33 #if defined(HAVE_DATE_TIME) || defined(PROTO) | |
34 # if (defined(VMS) && defined(VAXC)) || defined(PROTO) | |
35 char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__) | |
36 + sizeof(__TIME__) + 3]; | |
4147 | 37 |
7 | 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 | 40 { |
41 /* | |
42 * Construct the long version string. Necessary because | |
43 * VAX C can't catenate strings in the preprocessor. | |
44 */ | |
45 strcpy(longVersion, VIM_VERSION_LONG_DATE); | |
46 strcat(longVersion, __DATE__); | |
47 strcat(longVersion, " "); | |
48 strcat(longVersion, __TIME__); | |
49 strcat(longVersion, ")"); | |
50 } | |
51 # else | |
52 char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")"; | |
53 # endif | |
54 #else | |
55 char *longVersion = VIM_VERSION_LONG; | |
56 #endif | |
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 | 60 |
61 static char *(features[]) = | |
62 { | |
5316 | 63 #ifdef HAVE_ACL |
64 "+acl", | |
65 #else | |
66 "-acl", | |
67 #endif | |
7 | 68 #ifdef AMIGA /* only for Amiga systems */ |
69 # ifdef FEAT_ARP | |
70 "+ARP", | |
71 # else | |
72 "-ARP", | |
73 # endif | |
74 #endif | |
75 #ifdef FEAT_ARABIC | |
76 "+arabic", | |
77 #else | |
78 "-arabic", | |
79 #endif | |
80 #ifdef FEAT_AUTOCMD | |
81 "+autocmd", | |
82 #else | |
83 "-autocmd", | |
84 #endif | |
85 #ifdef FEAT_BEVAL | |
86 "+balloon_eval", | |
87 #else | |
88 "-balloon_eval", | |
89 #endif | |
90 #ifdef FEAT_BROWSE | |
91 "+browse", | |
92 #else | |
93 "-browse", | |
94 #endif | |
95 #ifdef NO_BUILTIN_TCAPS | |
96 "-builtin_terms", | |
97 #endif | |
98 #ifdef SOME_BUILTIN_TCAPS | |
99 "+builtin_terms", | |
100 #endif | |
101 #ifdef ALL_BUILTIN_TCAPS | |
102 "++builtin_terms", | |
103 #endif | |
104 #ifdef FEAT_BYTEOFF | |
105 "+byte_offset", | |
106 #else | |
107 "-byte_offset", | |
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 | 114 #ifdef FEAT_CINDENT |
115 "+cindent", | |
116 #else | |
117 "-cindent", | |
118 #endif | |
119 #ifdef FEAT_CLIENTSERVER | |
120 "+clientserver", | |
121 #else | |
122 "-clientserver", | |
123 #endif | |
124 #ifdef FEAT_CLIPBOARD | |
125 "+clipboard", | |
126 #else | |
127 "-clipboard", | |
128 #endif | |
129 #ifdef FEAT_CMDL_COMPL | |
130 "+cmdline_compl", | |
131 #else | |
132 "-cmdline_compl", | |
133 #endif | |
134 #ifdef FEAT_CMDHIST | |
135 "+cmdline_hist", | |
136 #else | |
137 "-cmdline_hist", | |
138 #endif | |
139 #ifdef FEAT_CMDL_INFO | |
140 "+cmdline_info", | |
141 #else | |
142 "-cmdline_info", | |
143 #endif | |
144 #ifdef FEAT_COMMENTS | |
145 "+comments", | |
146 #else | |
147 "-comments", | |
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 | 154 #ifdef FEAT_CRYPT |
155 "+cryptv", | |
156 #else | |
157 "-cryptv", | |
158 #endif | |
159 #ifdef FEAT_CSCOPE | |
160 "+cscope", | |
161 #else | |
162 "-cscope", | |
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 | 169 #ifdef CURSOR_SHAPE |
170 "+cursorshape", | |
171 #else | |
172 "-cursorshape", | |
173 #endif | |
7 | 174 #if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG) |
175 "+dialog_con_gui", | |
176 #else | |
177 # if defined(FEAT_CON_DIALOG) | |
178 "+dialog_con", | |
179 # else | |
180 # if defined(FEAT_GUI_DIALOG) | |
181 "+dialog_gui", | |
182 # else | |
183 "-dialog", | |
184 # endif | |
185 # endif | |
186 #endif | |
187 #ifdef FEAT_DIFF | |
188 "+diff", | |
189 #else | |
190 "-diff", | |
191 #endif | |
192 #ifdef FEAT_DIGRAPHS | |
193 "+digraphs", | |
194 #else | |
195 "-digraphs", | |
196 #endif | |
6110 | 197 #ifdef FEAT_GUI_W32 |
198 # ifdef FEAT_DIRECTX | |
199 "+directx", | |
200 # else | |
201 "-directx", | |
202 # endif | |
203 #endif | |
7 | 204 #ifdef FEAT_DND |
205 "+dnd", | |
206 #else | |
207 "-dnd", | |
208 #endif | |
209 #ifdef EBCDIC | |
210 "+ebcdic", | |
211 #else | |
212 "-ebcdic", | |
213 #endif | |
214 #ifdef FEAT_EMACS_TAGS | |
215 "+emacs_tags", | |
216 #else | |
217 "-emacs_tags", | |
218 #endif | |
219 #ifdef FEAT_EVAL | |
220 "+eval", | |
221 #else | |
222 "-eval", | |
223 #endif | |
224 "+ex_extra", | |
225 #ifdef FEAT_SEARCH_EXTRA | |
226 "+extra_search", | |
227 #else | |
228 "-extra_search", | |
229 #endif | |
230 #ifdef FEAT_FKMAP | |
231 "+farsi", | |
232 #else | |
233 "-farsi", | |
234 #endif | |
235 #ifdef FEAT_SEARCHPATH | |
236 "+file_in_path", | |
237 #else | |
238 "-file_in_path", | |
239 #endif | |
240 #ifdef FEAT_FIND_ID | |
241 "+find_in_path", | |
242 #else | |
243 "-find_in_path", | |
244 #endif | |
1621 | 245 #ifdef FEAT_FLOAT |
246 "+float", | |
247 #else | |
248 "-float", | |
249 #endif | |
7 | 250 #ifdef FEAT_FOLDING |
251 "+folding", | |
252 #else | |
253 "-folding", | |
254 #endif | |
255 #ifdef FEAT_FOOTER | |
256 "+footer", | |
257 #else | |
258 "-footer", | |
259 #endif | |
260 /* only interesting on Unix systems */ | |
261 #if !defined(USE_SYSTEM) && defined(UNIX) | |
262 "+fork()", | |
263 #endif | |
264 #ifdef FEAT_GETTEXT | |
265 # ifdef DYNAMIC_GETTEXT | |
266 "+gettext/dyn", | |
267 # else | |
268 "+gettext", | |
269 # endif | |
270 #else | |
271 "-gettext", | |
272 #endif | |
273 #ifdef FEAT_HANGULIN | |
274 "+hangul_input", | |
275 #else | |
276 "-hangul_input", | |
277 #endif | |
278 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV) | |
279 # ifdef DYNAMIC_ICONV | |
280 "+iconv/dyn", | |
281 # else | |
282 "+iconv", | |
283 # endif | |
284 #else | |
285 "-iconv", | |
286 #endif | |
287 #ifdef FEAT_INS_EXPAND | |
288 "+insert_expand", | |
289 #else | |
290 "-insert_expand", | |
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 | 297 #ifdef FEAT_JUMPLIST |
298 "+jumplist", | |
299 #else | |
300 "-jumplist", | |
301 #endif | |
302 #ifdef FEAT_KEYMAP | |
303 "+keymap", | |
304 #else | |
305 "-keymap", | |
306 #endif | |
307 #ifdef FEAT_LANGMAP | |
308 "+langmap", | |
309 #else | |
310 "-langmap", | |
311 #endif | |
312 #ifdef FEAT_LIBCALL | |
313 "+libcall", | |
314 #else | |
315 "-libcall", | |
316 #endif | |
317 #ifdef FEAT_LINEBREAK | |
318 "+linebreak", | |
319 #else | |
320 "-linebreak", | |
321 #endif | |
322 #ifdef FEAT_LISP | |
323 "+lispindent", | |
324 #else | |
325 "-lispindent", | |
326 #endif | |
327 #ifdef FEAT_LISTCMDS | |
328 "+listcmds", | |
329 #else | |
330 "-listcmds", | |
331 #endif | |
332 #ifdef FEAT_LOCALMAP | |
333 "+localmap", | |
334 #else | |
335 "-localmap", | |
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 | 346 #ifdef FEAT_MENU |
347 "+menu", | |
348 #else | |
349 "-menu", | |
350 #endif | |
351 #ifdef FEAT_SESSION | |
352 "+mksession", | |
353 #else | |
354 "-mksession", | |
355 #endif | |
356 #ifdef FEAT_MODIFY_FNAME | |
357 "+modify_fname", | |
358 #else | |
359 "-modify_fname", | |
360 #endif | |
361 #ifdef FEAT_MOUSE | |
362 "+mouse", | |
363 # ifdef FEAT_MOUSESHAPE | |
364 "+mouseshape", | |
365 # else | |
366 "-mouseshape", | |
367 # endif | |
368 # else | |
369 "-mouse", | |
370 #endif | |
3898 | 371 |
7 | 372 #if defined(UNIX) || defined(VMS) |
373 # ifdef FEAT_MOUSE_DEC | |
374 "+mouse_dec", | |
375 # else | |
376 "-mouse_dec", | |
377 # endif | |
378 # ifdef FEAT_MOUSE_GPM | |
379 "+mouse_gpm", | |
380 # else | |
381 "-mouse_gpm", | |
382 # endif | |
383 # ifdef FEAT_MOUSE_JSB | |
384 "+mouse_jsbterm", | |
385 # else | |
386 "-mouse_jsbterm", | |
387 # endif | |
388 # ifdef FEAT_MOUSE_NET | |
389 "+mouse_netterm", | |
390 # else | |
391 "-mouse_netterm", | |
392 # endif | |
393 #endif | |
3898 | 394 |
7 | 395 #ifdef __QNX__ |
396 # ifdef FEAT_MOUSE_PTERM | |
397 "+mouse_pterm", | |
398 # else | |
399 "-mouse_pterm", | |
400 # endif | |
401 #endif | |
3898 | 402 |
403 #if defined(UNIX) || defined(VMS) | |
404 # ifdef FEAT_MOUSE_SGR | |
405 "+mouse_sgr", | |
406 # else | |
407 "-mouse_sgr", | |
408 # endif | |
409 # ifdef FEAT_SYSMOUSE | |
410 "+mouse_sysmouse", | |
411 # else | |
412 "-mouse_sysmouse", | |
413 # endif | |
414 # ifdef FEAT_MOUSE_URXVT | |
415 "+mouse_urxvt", | |
416 # else | |
417 "-mouse_urxvt", | |
418 # endif | |
419 # ifdef FEAT_MOUSE_XTERM | |
420 "+mouse_xterm", | |
421 # else | |
422 "-mouse_xterm", | |
423 # endif | |
424 #endif | |
425 | |
7 | 426 #ifdef FEAT_MBYTE_IME |
427 # ifdef DYNAMIC_IME | |
428 "+multi_byte_ime/dyn", | |
429 # else | |
430 "+multi_byte_ime", | |
431 # endif | |
432 #else | |
433 # ifdef FEAT_MBYTE | |
434 "+multi_byte", | |
435 # else | |
436 "-multi_byte", | |
437 # endif | |
438 #endif | |
439 #ifdef FEAT_MULTI_LANG | |
440 "+multi_lang", | |
441 #else | |
442 "-multi_lang", | |
443 #endif | |
14 | 444 #ifdef FEAT_MZSCHEME |
132 | 445 # ifdef DYNAMIC_MZSCHEME |
446 "+mzscheme/dyn", | |
447 # else | |
14 | 448 "+mzscheme", |
132 | 449 # endif |
14 | 450 #else |
451 "-mzscheme", | |
452 #endif | |
7 | 453 #ifdef FEAT_NETBEANS_INTG |
454 "+netbeans_intg", | |
455 #else | |
456 "-netbeans_intg", | |
457 #endif | |
458 #ifdef FEAT_GUI_W32 | |
459 # ifdef FEAT_OLE | |
460 "+ole", | |
461 # else | |
462 "-ole", | |
463 # endif | |
464 #endif | |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
465 "+packages", |
7 | 466 #ifdef FEAT_PATH_EXTRA |
467 "+path_extra", | |
468 #else | |
469 "-path_extra", | |
470 #endif | |
471 #ifdef FEAT_PERL | |
472 # ifdef DYNAMIC_PERL | |
473 "+perl/dyn", | |
474 # else | |
475 "+perl", | |
476 # endif | |
477 #else | |
478 "-perl", | |
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 | 485 #ifdef FEAT_PRINTER |
486 # ifdef FEAT_POSTSCRIPT | |
487 "+postscript", | |
488 # else | |
489 "-postscript", | |
490 # endif | |
491 "+printer", | |
492 #else | |
493 "-printer", | |
494 #endif | |
170 | 495 #ifdef FEAT_PROFILE |
496 "+profile", | |
497 #else | |
498 "-profile", | |
499 #endif | |
7 | 500 #ifdef FEAT_PYTHON |
501 # ifdef DYNAMIC_PYTHON | |
502 "+python/dyn", | |
503 # else | |
504 "+python", | |
505 # endif | |
506 #else | |
507 "-python", | |
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 | 518 #ifdef FEAT_QUICKFIX |
519 "+quickfix", | |
520 #else | |
521 "-quickfix", | |
522 #endif | |
857 | 523 #ifdef FEAT_RELTIME |
524 "+reltime", | |
525 #else | |
526 "-reltime", | |
527 #endif | |
7 | 528 #ifdef FEAT_RIGHTLEFT |
529 "+rightleft", | |
530 #else | |
531 "-rightleft", | |
532 #endif | |
533 #ifdef FEAT_RUBY | |
534 # ifdef DYNAMIC_RUBY | |
535 "+ruby/dyn", | |
536 # else | |
537 "+ruby", | |
538 # endif | |
539 #else | |
540 "-ruby", | |
541 #endif | |
542 #ifdef FEAT_SCROLLBIND | |
543 "+scrollbind", | |
544 #else | |
545 "-scrollbind", | |
546 #endif | |
547 #ifdef FEAT_SIGNS | |
548 "+signs", | |
549 #else | |
550 "-signs", | |
551 #endif | |
552 #ifdef FEAT_SMARTINDENT | |
553 "+smartindent", | |
554 #else | |
555 "-smartindent", | |
556 #endif | |
1989 | 557 #ifdef STARTUPTIME |
558 "+startuptime", | |
559 #else | |
560 "-startuptime", | |
561 #endif | |
7 | 562 #ifdef FEAT_STL_OPT |
563 "+statusline", | |
564 #else | |
565 "-statusline", | |
566 #endif | |
567 #ifdef FEAT_SUN_WORKSHOP | |
568 "+sun_workshop", | |
569 #else | |
570 "-sun_workshop", | |
571 #endif | |
572 #ifdef FEAT_SYN_HL | |
573 "+syntax", | |
574 #else | |
575 "-syntax", | |
576 #endif | |
577 /* only interesting on Unix systems */ | |
578 #if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__)) | |
579 "+system()", | |
580 #endif | |
581 #ifdef FEAT_TAG_BINS | |
582 "+tag_binary", | |
583 #else | |
584 "-tag_binary", | |
585 #endif | |
586 #ifdef FEAT_TAG_OLDSTATIC | |
587 "+tag_old_static", | |
588 #else | |
589 "-tag_old_static", | |
590 #endif | |
591 #ifdef FEAT_TAG_ANYWHITE | |
592 "+tag_any_white", | |
593 #else | |
594 "-tag_any_white", | |
595 #endif | |
596 #ifdef FEAT_TCL | |
597 # ifdef DYNAMIC_TCL | |
598 "+tcl/dyn", | |
599 # else | |
600 "+tcl", | |
601 # endif | |
602 #else | |
603 "-tcl", | |
604 #endif | |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
605 #ifdef FEAT_TERMGUICOLORS |
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
606 "+termguicolors", |
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
607 #else |
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
608 "-termguicolors", |
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
609 #endif |
7 | 610 #if defined(UNIX) || defined(__EMX__) |
611 /* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */ | |
612 # ifdef TERMINFO | |
613 "+terminfo", | |
614 # else | |
615 "-terminfo", | |
616 # endif | |
617 #else /* unix always includes termcap support */ | |
618 # ifdef HAVE_TGETENT | |
619 "+tgetent", | |
620 # else | |
621 "-tgetent", | |
622 # endif | |
623 #endif | |
624 #ifdef FEAT_TERMRESPONSE | |
625 "+termresponse", | |
626 #else | |
627 "-termresponse", | |
628 #endif | |
629 #ifdef FEAT_TEXTOBJ | |
630 "+textobjects", | |
631 #else | |
632 "-textobjects", | |
633 #endif | |
8577
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
634 #ifdef FEAT_TIMERS |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
635 "+timers", |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
636 #else |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
637 "-timers", |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
638 #endif |
7 | 639 #ifdef FEAT_TITLE |
640 "+title", | |
641 #else | |
642 "-title", | |
643 #endif | |
644 #ifdef FEAT_TOOLBAR | |
645 "+toolbar", | |
646 #else | |
647 "-toolbar", | |
648 #endif | |
649 #ifdef FEAT_USR_CMDS | |
650 "+user_commands", | |
651 #else | |
652 "-user_commands", | |
653 #endif | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
654 #ifdef FEAT_WINDOWS |
7 | 655 "+vertsplit", |
656 #else | |
657 "-vertsplit", | |
658 #endif | |
659 #ifdef FEAT_VIRTUALEDIT | |
660 "+virtualedit", | |
661 #else | |
662 "-virtualedit", | |
663 #endif | |
664 "+visual", | |
5735 | 665 #ifdef FEAT_VISUALEXTRA |
7 | 666 "+visualextra", |
5735 | 667 #else |
7 | 668 "-visualextra", |
669 #endif | |
670 #ifdef FEAT_VIMINFO | |
671 "+viminfo", | |
672 #else | |
673 "-viminfo", | |
674 #endif | |
675 #ifdef FEAT_VREPLACE | |
676 "+vreplace", | |
677 #else | |
678 "-vreplace", | |
679 #endif | |
680 #ifdef FEAT_WILDIGN | |
681 "+wildignore", | |
682 #else | |
683 "-wildignore", | |
684 #endif | |
685 #ifdef FEAT_WILDMENU | |
686 "+wildmenu", | |
687 #else | |
688 "-wildmenu", | |
689 #endif | |
690 #ifdef FEAT_WINDOWS | |
691 "+windows", | |
692 #else | |
693 "-windows", | |
694 #endif | |
695 #ifdef FEAT_WRITEBACKUP | |
696 "+writebackup", | |
697 #else | |
698 "-writebackup", | |
699 #endif | |
700 #if defined(UNIX) || defined(VMS) | |
701 # ifdef FEAT_X11 | |
702 "+X11", | |
703 # else | |
704 "-X11", | |
705 # endif | |
706 #endif | |
707 #ifdef FEAT_XFONTSET | |
708 "+xfontset", | |
709 #else | |
710 "-xfontset", | |
711 #endif | |
712 #ifdef FEAT_XIM | |
713 "+xim", | |
714 #else | |
715 "-xim", | |
716 #endif | |
717 #if defined(UNIX) || defined(VMS) | |
718 # ifdef USE_XSMP_INTERACT | |
719 "+xsmp_interact", | |
720 # else | |
721 # ifdef USE_XSMP | |
722 "+xsmp", | |
723 # else | |
724 "-xsmp", | |
725 # endif | |
726 # endif | |
727 # ifdef FEAT_XCLIPBOARD | |
728 "+xterm_clipboard", | |
729 # else | |
730 "-xterm_clipboard", | |
731 # endif | |
732 #endif | |
733 #ifdef FEAT_XTERM_SAVE | |
734 "+xterm_save", | |
735 #else | |
736 "-xterm_save", | |
737 #endif | |
738 #ifdef WIN3264 | |
739 # ifdef FEAT_XPM_W32 | |
740 "+xpm_w32", | |
741 # else | |
742 "-xpm_w32", | |
743 # endif | |
5316 | 744 #else |
745 # ifdef HAVE_XPM | |
746 "+xpm", | |
747 # else | |
748 "-xpm", | |
749 # endif | |
7 | 750 #endif |
751 NULL | |
752 }; | |
753 | |
754 static int included_patches[] = | |
755 { /* Add new patch number below this line */ | |
756 /**/ | |
9225
b0b2bd8e5217
commit https://github.com/vim/vim/commit/82faa259cc42379f2a17d598a2a39d14048685b0
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
757 1896, |
b0b2bd8e5217
commit https://github.com/vim/vim/commit/82faa259cc42379f2a17d598a2a39d14048685b0
Christian Brabandt <cb@256bit.org>
parents:
9223
diff
changeset
|
758 /**/ |
9223
6c4d610fce0a
commit https://github.com/vim/vim/commit/888ccac8902cee186fbd47e971881f6d9b19c068
Christian Brabandt <cb@256bit.org>
parents:
9221
diff
changeset
|
759 1895, |
6c4d610fce0a
commit https://github.com/vim/vim/commit/888ccac8902cee186fbd47e971881f6d9b19c068
Christian Brabandt <cb@256bit.org>
parents:
9221
diff
changeset
|
760 /**/ |
9221
17fa362f10be
commit https://github.com/vim/vim/commit/511972d810ea490955161ff5097ec2f57919ceaf
Christian Brabandt <cb@256bit.org>
parents:
9219
diff
changeset
|
761 1894, |
17fa362f10be
commit https://github.com/vim/vim/commit/511972d810ea490955161ff5097ec2f57919ceaf
Christian Brabandt <cb@256bit.org>
parents:
9219
diff
changeset
|
762 /**/ |
9219
7363f5cc4cb8
commit https://github.com/vim/vim/commit/b3619a90eae2702553ff9494ecc4c9b20c13c224
Christian Brabandt <cb@256bit.org>
parents:
9217
diff
changeset
|
763 1893, |
7363f5cc4cb8
commit https://github.com/vim/vim/commit/b3619a90eae2702553ff9494ecc4c9b20c13c224
Christian Brabandt <cb@256bit.org>
parents:
9217
diff
changeset
|
764 /**/ |
9217
9495e43a800d
commit https://github.com/vim/vim/commit/c9721bdc63378cc6123e775ffe43e9cba30322b3
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
765 1892, |
9495e43a800d
commit https://github.com/vim/vim/commit/c9721bdc63378cc6123e775ffe43e9cba30322b3
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
766 /**/ |
9215
d2d44592467d
commit https://github.com/vim/vim/commit/9ed96efb3d47d46e9637da04656efff715102407
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
767 1891, |
d2d44592467d
commit https://github.com/vim/vim/commit/9ed96efb3d47d46e9637da04656efff715102407
Christian Brabandt <cb@256bit.org>
parents:
9213
diff
changeset
|
768 /**/ |
9213
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9211
diff
changeset
|
769 1890, |
bb86514cad15
commit https://github.com/vim/vim/commit/703a8044b5393d37d355b0b1054a9a5a13912a3f
Christian Brabandt <cb@256bit.org>
parents:
9211
diff
changeset
|
770 /**/ |
9211
d2b9e454c73d
commit https://github.com/vim/vim/commit/35d88f4e2ff5dcd9904f04612d5febede996137c
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
771 1889, |
d2b9e454c73d
commit https://github.com/vim/vim/commit/35d88f4e2ff5dcd9904f04612d5febede996137c
Christian Brabandt <cb@256bit.org>
parents:
9209
diff
changeset
|
772 /**/ |
9209
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
773 1888, |
f8f41f4e0acd
commit https://github.com/vim/vim/commit/76b6dfe54ba9b85cd9d8e6539205c1679a187961
Christian Brabandt <cb@256bit.org>
parents:
9207
diff
changeset
|
774 /**/ |
9207
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
775 1887, |
61e669c5da6f
commit https://github.com/vim/vim/commit/e30a3d01dc1b6b066748b1d61cced05cf92b3c80
Christian Brabandt <cb@256bit.org>
parents:
9205
diff
changeset
|
776 /**/ |
9205
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
777 1886, |
c19eb05b19df
commit https://github.com/vim/vim/commit/cda7764d8e65325d4524e5d6c3174121eeb12cad
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
778 /**/ |
9203
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
779 1885, |
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
780 /**/ |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9199
diff
changeset
|
781 1884, |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9199
diff
changeset
|
782 /**/ |
9199
665d10cb3e6b
commit https://github.com/vim/vim/commit/ea0345901cc2af29f9c5dd0d9d8a818d5f96a63b
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
783 1883, |
665d10cb3e6b
commit https://github.com/vim/vim/commit/ea0345901cc2af29f9c5dd0d9d8a818d5f96a63b
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
784 /**/ |
9197
847a709d04c1
commit https://github.com/vim/vim/commit/b37662a0fbb952838fca87aff4d26b596030b67b
Christian Brabandt <cb@256bit.org>
parents:
9195
diff
changeset
|
785 1882, |
847a709d04c1
commit https://github.com/vim/vim/commit/b37662a0fbb952838fca87aff4d26b596030b67b
Christian Brabandt <cb@256bit.org>
parents:
9195
diff
changeset
|
786 /**/ |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9193
diff
changeset
|
787 1881, |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9193
diff
changeset
|
788 /**/ |
9193
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
9191
diff
changeset
|
789 1880, |
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
9191
diff
changeset
|
790 /**/ |
9191
ce045e4d3244
commit https://github.com/vim/vim/commit/e38a2f7ebda791bcecccd657919ae9f7e2f6438c
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
791 1879, |
ce045e4d3244
commit https://github.com/vim/vim/commit/e38a2f7ebda791bcecccd657919ae9f7e2f6438c
Christian Brabandt <cb@256bit.org>
parents:
9189
diff
changeset
|
792 /**/ |
9189
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9187
diff
changeset
|
793 1878, |
4b55d8e162d4
commit https://github.com/vim/vim/commit/cf7c11a9479ba7ce775b86c7a846fae48321d260
Christian Brabandt <cb@256bit.org>
parents:
9187
diff
changeset
|
794 /**/ |
9187
fb1a19011fbe
commit https://github.com/vim/vim/commit/01d46e41ba4967ee534db4b94ad642007634841e
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
795 1877, |
fb1a19011fbe
commit https://github.com/vim/vim/commit/01d46e41ba4967ee534db4b94ad642007634841e
Christian Brabandt <cb@256bit.org>
parents:
9185
diff
changeset
|
796 /**/ |
9185
70d3337ff173
commit https://github.com/vim/vim/commit/a0055ad3a789b8eeb0c983d8a18d4bcaeaf456b8
Christian Brabandt <cb@256bit.org>
parents:
9183
diff
changeset
|
797 1876, |
70d3337ff173
commit https://github.com/vim/vim/commit/a0055ad3a789b8eeb0c983d8a18d4bcaeaf456b8
Christian Brabandt <cb@256bit.org>
parents:
9183
diff
changeset
|
798 /**/ |
9183
988c8ab557bf
commit https://github.com/vim/vim/commit/8e759ba8651428995b338b66c615367259f79766
Christian Brabandt <cb@256bit.org>
parents:
9181
diff
changeset
|
799 1875, |
988c8ab557bf
commit https://github.com/vim/vim/commit/8e759ba8651428995b338b66c615367259f79766
Christian Brabandt <cb@256bit.org>
parents:
9181
diff
changeset
|
800 /**/ |
9181
07bc9dc5b3c9
commit https://github.com/vim/vim/commit/ae3f33040ba752e7f6b722d2fe2b2ebeeb8c56b4
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
801 1874, |
07bc9dc5b3c9
commit https://github.com/vim/vim/commit/ae3f33040ba752e7f6b722d2fe2b2ebeeb8c56b4
Christian Brabandt <cb@256bit.org>
parents:
9179
diff
changeset
|
802 /**/ |
9179
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
9177
diff
changeset
|
803 1873, |
5e18efdad322
commit https://github.com/vim/vim/commit/4231da403e3c879dd6ac261e51f4ca60813935e3
Christian Brabandt <cb@256bit.org>
parents:
9177
diff
changeset
|
804 /**/ |
9177
ee0564e3257d
commit https://github.com/vim/vim/commit/c4bc0e6542185b659d2a165b635f9561549071ea
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
805 1872, |
ee0564e3257d
commit https://github.com/vim/vim/commit/c4bc0e6542185b659d2a165b635f9561549071ea
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
806 /**/ |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9173
diff
changeset
|
807 1871, |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9173
diff
changeset
|
808 /**/ |
9173
b64c314a4990
commit https://github.com/vim/vim/commit/dec6c7beda5491b28f67f430fc9d01467050c1ca
Christian Brabandt <cb@256bit.org>
parents:
9171
diff
changeset
|
809 1870, |
b64c314a4990
commit https://github.com/vim/vim/commit/dec6c7beda5491b28f67f430fc9d01467050c1ca
Christian Brabandt <cb@256bit.org>
parents:
9171
diff
changeset
|
810 /**/ |
9171
20e7b99c33d4
commit https://github.com/vim/vim/commit/cf190c6f017563de1bdbf854b3376522b8b2748f
Christian Brabandt <cb@256bit.org>
parents:
9169
diff
changeset
|
811 1869, |
20e7b99c33d4
commit https://github.com/vim/vim/commit/cf190c6f017563de1bdbf854b3376522b8b2748f
Christian Brabandt <cb@256bit.org>
parents:
9169
diff
changeset
|
812 /**/ |
9169
0ea97a753a2d
commit https://github.com/vim/vim/commit/b89a25f17e274dc308c584ea69a129ffbb26bc3d
Christian Brabandt <cb@256bit.org>
parents:
9167
diff
changeset
|
813 1868, |
0ea97a753a2d
commit https://github.com/vim/vim/commit/b89a25f17e274dc308c584ea69a129ffbb26bc3d
Christian Brabandt <cb@256bit.org>
parents:
9167
diff
changeset
|
814 /**/ |
9167
9bbe6ec0e6dc
commit https://github.com/vim/vim/commit/3c809343c72d9964475f421fd03bb892bc584a51
Christian Brabandt <cb@256bit.org>
parents:
9165
diff
changeset
|
815 1867, |
9bbe6ec0e6dc
commit https://github.com/vim/vim/commit/3c809343c72d9964475f421fd03bb892bc584a51
Christian Brabandt <cb@256bit.org>
parents:
9165
diff
changeset
|
816 /**/ |
9165
062eb6d28b0c
commit https://github.com/vim/vim/commit/a96732150cda2f242133228579b05437a39b8daa
Christian Brabandt <cb@256bit.org>
parents:
9163
diff
changeset
|
817 1866, |
062eb6d28b0c
commit https://github.com/vim/vim/commit/a96732150cda2f242133228579b05437a39b8daa
Christian Brabandt <cb@256bit.org>
parents:
9163
diff
changeset
|
818 /**/ |
9163
731ee601de16
commit https://github.com/vim/vim/commit/9ad73239c26467832a5b553b2a4b99d7ffbaa25e
Christian Brabandt <cb@256bit.org>
parents:
9161
diff
changeset
|
819 1865, |
731ee601de16
commit https://github.com/vim/vim/commit/9ad73239c26467832a5b553b2a4b99d7ffbaa25e
Christian Brabandt <cb@256bit.org>
parents:
9161
diff
changeset
|
820 /**/ |
9161
56c93626f6f3
commit https://github.com/vim/vim/commit/22081f4a3397704645841121d994058abd6cb481
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
821 1864, |
56c93626f6f3
commit https://github.com/vim/vim/commit/22081f4a3397704645841121d994058abd6cb481
Christian Brabandt <cb@256bit.org>
parents:
9159
diff
changeset
|
822 /**/ |
9159
6b003ff07234
commit https://github.com/vim/vim/commit/9b0ac229bcfc91acabd35fc576055a94c1687c32
Christian Brabandt <cb@256bit.org>
parents:
9157
diff
changeset
|
823 1863, |
6b003ff07234
commit https://github.com/vim/vim/commit/9b0ac229bcfc91acabd35fc576055a94c1687c32
Christian Brabandt <cb@256bit.org>
parents:
9157
diff
changeset
|
824 /**/ |
9157
e316b83892c1
commit https://github.com/vim/vim/commit/18dfb4404a618c52ee7138630a2381aed4d66eaf
Christian Brabandt <cb@256bit.org>
parents:
9155
diff
changeset
|
825 1862, |
e316b83892c1
commit https://github.com/vim/vim/commit/18dfb4404a618c52ee7138630a2381aed4d66eaf
Christian Brabandt <cb@256bit.org>
parents:
9155
diff
changeset
|
826 /**/ |
9155
e4d7e6d1a0f1
commit https://github.com/vim/vim/commit/b055066a1daf12c349d6c575aff22ae4d999a157
Christian Brabandt <cb@256bit.org>
parents:
9153
diff
changeset
|
827 1861, |
e4d7e6d1a0f1
commit https://github.com/vim/vim/commit/b055066a1daf12c349d6c575aff22ae4d999a157
Christian Brabandt <cb@256bit.org>
parents:
9153
diff
changeset
|
828 /**/ |
9153
c2fe86f2bda1
commit https://github.com/vim/vim/commit/e3188e261569ae512fb1ae2653b57fdd9e259ca3
Christian Brabandt <cb@256bit.org>
parents:
9151
diff
changeset
|
829 1860, |
c2fe86f2bda1
commit https://github.com/vim/vim/commit/e3188e261569ae512fb1ae2653b57fdd9e259ca3
Christian Brabandt <cb@256bit.org>
parents:
9151
diff
changeset
|
830 /**/ |
9151
d0f69d0bea7a
commit https://github.com/vim/vim/commit/ef3abc6442260e9a0314970a532400b05571d3fe
Christian Brabandt <cb@256bit.org>
parents:
9149
diff
changeset
|
831 1859, |
d0f69d0bea7a
commit https://github.com/vim/vim/commit/ef3abc6442260e9a0314970a532400b05571d3fe
Christian Brabandt <cb@256bit.org>
parents:
9149
diff
changeset
|
832 /**/ |
9149
18bbf31015c2
commit https://github.com/vim/vim/commit/b127cfd75f59e82580df395b6e2c009774644b16
Christian Brabandt <cb@256bit.org>
parents:
9147
diff
changeset
|
833 1858, |
18bbf31015c2
commit https://github.com/vim/vim/commit/b127cfd75f59e82580df395b6e2c009774644b16
Christian Brabandt <cb@256bit.org>
parents:
9147
diff
changeset
|
834 /**/ |
9147
053bc64433ec
commit https://github.com/vim/vim/commit/9f5842e63fc63d438cbffcec503e072a06f74dc2
Christian Brabandt <cb@256bit.org>
parents:
9145
diff
changeset
|
835 1857, |
053bc64433ec
commit https://github.com/vim/vim/commit/9f5842e63fc63d438cbffcec503e072a06f74dc2
Christian Brabandt <cb@256bit.org>
parents:
9145
diff
changeset
|
836 /**/ |
9145
3583c3433870
commit https://github.com/vim/vim/commit/324a78f3b649e7b14741519ecf19c4aba178772d
Christian Brabandt <cb@256bit.org>
parents:
9143
diff
changeset
|
837 1856, |
3583c3433870
commit https://github.com/vim/vim/commit/324a78f3b649e7b14741519ecf19c4aba178772d
Christian Brabandt <cb@256bit.org>
parents:
9143
diff
changeset
|
838 /**/ |
9143
b9c1a397a8a6
commit https://github.com/vim/vim/commit/655da31a18ef3f888acf10e68b438e2a851f7b14
Christian Brabandt <cb@256bit.org>
parents:
9141
diff
changeset
|
839 1855, |
b9c1a397a8a6
commit https://github.com/vim/vim/commit/655da31a18ef3f888acf10e68b438e2a851f7b14
Christian Brabandt <cb@256bit.org>
parents:
9141
diff
changeset
|
840 /**/ |
9141
d6662acfc3de
commit https://github.com/vim/vim/commit/d80629cef03cd40b0bf06c402dfe0b720b3bf608
Christian Brabandt <cb@256bit.org>
parents:
9139
diff
changeset
|
841 1854, |
d6662acfc3de
commit https://github.com/vim/vim/commit/d80629cef03cd40b0bf06c402dfe0b720b3bf608
Christian Brabandt <cb@256bit.org>
parents:
9139
diff
changeset
|
842 /**/ |
9139
ddca37101ffb
commit https://github.com/vim/vim/commit/28ae5773422c2cf61aaf8d9d2b9fae70642d6a33
Christian Brabandt <cb@256bit.org>
parents:
9137
diff
changeset
|
843 1853, |
ddca37101ffb
commit https://github.com/vim/vim/commit/28ae5773422c2cf61aaf8d9d2b9fae70642d6a33
Christian Brabandt <cb@256bit.org>
parents:
9137
diff
changeset
|
844 /**/ |
9137
8b2d6447fb6a
commit https://github.com/vim/vim/commit/af6c12c27bcb553b2fb2c8a9dcfde626fb3670fe
Christian Brabandt <cb@256bit.org>
parents:
9135
diff
changeset
|
845 1852, |
8b2d6447fb6a
commit https://github.com/vim/vim/commit/af6c12c27bcb553b2fb2c8a9dcfde626fb3670fe
Christian Brabandt <cb@256bit.org>
parents:
9135
diff
changeset
|
846 /**/ |
9135
35422e34815f
commit https://github.com/vim/vim/commit/180fc2d41812c49b60224a1ca89945a002a090f5
Christian Brabandt <cb@256bit.org>
parents:
9133
diff
changeset
|
847 1851, |
35422e34815f
commit https://github.com/vim/vim/commit/180fc2d41812c49b60224a1ca89945a002a090f5
Christian Brabandt <cb@256bit.org>
parents:
9133
diff
changeset
|
848 /**/ |
9133
dec3b7b977c0
commit https://github.com/vim/vim/commit/bf981eeb6b4ee63ae8543a7f9865ab700159a79c
Christian Brabandt <cb@256bit.org>
parents:
9131
diff
changeset
|
849 1850, |
dec3b7b977c0
commit https://github.com/vim/vim/commit/bf981eeb6b4ee63ae8543a7f9865ab700159a79c
Christian Brabandt <cb@256bit.org>
parents:
9131
diff
changeset
|
850 /**/ |
9131
3507fde33e6e
commit https://github.com/vim/vim/commit/5850a764eae74a4dae7238e4e76b4c24f062699b
Christian Brabandt <cb@256bit.org>
parents:
9129
diff
changeset
|
851 1849, |
3507fde33e6e
commit https://github.com/vim/vim/commit/5850a764eae74a4dae7238e4e76b4c24f062699b
Christian Brabandt <cb@256bit.org>
parents:
9129
diff
changeset
|
852 /**/ |
9129
95fd0de7a8f1
commit https://github.com/vim/vim/commit/6727bf861776cfbb93c97dfea5f87a095cf9f364
Christian Brabandt <cb@256bit.org>
parents:
9127
diff
changeset
|
853 1848, |
95fd0de7a8f1
commit https://github.com/vim/vim/commit/6727bf861776cfbb93c97dfea5f87a095cf9f364
Christian Brabandt <cb@256bit.org>
parents:
9127
diff
changeset
|
854 /**/ |
9127
1b41750311b6
commit https://github.com/vim/vim/commit/13ddc5c35921efa69e980284117b6db6465e019c
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
855 1847, |
1b41750311b6
commit https://github.com/vim/vim/commit/13ddc5c35921efa69e980284117b6db6465e019c
Christian Brabandt <cb@256bit.org>
parents:
9125
diff
changeset
|
856 /**/ |
9125
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9123
diff
changeset
|
857 1846, |
bcc132f80109
commit https://github.com/vim/vim/commit/54c10ccf9274880e83093a99690e7bfa9a2d2fa8
Christian Brabandt <cb@256bit.org>
parents:
9123
diff
changeset
|
858 /**/ |
9123
b430d4f2aa79
commit https://github.com/vim/vim/commit/f8df45d84f1d17dced23e185d4835fc23406d73d
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
859 1845, |
b430d4f2aa79
commit https://github.com/vim/vim/commit/f8df45d84f1d17dced23e185d4835fc23406d73d
Christian Brabandt <cb@256bit.org>
parents:
9121
diff
changeset
|
860 /**/ |
9121
7350959e53c3
commit https://github.com/vim/vim/commit/8e8df251bf2505e5decf258397c6069fbe5e2e01
Christian Brabandt <cb@256bit.org>
parents:
9119
diff
changeset
|
861 1844, |
7350959e53c3
commit https://github.com/vim/vim/commit/8e8df251bf2505e5decf258397c6069fbe5e2e01
Christian Brabandt <cb@256bit.org>
parents:
9119
diff
changeset
|
862 /**/ |
9119
39cc63e8df7c
commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents:
9117
diff
changeset
|
863 1843, |
39cc63e8df7c
commit https://github.com/vim/vim/commit/2177f9fe18a927ef65ccebb0856722a28dc00252
Christian Brabandt <cb@256bit.org>
parents:
9117
diff
changeset
|
864 /**/ |
9117
0cc48b3cd884
commit https://github.com/vim/vim/commit/03e19a04ac2ca55643663b97b6ab94043233dcbd
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
865 1842, |
0cc48b3cd884
commit https://github.com/vim/vim/commit/03e19a04ac2ca55643663b97b6ab94043233dcbd
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
866 /**/ |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9112
diff
changeset
|
867 1841, |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9112
diff
changeset
|
868 /**/ |
9112
932f94b2d8c2
commit https://github.com/vim/vim/commit/a57024453115592b8847af40ddd965a33898e390
Christian Brabandt <cb@256bit.org>
parents:
9110
diff
changeset
|
869 1840, |
932f94b2d8c2
commit https://github.com/vim/vim/commit/a57024453115592b8847af40ddd965a33898e390
Christian Brabandt <cb@256bit.org>
parents:
9110
diff
changeset
|
870 /**/ |
9110
6d3888e2232c
commit https://github.com/vim/vim/commit/2bbf8eff6fab16d86e7bcfc0da1962d31bec7891
Christian Brabandt <cb@256bit.org>
parents:
9108
diff
changeset
|
871 1839, |
6d3888e2232c
commit https://github.com/vim/vim/commit/2bbf8eff6fab16d86e7bcfc0da1962d31bec7891
Christian Brabandt <cb@256bit.org>
parents:
9108
diff
changeset
|
872 /**/ |
9108
d319453f62b3
commit https://github.com/vim/vim/commit/574860b5ee9da281c875dad07a607454e135eaee
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
873 1838, |
d319453f62b3
commit https://github.com/vim/vim/commit/574860b5ee9da281c875dad07a607454e135eaee
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
874 /**/ |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9104
diff
changeset
|
875 1837, |
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9104
diff
changeset
|
876 /**/ |
9104
2242a5766417
commit https://github.com/vim/vim/commit/1d429610bf9e99a6252be8abbc910d6667e4d1da
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
877 1836, |
2242a5766417
commit https://github.com/vim/vim/commit/1d429610bf9e99a6252be8abbc910d6667e4d1da
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
878 /**/ |
9102
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
9100
diff
changeset
|
879 1835, |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
9100
diff
changeset
|
880 /**/ |
9100
ddccff0480d2
commit https://github.com/vim/vim/commit/908be438794619f10ef7fa25e24e5893b2ae0189
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
881 1834, |
ddccff0480d2
commit https://github.com/vim/vim/commit/908be438794619f10ef7fa25e24e5893b2ae0189
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
882 /**/ |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
9095
diff
changeset
|
883 1833, |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
9095
diff
changeset
|
884 /**/ |
9095
634a8299bd2c
commit https://github.com/vim/vim/commit/dc303bce10c60a3314078ea168064552fadf01af
Christian Brabandt <cb@256bit.org>
parents:
9093
diff
changeset
|
885 1832, |
634a8299bd2c
commit https://github.com/vim/vim/commit/dc303bce10c60a3314078ea168064552fadf01af
Christian Brabandt <cb@256bit.org>
parents:
9093
diff
changeset
|
886 /**/ |
9093
ad9322b525e1
commit https://github.com/vim/vim/commit/e40d75f6ef73095286b66e546c70ff6f045e009d
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
887 1831, |
ad9322b525e1
commit https://github.com/vim/vim/commit/e40d75f6ef73095286b66e546c70ff6f045e009d
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
888 /**/ |
9091
294cfd18e9c7
commit https://github.com/vim/vim/commit/73a733e08bb7853d2ac12c60756ae51e39abb4d9
Christian Brabandt <cb@256bit.org>
parents:
9089
diff
changeset
|
889 1830, |
294cfd18e9c7
commit https://github.com/vim/vim/commit/73a733e08bb7853d2ac12c60756ae51e39abb4d9
Christian Brabandt <cb@256bit.org>
parents:
9089
diff
changeset
|
890 /**/ |
9089
6bc0a492e8ba
commit https://github.com/vim/vim/commit/de7eb0a47b557eb4656c6b63d421c7e7bae1ef30
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
891 1829, |
6bc0a492e8ba
commit https://github.com/vim/vim/commit/de7eb0a47b557eb4656c6b63d421c7e7bae1ef30
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
892 /**/ |
9087
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
9085
diff
changeset
|
893 1828, |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
9085
diff
changeset
|
894 /**/ |
9085
d362e6df1deb
commit https://github.com/vim/vim/commit/fb6ffc732e65dbc459c89247ff78134402f1a18b
Christian Brabandt <cb@256bit.org>
parents:
9083
diff
changeset
|
895 1827, |
d362e6df1deb
commit https://github.com/vim/vim/commit/fb6ffc732e65dbc459c89247ff78134402f1a18b
Christian Brabandt <cb@256bit.org>
parents:
9083
diff
changeset
|
896 /**/ |
9083
69bb7b230094
commit https://github.com/vim/vim/commit/cf7ff70ca73218d618e7c00ab785bcf5f9120a94
Christian Brabandt <cb@256bit.org>
parents:
9081
diff
changeset
|
897 1826, |
69bb7b230094
commit https://github.com/vim/vim/commit/cf7ff70ca73218d618e7c00ab785bcf5f9120a94
Christian Brabandt <cb@256bit.org>
parents:
9081
diff
changeset
|
898 /**/ |
9081
b2b915c1d311
commit https://github.com/vim/vim/commit/5d96e3ae534ade8ed09a5de9ff8fd7519537ec28
Christian Brabandt <cb@256bit.org>
parents:
9079
diff
changeset
|
899 1825, |
b2b915c1d311
commit https://github.com/vim/vim/commit/5d96e3ae534ade8ed09a5de9ff8fd7519537ec28
Christian Brabandt <cb@256bit.org>
parents:
9079
diff
changeset
|
900 /**/ |
9079
2cd83c854073
commit https://github.com/vim/vim/commit/36e0f7da9bc4a6ee8a7b17df503542a339e034c8
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
901 1824, |
2cd83c854073
commit https://github.com/vim/vim/commit/36e0f7da9bc4a6ee8a7b17df503542a339e034c8
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
902 /**/ |
9077
a2441f2ff85d
commit https://github.com/vim/vim/commit/d9db8b448c214eb583e84c598bca0688b9202ba7
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
903 1823, |
a2441f2ff85d
commit https://github.com/vim/vim/commit/d9db8b448c214eb583e84c598bca0688b9202ba7
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
904 /**/ |
9074
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9072
diff
changeset
|
905 1822, |
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9072
diff
changeset
|
906 /**/ |
9072
f60bdac6cc2c
commit https://github.com/vim/vim/commit/4ed6b2e2d7fd5959fb9b9f608935d47305c4bbe4
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
907 1821, |
f60bdac6cc2c
commit https://github.com/vim/vim/commit/4ed6b2e2d7fd5959fb9b9f608935d47305c4bbe4
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
908 /**/ |
9070
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
909 1820, |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
910 /**/ |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
911 1819, |
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
912 /**/ |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
9064
diff
changeset
|
913 1818, |
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
9064
diff
changeset
|
914 /**/ |
9064
a86103d4b356
commit https://github.com/vim/vim/commit/cefe4f994853c2d4866e2aa4ea3e3f36ab2fea13
Christian Brabandt <cb@256bit.org>
parents:
9062
diff
changeset
|
915 1817, |
a86103d4b356
commit https://github.com/vim/vim/commit/cefe4f994853c2d4866e2aa4ea3e3f36ab2fea13
Christian Brabandt <cb@256bit.org>
parents:
9062
diff
changeset
|
916 /**/ |
9062
0aa90b84118c
commit https://github.com/vim/vim/commit/d8585eded6359f1d7e1981e96ae775efd077c638
Christian Brabandt <cb@256bit.org>
parents:
9060
diff
changeset
|
917 1816, |
0aa90b84118c
commit https://github.com/vim/vim/commit/d8585eded6359f1d7e1981e96ae775efd077c638
Christian Brabandt <cb@256bit.org>
parents:
9060
diff
changeset
|
918 /**/ |
9060
616793d0412b
commit https://github.com/vim/vim/commit/9a3b3311d26c990208150255ad65472bb4eefaa4
Christian Brabandt <cb@256bit.org>
parents:
9058
diff
changeset
|
919 1815, |
616793d0412b
commit https://github.com/vim/vim/commit/9a3b3311d26c990208150255ad65472bb4eefaa4
Christian Brabandt <cb@256bit.org>
parents:
9058
diff
changeset
|
920 /**/ |
9058
87c2e43a4a12
commit https://github.com/vim/vim/commit/b8d4905592fc26fcd09180d7d6bfefd899f2f6c6
Christian Brabandt <cb@256bit.org>
parents:
9056
diff
changeset
|
921 1814, |
87c2e43a4a12
commit https://github.com/vim/vim/commit/b8d4905592fc26fcd09180d7d6bfefd899f2f6c6
Christian Brabandt <cb@256bit.org>
parents:
9056
diff
changeset
|
922 /**/ |
9056
19d2dfb3f5e2
commit https://github.com/vim/vim/commit/9b4ebc692d77ca8ef90d72517347f74c2474dd3d
Christian Brabandt <cb@256bit.org>
parents:
9054
diff
changeset
|
923 1813, |
19d2dfb3f5e2
commit https://github.com/vim/vim/commit/9b4ebc692d77ca8ef90d72517347f74c2474dd3d
Christian Brabandt <cb@256bit.org>
parents:
9054
diff
changeset
|
924 /**/ |
9054
f129fd3ebd98
commit https://github.com/vim/vim/commit/187147aedd588070d0676664d5076d046644094e
Christian Brabandt <cb@256bit.org>
parents:
9052
diff
changeset
|
925 1812, |
f129fd3ebd98
commit https://github.com/vim/vim/commit/187147aedd588070d0676664d5076d046644094e
Christian Brabandt <cb@256bit.org>
parents:
9052
diff
changeset
|
926 /**/ |
9052
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
9050
diff
changeset
|
927 1811, |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
9050
diff
changeset
|
928 /**/ |
9050
31bba6f25d84
commit https://github.com/vim/vim/commit/715d285d79a1d97928dd717278e25e6de45d1496
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
929 1810, |
31bba6f25d84
commit https://github.com/vim/vim/commit/715d285d79a1d97928dd717278e25e6de45d1496
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
930 /**/ |
9048
5bb5569bec60
commit https://github.com/vim/vim/commit/868cfc19bb079a16ca58884b551486566f35419b
Christian Brabandt <cb@256bit.org>
parents:
9046
diff
changeset
|
931 1809, |
5bb5569bec60
commit https://github.com/vim/vim/commit/868cfc19bb079a16ca58884b551486566f35419b
Christian Brabandt <cb@256bit.org>
parents:
9046
diff
changeset
|
932 /**/ |
9046
057fb9d0191b
commit https://github.com/vim/vim/commit/8a24b794b89916c8074892e7b25121a21f1fa9c9
Christian Brabandt <cb@256bit.org>
parents:
9044
diff
changeset
|
933 1808, |
057fb9d0191b
commit https://github.com/vim/vim/commit/8a24b794b89916c8074892e7b25121a21f1fa9c9
Christian Brabandt <cb@256bit.org>
parents:
9044
diff
changeset
|
934 /**/ |
9044
5abf6f38cbbb
commit https://github.com/vim/vim/commit/d75263c020a5044fa73bc8cd57ce73ca5e23b360
Christian Brabandt <cb@256bit.org>
parents:
9042
diff
changeset
|
935 1807, |
5abf6f38cbbb
commit https://github.com/vim/vim/commit/d75263c020a5044fa73bc8cd57ce73ca5e23b360
Christian Brabandt <cb@256bit.org>
parents:
9042
diff
changeset
|
936 /**/ |
9042
21bd2230c5cd
commit https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201
Christian Brabandt <cb@256bit.org>
parents:
9039
diff
changeset
|
937 1806, |
21bd2230c5cd
commit https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201
Christian Brabandt <cb@256bit.org>
parents:
9039
diff
changeset
|
938 /**/ |
9039
0764ed56b18c
commit https://github.com/vim/vim/commit/4cc39a527fecc96ad6639f10c9389c66af828cf1
Christian Brabandt <cb@256bit.org>
parents:
9037
diff
changeset
|
939 1805, |
0764ed56b18c
commit https://github.com/vim/vim/commit/4cc39a527fecc96ad6639f10c9389c66af828cf1
Christian Brabandt <cb@256bit.org>
parents:
9037
diff
changeset
|
940 /**/ |
9037
d07035f84f0d
commit https://github.com/vim/vim/commit/b20545f2a718d4f19c3f609fd11c0ca4eff450ce
Christian Brabandt <cb@256bit.org>
parents:
9035
diff
changeset
|
941 1804, |
d07035f84f0d
commit https://github.com/vim/vim/commit/b20545f2a718d4f19c3f609fd11c0ca4eff450ce
Christian Brabandt <cb@256bit.org>
parents:
9035
diff
changeset
|
942 /**/ |
9035
08854bb267b2
commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
943 1803, |
08854bb267b2
commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
944 /**/ |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
9031
diff
changeset
|
945 1802, |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
9031
diff
changeset
|
946 /**/ |
9031
8208f5f58505
commit https://github.com/vim/vim/commit/113ce084569893a3897c8cc4d7d0f301fef7978a
Christian Brabandt <cb@256bit.org>
parents:
9029
diff
changeset
|
947 1801, |
8208f5f58505
commit https://github.com/vim/vim/commit/113ce084569893a3897c8cc4d7d0f301fef7978a
Christian Brabandt <cb@256bit.org>
parents:
9029
diff
changeset
|
948 /**/ |
9029
f06767547415
commit https://github.com/vim/vim/commit/631225627d448b591e529a5d3e7ac74ef44b8459
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
949 1800, |
f06767547415
commit https://github.com/vim/vim/commit/631225627d448b591e529a5d3e7ac74ef44b8459
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
950 /**/ |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
951 1799, |
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
952 /**/ |
9025
0bc1d66dfa2f
commit https://github.com/vim/vim/commit/bb82762907ba024717ad9af3b229c2fa6405cd36
Christian Brabandt <cb@256bit.org>
parents:
9023
diff
changeset
|
953 1798, |
0bc1d66dfa2f
commit https://github.com/vim/vim/commit/bb82762907ba024717ad9af3b229c2fa6405cd36
Christian Brabandt <cb@256bit.org>
parents:
9023
diff
changeset
|
954 /**/ |
9023
8263edf411a7
commit https://github.com/vim/vim/commit/c61348e83fd4eed8b999fe5b7cdfb4caf90bf3fd
Christian Brabandt <cb@256bit.org>
parents:
9021
diff
changeset
|
955 1797, |
8263edf411a7
commit https://github.com/vim/vim/commit/c61348e83fd4eed8b999fe5b7cdfb4caf90bf3fd
Christian Brabandt <cb@256bit.org>
parents:
9021
diff
changeset
|
956 /**/ |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
957 1796, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
958 /**/ |
9019
2e3c6071db97
commit https://github.com/vim/vim/commit/5487544fa5d46af9f8f98aa4f5c59074a6e0639a
Christian Brabandt <cb@256bit.org>
parents:
9017
diff
changeset
|
959 1795, |
2e3c6071db97
commit https://github.com/vim/vim/commit/5487544fa5d46af9f8f98aa4f5c59074a6e0639a
Christian Brabandt <cb@256bit.org>
parents:
9017
diff
changeset
|
960 /**/ |
9017
7b1200ea03a1
commit https://github.com/vim/vim/commit/c285fe7c3ffdb3ec4eff20a1d1d5accfc80f1a86
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
961 1794, |
7b1200ea03a1
commit https://github.com/vim/vim/commit/c285fe7c3ffdb3ec4eff20a1d1d5accfc80f1a86
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
962 /**/ |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
963 1793, |
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
964 /**/ |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9011
diff
changeset
|
965 1792, |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9011
diff
changeset
|
966 /**/ |
9011
72a597e9e36d
commit https://github.com/vim/vim/commit/674127e1801fd02ff07dddf0dc3bf0d8cce68997
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
967 1791, |
72a597e9e36d
commit https://github.com/vim/vim/commit/674127e1801fd02ff07dddf0dc3bf0d8cce68997
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
968 /**/ |
9009
149d976650a1
commit https://github.com/vim/vim/commit/6231cb8b5b208becf088531816027001acc754e5
Christian Brabandt <cb@256bit.org>
parents:
9007
diff
changeset
|
969 1790, |
149d976650a1
commit https://github.com/vim/vim/commit/6231cb8b5b208becf088531816027001acc754e5
Christian Brabandt <cb@256bit.org>
parents:
9007
diff
changeset
|
970 /**/ |
9007
d5c6f1c5cd28
commit https://github.com/vim/vim/commit/437905c25d4cedfa16d0f87392e4a000d22362b7
Christian Brabandt <cb@256bit.org>
parents:
9005
diff
changeset
|
971 1789, |
d5c6f1c5cd28
commit https://github.com/vim/vim/commit/437905c25d4cedfa16d0f87392e4a000d22362b7
Christian Brabandt <cb@256bit.org>
parents:
9005
diff
changeset
|
972 /**/ |
9005
c473a9393dc5
commit https://github.com/vim/vim/commit/c7baa43fdb3f5b001ba3e6eb05bf6e199698eeea
Christian Brabandt <cb@256bit.org>
parents:
9003
diff
changeset
|
973 1788, |
c473a9393dc5
commit https://github.com/vim/vim/commit/c7baa43fdb3f5b001ba3e6eb05bf6e199698eeea
Christian Brabandt <cb@256bit.org>
parents:
9003
diff
changeset
|
974 /**/ |
9003
072556995a8e
commit https://github.com/vim/vim/commit/b2658a1ab02cd0ba848164f70c7c464fdc398162
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
975 1787, |
072556995a8e
commit https://github.com/vim/vim/commit/b2658a1ab02cd0ba848164f70c7c464fdc398162
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
976 /**/ |
9001
57b791947796
commit https://github.com/vim/vim/commit/d10abe52019d10403eb559ea0a424bbd310b738f
Christian Brabandt <cb@256bit.org>
parents:
8999
diff
changeset
|
977 1786, |
57b791947796
commit https://github.com/vim/vim/commit/d10abe52019d10403eb559ea0a424bbd310b738f
Christian Brabandt <cb@256bit.org>
parents:
8999
diff
changeset
|
978 /**/ |
8999
f414db42d167
commit https://github.com/vim/vim/commit/490465bda6ab66f78041709cc02f48a25486a3e5
Christian Brabandt <cb@256bit.org>
parents:
8997
diff
changeset
|
979 1785, |
f414db42d167
commit https://github.com/vim/vim/commit/490465bda6ab66f78041709cc02f48a25486a3e5
Christian Brabandt <cb@256bit.org>
parents:
8997
diff
changeset
|
980 /**/ |
8997
90fd01ade690
commit https://github.com/vim/vim/commit/8e9eb3a6a1e589949f1c878c839528d917fdfc4a
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
981 1784, |
90fd01ade690
commit https://github.com/vim/vim/commit/8e9eb3a6a1e589949f1c878c839528d917fdfc4a
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
982 /**/ |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8993
diff
changeset
|
983 1783, |
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8993
diff
changeset
|
984 /**/ |
8993
2085167ab1b0
commit https://github.com/vim/vim/commit/fca66003053f8c0da5161d1fe4b75b3a389934b5
Christian Brabandt <cb@256bit.org>
parents:
8991
diff
changeset
|
985 1782, |
2085167ab1b0
commit https://github.com/vim/vim/commit/fca66003053f8c0da5161d1fe4b75b3a389934b5
Christian Brabandt <cb@256bit.org>
parents:
8991
diff
changeset
|
986 /**/ |
8991
42e85487c0f9
commit https://github.com/vim/vim/commit/da5b3dcf06a3af5b398450258be32b0416451a9b
Christian Brabandt <cb@256bit.org>
parents:
8989
diff
changeset
|
987 1781, |
42e85487c0f9
commit https://github.com/vim/vim/commit/da5b3dcf06a3af5b398450258be32b0416451a9b
Christian Brabandt <cb@256bit.org>
parents:
8989
diff
changeset
|
988 /**/ |
8989
e600e696c0a1
commit https://github.com/vim/vim/commit/dc633cf82758f67f656cda7fa8ccc30414ee53f8
Christian Brabandt <cb@256bit.org>
parents:
8987
diff
changeset
|
989 1780, |
e600e696c0a1
commit https://github.com/vim/vim/commit/dc633cf82758f67f656cda7fa8ccc30414ee53f8
Christian Brabandt <cb@256bit.org>
parents:
8987
diff
changeset
|
990 /**/ |
8987
42beb54724fa
commit https://github.com/vim/vim/commit/73dfe917ba6357413aaf98a021c91add5ac6e9bc
Christian Brabandt <cb@256bit.org>
parents:
8985
diff
changeset
|
991 1779, |
42beb54724fa
commit https://github.com/vim/vim/commit/73dfe917ba6357413aaf98a021c91add5ac6e9bc
Christian Brabandt <cb@256bit.org>
parents:
8985
diff
changeset
|
992 /**/ |
8985
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8983
diff
changeset
|
993 1778, |
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8983
diff
changeset
|
994 /**/ |
8983
5cbd81536f27
commit https://github.com/vim/vim/commit/3849992b16011e36a5cb5be4b127f843389b96fd
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
995 1777, |
5cbd81536f27
commit https://github.com/vim/vim/commit/3849992b16011e36a5cb5be4b127f843389b96fd
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
996 /**/ |
8981
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8979
diff
changeset
|
997 1776, |
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8979
diff
changeset
|
998 /**/ |
8979
a1dac213df8b
commit https://github.com/vim/vim/commit/763b684373bf5954445d8d8d99da1e39a4fc5105
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
999 1775, |
a1dac213df8b
commit https://github.com/vim/vim/commit/763b684373bf5954445d8d8d99da1e39a4fc5105
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
1000 /**/ |
8977
b3da1ec8d156
commit https://github.com/vim/vim/commit/902647d2dfb42dce8449dfbbc22dab27a528744d
Christian Brabandt <cb@256bit.org>
parents:
8975
diff
changeset
|
1001 1774, |
b3da1ec8d156
commit https://github.com/vim/vim/commit/902647d2dfb42dce8449dfbbc22dab27a528744d
Christian Brabandt <cb@256bit.org>
parents:
8975
diff
changeset
|
1002 /**/ |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8973
diff
changeset
|
1003 1773, |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8973
diff
changeset
|
1004 /**/ |
8973
887bded0d8ea
commit https://github.com/vim/vim/commit/54a38415caa31de8b4ac46a9234ae339b1fd6255
Christian Brabandt <cb@256bit.org>
parents:
8971
diff
changeset
|
1005 1772, |
887bded0d8ea
commit https://github.com/vim/vim/commit/54a38415caa31de8b4ac46a9234ae339b1fd6255
Christian Brabandt <cb@256bit.org>
parents:
8971
diff
changeset
|
1006 /**/ |
8971
138824071d4f
commit https://github.com/vim/vim/commit/21decdd3e6d5ce3469a3c2743de1f4aada388d8c
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
1007 1771, |
138824071d4f
commit https://github.com/vim/vim/commit/21decdd3e6d5ce3469a3c2743de1f4aada388d8c
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
1008 /**/ |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8967
diff
changeset
|
1009 1770, |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8967
diff
changeset
|
1010 /**/ |
8967
df5f9284fcba
commit https://github.com/vim/vim/commit/6d4431e7b675ba7a0194c0b8eb84b7d92e4e7953
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
1011 1769, |
df5f9284fcba
commit https://github.com/vim/vim/commit/6d4431e7b675ba7a0194c0b8eb84b7d92e4e7953
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
1012 /**/ |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8963
diff
changeset
|
1013 1768, |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8963
diff
changeset
|
1014 /**/ |
8963
53e53aeb35ad
commit https://github.com/vim/vim/commit/4adfaabfe7e07da9546b45130cad0d266ba48611
Christian Brabandt <cb@256bit.org>
parents:
8960
diff
changeset
|
1015 1767, |
53e53aeb35ad
commit https://github.com/vim/vim/commit/4adfaabfe7e07da9546b45130cad0d266ba48611
Christian Brabandt <cb@256bit.org>
parents:
8960
diff
changeset
|
1016 /**/ |
8960
ea3eb5a815b5
commit https://github.com/vim/vim/commit/02cfac85b4e4b038bb2df6962699fa93a42c7eb1
Christian Brabandt <cb@256bit.org>
parents:
8958
diff
changeset
|
1017 1766, |
ea3eb5a815b5
commit https://github.com/vim/vim/commit/02cfac85b4e4b038bb2df6962699fa93a42c7eb1
Christian Brabandt <cb@256bit.org>
parents:
8958
diff
changeset
|
1018 /**/ |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8956
diff
changeset
|
1019 1765, |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8956
diff
changeset
|
1020 /**/ |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8956
diff
changeset
|
1021 1764, |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8956
diff
changeset
|
1022 /**/ |
8956
d9e671c5afe6
commit https://github.com/vim/vim/commit/ba53435144f46eaaa53c63a62e748b3feee9742c
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
1023 1763, |
d9e671c5afe6
commit https://github.com/vim/vim/commit/ba53435144f46eaaa53c63a62e748b3feee9742c
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
1024 /**/ |
8954
ab4fe611d205
commit https://github.com/vim/vim/commit/268a06ce901d2c780304e0395028e3c2f60ec755
Christian Brabandt <cb@256bit.org>
parents:
8952
diff
changeset
|
1025 1762, |
ab4fe611d205
commit https://github.com/vim/vim/commit/268a06ce901d2c780304e0395028e3c2f60ec755
Christian Brabandt <cb@256bit.org>
parents:
8952
diff
changeset
|
1026 /**/ |
8952
9b04f9e8d1d4
commit https://github.com/vim/vim/commit/8ed43916dbea4ccedcc84d271e292abbf658b9c5
Christian Brabandt <cb@256bit.org>
parents:
8949
diff
changeset
|
1027 1761, |
9b04f9e8d1d4
commit https://github.com/vim/vim/commit/8ed43916dbea4ccedcc84d271e292abbf658b9c5
Christian Brabandt <cb@256bit.org>
parents:
8949
diff
changeset
|
1028 /**/ |
8949
c44ab784f5e5
commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
1029 1760, |
c44ab784f5e5
commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
1030 /**/ |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8945
diff
changeset
|
1031 1759, |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8945
diff
changeset
|
1032 /**/ |
8945
a3060addc328
commit https://github.com/vim/vim/commit/245c41070c7f37d52be43cce0cb140bd3ade6c7e
Christian Brabandt <cb@256bit.org>
parents:
8943
diff
changeset
|
1033 1758, |
a3060addc328
commit https://github.com/vim/vim/commit/245c41070c7f37d52be43cce0cb140bd3ade6c7e
Christian Brabandt <cb@256bit.org>
parents:
8943
diff
changeset
|
1034 /**/ |
8943
47036dcd83a4
commit https://github.com/vim/vim/commit/8e42ae5069d4985869e46eaa56900ed19e30f504
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
1035 1757, |
47036dcd83a4
commit https://github.com/vim/vim/commit/8e42ae5069d4985869e46eaa56900ed19e30f504
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
1036 /**/ |
8941
0e7b1897ceb3
commit https://github.com/vim/vim/commit/a6e42501424f6670fa864c739d2dc2eb764900b9
Christian Brabandt <cb@256bit.org>
parents:
8939
diff
changeset
|
1037 1756, |
0e7b1897ceb3
commit https://github.com/vim/vim/commit/a6e42501424f6670fa864c739d2dc2eb764900b9
Christian Brabandt <cb@256bit.org>
parents:
8939
diff
changeset
|
1038 /**/ |
8939
36cb3aff8c1c
commit https://github.com/vim/vim/commit/517ffbee0d5b7b46320726faaa330b61f54e867c
Christian Brabandt <cb@256bit.org>
parents:
8937
diff
changeset
|
1039 1755, |
36cb3aff8c1c
commit https://github.com/vim/vim/commit/517ffbee0d5b7b46320726faaa330b61f54e867c
Christian Brabandt <cb@256bit.org>
parents:
8937
diff
changeset
|
1040 /**/ |
8937
da4f6e238374
commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents:
8935
diff
changeset
|
1041 1754, |
da4f6e238374
commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents:
8935
diff
changeset
|
1042 /**/ |
8935
219d80fee92f
commit https://github.com/vim/vim/commit/c020042083b9c0a4e932b562c3bef97c76328e18
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1043 1753, |
219d80fee92f
commit https://github.com/vim/vim/commit/c020042083b9c0a4e932b562c3bef97c76328e18
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1044 /**/ |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8930
diff
changeset
|
1045 1752, |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8930
diff
changeset
|
1046 /**/ |
8930
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8928
diff
changeset
|
1047 1751, |
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8928
diff
changeset
|
1048 /**/ |
8928
e6916e1683bb
commit https://github.com/vim/vim/commit/7f7c3325d3f1baba32263a3457cfc4d90ecd5ff1
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
1049 1750, |
e6916e1683bb
commit https://github.com/vim/vim/commit/7f7c3325d3f1baba32263a3457cfc4d90ecd5ff1
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
1050 /**/ |
8926
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
1051 1749, |
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
1052 /**/ |
8923
face93b02af4
commit https://github.com/vim/vim/commit/1538fc34fae3fae39773ca43f6ff52401fce61d8
Christian Brabandt <cb@256bit.org>
parents:
8921
diff
changeset
|
1053 1748, |
face93b02af4
commit https://github.com/vim/vim/commit/1538fc34fae3fae39773ca43f6ff52401fce61d8
Christian Brabandt <cb@256bit.org>
parents:
8921
diff
changeset
|
1054 /**/ |
8921
c3e7cc135754
commit https://github.com/vim/vim/commit/fe4b18640656ddea41f60cf7a76956c9cc5494d6
Christian Brabandt <cb@256bit.org>
parents:
8919
diff
changeset
|
1055 1747, |
c3e7cc135754
commit https://github.com/vim/vim/commit/fe4b18640656ddea41f60cf7a76956c9cc5494d6
Christian Brabandt <cb@256bit.org>
parents:
8919
diff
changeset
|
1056 /**/ |
8919
240ad5a78199
commit https://github.com/vim/vim/commit/95509e18f8806046eeee27482c77666bbec515da
Christian Brabandt <cb@256bit.org>
parents:
8917
diff
changeset
|
1057 1746, |
240ad5a78199
commit https://github.com/vim/vim/commit/95509e18f8806046eeee27482c77666bbec515da
Christian Brabandt <cb@256bit.org>
parents:
8917
diff
changeset
|
1058 /**/ |
8917
d07e51166f08
commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents:
8915
diff
changeset
|
1059 1745, |
d07e51166f08
commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents:
8915
diff
changeset
|
1060 /**/ |
8915
8cbf472483fa
commit https://github.com/vim/vim/commit/66210042892389d36e3d37203ec77f61467bfb1c
Christian Brabandt <cb@256bit.org>
parents:
8913
diff
changeset
|
1061 1744, |
8cbf472483fa
commit https://github.com/vim/vim/commit/66210042892389d36e3d37203ec77f61467bfb1c
Christian Brabandt <cb@256bit.org>
parents:
8913
diff
changeset
|
1062 /**/ |
8913
caffda31048c
commit https://github.com/vim/vim/commit/75be2339d877bbd38df91c0181e1e0e388852df6
Christian Brabandt <cb@256bit.org>
parents:
8911
diff
changeset
|
1063 1743, |
caffda31048c
commit https://github.com/vim/vim/commit/75be2339d877bbd38df91c0181e1e0e388852df6
Christian Brabandt <cb@256bit.org>
parents:
8911
diff
changeset
|
1064 /**/ |
8911
460c8cc144f0
commit https://github.com/vim/vim/commit/5d18e0eca59ffbba22c7f7c91c9f99d672095728
Christian Brabandt <cb@256bit.org>
parents:
8909
diff
changeset
|
1065 1742, |
460c8cc144f0
commit https://github.com/vim/vim/commit/5d18e0eca59ffbba22c7f7c91c9f99d672095728
Christian Brabandt <cb@256bit.org>
parents:
8909
diff
changeset
|
1066 /**/ |
8909
6393ac6d7060
commit https://github.com/vim/vim/commit/b22bd46b9681d73d095f2eadff8163d3a6cf416b
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
1067 1741, |
6393ac6d7060
commit https://github.com/vim/vim/commit/b22bd46b9681d73d095f2eadff8163d3a6cf416b
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
1068 /**/ |
8907
5deb9e8f4292
commit https://github.com/vim/vim/commit/4d585022023b96f6507e8cae5ed8fc8d926f5140
Christian Brabandt <cb@256bit.org>
parents:
8905
diff
changeset
|
1069 1740, |
5deb9e8f4292
commit https://github.com/vim/vim/commit/4d585022023b96f6507e8cae5ed8fc8d926f5140
Christian Brabandt <cb@256bit.org>
parents:
8905
diff
changeset
|
1070 /**/ |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8903
diff
changeset
|
1071 1739, |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8903
diff
changeset
|
1072 /**/ |
8903
9da3751688e9
commit https://github.com/vim/vim/commit/5d91646599a7b74310845e30a2a52ff197dc0ed7
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1073 1738, |
9da3751688e9
commit https://github.com/vim/vim/commit/5d91646599a7b74310845e30a2a52ff197dc0ed7
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
1074 /**/ |
8901
b4dad96ade29
commit https://github.com/vim/vim/commit/52196b2dbe3b64b5054e1df3d3aa8fc65e30addc
Christian Brabandt <cb@256bit.org>
parents:
8899
diff
changeset
|
1075 1737, |
b4dad96ade29
commit https://github.com/vim/vim/commit/52196b2dbe3b64b5054e1df3d3aa8fc65e30addc
Christian Brabandt <cb@256bit.org>
parents:
8899
diff
changeset
|
1076 /**/ |
8899
fe12294683d8
commit https://github.com/vim/vim/commit/baa9fcaf4042a6dbe01e64ce63cb54941ee00f09
Christian Brabandt <cb@256bit.org>
parents:
8897
diff
changeset
|
1077 1736, |
fe12294683d8
commit https://github.com/vim/vim/commit/baa9fcaf4042a6dbe01e64ce63cb54941ee00f09
Christian Brabandt <cb@256bit.org>
parents:
8897
diff
changeset
|
1078 /**/ |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8895
diff
changeset
|
1079 1735, |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8895
diff
changeset
|
1080 /**/ |
8895
7f29248d5789
commit https://github.com/vim/vim/commit/0f518a8f4d4be4cac10389680f6bd5e3781f94b0
Christian Brabandt <cb@256bit.org>
parents:
8893
diff
changeset
|
1081 1734, |
7f29248d5789
commit https://github.com/vim/vim/commit/0f518a8f4d4be4cac10389680f6bd5e3781f94b0
Christian Brabandt <cb@256bit.org>
parents:
8893
diff
changeset
|
1082 /**/ |
8893
d5d2e48666bd
commit https://github.com/vim/vim/commit/839e954aaa72ef62f65416d177f829e681c15466
Christian Brabandt <cb@256bit.org>
parents:
8891
diff
changeset
|
1083 1733, |
d5d2e48666bd
commit https://github.com/vim/vim/commit/839e954aaa72ef62f65416d177f829e681c15466
Christian Brabandt <cb@256bit.org>
parents:
8891
diff
changeset
|
1084 /**/ |
8891
d7ba3f9b9ba6
commit https://github.com/vim/vim/commit/429fcfbf9a9275367fe9441a50a3dcd773497d84
Christian Brabandt <cb@256bit.org>
parents:
8889
diff
changeset
|
1085 1732, |
d7ba3f9b9ba6
commit https://github.com/vim/vim/commit/429fcfbf9a9275367fe9441a50a3dcd773497d84
Christian Brabandt <cb@256bit.org>
parents:
8889
diff
changeset
|
1086 /**/ |
8889
8755d57debaa
commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents:
8887
diff
changeset
|
1087 1731, |
8755d57debaa
commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents:
8887
diff
changeset
|
1088 /**/ |
8887
8bf855dea79e
commit https://github.com/vim/vim/commit/58de0e2dcc1f2d251b74892a06d71a14973f3187
Christian Brabandt <cb@256bit.org>
parents:
8885
diff
changeset
|
1089 1730, |
8bf855dea79e
commit https://github.com/vim/vim/commit/58de0e2dcc1f2d251b74892a06d71a14973f3187
Christian Brabandt <cb@256bit.org>
parents:
8885
diff
changeset
|
1090 /**/ |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
1091 1729, |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
1092 /**/ |
8883
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8881
diff
changeset
|
1093 1728, |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8881
diff
changeset
|
1094 /**/ |
8881
ed0b39dd7fd6
commit https://github.com/vim/vim/commit/ebf7dfa6f121c82f97d2adca3d45fbaba9ad8f7e
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
1095 1727, |
ed0b39dd7fd6
commit https://github.com/vim/vim/commit/ebf7dfa6f121c82f97d2adca3d45fbaba9ad8f7e
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
1096 /**/ |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8877
diff
changeset
|
1097 1726, |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8877
diff
changeset
|
1098 /**/ |
8877
50e40f322e78
commit https://github.com/vim/vim/commit/3780bb923a688e0051a9a23474eeb38a8acb695a
Christian Brabandt <cb@256bit.org>
parents:
8874
diff
changeset
|
1099 1725, |
50e40f322e78
commit https://github.com/vim/vim/commit/3780bb923a688e0051a9a23474eeb38a8acb695a
Christian Brabandt <cb@256bit.org>
parents:
8874
diff
changeset
|
1100 /**/ |
8874
ccab37bb9ac9
commit https://github.com/vim/vim/commit/73cd8fb3e87e4b29dfc489f58e56dee1839c18e5
Christian Brabandt <cb@256bit.org>
parents:
8872
diff
changeset
|
1101 1724, |
ccab37bb9ac9
commit https://github.com/vim/vim/commit/73cd8fb3e87e4b29dfc489f58e56dee1839c18e5
Christian Brabandt <cb@256bit.org>
parents:
8872
diff
changeset
|
1102 /**/ |
8872
4d4de770f970
commit https://github.com/vim/vim/commit/f73d3bc253fa79ad220f52f04b93e782e95a9d43
Christian Brabandt <cb@256bit.org>
parents:
8870
diff
changeset
|
1103 1723, |
4d4de770f970
commit https://github.com/vim/vim/commit/f73d3bc253fa79ad220f52f04b93e782e95a9d43
Christian Brabandt <cb@256bit.org>
parents:
8870
diff
changeset
|
1104 /**/ |
8870
30988ffb7498
commit https://github.com/vim/vim/commit/0239acb11fe4bfe9b525ea90b782759da5eb7704
Christian Brabandt <cb@256bit.org>
parents:
8867
diff
changeset
|
1105 1722, |
30988ffb7498
commit https://github.com/vim/vim/commit/0239acb11fe4bfe9b525ea90b782759da5eb7704
Christian Brabandt <cb@256bit.org>
parents:
8867
diff
changeset
|
1106 /**/ |
8867
538d278d3db6
commit https://github.com/vim/vim/commit/a4d13de8363abf4c12fe99a52b4e49e763de92fe
Christian Brabandt <cb@256bit.org>
parents:
8865
diff
changeset
|
1107 1721, |
538d278d3db6
commit https://github.com/vim/vim/commit/a4d13de8363abf4c12fe99a52b4e49e763de92fe
Christian Brabandt <cb@256bit.org>
parents:
8865
diff
changeset
|
1108 /**/ |
8865
be36707a661a
commit https://github.com/vim/vim/commit/9e4043757cd2fc18d071fdd98abf297d74878943
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
1109 1720, |
be36707a661a
commit https://github.com/vim/vim/commit/9e4043757cd2fc18d071fdd98abf297d74878943
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
1110 /**/ |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8861
diff
changeset
|
1111 1719, |
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8861
diff
changeset
|
1112 /**/ |
8861
45fe799c9672
commit https://github.com/vim/vim/commit/d56374e25df0b317b01423a01f158157faa647fa
Christian Brabandt <cb@256bit.org>
parents:
8859
diff
changeset
|
1113 1718, |
45fe799c9672
commit https://github.com/vim/vim/commit/d56374e25df0b317b01423a01f158157faa647fa
Christian Brabandt <cb@256bit.org>
parents:
8859
diff
changeset
|
1114 /**/ |
8859
03250bc0c63a
commit https://github.com/vim/vim/commit/0e4c1de5560c7f8b4cae539ec8cff0949daba3fc
Christian Brabandt <cb@256bit.org>
parents:
8857
diff
changeset
|
1115 1717, |
03250bc0c63a
commit https://github.com/vim/vim/commit/0e4c1de5560c7f8b4cae539ec8cff0949daba3fc
Christian Brabandt <cb@256bit.org>
parents:
8857
diff
changeset
|
1116 /**/ |
8857
df68de6b6f1c
commit https://github.com/vim/vim/commit/baec5c1768098f9dd867b465aaabfdfb294f10c2
Christian Brabandt <cb@256bit.org>
parents:
8855
diff
changeset
|
1117 1716, |
df68de6b6f1c
commit https://github.com/vim/vim/commit/baec5c1768098f9dd867b465aaabfdfb294f10c2
Christian Brabandt <cb@256bit.org>
parents:
8855
diff
changeset
|
1118 /**/ |
8855
b76195a1e38e
commit https://github.com/vim/vim/commit/ddecc25947dbdd689d5bcaed32f298a08abdd497
Christian Brabandt <cb@256bit.org>
parents:
8853
diff
changeset
|
1119 1715, |
b76195a1e38e
commit https://github.com/vim/vim/commit/ddecc25947dbdd689d5bcaed32f298a08abdd497
Christian Brabandt <cb@256bit.org>
parents:
8853
diff
changeset
|
1120 /**/ |
8853
48b4c1c284fb
commit https://github.com/vim/vim/commit/54f1b7abf8c48b1dd997202258d1d0673ed4bd29
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1121 1714, |
48b4c1c284fb
commit https://github.com/vim/vim/commit/54f1b7abf8c48b1dd997202258d1d0673ed4bd29
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1122 /**/ |
8851
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8849
diff
changeset
|
1123 1713, |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8849
diff
changeset
|
1124 /**/ |
8849
9f40a379ff1e
commit https://github.com/vim/vim/commit/49b27326447d0827c59c6cd201d58f65c1163086
Christian Brabandt <cb@256bit.org>
parents:
8847
diff
changeset
|
1125 1712, |
9f40a379ff1e
commit https://github.com/vim/vim/commit/49b27326447d0827c59c6cd201d58f65c1163086
Christian Brabandt <cb@256bit.org>
parents:
8847
diff
changeset
|
1126 /**/ |
8847
470ea7526cc6
commit https://github.com/vim/vim/commit/a742e084b677f76c67e9e52c4f9fb9ab24002e20
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
1127 1711, |
470ea7526cc6
commit https://github.com/vim/vim/commit/a742e084b677f76c67e9e52c4f9fb9ab24002e20
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
1128 /**/ |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8843
diff
changeset
|
1129 1710, |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8843
diff
changeset
|
1130 /**/ |
8843
87a6a0d65788
commit https://github.com/vim/vim/commit/4c9ce053d9f2a94cd704342dd4c25670a5995cbd
Christian Brabandt <cb@256bit.org>
parents:
8841
diff
changeset
|
1131 1709, |
87a6a0d65788
commit https://github.com/vim/vim/commit/4c9ce053d9f2a94cd704342dd4c25670a5995cbd
Christian Brabandt <cb@256bit.org>
parents:
8841
diff
changeset
|
1132 /**/ |
8841
f196308a2813
commit https://github.com/vim/vim/commit/2a6fa564a3b5061c14ff63b8b0f12801df0b0ac2
Christian Brabandt <cb@256bit.org>
parents:
8839
diff
changeset
|
1133 1708, |
f196308a2813
commit https://github.com/vim/vim/commit/2a6fa564a3b5061c14ff63b8b0f12801df0b0ac2
Christian Brabandt <cb@256bit.org>
parents:
8839
diff
changeset
|
1134 /**/ |
8839
9fa567d13551
commit https://github.com/vim/vim/commit/0921ecff1c5a74541bad6c073e8ade32247403d8
Christian Brabandt <cb@256bit.org>
parents:
8837
diff
changeset
|
1135 1707, |
9fa567d13551
commit https://github.com/vim/vim/commit/0921ecff1c5a74541bad6c073e8ade32247403d8
Christian Brabandt <cb@256bit.org>
parents:
8837
diff
changeset
|
1136 /**/ |
8837
e6c92db1e8b8
commit https://github.com/vim/vim/commit/e185c1efba3cb2611ac303c39a08e908497cbac4
Christian Brabandt <cb@256bit.org>
parents:
8835
diff
changeset
|
1137 1706, |
e6c92db1e8b8
commit https://github.com/vim/vim/commit/e185c1efba3cb2611ac303c39a08e908497cbac4
Christian Brabandt <cb@256bit.org>
parents:
8835
diff
changeset
|
1138 /**/ |
8835
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1139 1705, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1140 /**/ |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8831
diff
changeset
|
1141 1704, |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8831
diff
changeset
|
1142 /**/ |
8831
6f41d68aa68e
commit https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
Christian Brabandt <cb@256bit.org>
parents:
8829
diff
changeset
|
1143 1703, |
6f41d68aa68e
commit https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
Christian Brabandt <cb@256bit.org>
parents:
8829
diff
changeset
|
1144 /**/ |
8829
a2c27f6aaf3a
commit https://github.com/vim/vim/commit/4afc7c5d4a73340831077a02bfe1f74935e7f4a1
Christian Brabandt <cb@256bit.org>
parents:
8827
diff
changeset
|
1145 1702, |
a2c27f6aaf3a
commit https://github.com/vim/vim/commit/4afc7c5d4a73340831077a02bfe1f74935e7f4a1
Christian Brabandt <cb@256bit.org>
parents:
8827
diff
changeset
|
1146 /**/ |
8827
c154fbd3004f
commit https://github.com/vim/vim/commit/f9f22dbe4f90673ecce601a9dee4bb750ce3cd8f
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
1147 1701, |
c154fbd3004f
commit https://github.com/vim/vim/commit/f9f22dbe4f90673ecce601a9dee4bb750ce3cd8f
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
1148 /**/ |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8823
diff
changeset
|
1149 1700, |
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8823
diff
changeset
|
1150 /**/ |
8823
6d92bbe6c7de
commit https://github.com/vim/vim/commit/71fb0c146bef08dc276fc5793bd47366e6e0f32a
Christian Brabandt <cb@256bit.org>
parents:
8821
diff
changeset
|
1151 1699, |
6d92bbe6c7de
commit https://github.com/vim/vim/commit/71fb0c146bef08dc276fc5793bd47366e6e0f32a
Christian Brabandt <cb@256bit.org>
parents:
8821
diff
changeset
|
1152 /**/ |
8821
0bab7b98e930
commit https://github.com/vim/vim/commit/298c65971e884666d57c32bff6b730d517d9dc30
Christian Brabandt <cb@256bit.org>
parents:
8819
diff
changeset
|
1153 1698, |
0bab7b98e930
commit https://github.com/vim/vim/commit/298c65971e884666d57c32bff6b730d517d9dc30
Christian Brabandt <cb@256bit.org>
parents:
8819
diff
changeset
|
1154 /**/ |
8819
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
1155 1697, |
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
1156 /**/ |
8817
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8815
diff
changeset
|
1157 1696, |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8815
diff
changeset
|
1158 /**/ |
8815
50d9fb580ffe
commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents:
8813
diff
changeset
|
1159 1695, |
50d9fb580ffe
commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents:
8813
diff
changeset
|
1160 /**/ |
8813
b92938076e40
commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1161 1694, |
b92938076e40
commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1162 /**/ |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8808
diff
changeset
|
1163 1693, |
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8808
diff
changeset
|
1164 /**/ |
8808
6b70b9cdebfc
commit https://github.com/vim/vim/commit/9bd547aca41799605c3a3f83444f6725c2d6eda9
Christian Brabandt <cb@256bit.org>
parents:
8806
diff
changeset
|
1165 1692, |
6b70b9cdebfc
commit https://github.com/vim/vim/commit/9bd547aca41799605c3a3f83444f6725c2d6eda9
Christian Brabandt <cb@256bit.org>
parents:
8806
diff
changeset
|
1166 /**/ |
8806
8fff73f17ff1
commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
1167 1691, |
8fff73f17ff1
commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
1168 /**/ |
8804
75446578a52f
commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents:
8802
diff
changeset
|
1169 1690, |
75446578a52f
commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents:
8802
diff
changeset
|
1170 /**/ |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8800
diff
changeset
|
1171 1689, |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8800
diff
changeset
|
1172 /**/ |
8800
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8798
diff
changeset
|
1173 1688, |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8798
diff
changeset
|
1174 /**/ |
8798
176647a751d7
commit https://github.com/vim/vim/commit/bdf0bda968a53a55149a4c83a10a60c28e431305
Christian Brabandt <cb@256bit.org>
parents:
8796
diff
changeset
|
1175 1687, |
176647a751d7
commit https://github.com/vim/vim/commit/bdf0bda968a53a55149a4c83a10a60c28e431305
Christian Brabandt <cb@256bit.org>
parents:
8796
diff
changeset
|
1176 /**/ |
8796
fb764adba294
commit https://github.com/vim/vim/commit/e9c07270031e312082604d3505650f185aa65948
Christian Brabandt <cb@256bit.org>
parents:
8793
diff
changeset
|
1177 1686, |
fb764adba294
commit https://github.com/vim/vim/commit/e9c07270031e312082604d3505650f185aa65948
Christian Brabandt <cb@256bit.org>
parents:
8793
diff
changeset
|
1178 /**/ |
8793
dda254280bab
commit https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
Christian Brabandt <cb@256bit.org>
parents:
8791
diff
changeset
|
1179 1685, |
dda254280bab
commit https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
Christian Brabandt <cb@256bit.org>
parents:
8791
diff
changeset
|
1180 /**/ |
8791
43b5ff7837ea
commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents:
8789
diff
changeset
|
1181 1684, |
43b5ff7837ea
commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents:
8789
diff
changeset
|
1182 /**/ |
8789
667da8443275
commit https://github.com/vim/vim/commit/e609ad557c15e3e5d1e9ace2c578f48c5589c488
Christian Brabandt <cb@256bit.org>
parents:
8787
diff
changeset
|
1183 1683, |
667da8443275
commit https://github.com/vim/vim/commit/e609ad557c15e3e5d1e9ace2c578f48c5589c488
Christian Brabandt <cb@256bit.org>
parents:
8787
diff
changeset
|
1184 /**/ |
8787
33f5732d8932
commit https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
Christian Brabandt <cb@256bit.org>
parents:
8785
diff
changeset
|
1185 1682, |
33f5732d8932
commit https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
Christian Brabandt <cb@256bit.org>
parents:
8785
diff
changeset
|
1186 /**/ |
8785
1cb59cd2d382
commit https://github.com/vim/vim/commit/ef9d9b94a8803c405884bb6914ed745ede57c596
Christian Brabandt <cb@256bit.org>
parents:
8783
diff
changeset
|
1187 1681, |
1cb59cd2d382
commit https://github.com/vim/vim/commit/ef9d9b94a8803c405884bb6914ed745ede57c596
Christian Brabandt <cb@256bit.org>
parents:
8783
diff
changeset
|
1188 /**/ |
8783
23b7f05a7f48
commit https://github.com/vim/vim/commit/925ccfde79bf734bc89269c705cebe2d49fe6444
Christian Brabandt <cb@256bit.org>
parents:
8781
diff
changeset
|
1189 1680, |
23b7f05a7f48
commit https://github.com/vim/vim/commit/925ccfde79bf734bc89269c705cebe2d49fe6444
Christian Brabandt <cb@256bit.org>
parents:
8781
diff
changeset
|
1190 /**/ |
8781
65be74c1467b
commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
1191 1679, |
65be74c1467b
commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
1192 /**/ |
8779
26495bd795d2
commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents:
8777
diff
changeset
|
1193 1678, |
26495bd795d2
commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents:
8777
diff
changeset
|
1194 /**/ |
8777
a345060d671a
commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3
Christian Brabandt <cb@256bit.org>
parents:
8775
diff
changeset
|
1195 1677, |
a345060d671a
commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3
Christian Brabandt <cb@256bit.org>
parents:
8775
diff
changeset
|
1196 /**/ |
8775
d5136647ce31
commit https://github.com/vim/vim/commit/fead3ac9a35e0fc358141d3eb19574cd8a3ecb55
Christian Brabandt <cb@256bit.org>
parents:
8773
diff
changeset
|
1197 1676, |
d5136647ce31
commit https://github.com/vim/vim/commit/fead3ac9a35e0fc358141d3eb19574cd8a3ecb55
Christian Brabandt <cb@256bit.org>
parents:
8773
diff
changeset
|
1198 /**/ |
8773
08944b17c29c
commit https://github.com/vim/vim/commit/e101204906e10f1e100e2f9017985c61f26b03ac
Christian Brabandt <cb@256bit.org>
parents:
8771
diff
changeset
|
1199 1675, |
08944b17c29c
commit https://github.com/vim/vim/commit/e101204906e10f1e100e2f9017985c61f26b03ac
Christian Brabandt <cb@256bit.org>
parents:
8771
diff
changeset
|
1200 /**/ |
8771
57cafbda13ad
commit https://github.com/vim/vim/commit/cf2d8dee5117b9add3a3f5fc91b3569437e7d359
Christian Brabandt <cb@256bit.org>
parents:
8769
diff
changeset
|
1201 1674, |
57cafbda13ad
commit https://github.com/vim/vim/commit/cf2d8dee5117b9add3a3f5fc91b3569437e7d359
Christian Brabandt <cb@256bit.org>
parents:
8769
diff
changeset
|
1202 /**/ |
8769
7ac9d9e98892
commit https://github.com/vim/vim/commit/2946d0236dc9e23ec0050feacdb959b9ae5672a8
Christian Brabandt <cb@256bit.org>
parents:
8767
diff
changeset
|
1203 1673, |
7ac9d9e98892
commit https://github.com/vim/vim/commit/2946d0236dc9e23ec0050feacdb959b9ae5672a8
Christian Brabandt <cb@256bit.org>
parents:
8767
diff
changeset
|
1204 /**/ |
8767
3c8ddce4118e
commit https://github.com/vim/vim/commit/e934e8f5c1c5c64411d98583ecbcf89e5ad01073
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
1205 1672, |
3c8ddce4118e
commit https://github.com/vim/vim/commit/e934e8f5c1c5c64411d98583ecbcf89e5ad01073
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
1206 /**/ |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8763
diff
changeset
|
1207 1671, |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8763
diff
changeset
|
1208 /**/ |
8763
4b83af41f5db
commit https://github.com/vim/vim/commit/a32095fc8fdf5fe3d487c86d9cc54adb1236731e
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
1209 1670, |
4b83af41f5db
commit https://github.com/vim/vim/commit/a32095fc8fdf5fe3d487c86d9cc54adb1236731e
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
1210 /**/ |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8759
diff
changeset
|
1211 1669, |
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8759
diff
changeset
|
1212 /**/ |
8759
cc2ef7367643
commit https://github.com/vim/vim/commit/ee1f7b3cb71684aaa9bf457e2caf9d02187e6b7c
Christian Brabandt <cb@256bit.org>
parents:
8757
diff
changeset
|
1213 1668, |
cc2ef7367643
commit https://github.com/vim/vim/commit/ee1f7b3cb71684aaa9bf457e2caf9d02187e6b7c
Christian Brabandt <cb@256bit.org>
parents:
8757
diff
changeset
|
1214 /**/ |
8757
4fb37555e814
commit https://github.com/vim/vim/commit/84e1d2b21a424f2687b61daaf84f5fc4f1ab0abe
Christian Brabandt <cb@256bit.org>
parents:
8755
diff
changeset
|
1215 1667, |
4fb37555e814
commit https://github.com/vim/vim/commit/84e1d2b21a424f2687b61daaf84f5fc4f1ab0abe
Christian Brabandt <cb@256bit.org>
parents:
8755
diff
changeset
|
1216 /**/ |
8755
7038ec89d1fd
commit https://github.com/vim/vim/commit/46c00a6565b8f1f4b7b1041d03eaceaf6ffc4aee
Christian Brabandt <cb@256bit.org>
parents:
8753
diff
changeset
|
1217 1666, |
7038ec89d1fd
commit https://github.com/vim/vim/commit/46c00a6565b8f1f4b7b1041d03eaceaf6ffc4aee
Christian Brabandt <cb@256bit.org>
parents:
8753
diff
changeset
|
1218 /**/ |
8753
df91c8263f04
commit https://github.com/vim/vim/commit/8038568722a0aad72d001edf4972c29abab57f8f
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1219 1665, |
df91c8263f04
commit https://github.com/vim/vim/commit/8038568722a0aad72d001edf4972c29abab57f8f
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1220 /**/ |
8751
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8749
diff
changeset
|
1221 1664, |
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8749
diff
changeset
|
1222 /**/ |
8749
65a5a18d3acf
commit https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
Christian Brabandt <cb@256bit.org>
parents:
8746
diff
changeset
|
1223 1663, |
65a5a18d3acf
commit https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
Christian Brabandt <cb@256bit.org>
parents:
8746
diff
changeset
|
1224 /**/ |
8746
4c38a4733578
commit https://github.com/vim/vim/commit/c4dcd60c76666bf113719f929709ad6120eb6528
Christian Brabandt <cb@256bit.org>
parents:
8744
diff
changeset
|
1225 1662, |
4c38a4733578
commit https://github.com/vim/vim/commit/c4dcd60c76666bf113719f929709ad6120eb6528
Christian Brabandt <cb@256bit.org>
parents:
8744
diff
changeset
|
1226 /**/ |
8744
ff9973bbbfcb
commit https://github.com/vim/vim/commit/fa8b2e173dd5f6c4a5cfd326abdcf68b8eebf90d
Christian Brabandt <cb@256bit.org>
parents:
8742
diff
changeset
|
1227 1661, |
ff9973bbbfcb
commit https://github.com/vim/vim/commit/fa8b2e173dd5f6c4a5cfd326abdcf68b8eebf90d
Christian Brabandt <cb@256bit.org>
parents:
8742
diff
changeset
|
1228 /**/ |
8742
03e5171c23e5
commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
1229 1660, |
03e5171c23e5
commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
1230 /**/ |
8740
a35b596cd7ac
commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e
Christian Brabandt <cb@256bit.org>
parents:
8738
diff
changeset
|
1231 1659, |
a35b596cd7ac
commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e
Christian Brabandt <cb@256bit.org>
parents:
8738
diff
changeset
|
1232 /**/ |
8738
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8736
diff
changeset
|
1233 1658, |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8736
diff
changeset
|
1234 /**/ |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8734
diff
changeset
|
1235 1657, |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8734
diff
changeset
|
1236 /**/ |
8734
986f7c00d43d
commit https://github.com/vim/vim/commit/92e35efaf6a3278e4729115648997f09cd4005f5
Christian Brabandt <cb@256bit.org>
parents:
8732
diff
changeset
|
1237 1656, |
986f7c00d43d
commit https://github.com/vim/vim/commit/92e35efaf6a3278e4729115648997f09cd4005f5
Christian Brabandt <cb@256bit.org>
parents:
8732
diff
changeset
|
1238 /**/ |
8732
29765df3a866
commit https://github.com/vim/vim/commit/1e7885abe8daa793fd9328d0fd6c456214cb467e
Christian Brabandt <cb@256bit.org>
parents:
8730
diff
changeset
|
1239 1655, |
29765df3a866
commit https://github.com/vim/vim/commit/1e7885abe8daa793fd9328d0fd6c456214cb467e
Christian Brabandt <cb@256bit.org>
parents:
8730
diff
changeset
|
1240 /**/ |
8730
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8728
diff
changeset
|
1241 1654, |
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8728
diff
changeset
|
1242 /**/ |
8728
b1ca6aa215b7
commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
1243 1653, |
b1ca6aa215b7
commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
1244 /**/ |
8726
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
8724
diff
changeset
|
1245 1652, |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
8724
diff
changeset
|
1246 /**/ |
8724
e6d1608ca601
commit https://github.com/vim/vim/commit/780d4c3fff3c06baa3135a9f9739c56a0c280a94
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1247 1651, |
e6d1608ca601
commit https://github.com/vim/vim/commit/780d4c3fff3c06baa3135a9f9739c56a0c280a94
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1248 /**/ |
8722
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8720
diff
changeset
|
1249 1650, |
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8720
diff
changeset
|
1250 /**/ |
8720
9380c37723f8
commit https://github.com/vim/vim/commit/aedfcbe1e6c7df6edcd6756d7601bfdec7dd2087
Christian Brabandt <cb@256bit.org>
parents:
8718
diff
changeset
|
1251 1649, |
9380c37723f8
commit https://github.com/vim/vim/commit/aedfcbe1e6c7df6edcd6756d7601bfdec7dd2087
Christian Brabandt <cb@256bit.org>
parents:
8718
diff
changeset
|
1252 /**/ |
8718
f1840a719771
commit https://github.com/vim/vim/commit/bee6c0cf86a75faa2aa893f2c9db82fd944a89a5
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1253 1648, |
f1840a719771
commit https://github.com/vim/vim/commit/bee6c0cf86a75faa2aa893f2c9db82fd944a89a5
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1254 /**/ |
8716
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8714
diff
changeset
|
1255 1647, |
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8714
diff
changeset
|
1256 /**/ |
8714
a5224eeb3546
commit https://github.com/vim/vim/commit/4c90861e9f864eab94f043c432acff508396ed62
Christian Brabandt <cb@256bit.org>
parents:
8712
diff
changeset
|
1257 1646, |
a5224eeb3546
commit https://github.com/vim/vim/commit/4c90861e9f864eab94f043c432acff508396ed62
Christian Brabandt <cb@256bit.org>
parents:
8712
diff
changeset
|
1258 /**/ |
8712
65130a9d3386
commit https://github.com/vim/vim/commit/c5fbe8af4cd80789f831b78aa44ff0b238138769
Christian Brabandt <cb@256bit.org>
parents:
8710
diff
changeset
|
1259 1645, |
65130a9d3386
commit https://github.com/vim/vim/commit/c5fbe8af4cd80789f831b78aa44ff0b238138769
Christian Brabandt <cb@256bit.org>
parents:
8710
diff
changeset
|
1260 /**/ |
8710
af3cb5c068fd
commit https://github.com/vim/vim/commit/24c77a1e3a2ad510582116229462b482d69b4b8e
Christian Brabandt <cb@256bit.org>
parents:
8708
diff
changeset
|
1261 1644, |
af3cb5c068fd
commit https://github.com/vim/vim/commit/24c77a1e3a2ad510582116229462b482d69b4b8e
Christian Brabandt <cb@256bit.org>
parents:
8708
diff
changeset
|
1262 /**/ |
8708
31f9fa8e1532
commit https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
Christian Brabandt <cb@256bit.org>
parents:
8706
diff
changeset
|
1263 1643, |
31f9fa8e1532
commit https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
Christian Brabandt <cb@256bit.org>
parents:
8706
diff
changeset
|
1264 /**/ |
8706
f63892cfe283
commit https://github.com/vim/vim/commit/6a08454b93784c92296d4c08456401cbaa74c9d5
Christian Brabandt <cb@256bit.org>
parents:
8704
diff
changeset
|
1265 1642, |
f63892cfe283
commit https://github.com/vim/vim/commit/6a08454b93784c92296d4c08456401cbaa74c9d5
Christian Brabandt <cb@256bit.org>
parents:
8704
diff
changeset
|
1266 /**/ |
8704
8af6e33e4d4c
commit https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1267 1641, |
8af6e33e4d4c
commit https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1268 /**/ |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8700
diff
changeset
|
1269 1640, |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8700
diff
changeset
|
1270 /**/ |
8700
077706f01e80
commit https://github.com/vim/vim/commit/5f436fcf9960c95702820d5ac1b8b612995f6c04
Christian Brabandt <cb@256bit.org>
parents:
8698
diff
changeset
|
1271 1639, |
077706f01e80
commit https://github.com/vim/vim/commit/5f436fcf9960c95702820d5ac1b8b612995f6c04
Christian Brabandt <cb@256bit.org>
parents:
8698
diff
changeset
|
1272 /**/ |
8698
13b0ed12a78a
commit https://github.com/vim/vim/commit/e4eb6ff089e79e659acf33c17dd0fda7177de526
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
1273 1638, |
13b0ed12a78a
commit https://github.com/vim/vim/commit/e4eb6ff089e79e659acf33c17dd0fda7177de526
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
1274 /**/ |
8696
869727342e43
commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
1275 1637, |
869727342e43
commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
1276 /**/ |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8692
diff
changeset
|
1277 1636, |
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8692
diff
changeset
|
1278 /**/ |
8692
683b3702970a
commit https://github.com/vim/vim/commit/6a06363861fcc6beca6e06b39385da411ce58633
Christian Brabandt <cb@256bit.org>
parents:
8690
diff
changeset
|
1279 1635, |
683b3702970a
commit https://github.com/vim/vim/commit/6a06363861fcc6beca6e06b39385da411ce58633
Christian Brabandt <cb@256bit.org>
parents:
8690
diff
changeset
|
1280 /**/ |
8690
6a1becf4f282
commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents:
8688
diff
changeset
|
1281 1634, |
6a1becf4f282
commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents:
8688
diff
changeset
|
1282 /**/ |
8688
7ec1aa86dc80
commit https://github.com/vim/vim/commit/b763eba7ae3540cd879f7c29882a29308f9688db
Christian Brabandt <cb@256bit.org>
parents:
8686
diff
changeset
|
1283 1633, |
7ec1aa86dc80
commit https://github.com/vim/vim/commit/b763eba7ae3540cd879f7c29882a29308f9688db
Christian Brabandt <cb@256bit.org>
parents:
8686
diff
changeset
|
1284 /**/ |
8686
92657771648f
commit https://github.com/vim/vim/commit/6098957458e538682f54e23de217da06200876a3
Christian Brabandt <cb@256bit.org>
parents:
8684
diff
changeset
|
1285 1632, |
92657771648f
commit https://github.com/vim/vim/commit/6098957458e538682f54e23de217da06200876a3
Christian Brabandt <cb@256bit.org>
parents:
8684
diff
changeset
|
1286 /**/ |
8684
6e567914f55a
commit https://github.com/vim/vim/commit/573e445664eef399a72b1bfc975260a639605fef
Christian Brabandt <cb@256bit.org>
parents:
8682
diff
changeset
|
1287 1631, |
6e567914f55a
commit https://github.com/vim/vim/commit/573e445664eef399a72b1bfc975260a639605fef
Christian Brabandt <cb@256bit.org>
parents:
8682
diff
changeset
|
1288 /**/ |
8682
4ce551bd5024
commit https://github.com/vim/vim/commit/d63aff0a65b955447de2fd8bfdaee29b61ce2843
Christian Brabandt <cb@256bit.org>
parents:
8680
diff
changeset
|
1289 1630, |
4ce551bd5024
commit https://github.com/vim/vim/commit/d63aff0a65b955447de2fd8bfdaee29b61ce2843
Christian Brabandt <cb@256bit.org>
parents:
8680
diff
changeset
|
1290 /**/ |
8680
131e651fb347
commit https://github.com/vim/vim/commit/b86f10ee10bdf932df02bdaf601dffa671518a47
Christian Brabandt <cb@256bit.org>
parents:
8678
diff
changeset
|
1291 1629, |
131e651fb347
commit https://github.com/vim/vim/commit/b86f10ee10bdf932df02bdaf601dffa671518a47
Christian Brabandt <cb@256bit.org>
parents:
8678
diff
changeset
|
1292 /**/ |
8678
a4e7f4a62193
commit https://github.com/vim/vim/commit/3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6
Christian Brabandt <cb@256bit.org>
parents:
8676
diff
changeset
|
1293 1628, |
a4e7f4a62193
commit https://github.com/vim/vim/commit/3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6
Christian Brabandt <cb@256bit.org>
parents:
8676
diff
changeset
|
1294 /**/ |
8676
289765409225
commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d
Christian Brabandt <cb@256bit.org>
parents:
8674
diff
changeset
|
1295 1627, |
289765409225
commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d
Christian Brabandt <cb@256bit.org>
parents:
8674
diff
changeset
|
1296 /**/ |
8674
4a4d5815a974
commit https://github.com/vim/vim/commit/580984e026a46ea0c29789897b701057423b4923
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
1297 1626, |
4a4d5815a974
commit https://github.com/vim/vim/commit/580984e026a46ea0c29789897b701057423b4923
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
1298 /**/ |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8669
diff
changeset
|
1299 1625, |
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8669
diff
changeset
|
1300 /**/ |
8669
06848fe9c816
commit https://github.com/vim/vim/commit/03602ec28ed25739e88b2c835adb0662d3720bb2
Christian Brabandt <cb@256bit.org>
parents:
8667
diff
changeset
|
1301 1624, |
06848fe9c816
commit https://github.com/vim/vim/commit/03602ec28ed25739e88b2c835adb0662d3720bb2
Christian Brabandt <cb@256bit.org>
parents:
8667
diff
changeset
|
1302 /**/ |
8667
8c80c21a1885
commit https://github.com/vim/vim/commit/e9d6a298df6108e2044b1f0da5a2712f0c51c7d9
Christian Brabandt <cb@256bit.org>
parents:
8665
diff
changeset
|
1303 1623, |
8c80c21a1885
commit https://github.com/vim/vim/commit/e9d6a298df6108e2044b1f0da5a2712f0c51c7d9
Christian Brabandt <cb@256bit.org>
parents:
8665
diff
changeset
|
1304 /**/ |
8665
7a2346148551
commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Christian Brabandt <cb@256bit.org>
parents:
8663
diff
changeset
|
1305 1622, |
7a2346148551
commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Christian Brabandt <cb@256bit.org>
parents:
8663
diff
changeset
|
1306 /**/ |
8663
b2a48aabe21f
commit https://github.com/vim/vim/commit/a63cdb5ed685181c377ee89f1d1de6a97dfeb151
Christian Brabandt <cb@256bit.org>
parents:
8661
diff
changeset
|
1307 1621, |
b2a48aabe21f
commit https://github.com/vim/vim/commit/a63cdb5ed685181c377ee89f1d1de6a97dfeb151
Christian Brabandt <cb@256bit.org>
parents:
8661
diff
changeset
|
1308 /**/ |
8661
a931160ffc41
commit https://github.com/vim/vim/commit/4077b33a8370afb3d5ae74e556a0119cf51fe294
Christian Brabandt <cb@256bit.org>
parents:
8659
diff
changeset
|
1309 1620, |
a931160ffc41
commit https://github.com/vim/vim/commit/4077b33a8370afb3d5ae74e556a0119cf51fe294
Christian Brabandt <cb@256bit.org>
parents:
8659
diff
changeset
|
1310 /**/ |
8659
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8657
diff
changeset
|
1311 1619, |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8657
diff
changeset
|
1312 /**/ |
8657
c70eea7a7677
commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Christian Brabandt <cb@256bit.org>
parents:
8655
diff
changeset
|
1313 1618, |
c70eea7a7677
commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Christian Brabandt <cb@256bit.org>
parents:
8655
diff
changeset
|
1314 /**/ |
8655
1eb302bf2475
commit https://github.com/vim/vim/commit/ba61ac0d61f46de7d29c64bb0de6d25c2e378be0
Christian Brabandt <cb@256bit.org>
parents:
8653
diff
changeset
|
1315 1617, |
1eb302bf2475
commit https://github.com/vim/vim/commit/ba61ac0d61f46de7d29c64bb0de6d25c2e378be0
Christian Brabandt <cb@256bit.org>
parents:
8653
diff
changeset
|
1316 /**/ |
8653
d80edead9675
commit https://github.com/vim/vim/commit/ac74d5e86cd16b42e81ba48f58f3d45c72758248
Christian Brabandt <cb@256bit.org>
parents:
8651
diff
changeset
|
1317 1616, |
d80edead9675
commit https://github.com/vim/vim/commit/ac74d5e86cd16b42e81ba48f58f3d45c72758248
Christian Brabandt <cb@256bit.org>
parents:
8651
diff
changeset
|
1318 /**/ |
8651
8a106a24d128
commit https://github.com/vim/vim/commit/829c8e369630a7cbbdac015d8177b7fde25e2f19
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1319 1615, |
8a106a24d128
commit https://github.com/vim/vim/commit/829c8e369630a7cbbdac015d8177b7fde25e2f19
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1320 /**/ |
8649
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
1321 1614, |
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
1322 /**/ |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
1323 1613, |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
1324 /**/ |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1325 1612, |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1326 /**/ |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
1327 1611, |
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
1328 /**/ |
8641
0af716a4f5d2
commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents:
8639
diff
changeset
|
1329 1610, |
0af716a4f5d2
commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents:
8639
diff
changeset
|
1330 /**/ |
8639
91286ec46e97
commit https://github.com/vim/vim/commit/4d581a826c54cecdde3001fdf0a5becf67e54cfd
Christian Brabandt <cb@256bit.org>
parents:
8637
diff
changeset
|
1331 1609, |
91286ec46e97
commit https://github.com/vim/vim/commit/4d581a826c54cecdde3001fdf0a5becf67e54cfd
Christian Brabandt <cb@256bit.org>
parents:
8637
diff
changeset
|
1332 /**/ |
8637
ff41ece2e4b8
commit https://github.com/vim/vim/commit/5c29154b521e9948190be653cfda666ecbb63b5b
Christian Brabandt <cb@256bit.org>
parents:
8635
diff
changeset
|
1333 1608, |
ff41ece2e4b8
commit https://github.com/vim/vim/commit/5c29154b521e9948190be653cfda666ecbb63b5b
Christian Brabandt <cb@256bit.org>
parents:
8635
diff
changeset
|
1334 /**/ |
8635
3a38d465f731
commit https://github.com/vim/vim/commit/f0e86a0dbddc18568910e9e4aaae0cd88ca8087a
Christian Brabandt <cb@256bit.org>
parents:
8633
diff
changeset
|
1335 1607, |
3a38d465f731
commit https://github.com/vim/vim/commit/f0e86a0dbddc18568910e9e4aaae0cd88ca8087a
Christian Brabandt <cb@256bit.org>
parents:
8633
diff
changeset
|
1336 /**/ |
8633
80d78e1ab787
commit https://github.com/vim/vim/commit/953cc7fb139dc2ba8590f8b03a095b63f4e1208f
Christian Brabandt <cb@256bit.org>
parents:
8631
diff
changeset
|
1337 1606, |
80d78e1ab787
commit https://github.com/vim/vim/commit/953cc7fb139dc2ba8590f8b03a095b63f4e1208f
Christian Brabandt <cb@256bit.org>
parents:
8631
diff
changeset
|
1338 /**/ |
8631
e5f2e0f8af10
commit https://github.com/vim/vim/commit/3905e291fe4375ca5c59efa9ffcb01a39c7be3a9
Christian Brabandt <cb@256bit.org>
parents:
8629
diff
changeset
|
1339 1605, |
e5f2e0f8af10
commit https://github.com/vim/vim/commit/3905e291fe4375ca5c59efa9ffcb01a39c7be3a9
Christian Brabandt <cb@256bit.org>
parents:
8629
diff
changeset
|
1340 /**/ |
8629
54ac275e3fc4
commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1341 1604, |
54ac275e3fc4
commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1342 /**/ |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8625
diff
changeset
|
1343 1603, |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8625
diff
changeset
|
1344 /**/ |
8625
d98fbc8dca8e
commit https://github.com/vim/vim/commit/cff572abb922d49455b01484e99b98c371fa4560
Christian Brabandt <cb@256bit.org>
parents:
8623
diff
changeset
|
1345 1602, |
d98fbc8dca8e
commit https://github.com/vim/vim/commit/cff572abb922d49455b01484e99b98c371fa4560
Christian Brabandt <cb@256bit.org>
parents:
8623
diff
changeset
|
1346 /**/ |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
8621
diff
changeset
|
1347 1601, |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
8621
diff
changeset
|
1348 /**/ |
8621
6b9c960d68b3
commit https://github.com/vim/vim/commit/062cc1857d1c990287384409332b2b050bc9c82e
Christian Brabandt <cb@256bit.org>
parents:
8619
diff
changeset
|
1349 1600, |
6b9c960d68b3
commit https://github.com/vim/vim/commit/062cc1857d1c990287384409332b2b050bc9c82e
Christian Brabandt <cb@256bit.org>
parents:
8619
diff
changeset
|
1350 /**/ |
8619
5c9603b1084d
commit https://github.com/vim/vim/commit/8a82c7fa5ec55b59782f7a7846d6152ccf3a22c7
Christian Brabandt <cb@256bit.org>
parents:
8617
diff
changeset
|
1351 1599, |
5c9603b1084d
commit https://github.com/vim/vim/commit/8a82c7fa5ec55b59782f7a7846d6152ccf3a22c7
Christian Brabandt <cb@256bit.org>
parents:
8617
diff
changeset
|
1352 /**/ |
8617
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8615
diff
changeset
|
1353 1598, |
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8615
diff
changeset
|
1354 /**/ |
8615
99aed8c33bbf
commit https://github.com/vim/vim/commit/9f6154f26ef17b0a7efd2fcdd79cabfe510f28b4
Christian Brabandt <cb@256bit.org>
parents:
8613
diff
changeset
|
1355 1597, |
99aed8c33bbf
commit https://github.com/vim/vim/commit/9f6154f26ef17b0a7efd2fcdd79cabfe510f28b4
Christian Brabandt <cb@256bit.org>
parents:
8613
diff
changeset
|
1356 /**/ |
8613
3dacf96b4020
commit https://github.com/vim/vim/commit/ba8cd122ef60a7c71a7723be0d635f0c2d4556ab
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
1357 1596, |
3dacf96b4020
commit https://github.com/vim/vim/commit/ba8cd122ef60a7c71a7723be0d635f0c2d4556ab
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
1358 /**/ |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
1359 1595, |
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
1360 /**/ |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8607
diff
changeset
|
1361 1594, |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8607
diff
changeset
|
1362 /**/ |
8607
d762390fb27b
commit https://github.com/vim/vim/commit/a889cf4642a89537e3eeecf6d30326bf6aa4776f
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
1363 1593, |
d762390fb27b
commit https://github.com/vim/vim/commit/a889cf4642a89537e3eeecf6d30326bf6aa4776f
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
1364 /**/ |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
1365 1592, |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
1366 /**/ |
8603
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8601
diff
changeset
|
1367 1591, |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8601
diff
changeset
|
1368 /**/ |
8601
46306a98407c
commit https://github.com/vim/vim/commit/3f242a844e83a5a04943869f6e3bcbf8650dc465
Christian Brabandt <cb@256bit.org>
parents:
8599
diff
changeset
|
1369 1590, |
46306a98407c
commit https://github.com/vim/vim/commit/3f242a844e83a5a04943869f6e3bcbf8650dc465
Christian Brabandt <cb@256bit.org>
parents:
8599
diff
changeset
|
1370 /**/ |
8599
ddb04cbe1e0c
commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
1371 1589, |
ddb04cbe1e0c
commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
1372 /**/ |
8597
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8595
diff
changeset
|
1373 1588, |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8595
diff
changeset
|
1374 /**/ |
8595
887b378f29d1
commit https://github.com/vim/vim/commit/1c8b4edb9b6cd5248925f3f06ec82486be9fb4ea
Christian Brabandt <cb@256bit.org>
parents:
8593
diff
changeset
|
1375 1587, |
887b378f29d1
commit https://github.com/vim/vim/commit/1c8b4edb9b6cd5248925f3f06ec82486be9fb4ea
Christian Brabandt <cb@256bit.org>
parents:
8593
diff
changeset
|
1376 /**/ |
8593
dc36cef103de
commit https://github.com/vim/vim/commit/8a1bb046378f4bc68d6a04af2eab80fb3ce04da6
Christian Brabandt <cb@256bit.org>
parents:
8591
diff
changeset
|
1377 1586, |
dc36cef103de
commit https://github.com/vim/vim/commit/8a1bb046378f4bc68d6a04af2eab80fb3ce04da6
Christian Brabandt <cb@256bit.org>
parents:
8591
diff
changeset
|
1378 /**/ |
8591
5bc958a92849
commit https://github.com/vim/vim/commit/d22a18928ebcb465393da1418bb88204b97badb1
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1379 1585, |
5bc958a92849
commit https://github.com/vim/vim/commit/d22a18928ebcb465393da1418bb88204b97badb1
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1380 /**/ |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8587
diff
changeset
|
1381 1584, |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8587
diff
changeset
|
1382 /**/ |
8587
fb8d7086e99d
commit https://github.com/vim/vim/commit/597385ab43093ba27adcb86cdc1b46aba86a0093
Christian Brabandt <cb@256bit.org>
parents:
8585
diff
changeset
|
1383 1583, |
fb8d7086e99d
commit https://github.com/vim/vim/commit/597385ab43093ba27adcb86cdc1b46aba86a0093
Christian Brabandt <cb@256bit.org>
parents:
8585
diff
changeset
|
1384 /**/ |
8585
ce37bbedcb65
commit https://github.com/vim/vim/commit/6f2e4b36c9d9908e1cace2b1b96e2c154a837bc2
Christian Brabandt <cb@256bit.org>
parents:
8583
diff
changeset
|
1385 1582, |
ce37bbedcb65
commit https://github.com/vim/vim/commit/6f2e4b36c9d9908e1cace2b1b96e2c154a837bc2
Christian Brabandt <cb@256bit.org>
parents:
8583
diff
changeset
|
1386 /**/ |
8583
537bbbd4e987
commit https://github.com/vim/vim/commit/65639032bb7b17996cd255d1508a1df4ad528a1f
Christian Brabandt <cb@256bit.org>
parents:
8581
diff
changeset
|
1387 1581, |
537bbbd4e987
commit https://github.com/vim/vim/commit/65639032bb7b17996cd255d1508a1df4ad528a1f
Christian Brabandt <cb@256bit.org>
parents:
8581
diff
changeset
|
1388 /**/ |
8581
fd454847836d
commit https://github.com/vim/vim/commit/7a5c46a9df7ef01a4f6a620861c35400d5ad28d9
Christian Brabandt <cb@256bit.org>
parents:
8579
diff
changeset
|
1389 1580, |
fd454847836d
commit https://github.com/vim/vim/commit/7a5c46a9df7ef01a4f6a620861c35400d5ad28d9
Christian Brabandt <cb@256bit.org>
parents:
8579
diff
changeset
|
1390 /**/ |
8579
556817999955
commit https://github.com/vim/vim/commit/a3dc5e92dcb79bdc4f0103e6eb91de4c7a6ee9a7
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
1391 1579, |
556817999955
commit https://github.com/vim/vim/commit/a3dc5e92dcb79bdc4f0103e6eb91de4c7a6ee9a7
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
1392 /**/ |
8577
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
1393 1578, |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
1394 /**/ |
8575
b5209a4e5baf
commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e
Christian Brabandt <cb@256bit.org>
parents:
8573
diff
changeset
|
1395 1577, |
b5209a4e5baf
commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e
Christian Brabandt <cb@256bit.org>
parents:
8573
diff
changeset
|
1396 /**/ |
8573
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8571
diff
changeset
|
1397 1576, |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8571
diff
changeset
|
1398 /**/ |
8571
debe6347024d
commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897
Christian Brabandt <cb@256bit.org>
parents:
8568
diff
changeset
|
1399 1575, |
debe6347024d
commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897
Christian Brabandt <cb@256bit.org>
parents:
8568
diff
changeset
|
1400 /**/ |
8568
17bbbca531be
commit https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
Christian Brabandt <cb@256bit.org>
parents:
8566
diff
changeset
|
1401 1574, |
17bbbca531be
commit https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
Christian Brabandt <cb@256bit.org>
parents:
8566
diff
changeset
|
1402 /**/ |
8566
28e10c1bed22
commit https://github.com/vim/vim/commit/ce2ec0a82a778ff4d79a2c3309f6cac079d7b5ee
Christian Brabandt <cb@256bit.org>
parents:
8564
diff
changeset
|
1403 1573, |
28e10c1bed22
commit https://github.com/vim/vim/commit/ce2ec0a82a778ff4d79a2c3309f6cac079d7b5ee
Christian Brabandt <cb@256bit.org>
parents:
8564
diff
changeset
|
1404 /**/ |
8564
8818bca7a824
commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368
Christian Brabandt <cb@256bit.org>
parents:
8562
diff
changeset
|
1405 1572, |
8818bca7a824
commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368
Christian Brabandt <cb@256bit.org>
parents:
8562
diff
changeset
|
1406 /**/ |
8562
40b982c98587
commit https://github.com/vim/vim/commit/8e15ffcde757ffc6cfe8b5e384948b3278e9af33
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
1407 1571, |
40b982c98587
commit https://github.com/vim/vim/commit/8e15ffcde757ffc6cfe8b5e384948b3278e9af33
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
1408 /**/ |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1409 1570, |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1410 /**/ |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
1411 1569, |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
1412 /**/ |
8556
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8554
diff
changeset
|
1413 1568, |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8554
diff
changeset
|
1414 /**/ |
8554
7d3548ae729d
commit https://github.com/vim/vim/commit/1abb502635c7f317e05a0cf3ea067101f9d684f5
Christian Brabandt <cb@256bit.org>
parents:
8552
diff
changeset
|
1415 1567, |
7d3548ae729d
commit https://github.com/vim/vim/commit/1abb502635c7f317e05a0cf3ea067101f9d684f5
Christian Brabandt <cb@256bit.org>
parents:
8552
diff
changeset
|
1416 /**/ |
8552
96968d6bba3e
commit https://github.com/vim/vim/commit/4f118be2bb987cdf313da879d2a93ae125e99202
Christian Brabandt <cb@256bit.org>
parents:
8550
diff
changeset
|
1417 1566, |
96968d6bba3e
commit https://github.com/vim/vim/commit/4f118be2bb987cdf313da879d2a93ae125e99202
Christian Brabandt <cb@256bit.org>
parents:
8550
diff
changeset
|
1418 /**/ |
8550
56d0eb96c25a
commit https://github.com/vim/vim/commit/f1551964448607f8222de2d8f0992ea43eb2fe67
Christian Brabandt <cb@256bit.org>
parents:
8548
diff
changeset
|
1419 1565, |
56d0eb96c25a
commit https://github.com/vim/vim/commit/f1551964448607f8222de2d8f0992ea43eb2fe67
Christian Brabandt <cb@256bit.org>
parents:
8548
diff
changeset
|
1420 /**/ |
8548
24db3583c496
commit https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Christian Brabandt <cb@256bit.org>
parents:
8546
diff
changeset
|
1421 1564, |
24db3583c496
commit https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Christian Brabandt <cb@256bit.org>
parents:
8546
diff
changeset
|
1422 /**/ |
8546
996109e24f02
commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
1423 1563, |
996109e24f02
commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
1424 /**/ |
8544
b4850f705181
commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43
Christian Brabandt <cb@256bit.org>
parents:
8542
diff
changeset
|
1425 1562, |
b4850f705181
commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43
Christian Brabandt <cb@256bit.org>
parents:
8542
diff
changeset
|
1426 /**/ |
8542
80cfe52ca3a2
commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911
Christian Brabandt <cb@256bit.org>
parents:
8540
diff
changeset
|
1427 1561, |
80cfe52ca3a2
commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911
Christian Brabandt <cb@256bit.org>
parents:
8540
diff
changeset
|
1428 /**/ |
8540
fec8655cf1bf
commit https://github.com/vim/vim/commit/d6c2f0526064eef6f8917d2bad00df707d79ea16
Christian Brabandt <cb@256bit.org>
parents:
8538
diff
changeset
|
1429 1560, |
fec8655cf1bf
commit https://github.com/vim/vim/commit/d6c2f0526064eef6f8917d2bad00df707d79ea16
Christian Brabandt <cb@256bit.org>
parents:
8538
diff
changeset
|
1430 /**/ |
8538
c337c813c64d
commit https://github.com/vim/vim/commit/1735bc988c546cc962c5f94792815b4d7cb79710
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1431 1559, |
c337c813c64d
commit https://github.com/vim/vim/commit/1735bc988c546cc962c5f94792815b4d7cb79710
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1432 /**/ |
8536
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
1433 1558, |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
1434 /**/ |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8532
diff
changeset
|
1435 1557, |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8532
diff
changeset
|
1436 /**/ |
8532
3de84783c029
commit https://github.com/vim/vim/commit/a3442cb5056ca62fc71fa03f68a9395e4391caf4
Christian Brabandt <cb@256bit.org>
parents:
8530
diff
changeset
|
1437 1556, |
3de84783c029
commit https://github.com/vim/vim/commit/a3442cb5056ca62fc71fa03f68a9395e4391caf4
Christian Brabandt <cb@256bit.org>
parents:
8530
diff
changeset
|
1438 /**/ |
8530
66afe6d5a9de
commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e
Christian Brabandt <cb@256bit.org>
parents:
8528
diff
changeset
|
1439 1555, |
66afe6d5a9de
commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e
Christian Brabandt <cb@256bit.org>
parents:
8528
diff
changeset
|
1440 /**/ |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8526
diff
changeset
|
1441 1554, |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8526
diff
changeset
|
1442 /**/ |
8526
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1443 1553, |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1444 /**/ |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8522
diff
changeset
|
1445 1552, |
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8522
diff
changeset
|
1446 /**/ |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8520
diff
changeset
|
1447 1551, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8520
diff
changeset
|
1448 /**/ |
8520
b4350a4d1e01
commit https://github.com/vim/vim/commit/2d8f56acb32428d0f965d42dd13b27100b46fa15
Christian Brabandt <cb@256bit.org>
parents:
8518
diff
changeset
|
1449 1550, |
b4350a4d1e01
commit https://github.com/vim/vim/commit/2d8f56acb32428d0f965d42dd13b27100b46fa15
Christian Brabandt <cb@256bit.org>
parents:
8518
diff
changeset
|
1450 /**/ |
8518
24ac80377d86
commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents:
8516
diff
changeset
|
1451 1549, |
24ac80377d86
commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents:
8516
diff
changeset
|
1452 /**/ |
8516
14ab6c685581
commit https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
Christian Brabandt <cb@256bit.org>
parents:
8514
diff
changeset
|
1453 1548, |
14ab6c685581
commit https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
Christian Brabandt <cb@256bit.org>
parents:
8514
diff
changeset
|
1454 /**/ |
8514
260d01c1cd17
commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
8512
diff
changeset
|
1455 1547, |
260d01c1cd17
commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
8512
diff
changeset
|
1456 /**/ |
8512
5104f96b6ecf
commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1457 1546, |
5104f96b6ecf
commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1458 /**/ |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8508
diff
changeset
|
1459 1545, |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8508
diff
changeset
|
1460 /**/ |
8508
13e5a1f02be4
commit https://github.com/vim/vim/commit/583c1f14a4e1d89fe029b1c134d405357468ece7
Christian Brabandt <cb@256bit.org>
parents:
8506
diff
changeset
|
1461 1544, |
13e5a1f02be4
commit https://github.com/vim/vim/commit/583c1f14a4e1d89fe029b1c134d405357468ece7
Christian Brabandt <cb@256bit.org>
parents:
8506
diff
changeset
|
1462 /**/ |
8506
c93c352717b3
commit https://github.com/vim/vim/commit/5a6ec52392b78d41153660d0353d5b86a2dc583c
Christian Brabandt <cb@256bit.org>
parents:
8504
diff
changeset
|
1463 1543, |
c93c352717b3
commit https://github.com/vim/vim/commit/5a6ec52392b78d41153660d0353d5b86a2dc583c
Christian Brabandt <cb@256bit.org>
parents:
8504
diff
changeset
|
1464 /**/ |
8504
0b31cc4b261e
commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c
Christian Brabandt <cb@256bit.org>
parents:
8502
diff
changeset
|
1465 1542, |
0b31cc4b261e
commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c
Christian Brabandt <cb@256bit.org>
parents:
8502
diff
changeset
|
1466 /**/ |
8502
ee5cb2e9ed5a
commit https://github.com/vim/vim/commit/8950a563b306ce76f259573d91c2ddccdf52e32e
Christian Brabandt <cb@256bit.org>
parents:
8500
diff
changeset
|
1467 1541, |
ee5cb2e9ed5a
commit https://github.com/vim/vim/commit/8950a563b306ce76f259573d91c2ddccdf52e32e
Christian Brabandt <cb@256bit.org>
parents:
8500
diff
changeset
|
1468 /**/ |
8500
1227dc21865b
commit https://github.com/vim/vim/commit/ac42afd10b96424b89762871905e3e785cdfba3d
Christian Brabandt <cb@256bit.org>
parents:
8498
diff
changeset
|
1469 1540, |
1227dc21865b
commit https://github.com/vim/vim/commit/ac42afd10b96424b89762871905e3e785cdfba3d
Christian Brabandt <cb@256bit.org>
parents:
8498
diff
changeset
|
1470 /**/ |
8498
42277980a76d
commit https://github.com/vim/vim/commit/8e2c942ce49f2555d7dc2088cf3aa856820c5e32
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
1471 1539, |
42277980a76d
commit https://github.com/vim/vim/commit/8e2c942ce49f2555d7dc2088cf3aa856820c5e32
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
1472 /**/ |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1473 1538, |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1474 /**/ |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
1475 1537, |
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
1476 /**/ |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8489
diff
changeset
|
1477 1536, |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8489
diff
changeset
|
1478 /**/ |
8489
76b9c2305531
commit https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
Christian Brabandt <cb@256bit.org>
parents:
8487
diff
changeset
|
1479 1535, |
76b9c2305531
commit https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
Christian Brabandt <cb@256bit.org>
parents:
8487
diff
changeset
|
1480 /**/ |
8487
ce789e3dc84d
commit https://github.com/vim/vim/commit/846cdb227526272e2cd8ecba4f7168e2226cd633
Christian Brabandt <cb@256bit.org>
parents:
8485
diff
changeset
|
1481 1534, |
ce789e3dc84d
commit https://github.com/vim/vim/commit/846cdb227526272e2cd8ecba4f7168e2226cd633
Christian Brabandt <cb@256bit.org>
parents:
8485
diff
changeset
|
1482 /**/ |
8485
675ec6cc9021
commit https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
1483 1533, |
675ec6cc9021
commit https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
1484 /**/ |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8481
diff
changeset
|
1485 1532, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8481
diff
changeset
|
1486 /**/ |
8481
8924d7adbc22
commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
1487 1531, |
8924d7adbc22
commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
1488 /**/ |
8479
9f63e4506c40
commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents:
8477
diff
changeset
|
1489 1530, |
9f63e4506c40
commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents:
8477
diff
changeset
|
1490 /**/ |
8477
c08c6d19db4d
commit https://github.com/vim/vim/commit/29fd03878c41526a586d77b3f3cd7938d26297af
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
1491 1529, |
c08c6d19db4d
commit https://github.com/vim/vim/commit/29fd03878c41526a586d77b3f3cd7938d26297af
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
1492 /**/ |
8475
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8473
diff
changeset
|
1493 1528, |
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8473
diff
changeset
|
1494 /**/ |
8473
ade1797aa6f4
commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0
Christian Brabandt <cb@256bit.org>
parents:
8471
diff
changeset
|
1495 1527, |
ade1797aa6f4
commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0
Christian Brabandt <cb@256bit.org>
parents:
8471
diff
changeset
|
1496 /**/ |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
1497 1526, |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
1498 /**/ |
8469
42020d59a432
commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents:
8467
diff
changeset
|
1499 1525, |
42020d59a432
commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents:
8467
diff
changeset
|
1500 /**/ |
8467
86a327403fb0
commit https://github.com/vim/vim/commit/045a284a83c2a85113de233d5233eae34724a4b6
Christian Brabandt <cb@256bit.org>
parents:
8465
diff
changeset
|
1501 1524, |
86a327403fb0
commit https://github.com/vim/vim/commit/045a284a83c2a85113de233d5233eae34724a4b6
Christian Brabandt <cb@256bit.org>
parents:
8465
diff
changeset
|
1502 /**/ |
8465
5927180d0b4d
commit https://github.com/vim/vim/commit/0622732b32ff4a883e4f490a1b38ada539da8ba2
Christian Brabandt <cb@256bit.org>
parents:
8463
diff
changeset
|
1503 1523, |
5927180d0b4d
commit https://github.com/vim/vim/commit/0622732b32ff4a883e4f490a1b38ada539da8ba2
Christian Brabandt <cb@256bit.org>
parents:
8463
diff
changeset
|
1504 /**/ |
8463
508504ca52ac
commit https://github.com/vim/vim/commit/6ff02c96519946716069f05c62849986a706033b
Christian Brabandt <cb@256bit.org>
parents:
8461
diff
changeset
|
1505 1522, |
508504ca52ac
commit https://github.com/vim/vim/commit/6ff02c96519946716069f05c62849986a706033b
Christian Brabandt <cb@256bit.org>
parents:
8461
diff
changeset
|
1506 /**/ |
8461
988ddc5742f5
commit https://github.com/vim/vim/commit/8322e1f06e8fa39a6bb790a7d8d7db5d7aff3366
Christian Brabandt <cb@256bit.org>
parents:
8459
diff
changeset
|
1507 1521, |
988ddc5742f5
commit https://github.com/vim/vim/commit/8322e1f06e8fa39a6bb790a7d8d7db5d7aff3366
Christian Brabandt <cb@256bit.org>
parents:
8459
diff
changeset
|
1508 /**/ |
8459
9fb171e8466d
commit https://github.com/vim/vim/commit/d9d473ea124339c4dd173127db47c4583645ac2c
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
1509 1520, |
9fb171e8466d
commit https://github.com/vim/vim/commit/d9d473ea124339c4dd173127db47c4583645ac2c
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
1510 /**/ |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
1511 1519, |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
1512 /**/ |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8453
diff
changeset
|
1513 1518, |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8453
diff
changeset
|
1514 /**/ |
8453
fed4e19bd884
commit https://github.com/vim/vim/commit/367aabdbf76f7df00fd18e39d9378d1360a526ab
Christian Brabandt <cb@256bit.org>
parents:
8451
diff
changeset
|
1515 1517, |
fed4e19bd884
commit https://github.com/vim/vim/commit/367aabdbf76f7df00fd18e39d9378d1360a526ab
Christian Brabandt <cb@256bit.org>
parents:
8451
diff
changeset
|
1516 /**/ |
8451
c0b5c2b0a5ee
commit https://github.com/vim/vim/commit/8049253b96838b3584600e5ad229abad37a95b10
Christian Brabandt <cb@256bit.org>
parents:
8449
diff
changeset
|
1517 1516, |
c0b5c2b0a5ee
commit https://github.com/vim/vim/commit/8049253b96838b3584600e5ad229abad37a95b10
Christian Brabandt <cb@256bit.org>
parents:
8449
diff
changeset
|
1518 /**/ |
8449
3d567b5839c5
commit https://github.com/vim/vim/commit/9fe885e49ade94e6277db0dd18a5bbc1c94c60c4
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
1519 1515, |
3d567b5839c5
commit https://github.com/vim/vim/commit/9fe885e49ade94e6277db0dd18a5bbc1c94c60c4
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
1520 /**/ |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
1521 1514, |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
1522 /**/ |
8445
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
1523 1513, |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
1524 /**/ |
8443
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
1525 1512, |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
1526 /**/ |
8441
768065c86a35
commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents:
8438
diff
changeset
|
1527 1511, |
768065c86a35
commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents:
8438
diff
changeset
|
1528 /**/ |
8438
541ca10b3bc7
commit https://github.com/vim/vim/commit/304563c0b3e24895322ce3a29378388665b4769b
Christian Brabandt <cb@256bit.org>
parents:
8436
diff
changeset
|
1529 1510, |
541ca10b3bc7
commit https://github.com/vim/vim/commit/304563c0b3e24895322ce3a29378388665b4769b
Christian Brabandt <cb@256bit.org>
parents:
8436
diff
changeset
|
1530 /**/ |
8436
0e6fd2f802b3
commit https://github.com/vim/vim/commit/151f656e171f6ffbb0cbeb343cbcf2ffac0c36b0
Christian Brabandt <cb@256bit.org>
parents:
8434
diff
changeset
|
1531 1509, |
0e6fd2f802b3
commit https://github.com/vim/vim/commit/151f656e171f6ffbb0cbeb343cbcf2ffac0c36b0
Christian Brabandt <cb@256bit.org>
parents:
8434
diff
changeset
|
1532 /**/ |
8434
a0e7d7070799
commit https://github.com/vim/vim/commit/47cff3a444be7e99bae52b39b2174c22d58d2f86
Christian Brabandt <cb@256bit.org>
parents:
8432
diff
changeset
|
1533 1508, |
a0e7d7070799
commit https://github.com/vim/vim/commit/47cff3a444be7e99bae52b39b2174c22d58d2f86
Christian Brabandt <cb@256bit.org>
parents:
8432
diff
changeset
|
1534 /**/ |
8432
6af4329b5592
commit https://github.com/vim/vim/commit/4e329fcaf7122370a6d1815a30aaf29476d3f722
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
1535 1507, |
6af4329b5592
commit https://github.com/vim/vim/commit/4e329fcaf7122370a6d1815a30aaf29476d3f722
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
1536 /**/ |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8428
diff
changeset
|
1537 1506, |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8428
diff
changeset
|
1538 /**/ |
8428
4e22d0e7bfb1
commit https://github.com/vim/vim/commit/d0b6502a7ace39d6cd30874110a572371d10beae
Christian Brabandt <cb@256bit.org>
parents:
8426
diff
changeset
|
1539 1505, |
4e22d0e7bfb1
commit https://github.com/vim/vim/commit/d0b6502a7ace39d6cd30874110a572371d10beae
Christian Brabandt <cb@256bit.org>
parents:
8426
diff
changeset
|
1540 /**/ |
8426
02ce040591c8
commit https://github.com/vim/vim/commit/3f39f648662bf8723f687d14694041779ed0780c
Christian Brabandt <cb@256bit.org>
parents:
8424
diff
changeset
|
1541 1504, |
02ce040591c8
commit https://github.com/vim/vim/commit/3f39f648662bf8723f687d14694041779ed0780c
Christian Brabandt <cb@256bit.org>
parents:
8424
diff
changeset
|
1542 /**/ |
8424
be45d4921f1f
commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3
Christian Brabandt <cb@256bit.org>
parents:
8422
diff
changeset
|
1543 1503, |
be45d4921f1f
commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3
Christian Brabandt <cb@256bit.org>
parents:
8422
diff
changeset
|
1544 /**/ |
8422
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8420
diff
changeset
|
1545 1502, |
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8420
diff
changeset
|
1546 /**/ |
8420
f6d21a33d489
commit https://github.com/vim/vim/commit/38fd4bb2842df7634823b99c655b3896a7a2e988
Christian Brabandt <cb@256bit.org>
parents:
8418
diff
changeset
|
1547 1501, |
f6d21a33d489
commit https://github.com/vim/vim/commit/38fd4bb2842df7634823b99c655b3896a7a2e988
Christian Brabandt <cb@256bit.org>
parents:
8418
diff
changeset
|
1548 /**/ |
8418
89f38c77e11e
commit https://github.com/vim/vim/commit/9ef00be261115acb5bae3b3ca45c1d86a19ba2c7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
1549 1500, |
89f38c77e11e
commit https://github.com/vim/vim/commit/9ef00be261115acb5bae3b3ca45c1d86a19ba2c7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
1550 /**/ |
8416
1a6527cce675
commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents:
8414
diff
changeset
|
1551 1499, |
1a6527cce675
commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents:
8414
diff
changeset
|
1552 /**/ |
8414
8c888844de9c
commit https://github.com/vim/vim/commit/2588b5a43f049ddf542991050260237051caad77
Christian Brabandt <cb@256bit.org>
parents:
8412
diff
changeset
|
1553 1498, |
8c888844de9c
commit https://github.com/vim/vim/commit/2588b5a43f049ddf542991050260237051caad77
Christian Brabandt <cb@256bit.org>
parents:
8412
diff
changeset
|
1554 /**/ |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8410
diff
changeset
|
1555 1497, |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8410
diff
changeset
|
1556 /**/ |
8410
05ec48deb353
commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
1557 1496, |
05ec48deb353
commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
1558 /**/ |
8408
2f1a63269250
commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
1559 1495, |
2f1a63269250
commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
1560 /**/ |
8406
5d926807c19c
commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents:
8404
diff
changeset
|
1561 1494, |
5d926807c19c
commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents:
8404
diff
changeset
|
1562 /**/ |
8404
8894d595b786
commit https://github.com/vim/vim/commit/5983ad0b038fa689653246cb304fd43e8ae39a78
Christian Brabandt <cb@256bit.org>
parents:
8402
diff
changeset
|
1563 1493, |
8894d595b786
commit https://github.com/vim/vim/commit/5983ad0b038fa689653246cb304fd43e8ae39a78
Christian Brabandt <cb@256bit.org>
parents:
8402
diff
changeset
|
1564 /**/ |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8399
diff
changeset
|
1565 1492, |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8399
diff
changeset
|
1566 /**/ |
8399
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
1567 1491, |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
1568 /**/ |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8395
diff
changeset
|
1569 1490, |
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8395
diff
changeset
|
1570 /**/ |
8395
8137d5b642f3
commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents:
8393
diff
changeset
|
1571 1489, |
8137d5b642f3
commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents:
8393
diff
changeset
|
1572 /**/ |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8390
diff
changeset
|
1573 1488, |
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8390
diff
changeset
|
1574 /**/ |
8390
2230c0da23bd
commit https://github.com/vim/vim/commit/6300317b15eb33409f652c603fb402417fe4eed7
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
1575 1487, |
2230c0da23bd
commit https://github.com/vim/vim/commit/6300317b15eb33409f652c603fb402417fe4eed7
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
1576 /**/ |
8388
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
1577 1486, |
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
1578 /**/ |
8386
3b9a306724ec
commit https://github.com/vim/vim/commit/014069a7ac51557e531eb3c8b94e36f2193f6c21
Christian Brabandt <cb@256bit.org>
parents:
8384
diff
changeset
|
1579 1485, |
3b9a306724ec
commit https://github.com/vim/vim/commit/014069a7ac51557e531eb3c8b94e36f2193f6c21
Christian Brabandt <cb@256bit.org>
parents:
8384
diff
changeset
|
1580 /**/ |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8382
diff
changeset
|
1581 1484, |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8382
diff
changeset
|
1582 /**/ |
8382
3dbe93a240d8
commit https://github.com/vim/vim/commit/d6547fc6471d9084f942bdc4ae3aedb39361751d
Christian Brabandt <cb@256bit.org>
parents:
8380
diff
changeset
|
1583 1483, |
3dbe93a240d8
commit https://github.com/vim/vim/commit/d6547fc6471d9084f942bdc4ae3aedb39361751d
Christian Brabandt <cb@256bit.org>
parents:
8380
diff
changeset
|
1584 /**/ |
8380
892d7dcf17ec
commit https://github.com/vim/vim/commit/da94fdf2588b3910d38e477a755748ce2c6d2e66
Christian Brabandt <cb@256bit.org>
parents:
8378
diff
changeset
|
1585 1482, |
892d7dcf17ec
commit https://github.com/vim/vim/commit/da94fdf2588b3910d38e477a755748ce2c6d2e66
Christian Brabandt <cb@256bit.org>
parents:
8378
diff
changeset
|
1586 /**/ |
8378
52777ec8a394
commit https://github.com/vim/vim/commit/9f7820f83bc994bbbecdca9483b355953f07179b
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
1587 1481, |
52777ec8a394
commit https://github.com/vim/vim/commit/9f7820f83bc994bbbecdca9483b355953f07179b
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
1588 /**/ |
8376
e448f2a5d45b
commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents:
8374
diff
changeset
|
1589 1480, |
e448f2a5d45b
commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents:
8374
diff
changeset
|
1590 /**/ |
8374
5d834058bf44
commit https://github.com/vim/vim/commit/863c1a9079fa340d663ccafb011729a29186d73e
Christian Brabandt <cb@256bit.org>
parents:
8372
diff
changeset
|
1591 1479, |
5d834058bf44
commit https://github.com/vim/vim/commit/863c1a9079fa340d663ccafb011729a29186d73e
Christian Brabandt <cb@256bit.org>
parents:
8372
diff
changeset
|
1592 /**/ |
8372
ce791ff9e0da
commit https://github.com/vim/vim/commit/1bdd42627d619258d0e847f217cfc1c2795f1ac5
Christian Brabandt <cb@256bit.org>
parents:
8370
diff
changeset
|
1593 1478, |
ce791ff9e0da
commit https://github.com/vim/vim/commit/1bdd42627d619258d0e847f217cfc1c2795f1ac5
Christian Brabandt <cb@256bit.org>
parents:
8370
diff
changeset
|
1594 /**/ |
8370
cd7ea16d1300
commit https://github.com/vim/vim/commit/b5760a1ce5b700fc32b8bd11948ee189a847c59e
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
1595 1477, |
cd7ea16d1300
commit https://github.com/vim/vim/commit/b5760a1ce5b700fc32b8bd11948ee189a847c59e
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
1596 /**/ |
8368
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
1597 1476, |
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
1598 /**/ |
8366
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8364
diff
changeset
|
1599 1475, |
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8364
diff
changeset
|
1600 /**/ |
8364
991d8fd4d841
commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Christian Brabandt <cb@256bit.org>
parents:
8362
diff
changeset
|
1601 1474, |
991d8fd4d841
commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Christian Brabandt <cb@256bit.org>
parents:
8362
diff
changeset
|
1602 /**/ |
8362
a541dd5cfd3a
commit https://github.com/vim/vim/commit/d1413d90983fc6c579ad66ba4d4611b057197f94
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
1603 1473, |
a541dd5cfd3a
commit https://github.com/vim/vim/commit/d1413d90983fc6c579ad66ba4d4611b057197f94
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
1604 /**/ |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8358
diff
changeset
|
1605 1472, |
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8358
diff
changeset
|
1606 /**/ |
8358
49d0e094cb93
commit https://github.com/vim/vim/commit/bf73b91c664488ca57e2b4a8eb9b1f36f6625bc7
Christian Brabandt <cb@256bit.org>
parents:
8356
diff
changeset
|
1607 1471, |
49d0e094cb93
commit https://github.com/vim/vim/commit/bf73b91c664488ca57e2b4a8eb9b1f36f6625bc7
Christian Brabandt <cb@256bit.org>
parents:
8356
diff
changeset
|
1608 /**/ |
8356
e0d576743e4f
commit https://github.com/vim/vim/commit/289a90551d185c307abd4cfe6baadea8990d956b
Christian Brabandt <cb@256bit.org>
parents:
8354
diff
changeset
|
1609 1470, |
e0d576743e4f
commit https://github.com/vim/vim/commit/289a90551d185c307abd4cfe6baadea8990d956b
Christian Brabandt <cb@256bit.org>
parents:
8354
diff
changeset
|
1610 /**/ |
8354
b151c3f9be72
commit https://github.com/vim/vim/commit/42bc6dde46f1b52476cc84ee89277f981b4116c4
Christian Brabandt <cb@256bit.org>
parents:
8352
diff
changeset
|
1611 1469, |
b151c3f9be72
commit https://github.com/vim/vim/commit/42bc6dde46f1b52476cc84ee89277f981b4116c4
Christian Brabandt <cb@256bit.org>
parents:
8352
diff
changeset
|
1612 /**/ |
8352
2c40b40c3220
commit https://github.com/vim/vim/commit/51d1d536802b5d8232d47e56f165ba8a009529b5
Christian Brabandt <cb@256bit.org>
parents:
8350
diff
changeset
|
1613 1468, |
2c40b40c3220
commit https://github.com/vim/vim/commit/51d1d536802b5d8232d47e56f165ba8a009529b5
Christian Brabandt <cb@256bit.org>
parents:
8350
diff
changeset
|
1614 /**/ |
8350
e70fa2e110ec
commit https://github.com/vim/vim/commit/10b369f67064cee91a5eb41383a694162c5c5e73
Christian Brabandt <cb@256bit.org>
parents:
8348
diff
changeset
|
1615 1467, |
e70fa2e110ec
commit https://github.com/vim/vim/commit/10b369f67064cee91a5eb41383a694162c5c5e73
Christian Brabandt <cb@256bit.org>
parents:
8348
diff
changeset
|
1616 /**/ |
8348
a0cff08e7aa3
commit https://github.com/vim/vim/commit/6b584af3d7337639da27fd847c7c69a406af397e
Christian Brabandt <cb@256bit.org>
parents:
8346
diff
changeset
|
1617 1466, |
a0cff08e7aa3
commit https://github.com/vim/vim/commit/6b584af3d7337639da27fd847c7c69a406af397e
Christian Brabandt <cb@256bit.org>
parents:
8346
diff
changeset
|
1618 /**/ |
8346
8fa75a4c39bd
commit https://github.com/vim/vim/commit/cc7f8be3e0e6c4d902b02052a862e21c3a3fbe22
Christian Brabandt <cb@256bit.org>
parents:
8344
diff
changeset
|
1619 1465, |
8fa75a4c39bd
commit https://github.com/vim/vim/commit/cc7f8be3e0e6c4d902b02052a862e21c3a3fbe22
Christian Brabandt <cb@256bit.org>
parents:
8344
diff
changeset
|
1620 /**/ |
8344
2aa24f702b8d
commit https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Christian Brabandt <cb@256bit.org>
parents:
8342
diff
changeset
|
1621 1464, |
2aa24f702b8d
commit https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Christian Brabandt <cb@256bit.org>
parents:
8342
diff
changeset
|
1622 /**/ |
8342
446558924b66
commit https://github.com/vim/vim/commit/a6b8976bb724f8c85dd5699d115d795f7b730298
Christian Brabandt <cb@256bit.org>
parents:
8340
diff
changeset
|
1623 1463, |
446558924b66
commit https://github.com/vim/vim/commit/a6b8976bb724f8c85dd5699d115d795f7b730298
Christian Brabandt <cb@256bit.org>
parents:
8340
diff
changeset
|
1624 /**/ |
8340
c66e1f50c142
commit https://github.com/vim/vim/commit/2f6271b1e7cff985cac66f6850116bcf3fcccd58
Christian Brabandt <cb@256bit.org>
parents:
8338
diff
changeset
|
1625 1462, |
c66e1f50c142
commit https://github.com/vim/vim/commit/2f6271b1e7cff985cac66f6850116bcf3fcccd58
Christian Brabandt <cb@256bit.org>
parents:
8338
diff
changeset
|
1626 /**/ |
8338
3e54b31d50c7
commit https://github.com/vim/vim/commit/a86f14a923d9a242107c16d0852f61f3daf985a8
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
1627 1461, |
3e54b31d50c7
commit https://github.com/vim/vim/commit/a86f14a923d9a242107c16d0852f61f3daf985a8
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
1628 /**/ |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8334
diff
changeset
|
1629 1460, |
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8334
diff
changeset
|
1630 /**/ |
8334
ad4b00bf2984
commit https://github.com/vim/vim/commit/e081e21f760bffc24ca98d5f9bbdb5f02e6aea79
Christian Brabandt <cb@256bit.org>
parents:
8332
diff
changeset
|
1631 1459, |
ad4b00bf2984
commit https://github.com/vim/vim/commit/e081e21f760bffc24ca98d5f9bbdb5f02e6aea79
Christian Brabandt <cb@256bit.org>
parents:
8332
diff
changeset
|
1632 /**/ |
8332
07713b8243ac
commit https://github.com/vim/vim/commit/fdd6ce4a2f922afac7bd719a00228dbd8539b9c4
Christian Brabandt <cb@256bit.org>
parents:
8330
diff
changeset
|
1633 1458, |
07713b8243ac
commit https://github.com/vim/vim/commit/fdd6ce4a2f922afac7bd719a00228dbd8539b9c4
Christian Brabandt <cb@256bit.org>
parents:
8330
diff
changeset
|
1634 /**/ |
8330
ec940c11f749
commit https://github.com/vim/vim/commit/d42119fff228434fe57e88d501c744de0a9fb1b1
Christian Brabandt <cb@256bit.org>
parents:
8328
diff
changeset
|
1635 1457, |
ec940c11f749
commit https://github.com/vim/vim/commit/d42119fff228434fe57e88d501c744de0a9fb1b1
Christian Brabandt <cb@256bit.org>
parents:
8328
diff
changeset
|
1636 /**/ |
8328
0a55dd381410
commit https://github.com/vim/vim/commit/29e1951e14907b62797554ad0cc85cbbe75a1be4
Christian Brabandt <cb@256bit.org>
parents:
8326
diff
changeset
|
1637 1456, |
0a55dd381410
commit https://github.com/vim/vim/commit/29e1951e14907b62797554ad0cc85cbbe75a1be4
Christian Brabandt <cb@256bit.org>
parents:
8326
diff
changeset
|
1638 /**/ |
8326
bec1dcfaa8be
commit https://github.com/vim/vim/commit/fc2457e21d136cb366076edd448e67c9732dc40a
Christian Brabandt <cb@256bit.org>
parents:
8324
diff
changeset
|
1639 1455, |
bec1dcfaa8be
commit https://github.com/vim/vim/commit/fc2457e21d136cb366076edd448e67c9732dc40a
Christian Brabandt <cb@256bit.org>
parents:
8324
diff
changeset
|
1640 /**/ |
8324
5e88bd55b789
commit https://github.com/vim/vim/commit/9730f74a0b2acb490943393a203a24ab8fab923a
Christian Brabandt <cb@256bit.org>
parents:
8322
diff
changeset
|
1641 1454, |
5e88bd55b789
commit https://github.com/vim/vim/commit/9730f74a0b2acb490943393a203a24ab8fab923a
Christian Brabandt <cb@256bit.org>
parents:
8322
diff
changeset
|
1642 /**/ |
8322
cff44093ddb0
commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents:
8320
diff
changeset
|
1643 1453, |
cff44093ddb0
commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents:
8320
diff
changeset
|
1644 /**/ |
8320
e2021d6feeda
commit https://github.com/vim/vim/commit/18b5d6df10a5f08ffebbec85a1cf2828871e3736
Christian Brabandt <cb@256bit.org>
parents:
8318
diff
changeset
|
1645 1452, |
e2021d6feeda
commit https://github.com/vim/vim/commit/18b5d6df10a5f08ffebbec85a1cf2828871e3736
Christian Brabandt <cb@256bit.org>
parents:
8318
diff
changeset
|
1646 /**/ |
8318
190d8084cb3a
commit https://github.com/vim/vim/commit/707659490d35e8d66e8bbdcfd93b12dc1387d86c
Christian Brabandt <cb@256bit.org>
parents:
8316
diff
changeset
|
1647 1451, |
190d8084cb3a
commit https://github.com/vim/vim/commit/707659490d35e8d66e8bbdcfd93b12dc1387d86c
Christian Brabandt <cb@256bit.org>
parents:
8316
diff
changeset
|
1648 /**/ |
8316
058b9e4a291b
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents:
8314
diff
changeset
|
1649 1450, |
058b9e4a291b
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents:
8314
diff
changeset
|
1650 /**/ |
8314
4e057409f1d7
commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents:
8312
diff
changeset
|
1651 1449, |
4e057409f1d7
commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents:
8312
diff
changeset
|
1652 /**/ |
8312
1001ec135d6e
commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents:
8310
diff
changeset
|
1653 1448, |
1001ec135d6e
commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents:
8310
diff
changeset
|
1654 /**/ |
8310
aec8f8ce8e4c
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents:
8308
diff
changeset
|
1655 1447, |
aec8f8ce8e4c
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents:
8308
diff
changeset
|
1656 /**/ |
8308
c1f29c1a968a
commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents:
8306
diff
changeset
|
1657 1446, |
c1f29c1a968a
commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents:
8306
diff
changeset
|
1658 /**/ |
8306
7fcf3f6020c1
commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents:
8304
diff
changeset
|
1659 1445, |
7fcf3f6020c1
commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents:
8304
diff
changeset
|
1660 /**/ |
8304
097886a3379b
commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1661 1444, |
097886a3379b
commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1662 /**/ |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8299
diff
changeset
|
1663 1443, |
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8299
diff
changeset
|
1664 /**/ |
8299
d2a215e8d5b4
commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents:
8297
diff
changeset
|
1665 1442, |
d2a215e8d5b4
commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents:
8297
diff
changeset
|
1666 /**/ |
8297
4929eca308b7
commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents:
8295
diff
changeset
|
1667 1441, |
4929eca308b7
commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents:
8295
diff
changeset
|
1668 /**/ |
8295
18fd94bd4eb8
commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents:
8293
diff
changeset
|
1669 1440, |
18fd94bd4eb8
commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents:
8293
diff
changeset
|
1670 /**/ |
8293
367a7fed630b
commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents:
8291
diff
changeset
|
1671 1439, |
367a7fed630b
commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents:
8291
diff
changeset
|
1672 /**/ |
8291
ac0c43e7af20
commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1673 1438, |
ac0c43e7af20
commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1674 /**/ |
8289
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8287
diff
changeset
|
1675 1437, |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8287
diff
changeset
|
1676 /**/ |
8287
56dbae4b73c6
commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents:
8285
diff
changeset
|
1677 1436, |
56dbae4b73c6
commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents:
8285
diff
changeset
|
1678 /**/ |
8285
e05e28dcb590
commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents:
8283
diff
changeset
|
1679 1435, |
e05e28dcb590
commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents:
8283
diff
changeset
|
1680 /**/ |
8283
b8a56d4d83e0
commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1681 1434, |
b8a56d4d83e0
commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1682 /**/ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8279
diff
changeset
|
1683 1433, |
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8279
diff
changeset
|
1684 /**/ |
8279
738c2929d6ad
commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents:
8277
diff
changeset
|
1685 1432, |
738c2929d6ad
commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents:
8277
diff
changeset
|
1686 /**/ |
8277
fa1e3fa56104
commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents:
8275
diff
changeset
|
1687 1431, |
fa1e3fa56104
commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents:
8275
diff
changeset
|
1688 /**/ |
8275
ff900e499f79
commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents:
8273
diff
changeset
|
1689 1430, |
ff900e499f79
commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents:
8273
diff
changeset
|
1690 /**/ |
8273
0c3210caefa6
commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents:
8271
diff
changeset
|
1691 1429, |
0c3210caefa6
commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents:
8271
diff
changeset
|
1692 /**/ |
8271
770774e66011
commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents:
8269
diff
changeset
|
1693 1428, |
770774e66011
commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents:
8269
diff
changeset
|
1694 /**/ |
8269
553a4c8dd796
commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
1695 1427, |
553a4c8dd796
commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
1696 /**/ |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8265
diff
changeset
|
1697 1426, |
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8265
diff
changeset
|
1698 /**/ |
8265
792bc43e69a7
commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents:
8263
diff
changeset
|
1699 1425, |
792bc43e69a7
commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents:
8263
diff
changeset
|
1700 /**/ |
8263
96c0100f22f1
commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents:
8261
diff
changeset
|
1701 1424, |
96c0100f22f1
commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents:
8261
diff
changeset
|
1702 /**/ |
8261
a412b466bedc
commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents:
8259
diff
changeset
|
1703 1423, |
a412b466bedc
commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents:
8259
diff
changeset
|
1704 /**/ |
8259
99a70c3b902f
commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents:
8257
diff
changeset
|
1705 1422, |
99a70c3b902f
commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents:
8257
diff
changeset
|
1706 /**/ |
8257
c4ffdda8cdfd
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents:
8255
diff
changeset
|
1707 1421, |
c4ffdda8cdfd
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents:
8255
diff
changeset
|
1708 /**/ |
8255
355652348057
commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents:
8253
diff
changeset
|
1709 1420, |
355652348057
commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents:
8253
diff
changeset
|
1710 /**/ |
8253
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8251
diff
changeset
|
1711 1419, |
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8251
diff
changeset
|
1712 /**/ |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8249
diff
changeset
|
1713 1418, |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8249
diff
changeset
|
1714 /**/ |
8249
8dd8d96278a4
commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents:
8247
diff
changeset
|
1715 1417, |
8dd8d96278a4
commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents:
8247
diff
changeset
|
1716 /**/ |
8247
6ee794dc950e
commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents:
8244
diff
changeset
|
1717 1416, |
6ee794dc950e
commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents:
8244
diff
changeset
|
1718 /**/ |
8244
acc8029e530f
commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents:
8242
diff
changeset
|
1719 1415, |
acc8029e530f
commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents:
8242
diff
changeset
|
1720 /**/ |
8242
1313d2e282dc
commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
1721 1414, |
1313d2e282dc
commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
1722 /**/ |
8240
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8238
diff
changeset
|
1723 1413, |
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8238
diff
changeset
|
1724 /**/ |
8238
d7e1526ae1b9
commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents:
8236
diff
changeset
|
1725 1412, |
d7e1526ae1b9
commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents:
8236
diff
changeset
|
1726 /**/ |
8236
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
8234
diff
changeset
|
1727 1411, |
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
8234
diff
changeset
|
1728 /**/ |
8234
dc72f4a463e4
commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents:
8232
diff
changeset
|
1729 1410, |
dc72f4a463e4
commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents:
8232
diff
changeset
|
1730 /**/ |
8232
a777ff826523
commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents:
8230
diff
changeset
|
1731 1409, |
a777ff826523
commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents:
8230
diff
changeset
|
1732 /**/ |
8230
51ca0cee512e
commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents:
8228
diff
changeset
|
1733 1408, |
51ca0cee512e
commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents:
8228
diff
changeset
|
1734 /**/ |
8228
a0e552c51c34
commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents:
8226
diff
changeset
|
1735 1407, |
a0e552c51c34
commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents:
8226
diff
changeset
|
1736 /**/ |
8226
cb0edf7bd0a4
commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents:
8224
diff
changeset
|
1737 1406, |
cb0edf7bd0a4
commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents:
8224
diff
changeset
|
1738 /**/ |
8224
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
1739 1405, |
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
1740 /**/ |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
1741 1404, |
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
1742 /**/ |
8220
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
1743 1403, |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
1744 /**/ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
1745 1402, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
1746 /**/ |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
1747 1401, |
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
1748 /**/ |
8214
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1749 1400, |
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1750 /**/ |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8210
diff
changeset
|
1751 1399, |
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8210
diff
changeset
|
1752 /**/ |
8210
b717dae2f26d
commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents:
8208
diff
changeset
|
1753 1398, |
b717dae2f26d
commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents:
8208
diff
changeset
|
1754 /**/ |
8208
c11aaa31a0ed
commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents:
8206
diff
changeset
|
1755 1397, |
c11aaa31a0ed
commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents:
8206
diff
changeset
|
1756 /**/ |
8206
78f2e8c07973
commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1757 1396, |
78f2e8c07973
commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1758 /**/ |
8204
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8202
diff
changeset
|
1759 1395, |
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8202
diff
changeset
|
1760 /**/ |
8202
c16aa03d8db5
commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents:
8200
diff
changeset
|
1761 1394, |
c16aa03d8db5
commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents:
8200
diff
changeset
|
1762 /**/ |
8200
ee84450e604e
commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents:
8198
diff
changeset
|
1763 1393, |
ee84450e604e
commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents:
8198
diff
changeset
|
1764 /**/ |
8198
7c21dd028e0f
commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents:
8196
diff
changeset
|
1765 1392, |
7c21dd028e0f
commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents:
8196
diff
changeset
|
1766 /**/ |
8196
cbb2f84da063
commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents:
8194
diff
changeset
|
1767 1391, |
cbb2f84da063
commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents:
8194
diff
changeset
|
1768 /**/ |
8194
265bcedffc15
commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents:
8192
diff
changeset
|
1769 1390, |
265bcedffc15
commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents:
8192
diff
changeset
|
1770 /**/ |
8192
fa2668601c7a
commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents:
8190
diff
changeset
|
1771 1389, |
fa2668601c7a
commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents:
8190
diff
changeset
|
1772 /**/ |
8190
a8e7b8328cb4
commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents:
8188
diff
changeset
|
1773 1388, |
a8e7b8328cb4
commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents:
8188
diff
changeset
|
1774 /**/ |
8188
9531717f0694
commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents:
8186
diff
changeset
|
1775 1387, |
9531717f0694
commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents:
8186
diff
changeset
|
1776 /**/ |
8186
5fed86dac210
commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents:
8184
diff
changeset
|
1777 1386, |
5fed86dac210
commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents:
8184
diff
changeset
|
1778 /**/ |
8184
1f81c571d0e7
commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
1779 1385, |
1f81c571d0e7
commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
1780 /**/ |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
1781 1384, |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
1782 /**/ |
8180
1e48ffa2d697
commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents:
8178
diff
changeset
|
1783 1383, |
1e48ffa2d697
commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents:
8178
diff
changeset
|
1784 /**/ |
8178
e77efd7a7dad
commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1785 1382, |
e77efd7a7dad
commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1786 /**/ |
8176
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
1787 1381, |
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
1788 /**/ |
8174
f2286ff0c102
commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
1789 1380, |
f2286ff0c102
commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
1790 /**/ |
8172
db5c79d93eee
commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
1791 1379, |
db5c79d93eee
commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
1792 /**/ |
8170
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8168
diff
changeset
|
1793 1378, |
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8168
diff
changeset
|
1794 /**/ |
8168
454a30a7590e
commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents:
8165
diff
changeset
|
1795 1377, |
454a30a7590e
commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents:
8165
diff
changeset
|
1796 /**/ |
8165
973686665238
commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
1797 1376, |
973686665238
commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
1798 /**/ |
8163
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
8161
diff
changeset
|
1799 1375, |
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
8161
diff
changeset
|
1800 /**/ |
8161
e9caba58213b
commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents:
8159
diff
changeset
|
1801 1374, |
e9caba58213b
commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents:
8159
diff
changeset
|
1802 /**/ |
8159
d0958e22d9ff
commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents:
8157
diff
changeset
|
1803 1373, |
d0958e22d9ff
commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents:
8157
diff
changeset
|
1804 /**/ |
8157
74b44d06d3c7
commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents:
8155
diff
changeset
|
1805 1372, |
74b44d06d3c7
commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents:
8155
diff
changeset
|
1806 /**/ |
8155
6ee6fb27dcea
commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents:
8153
diff
changeset
|
1807 1371, |
6ee6fb27dcea
commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents:
8153
diff
changeset
|
1808 /**/ |
8153
240deebfadde
commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
1809 1370, |
240deebfadde
commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
1810 /**/ |
8151
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8149
diff
changeset
|
1811 1369, |
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8149
diff
changeset
|
1812 /**/ |
8149
028e24e4c0f4
commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents:
8146
diff
changeset
|
1813 1368, |
028e24e4c0f4
commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents:
8146
diff
changeset
|
1814 /**/ |
8146
5dacbd22fefd
commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents:
8144
diff
changeset
|
1815 1367, |
5dacbd22fefd
commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents:
8144
diff
changeset
|
1816 /**/ |
8144
efbb9916290c
commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents:
8142
diff
changeset
|
1817 1366, |
efbb9916290c
commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents:
8142
diff
changeset
|
1818 /**/ |
8142
71aabce3142e
commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
1819 1365, |
71aabce3142e
commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
1820 /**/ |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8138
diff
changeset
|
1821 1364, |
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8138
diff
changeset
|
1822 /**/ |
8138
f52504c10387
commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents:
8136
diff
changeset
|
1823 1363, |
f52504c10387
commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents:
8136
diff
changeset
|
1824 /**/ |
8136
9b2d25319c48
commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents:
8134
diff
changeset
|
1825 1362, |
9b2d25319c48
commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents:
8134
diff
changeset
|
1826 /**/ |
8134
8abef552ece7
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents:
8132
diff
changeset
|
1827 1361, |
8abef552ece7
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents:
8132
diff
changeset
|
1828 /**/ |
8132
f96536c291d8
commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents:
8130
diff
changeset
|
1829 1360, |
f96536c291d8
commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents:
8130
diff
changeset
|
1830 /**/ |
8130
3462f9cfedf8
commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents:
8128
diff
changeset
|
1831 1359, |
3462f9cfedf8
commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents:
8128
diff
changeset
|
1832 /**/ |
8128
985cd5917560
commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents:
8126
diff
changeset
|
1833 1358, |
985cd5917560
commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents:
8126
diff
changeset
|
1834 /**/ |
8126
0aa9cb77a8dd
commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents:
8124
diff
changeset
|
1835 1357, |
0aa9cb77a8dd
commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents:
8124
diff
changeset
|
1836 /**/ |
8124
310dd635e8c9
commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents:
8122
diff
changeset
|
1837 1356, |
310dd635e8c9
commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents:
8122
diff
changeset
|
1838 /**/ |
8122
39532ee7dd43
commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
1839 1355, |
39532ee7dd43
commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
1840 /**/ |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8118
diff
changeset
|
1841 1354, |
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8118
diff
changeset
|
1842 /**/ |
8118
1f28be191fab
commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents:
8116
diff
changeset
|
1843 1353, |
1f28be191fab
commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents:
8116
diff
changeset
|
1844 /**/ |
8116
3c1bdf20c8b9
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
1845 1352, |
3c1bdf20c8b9
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
1846 /**/ |
8114
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
1847 1351, |
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
1848 /**/ |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
1849 1350, |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
1850 /**/ |
8110
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
8108
diff
changeset
|
1851 1349, |
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
8108
diff
changeset
|
1852 /**/ |
8108
50515f2e81d1
commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents:
8106
diff
changeset
|
1853 1348, |
50515f2e81d1
commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents:
8106
diff
changeset
|
1854 /**/ |
8106
58505cbea7e5
commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents:
8104
diff
changeset
|
1855 1347, |
58505cbea7e5
commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents:
8104
diff
changeset
|
1856 /**/ |
8104
1a03abdc4234
commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents:
8102
diff
changeset
|
1857 1346, |
1a03abdc4234
commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents:
8102
diff
changeset
|
1858 /**/ |
8102
441298d72f3c
commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents:
8100
diff
changeset
|
1859 1345, |
441298d72f3c
commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents:
8100
diff
changeset
|
1860 /**/ |
8100
ae50910ce279
commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents:
8098
diff
changeset
|
1861 1344, |
ae50910ce279
commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents:
8098
diff
changeset
|
1862 /**/ |
8098
7bc924a34288
commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents:
8096
diff
changeset
|
1863 1343, |
7bc924a34288
commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents:
8096
diff
changeset
|
1864 /**/ |
8096
882ba5080c5c
commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
1865 1342, |
882ba5080c5c
commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
1866 /**/ |
8094
18a3f0f05244
commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents:
8092
diff
changeset
|
1867 1341, |
18a3f0f05244
commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents:
8092
diff
changeset
|
1868 /**/ |
8092
d82fb42b611b
commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1869 1340, |
d82fb42b611b
commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1870 /**/ |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8088
diff
changeset
|
1871 1339, |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8088
diff
changeset
|
1872 /**/ |
8088
1b70dae3e79a
commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents:
8086
diff
changeset
|
1873 1338, |
1b70dae3e79a
commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents:
8086
diff
changeset
|
1874 /**/ |
8086
04ed31f9ef70
commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
1875 1337, |
04ed31f9ef70
commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
1876 /**/ |
8084
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
1877 1336, |
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
1878 /**/ |
8082
0c7f5abe84b8
commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1879 1335, |
0c7f5abe84b8
commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1880 /**/ |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8078
diff
changeset
|
1881 1334, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8078
diff
changeset
|
1882 /**/ |
8078
7676818d486b
commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
1883 1333, |
7676818d486b
commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
1884 /**/ |
8076
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8074
diff
changeset
|
1885 1332, |
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8074
diff
changeset
|
1886 /**/ |
8074
dc32c8026899
commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents:
8072
diff
changeset
|
1887 1331, |
dc32c8026899
commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents:
8072
diff
changeset
|
1888 /**/ |
8072
38887bf423ba
commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents:
8070
diff
changeset
|
1889 1330, |
38887bf423ba
commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents:
8070
diff
changeset
|
1890 /**/ |
8070
e4c3f6720b03
commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents:
8068
diff
changeset
|
1891 1329, |
e4c3f6720b03
commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents:
8068
diff
changeset
|
1892 /**/ |
8068
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8066
diff
changeset
|
1893 1328, |
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8066
diff
changeset
|
1894 /**/ |
8066
1aa8ed4ee48b
commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
1895 1327, |
1aa8ed4ee48b
commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
1896 /**/ |
8064
1e853c5273d0
commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents:
8062
diff
changeset
|
1897 1326, |
1e853c5273d0
commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents:
8062
diff
changeset
|
1898 /**/ |
8062
7fe3b9dc132b
commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1899 1325, |
7fe3b9dc132b
commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1900 /**/ |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8057
diff
changeset
|
1901 1324, |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8057
diff
changeset
|
1902 /**/ |
8057
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8055
diff
changeset
|
1903 1323, |
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8055
diff
changeset
|
1904 /**/ |
8055
6db4b1c863ec
commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
1905 1322, |
6db4b1c863ec
commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
1906 /**/ |
8053
774d53057a23
commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
1907 1321, |
774d53057a23
commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
1908 /**/ |
8051
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
1909 1320, |
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
1910 /**/ |
8049
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
1911 1319, |
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
1912 /**/ |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8045
diff
changeset
|
1913 1318, |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8045
diff
changeset
|
1914 /**/ |
8045
9f9b74579bdc
commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents:
8043
diff
changeset
|
1915 1317, |
9f9b74579bdc
commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents:
8043
diff
changeset
|
1916 /**/ |
8043
167e22951df4
commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
1917 1316, |
167e22951df4
commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
1918 /**/ |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8039
diff
changeset
|
1919 1315, |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8039
diff
changeset
|
1920 /**/ |
8039
72324c2e890a
commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1921 1314, |
72324c2e890a
commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1922 /**/ |
8037
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8035
diff
changeset
|
1923 1313, |
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8035
diff
changeset
|
1924 /**/ |
8035
f48041801aac
commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents:
8033
diff
changeset
|
1925 1312, |
f48041801aac
commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents:
8033
diff
changeset
|
1926 /**/ |
8033
a1b10634a28a
commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1927 1311, |
a1b10634a28a
commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1928 /**/ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8029
diff
changeset
|
1929 1310, |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8029
diff
changeset
|
1930 /**/ |
8029
770dd91ad9f7
commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents:
8027
diff
changeset
|
1931 1309, |
770dd91ad9f7
commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents:
8027
diff
changeset
|
1932 /**/ |
8027
4fd171e5cedc
commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents:
8025
diff
changeset
|
1933 1308, |
4fd171e5cedc
commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents:
8025
diff
changeset
|
1934 /**/ |
8025
1f0f08c601b7
commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
1935 1307, |
1f0f08c601b7
commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
1936 /**/ |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8021
diff
changeset
|
1937 1306, |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8021
diff
changeset
|
1938 /**/ |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
8019
diff
changeset
|
1939 1305, |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
8019
diff
changeset
|
1940 /**/ |
8019
d685893d852e
commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents:
8017
diff
changeset
|
1941 1304, |
d685893d852e
commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents:
8017
diff
changeset
|
1942 /**/ |
8017
c59a65524084
commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
1943 1303, |
c59a65524084
commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
1944 /**/ |
8015
b421c7f2f172
commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents:
8013
diff
changeset
|
1945 1302, |
b421c7f2f172
commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents:
8013
diff
changeset
|
1946 /**/ |
8013
dfae8bce5920
commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents:
8011
diff
changeset
|
1947 1301, |
dfae8bce5920
commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents:
8011
diff
changeset
|
1948 /**/ |
8011
26f555e9aab1
commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents:
8009
diff
changeset
|
1949 1300, |
26f555e9aab1
commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents:
8009
diff
changeset
|
1950 /**/ |
8009
b2cfa3416ba0
commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents:
8007
diff
changeset
|
1951 1299, |
b2cfa3416ba0
commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents:
8007
diff
changeset
|
1952 /**/ |
8007
ac78cba9e72b
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents:
8005
diff
changeset
|
1953 1298, |
ac78cba9e72b
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents:
8005
diff
changeset
|
1954 /**/ |
8005
d65aa95725d3
commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
1955 1297, |
d65aa95725d3
commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
1956 /**/ |
8003
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
8001
diff
changeset
|
1957 1296, |
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
8001
diff
changeset
|
1958 /**/ |
8001
e5dbeb923ce6
commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
1959 1295, |
e5dbeb923ce6
commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
1960 /**/ |
7999
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7997
diff
changeset
|
1961 1294, |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7997
diff
changeset
|
1962 /**/ |
7997
c1c9ab17e197
commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents:
7995
diff
changeset
|
1963 1293, |
c1c9ab17e197
commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents:
7995
diff
changeset
|
1964 /**/ |
7995
d244f2e46d69
commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents:
7993
diff
changeset
|
1965 1292, |
d244f2e46d69
commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents:
7993
diff
changeset
|
1966 /**/ |
7993
0756eab66b71
commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents:
7990
diff
changeset
|
1967 1291, |
0756eab66b71
commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents:
7990
diff
changeset
|
1968 /**/ |
7990
75de22db840d
commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents:
7988
diff
changeset
|
1969 1290, |
75de22db840d
commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents:
7988
diff
changeset
|
1970 /**/ |
7988
d3fed9a639db
commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents:
7986
diff
changeset
|
1971 1289, |
d3fed9a639db
commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents:
7986
diff
changeset
|
1972 /**/ |
7986
8e0d4cd8157a
commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents:
7984
diff
changeset
|
1973 1288, |
8e0d4cd8157a
commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents:
7984
diff
changeset
|
1974 /**/ |
7984
c166ff6797cb
commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents:
7982
diff
changeset
|
1975 1287, |
c166ff6797cb
commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents:
7982
diff
changeset
|
1976 /**/ |
7982
5c30ba57aaea
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents:
7979
diff
changeset
|
1977 1286, |
5c30ba57aaea
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents:
7979
diff
changeset
|
1978 /**/ |
7979
22367b9f528a
commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents:
7977
diff
changeset
|
1979 1285, |
22367b9f528a
commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents:
7977
diff
changeset
|
1980 /**/ |
7977
96fe78b32ad5
commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents:
7975
diff
changeset
|
1981 1284, |
96fe78b32ad5
commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents:
7975
diff
changeset
|
1982 /**/ |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7973
diff
changeset
|
1983 1283, |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7973
diff
changeset
|
1984 /**/ |
7973
00344cd730f6
commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents:
7971
diff
changeset
|
1985 1282, |
00344cd730f6
commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents:
7971
diff
changeset
|
1986 /**/ |
7971
f91a24e33475
commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents:
7969
diff
changeset
|
1987 1281, |
f91a24e33475
commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents:
7969
diff
changeset
|
1988 /**/ |
7969
0de25de30ba3
commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents:
7967
diff
changeset
|
1989 1280, |
0de25de30ba3
commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents:
7967
diff
changeset
|
1990 /**/ |
7967
45ea5ebf3a98
commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents:
7965
diff
changeset
|
1991 1279, |
45ea5ebf3a98
commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents:
7965
diff
changeset
|
1992 /**/ |
7965
646d5148fee2
commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents:
7963
diff
changeset
|
1993 1278, |
646d5148fee2
commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents:
7963
diff
changeset
|
1994 /**/ |
7963
d96e38f35e2d
commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1995 1277, |
d96e38f35e2d
commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1996 /**/ |
7961
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7959
diff
changeset
|
1997 1276, |
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7959
diff
changeset
|
1998 /**/ |
7959
fc9ba91a6533
commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
1999 1275, |
fc9ba91a6533
commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
2000 /**/ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
2001 1274, |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
2002 /**/ |
7955
a4de8e834b8f
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents:
7953
diff
changeset
|
2003 1273, |
a4de8e834b8f
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents:
7953
diff
changeset
|
2004 /**/ |
7953
a028a16110e2
commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents:
7951
diff
changeset
|
2005 1272, |
a028a16110e2
commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents:
7951
diff
changeset
|
2006 /**/ |
7951
03e716299680
commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents:
7949
diff
changeset
|
2007 1271, |
03e716299680
commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents:
7949
diff
changeset
|
2008 /**/ |
7949
3f7382858d4d
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents:
7947
diff
changeset
|
2009 1270, |
3f7382858d4d
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents:
7947
diff
changeset
|
2010 /**/ |
7947
b2922673917a
commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents:
7945
diff
changeset
|
2011 1269, |
b2922673917a
commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents:
7945
diff
changeset
|
2012 /**/ |
7945
e72438a11172
commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents:
7943
diff
changeset
|
2013 1268, |
e72438a11172
commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents:
7943
diff
changeset
|
2014 /**/ |
7943
e875f0fbd9c0
commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
2015 1267, |
e875f0fbd9c0
commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
2016 /**/ |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7939
diff
changeset
|
2017 1266, |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7939
diff
changeset
|
2018 /**/ |
7939
dcc0bd6b1574
commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents:
7937
diff
changeset
|
2019 1265, |
dcc0bd6b1574
commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents:
7937
diff
changeset
|
2020 /**/ |
7937
2e905dfc6999
commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
2021 1264, |
2e905dfc6999
commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
2022 /**/ |
7935
3f2e0b62003d
commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents:
7933
diff
changeset
|
2023 1263, |
3f2e0b62003d
commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents:
7933
diff
changeset
|
2024 /**/ |
7933
1f0743f4f88f
commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents:
7931
diff
changeset
|
2025 1262, |
1f0743f4f88f
commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents:
7931
diff
changeset
|
2026 /**/ |
7931
2679e636e862
commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents:
7929
diff
changeset
|
2027 1261, |
2679e636e862
commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents:
7929
diff
changeset
|
2028 /**/ |
7929
e44240b5a6da
commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents:
7927
diff
changeset
|
2029 1260, |
e44240b5a6da
commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents:
7927
diff
changeset
|
2030 /**/ |
7927
2a34dd90beba
commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents:
7925
diff
changeset
|
2031 1259, |
2a34dd90beba
commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents:
7925
diff
changeset
|
2032 /**/ |
7925
b724dbb299d5
commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents:
7922
diff
changeset
|
2033 1258, |
b724dbb299d5
commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents:
7922
diff
changeset
|
2034 /**/ |
7922
14540239601d
commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents:
7920
diff
changeset
|
2035 1257, |
14540239601d
commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents:
7920
diff
changeset
|
2036 /**/ |
7920
1ebc7be4dbbf
commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents:
7918
diff
changeset
|
2037 1256, |
1ebc7be4dbbf
commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents:
7918
diff
changeset
|
2038 /**/ |
7918
ce5a7a613867
commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents:
7916
diff
changeset
|
2039 1255, |
ce5a7a613867
commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents:
7916
diff
changeset
|
2040 /**/ |
7916
54602dcac207
commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents:
7914
diff
changeset
|
2041 1254, |
54602dcac207
commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents:
7914
diff
changeset
|
2042 /**/ |
7914
35973ce58c84
commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents:
7912
diff
changeset
|
2043 1253, |
35973ce58c84
commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents:
7912
diff
changeset
|
2044 /**/ |
7912
1c6ef9113556
commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents:
7910
diff
changeset
|
2045 1252, |
1c6ef9113556
commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents:
7910
diff
changeset
|
2046 /**/ |
7910
e873010fb658
commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents:
7908
diff
changeset
|
2047 1251, |
e873010fb658
commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents:
7908
diff
changeset
|
2048 /**/ |
7908
a343a738010e
commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents:
7906
diff
changeset
|
2049 1250, |
a343a738010e
commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents:
7906
diff
changeset
|
2050 /**/ |
7906
ea1fd8d750a6
commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents:
7904
diff
changeset
|
2051 1249, |
ea1fd8d750a6
commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents:
7904
diff
changeset
|
2052 /**/ |
7904
14a5de0990a5
commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents:
7902
diff
changeset
|
2053 1248, |
14a5de0990a5
commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents:
7902
diff
changeset
|
2054 /**/ |
7902
f12d6235a753
commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents:
7899
diff
changeset
|
2055 1247, |
f12d6235a753
commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents:
7899
diff
changeset
|
2056 /**/ |
7899
93c61501c2cf
commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents:
7897
diff
changeset
|
2057 1246, |
93c61501c2cf
commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents:
7897
diff
changeset
|
2058 /**/ |
7897
43071dab7621
commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents:
7895
diff
changeset
|
2059 1245, |
43071dab7621
commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents:
7895
diff
changeset
|
2060 /**/ |
7895
bff95e0d8885
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents:
7893
diff
changeset
|
2061 1244, |
bff95e0d8885
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents:
7893
diff
changeset
|
2062 /**/ |
7893
df2b8af14072
commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents:
7891
diff
changeset
|
2063 1243, |
df2b8af14072
commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents:
7891
diff
changeset
|
2064 /**/ |
7891
d14cf20b44dc
commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents:
7889
diff
changeset
|
2065 1242, |
d14cf20b44dc
commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents:
7889
diff
changeset
|
2066 /**/ |
7889
8e84273089d0
commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents:
7887
diff
changeset
|
2067 1241, |
8e84273089d0
commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents:
7887
diff
changeset
|
2068 /**/ |
7887
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7885
diff
changeset
|
2069 1240, |
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7885
diff
changeset
|
2070 /**/ |
7885
6e6f829af138
commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents:
7883
diff
changeset
|
2071 1239, |
6e6f829af138
commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents:
7883
diff
changeset
|
2072 /**/ |
7883
98a96e0ca73b
commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
2073 1238, |
98a96e0ca73b
commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
2074 /**/ |
7881
e7afe45a202a
commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
2075 1237, |
e7afe45a202a
commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
2076 /**/ |
7879
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
7877
diff
changeset
|
2077 1236, |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
7877
diff
changeset
|
2078 /**/ |
7877
7fbd2de703a9
commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents:
7874
diff
changeset
|
2079 1235, |
7fbd2de703a9
commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents:
7874
diff
changeset
|
2080 /**/ |
7874
2313f1a94153
commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents:
7872
diff
changeset
|
2081 1234, |
2313f1a94153
commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents:
7872
diff
changeset
|
2082 /**/ |
7872
4b9d4600166f
commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2083 1233, |
4b9d4600166f
commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
2084 /**/ |
7870
fb5ba6fbc843
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents:
7868
diff
changeset
|
2085 1232, |
fb5ba6fbc843
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents:
7868
diff
changeset
|
2086 /**/ |
7868
17e6ff1a74f1
commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents:
7866
diff
changeset
|
2087 1231, |
17e6ff1a74f1
commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents:
7866
diff
changeset
|
2088 /**/ |
7866
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7864
diff
changeset
|
2089 1230, |
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7864
diff
changeset
|
2090 /**/ |
7864
6b0891de44a9
commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents:
7862
diff
changeset
|
2091 1229, |
6b0891de44a9
commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents:
7862
diff
changeset
|
2092 /**/ |
7862
d4fec9208e7e
commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents:
7860
diff
changeset
|
2093 1228, |
d4fec9208e7e
commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents:
7860
diff
changeset
|
2094 /**/ |
7860
150576e6b984
commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents:
7858
diff
changeset
|
2095 1227, |
150576e6b984
commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents:
7858
diff
changeset
|
2096 /**/ |
7858
e90a16795c74
commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
2097 1226, |
e90a16795c74
commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
2098 /**/ |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7854
diff
changeset
|
2099 1225, |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7854
diff
changeset
|
2100 /**/ |
7854
b512d9cce151
commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents:
7852
diff
changeset
|
2101 1224, |
b512d9cce151
commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents:
7852
diff
changeset
|
2102 /**/ |
7852
8818755d8326
commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2103 1223, |
8818755d8326
commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
2104 /**/ |
7850
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7848
diff
changeset
|
2105 1222, |
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7848
diff
changeset
|
2106 /**/ |
7848
798673834bab
commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents:
7846
diff
changeset
|
2107 1221, |
798673834bab
commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents:
7846
diff
changeset
|
2108 /**/ |
7846
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
2109 1220, |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
2110 /**/ |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
2111 1219, |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
2112 /**/ |
7842
cf744110897d
commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents:
7840
diff
changeset
|
2113 1218, |
cf744110897d
commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents:
7840
diff
changeset
|
2114 /**/ |
7840
28f569c7dab9
commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
2115 1217, |
28f569c7dab9
commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
2116 /**/ |
7838
cfed0e9f0ca2
commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
2117 1216, |
cfed0e9f0ca2
commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
2118 /**/ |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
2119 1215, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
2120 /**/ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2121 1214, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2122 /**/ |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7831
diff
changeset
|
2123 1213, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7831
diff
changeset
|
2124 /**/ |
7831
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
2125 1212, |
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
2126 /**/ |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
2127 1211, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
2128 /**/ |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7825
diff
changeset
|
2129 1210, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7825
diff
changeset
|
2130 /**/ |
7825
7898da204b98
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
2131 1209, |
7898da204b98
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
2132 /**/ |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
2133 1208, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
2134 /**/ |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
2135 1207, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
2136 /**/ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
2137 1206, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
2138 /**/ |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2139 1205, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2140 /**/ |
7815
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
2141 1204, |
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
2142 /**/ |
7813
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7811
diff
changeset
|
2143 1203, |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7811
diff
changeset
|
2144 /**/ |
7811
7fda54504fee
commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents:
7809
diff
changeset
|
2145 1202, |
7fda54504fee
commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents:
7809
diff
changeset
|
2146 /**/ |
7809
4635a259ecc0
commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2147 1201, |
4635a259ecc0
commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2148 /**/ |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2149 1200, |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2150 /**/ |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2151 1199, |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2152 /**/ |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2153 1198, |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2154 /**/ |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2155 1197, |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2156 /**/ |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2157 1196, |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2158 /**/ |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7795
diff
changeset
|
2159 1195, |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7795
diff
changeset
|
2160 /**/ |
7795
4f23088b47ea
commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents:
7793
diff
changeset
|
2161 1194, |
4f23088b47ea
commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents:
7793
diff
changeset
|
2162 /**/ |
7793
2981a37cec61
commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents:
7791
diff
changeset
|
2163 1193, |
2981a37cec61
commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents:
7791
diff
changeset
|
2164 /**/ |
7791
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
2165 1192, |
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
2166 /**/ |
7788
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
2167 1191, |
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
2168 /**/ |
7786
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
2169 1190, |
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
2170 /**/ |
7784
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
2171 1189, |
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
2172 /**/ |
7782
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
2173 1188, |
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
2174 /**/ |
7780
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
2175 1187, |
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
2176 /**/ |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
2177 1186, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
2178 /**/ |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
2179 1185, |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
2180 /**/ |
7774
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
2181 1184, |
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
2182 /**/ |
7772
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
2183 1183, |
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
2184 /**/ |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
2185 1182, |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
2186 /**/ |
7768
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
2187 1181, |
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
2188 /**/ |
7765
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
2189 1180, |
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
2190 /**/ |
7763
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
2191 1179, |
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
2192 /**/ |
7761
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
2193 1178, |
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
2194 /**/ |
7759
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
2195 1177, |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
2196 /**/ |
7757
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
2197 1176, |
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
2198 /**/ |
7755
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
2199 1175, |
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
2200 /**/ |
7753
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
2201 1174, |
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
2202 /**/ |
7751
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
2203 1173, |
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
2204 /**/ |
7749
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
2205 1172, |
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
2206 /**/ |
7747
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
2207 1171, |
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
2208 /**/ |
7745
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2209 1170, |
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2210 /**/ |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
2211 1169, |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
2212 /**/ |
7740
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
2213 1168, |
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
2214 /**/ |
7738
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
2215 1167, |
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
2216 /**/ |
7736
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
2217 1166, |
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
2218 /**/ |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
2219 1165, |
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
2220 /**/ |
7732
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
2221 1164, |
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
2222 /**/ |
7730
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
2223 1163, |
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
2224 /**/ |
7728
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
2225 1162, |
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
2226 /**/ |
7726
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
2227 1161, |
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
2228 /**/ |
7724
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
2229 1160, |
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
2230 /**/ |
7722
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
2231 1159, |
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
2232 /**/ |
7720
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
2233 1158, |
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
2234 /**/ |
7718
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
2235 1157, |
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
2236 /**/ |
7716
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
2237 1156, |
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
2238 /**/ |
7714
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
2239 1155, |
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
2240 /**/ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
2241 1154, |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
2242 /**/ |
7710
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
2243 1153, |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
2244 /**/ |
7708
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
2245 1152, |
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
2246 /**/ |
7705
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
2247 1151, |
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
2248 /**/ |
7703
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
2249 1150, |
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
2250 /**/ |
7701
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
2251 1149, |
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
2252 /**/ |
7699
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
2253 1148, |
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
2254 /**/ |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
2255 1147, |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
2256 /**/ |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
2257 1146, |
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
2258 /**/ |
7693
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
2259 1145, |
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
2260 /**/ |
7691
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
2261 1144, |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
2262 /**/ |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
2263 1143, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
2264 /**/ |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
2265 1142, |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
2266 /**/ |
7685
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
2267 1141, |
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
2268 /**/ |
7683
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
2269 1140, |
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
2270 /**/ |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2271 1139, |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2272 /**/ |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
2273 1138, |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
2274 /**/ |
7677
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
2275 1137, |
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
2276 /**/ |
7675
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
2277 1136, |
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
2278 /**/ |
7672
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
2279 1135, |
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
2280 /**/ |
7670
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
2281 1134, |
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
2282 /**/ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
2283 1133, |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
2284 /**/ |
7666
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
2285 1132, |
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
2286 /**/ |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
2287 1131, |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
2288 /**/ |
7662
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
2289 1130, |
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
2290 /**/ |
7660
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
2291 1129, |
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
2292 /**/ |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
2293 1128, |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
2294 /**/ |
7655
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
2295 1127, |
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
2296 /**/ |
7653
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
2297 1126, |
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
2298 /**/ |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
2299 1125, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
2300 /**/ |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
2301 1124, |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
2302 /**/ |
7647
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
2303 1123, |
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
2304 /**/ |
7645
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
2305 1122, |
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
2306 /**/ |
7643
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
2307 1121, |
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
2308 /**/ |
7641
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
2309 1120, |
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
2310 /**/ |
7639
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
2311 1119, |
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
2312 /**/ |
7637
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
2313 1118, |
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
2314 /**/ |
7635
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
2315 1117, |
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
2316 /**/ |
7633
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
2317 1116, |
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
2318 /**/ |
7631
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
2319 1115, |
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
2320 /**/ |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
2321 1114, |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
2322 /**/ |
7627
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
2323 1113, |
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
2324 /**/ |
7625
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
2325 1112, |
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
2326 /**/ |
7623
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
2327 1111, |
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
2328 /**/ |
7621
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
2329 1110, |
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
2330 /**/ |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2331 1109, |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2332 /**/ |
7617
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
2333 1108, |
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
2334 /**/ |
7615
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
2335 1107, |
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
2336 /**/ |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
2337 1106, |
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
2338 /**/ |
7611
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
2339 1105, |
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
2340 /**/ |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
2341 1104, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
2342 /**/ |
7607
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
2343 1103, |
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
2344 /**/ |
7605
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
2345 1102, |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
2346 /**/ |
7603
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
2347 1101, |
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
2348 /**/ |
7602
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
2349 1100, |
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
2350 /**/ |
7600
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
2351 1099, |
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
2352 /**/ |
7598
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
2353 1098, |
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
2354 /**/ |
7595
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
2355 1097, |
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
2356 /**/ |
7593
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
2357 1096, |
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
2358 /**/ |
7591
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
2359 1095, |
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
2360 /**/ |
7588
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
2361 1094, |
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
2362 /**/ |
7586
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
2363 1093, |
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
2364 /**/ |
7584
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
2365 1092, |
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
2366 /**/ |
7582
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
2367 1091, |
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
2368 /**/ |
7580
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
2369 1090, |
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
2370 /**/ |
7578
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
2371 1089, |
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
2372 /**/ |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
2373 1088, |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
2374 /**/ |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
2375 1087, |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
2376 /**/ |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
2377 1086, |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
2378 /**/ |
7570
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2379 1085, |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2380 /**/ |
7568
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
2381 1084, |
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
2382 /**/ |
7566
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
2383 1083, |
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
2384 /**/ |
7564
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
2385 1082, |
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
2386 /**/ |
7562
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
2387 1081, |
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
2388 /**/ |
7560
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
2389 1080, |
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
2390 /**/ |
7558
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
2391 1079, |
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
2392 /**/ |
7555
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
2393 1078, |
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
2394 /**/ |
7553
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
2395 1077, |
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
2396 /**/ |
7551
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
2397 1076, |
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
2398 /**/ |
7549
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
2399 1075, |
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
2400 /**/ |
7547
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
2401 1074, |
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
2402 /**/ |
7545
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
2403 1073, |
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
2404 /**/ |
7542
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
2405 1072, |
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
2406 /**/ |
7540
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
2407 1071, |
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
2408 /**/ |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
2409 1070, |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
2410 /**/ |
7536
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
2411 1069, |
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
2412 /**/ |
7534
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
2413 1068, |
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
2414 /**/ |
7532
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
2415 1067, |
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
2416 /**/ |
7530
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
2417 1066, |
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
2418 /**/ |
7528
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
2419 1065, |
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
2420 /**/ |
7526
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
2421 1064, |
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
2422 /**/ |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
2423 1063, |
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
2424 /**/ |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
2425 1062, |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
2426 /**/ |
7519
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
2427 1061, |
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
2428 /**/ |
7517
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
2429 1060, |
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
2430 /**/ |
7515
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
2431 1059, |
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
2432 /**/ |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
2433 1058, |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
2434 /**/ |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
2435 1057, |
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
2436 /**/ |
7509
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
2437 1056, |
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
2438 /**/ |
7506
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
2439 1055, |
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
2440 /**/ |
7504
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
2441 1054, |
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
2442 /**/ |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
2443 1053, |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
2444 /**/ |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
2445 1052, |
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
2446 /**/ |
7498
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
2447 1051, |
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
2448 /**/ |
7496
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
2449 1050, |
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
2450 /**/ |
7494
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
2451 1049, |
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
2452 /**/ |
7492
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
2453 1048, |
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
2454 /**/ |
7490
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
2455 1047, |
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
2456 /**/ |
7488
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
2457 1046, |
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
2458 /**/ |
7486
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
2459 1045, |
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
2460 /**/ |
7484
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
2461 1044, |
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
2462 /**/ |
7482
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
2463 1043, |
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
2464 /**/ |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
2465 1042, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
2466 /**/ |
7478
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
2467 1041, |
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
2468 /**/ |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
2469 1040, |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
2470 /**/ |
7473
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
2471 1039, |
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
2472 /**/ |
7471
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
2473 1038, |
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
2474 /**/ |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2475 1037, |
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2476 /**/ |
7467
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
2477 1036, |
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
2478 /**/ |
7465
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
2479 1035, |
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
2480 /**/ |
7462
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
2481 1034, |
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
2482 /**/ |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
2483 1033, |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
2484 /**/ |
7458
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
2485 1032, |
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
2486 /**/ |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
2487 1031, |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
2488 /**/ |
7454
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
2489 1030, |
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
2490 /**/ |
7452
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
2491 1029, |
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
2492 /**/ |
7450
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2493 1028, |
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2494 /**/ |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
2495 1027, |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
2496 /**/ |
7445
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
2497 1026, |
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
2498 /**/ |
7443
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
2499 1025, |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
2500 /**/ |
7441
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
2501 1024, |
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
2502 /**/ |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
2503 1023, |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
2504 /**/ |
7437
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
2505 1022, |
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
2506 /**/ |
7435
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
2507 1021, |
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
2508 /**/ |
7433
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
2509 1020, |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
2510 /**/ |
7430
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
2511 1019, |
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
2512 /**/ |
7428
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
2513 1018, |
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
2514 /**/ |
7426
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
2515 1017, |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
2516 /**/ |
7424
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
2517 1016, |
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
2518 /**/ |
7422
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
2519 1015, |
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
2520 /**/ |
7420
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
2521 1014, |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
2522 /**/ |
7418
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
2523 1013, |
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
2524 /**/ |
7416
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
2525 1012, |
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
2526 /**/ |
7414
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
2527 1011, |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
2528 /**/ |
7412
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2529 1010, |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2530 /**/ |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2531 1009, |
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2532 /**/ |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
2533 1008, |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
2534 /**/ |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
2535 1007, |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
2536 /**/ |
7404
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
2537 1006, |
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
2538 /**/ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
2539 1005, |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
2540 /**/ |
7399
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
2541 1004, |
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
2542 /**/ |
7397
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
2543 1003, |
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
2544 /**/ |
7395
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
2545 1002, |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
2546 /**/ |
7393
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
2547 1001, |
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
2548 /**/ |
7391
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
2549 1000, |
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
2550 /**/ |
7389
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
2551 999, |
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
2552 /**/ |
7387
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
2553 998, |
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
2554 /**/ |
7385
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
2555 997, |
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
2556 /**/ |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2557 996, |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2558 /**/ |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
2559 995, |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
2560 /**/ |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
2561 994, |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
2562 /**/ |
7376
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
2563 993, |
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
2564 /**/ |
7374
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
2565 992, |
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
2566 /**/ |
7372
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
2567 991, |
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
2568 /**/ |
7370
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
2569 990, |
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
2570 /**/ |
7368
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
2571 989, |
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
2572 /**/ |
7366
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
2573 988, |
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
2574 /**/ |
7364
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
2575 987, |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
2576 /**/ |
7362
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
2577 986, |
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
2578 /**/ |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
2579 985, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
2580 /**/ |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
2581 984, |
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
2582 /**/ |
7356
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
2583 983, |
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
2584 /**/ |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
2585 982, |
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
2586 /**/ |
7352
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
2587 981, |
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
2588 /**/ |
7350
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
2589 980, |
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
2590 /**/ |
7347
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
2591 979, |
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
2592 /**/ |
7345
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
2593 978, |
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
2594 /**/ |
7344
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
2595 977, |
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
2596 /**/ |
7342
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
2597 976, |
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
2598 /**/ |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
2599 975, |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
2600 /**/ |
7338
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
2601 974, |
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
2602 /**/ |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
2603 973, |
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
2604 /**/ |
7334
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
2605 972, |
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
2606 /**/ |
7332
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
2607 971, |
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
2608 /**/ |
7330
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
2609 970, |
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
2610 /**/ |
7328
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
2611 969, |
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
2612 /**/ |
7326
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
2613 968, |
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
2614 /**/ |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
2615 967, |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
2616 /**/ |
7322
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
2617 966, |
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
2618 /**/ |
7320
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
2619 965, |
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
2620 /**/ |
7318
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
2621 964, |
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
2622 /**/ |
7316
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
2623 963, |
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
2624 /**/ |
7313
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
2625 962, |
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
2626 /**/ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
2627 961, |
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
2628 /**/ |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2629 960, |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2630 /**/ |
7307
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
2631 959, |
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
2632 /**/ |
7305
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
2633 958, |
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
2634 /**/ |
7303
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
2635 957, |
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
2636 /**/ |
7301
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
2637 956, |
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
2638 /**/ |
7299
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
2639 955, |
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
2640 /**/ |
7297
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
2641 954, |
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
2642 /**/ |
7295
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
2643 953, |
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
2644 /**/ |
7293
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
2645 952, |
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
2646 /**/ |
7291
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
2647 951, |
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
2648 /**/ |
7289
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
2649 950, |
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
2650 /**/ |
7287
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
2651 949, |
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
2652 /**/ |
7285
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
2653 948, |
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
2654 /**/ |
7283
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
2655 947, |
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
2656 /**/ |
7281
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
2657 946, |
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
2658 /**/ |
7279
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
2659 945, |
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
2660 /**/ |
7277
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
2661 944, |
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
2662 /**/ |
7275
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
2663 943, |
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
2664 /**/ |
7273
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
2665 942, |
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
2666 /**/ |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
2667 941, |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
2668 /**/ |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
2669 940, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
2670 /**/ |
7262
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
2671 939, |
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
2672 /**/ |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
2673 938, |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
2674 /**/ |
7258
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
2675 937, |
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
2676 /**/ |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
2677 936, |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
2678 /**/ |
7254
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
2679 935, |
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
2680 /**/ |
7252
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
2681 934, |
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
2682 /**/ |
7250
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
2683 933, |
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
2684 /**/ |
7248
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
2685 932, |
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
2686 /**/ |
7246
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
2687 931, |
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
2688 /**/ |
7243
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2689 930, |
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2690 /**/ |
7241
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2691 929, |
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2692 /**/ |
7239
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
2693 928, |
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
2694 /**/ |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
2695 927, |
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
2696 /**/ |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
2697 926, |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
2698 /**/ |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
2699 925, |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
2700 /**/ |
7231
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
2701 924, |
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
2702 /**/ |
7229
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
2703 923, |
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
2704 /**/ |
7226
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
2705 922, |
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
2706 /**/ |
7224
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
2707 921, |
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
2708 /**/ |
7222
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
2709 920, |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
2710 /**/ |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
2711 919, |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
2712 /**/ |
7218
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
2713 918, |
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
2714 /**/ |
7216
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2715 917, |
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2716 /**/ |
7214
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
2717 916, |
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
2718 /**/ |
7212
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
2719 915, |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
2720 /**/ |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
2721 914, |
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
2722 /**/ |
7208
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
2723 913, |
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
2724 /**/ |
7206
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
2725 912, |
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
2726 /**/ |
7204
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
2727 911, |
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
2728 /**/ |
7202
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
2729 910, |
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
2730 /**/ |
7200
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
2731 909, |
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
2732 /**/ |
7198
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
2733 908, |
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
2734 /**/ |
7196
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
2735 907, |
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
2736 /**/ |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
2737 906, |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
2738 /**/ |
7191
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
2739 905, |
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
2740 /**/ |
7189
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
2741 904, |
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
2742 /**/ |
7186
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
2743 903, |
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
2744 /**/ |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
2745 902, |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
2746 /**/ |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
2747 901, |
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
2748 /**/ |
7179
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
2749 900, |
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
2750 /**/ |
7177
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
2751 899, |
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
2752 /**/ |
7174
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
2753 898, |
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
2754 /**/ |
7172
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
2755 897, |
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
2756 /**/ |
7170
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
2757 896, |
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
2758 /**/ |
7168
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
2759 895, |
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
2760 /**/ |
7166
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
2761 894, |
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
2762 /**/ |
7164
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
2763 893, |
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
2764 /**/ |
7162
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
2765 892, |
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
2766 /**/ |
7160
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
2767 891, |
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
2768 /**/ |
7158
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
2769 890, |
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
2770 /**/ |
7156
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
2771 889, |
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
2772 /**/ |
7154
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
2773 888, |
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
2774 /**/ |
7152
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2775 887, |
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2776 /**/ |
7150
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
2777 886, |
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
2778 /**/ |
7148
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
2779 885, |
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
2780 /**/ |
7145
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
2781 884, |
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
2782 /**/ |
7143
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
2783 883, |
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
2784 /**/ |
7141
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
2785 882, |
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
2786 /**/ |
7139
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
2787 881, |
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
2788 /**/ |
7137
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
2789 880, |
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
2790 /**/ |
7135
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
2791 879, |
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
2792 /**/ |
7133
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
2793 878, |
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
2794 /**/ |
7131
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
2795 877, |
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
2796 /**/ |
7129
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
2797 876, |
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
2798 /**/ |
7127
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
2799 875, |
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
2800 /**/ |
7125
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
2801 874, |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
2802 /**/ |
7123
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
2803 873, |
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
2804 /**/ |
7121
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
2805 872, |
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
2806 /**/ |
7119
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
2807 871, |
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
2808 /**/ |
7117
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
2809 870, |
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
2810 /**/ |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
2811 869, |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
2812 /**/ |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
2813 868, |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
2814 /**/ |
7111
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2815 867, |
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2816 /**/ |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
2817 866, |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
2818 /**/ |
7107
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
2819 865, |
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
2820 /**/ |
7105
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
2821 864, |
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
2822 /**/ |
7103
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
2823 863, |
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
2824 /**/ |
7101
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
2825 862, |
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
2826 /**/ |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
2827 861, |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
2828 /**/ |
7096
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
2829 860, |
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
2830 /**/ |
7094
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
2831 859, |
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
2832 /**/ |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
2833 858, |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
2834 /**/ |
7090
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
2835 857, |
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
2836 /**/ |
7088
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
2837 856, |
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
2838 /**/ |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
2839 855, |
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
2840 /**/ |
7084
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
2841 854, |
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
2842 /**/ |
7082
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2843 853, |
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2844 /**/ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
2845 852, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
2846 /**/ |
7078
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
2847 851, |
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
2848 /**/ |
7076
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
2849 850, |
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
2850 /**/ |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
2851 849, |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
2852 /**/ |
7072
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
2853 848, |
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
2854 /**/ |
7070
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
2855 847, |
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
2856 /**/ |
7068
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
2857 846, |
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
2858 /**/ |
7066
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
2859 845, |
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
2860 /**/ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
2861 844, |
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
2862 /**/ |
7062
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
2863 843, |
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
2864 /**/ |
7060
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
2865 842, |
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
2866 /**/ |
7058
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
2867 841, |
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
2868 /**/ |
7056
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
2869 840, |
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
2870 /**/ |
7054
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
2871 839, |
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
2872 /**/ |
7052
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
2873 838, |
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
2874 /**/ |
7049
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
2875 837, |
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
2876 /**/ |
7046
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
2877 836, |
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
2878 /**/ |
7044
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
2879 835, |
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
2880 /**/ |
7042
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
2881 834, |
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
2882 /**/ |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
2883 833, |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
2884 /**/ |
7038
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
2885 832, |
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
2886 /**/ |
7036
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2887 831, |
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2888 /**/ |
7034
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
2889 830, |
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
2890 /**/ |
7032
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
2891 829, |
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
2892 /**/ |
7030
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
2893 828, |
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
2894 /**/ |
7021 | 2895 827, |
2896 /**/ | |
7019 | 2897 826, |
2898 /**/ | |
7017 | 2899 825, |
2900 /**/ | |
7014 | 2901 824, |
2902 /**/ | |
7011 | 2903 823, |
2904 /**/ | |
7009 | 2905 822, |
2906 /**/ | |
7007 | 2907 821, |
2908 /**/ | |
7005 | 2909 820, |
2910 /**/ | |
7003 | 2911 819, |
2912 /**/ | |
7001 | 2913 818, |
2914 /**/ | |
6999 | 2915 817, |
2916 /**/ | |
6997 | 2917 816, |
2918 /**/ | |
6995 | 2919 815, |
2920 /**/ | |
6993 | 2921 814, |
2922 /**/ | |
6991 | 2923 813, |
2924 /**/ | |
6989 | 2925 812, |
2926 /**/ | |
6987 | 2927 811, |
2928 /**/ | |
6985 | 2929 810, |
2930 /**/ | |
6983 | 2931 809, |
2932 /**/ | |
6981 | 2933 808, |
2934 /**/ | |
6979 | 2935 807, |
2936 /**/ | |
6977 | 2937 806, |
2938 /**/ | |
6975 | 2939 805, |
2940 /**/ | |
6973 | 2941 804, |
2942 /**/ | |
6971 | 2943 803, |
2944 /**/ | |
6969 | 2945 802, |
2946 /**/ | |
6967 | 2947 801, |
2948 /**/ | |
6965 | 2949 800, |
2950 /**/ | |
6963 | 2951 799, |
2952 /**/ | |
6961 | 2953 798, |
2954 /**/ | |
6959 | 2955 797, |
2956 /**/ | |
6957 | 2957 796, |
2958 /**/ | |
6954 | 2959 795, |
2960 /**/ | |
6952 | 2961 794, |
2962 /**/ | |
6949 | 2963 793, |
2964 /**/ | |
6947 | 2965 792, |
2966 /**/ | |
6945 | 2967 791, |
2968 /**/ | |
6943 | 2969 790, |
2970 /**/ | |
6941 | 2971 789, |
2972 /**/ | |
6939 | 2973 788, |
2974 /**/ | |
6937 | 2975 787, |
2976 /**/ | |
6935 | 2977 786, |
2978 /**/ | |
6933 | 2979 785, |
2980 /**/ | |
6931 | 2981 784, |
2982 /**/ | |
6929 | 2983 783, |
2984 /**/ | |
6927 | 2985 782, |
2986 /**/ | |
6925 | 2987 781, |
2988 /**/ | |
6923 | 2989 780, |
2990 /**/ | |
6921 | 2991 779, |
2992 /**/ | |
6919 | 2993 778, |
2994 /**/ | |
6916 | 2995 777, |
2996 /**/ | |
6914 | 2997 776, |
2998 /**/ | |
6911 | 2999 775, |
3000 /**/ | |
6909 | 3001 774, |
3002 /**/ | |
6907 | 3003 773, |
3004 /**/ | |
6905 | 3005 772, |
3006 /**/ | |
6903 | 3007 771, |
3008 /**/ | |
6901 | 3009 770, |
3010 /**/ | |
6899 | 3011 769, |
3012 /**/ | |
6897 | 3013 768, |
3014 /**/ | |
6895 | 3015 767, |
3016 /**/ | |
6893 | 3017 766, |
3018 /**/ | |
6891 | 3019 765, |
3020 /**/ | |
6889 | 3021 764, |
3022 /**/ | |
6887 | 3023 763, |
3024 /**/ | |
6885 | 3025 762, |
3026 /**/ | |
6882 | 3027 761, |
3028 /**/ | |
6880 | 3029 760, |
3030 /**/ | |
6878 | 3031 759, |
3032 /**/ | |
6876 | 3033 758, |
3034 /**/ | |
6874 | 3035 757, |
3036 /**/ | |
6872 | 3037 756, |
3038 /**/ | |
6870 | 3039 755, |
3040 /**/ | |
6868 | 3041 754, |
3042 /**/ | |
6866 | 3043 753, |
3044 /**/ | |
6864 | 3045 752, |
3046 /**/ | |
6862 | 3047 751, |
3048 /**/ | |
6860 | 3049 750, |
3050 /**/ | |
6858 | 3051 749, |
3052 /**/ | |
6856 | 3053 748, |
3054 /**/ | |
6853 | 3055 747, |
3056 /**/ | |
6851 | 3057 746, |
3058 /**/ | |
6849 | 3059 745, |
3060 /**/ | |
6847 | 3061 744, |
3062 /**/ | |
6845 | 3063 743, |
3064 /**/ | |
6843 | 3065 742, |
3066 /**/ | |
6841 | 3067 741, |
3068 /**/ | |
6838 | 3069 740, |
3070 /**/ | |
6836 | 3071 739, |
3072 /**/ | |
6834 | 3073 738, |
3074 /**/ | |
6832 | 3075 737, |
3076 /**/ | |
6830 | 3077 736, |
3078 /**/ | |
6828 | 3079 735, |
3080 /**/ | |
6826 | 3081 734, |
3082 /**/ | |
6824 | 3083 733, |
3084 /**/ | |
6821 | 3085 732, |
3086 /**/ | |
6819 | 3087 731, |
3088 /**/ | |
6817 | 3089 730, |
3090 /**/ | |
6815 | 3091 729, |
3092 /**/ | |
6813 | 3093 728, |
3094 /**/ | |
6811 | 3095 727, |
3096 /**/ | |
6809 | 3097 726, |
3098 /**/ | |
6807 | 3099 725, |
3100 /**/ | |
6805 | 3101 724, |
3102 /**/ | |
6803 | 3103 723, |
3104 /**/ | |
6801 | 3105 722, |
3106 /**/ | |
6799 | 3107 721, |
3108 /**/ | |
6797 | 3109 720, |
3110 /**/ | |
6795 | 3111 719, |
3112 /**/ | |
6793 | 3113 718, |
3114 /**/ | |
6791 | 3115 717, |
3116 /**/ | |
6789 | 3117 716, |
3118 /**/ | |
6787 | 3119 715, |
3120 /**/ | |
6785 | 3121 714, |
3122 /**/ | |
6783 | 3123 713, |
3124 /**/ | |
6781 | 3125 712, |
3126 /**/ | |
6779 | 3127 711, |
3128 /**/ | |
6777 | 3129 710, |
3130 /**/ | |
6775 | 3131 709, |
3132 /**/ | |
6773 | 3133 708, |
3134 /**/ | |
6771 | 3135 707, |
3136 /**/ | |
6769 | 3137 706, |
3138 /**/ | |
6767 | 3139 705, |
3140 /**/ | |
6765 | 3141 704, |
3142 /**/ | |
6763 | 3143 703, |
3144 /**/ | |
6761 | 3145 702, |
3146 /**/ | |
6759 | 3147 701, |
3148 /**/ | |
6755 | 3149 700, |
3150 /**/ | |
6753 | 3151 699, |
3152 /**/ | |
6751 | 3153 698, |
3154 /**/ | |
6749 | 3155 697, |
3156 /**/ | |
6747 | 3157 696, |
3158 /**/ | |
6745 | 3159 695, |
3160 /**/ | |
6742 | 3161 694, |
3162 /**/ | |
6739 | 3163 693, |
3164 /**/ | |
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
|
3165 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
|
3166 /**/ |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
3167 691, |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
3168 /**/ |
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
|
3169 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
|
3170 /**/ |
6731 | 3171 689, |
3172 /**/ | |
6729 | 3173 688, |
3174 /**/ | |
6727 | 3175 687, |
3176 /**/ | |
6725 | 3177 686, |
3178 /**/ | |
6723 | 3179 685, |
3180 /**/ | |
6721 | 3181 684, |
3182 /**/ | |
6719 | 3183 683, |
3184 /**/ | |
6717 | 3185 682, |
3186 /**/ | |
6714 | 3187 681, |
3188 /**/ | |
6712 | 3189 680, |
3190 /**/ | |
6710 | 3191 679, |
3192 /**/ | |
6708 | 3193 678, |
3194 /**/ | |
6706 | 3195 677, |
3196 /**/ | |
6704 | 3197 676, |
3198 /**/ | |
6702 | 3199 675, |
3200 /**/ | |
6700 | 3201 674, |
3202 /**/ | |
6698 | 3203 673, |
3204 /**/ | |
6695 | 3205 672, |
3206 /**/ | |
6693 | 3207 671, |
3208 /**/ | |
6691 | 3209 670, |
3210 /**/ | |
6689 | 3211 669, |
3212 /**/ | |
6687 | 3213 668, |
3214 /**/ | |
6685 | 3215 667, |
3216 /**/ | |
6683 | 3217 666, |
3218 /**/ | |
6681 | 3219 665, |
3220 /**/ | |
6679 | 3221 664, |
3222 /**/ | |
6677 | 3223 663, |
3224 /**/ | |
6675 | 3225 662, |
3226 /**/ | |
6673 | 3227 661, |
3228 /**/ | |
6671 | 3229 660, |
3230 /**/ | |
6669 | 3231 659, |
3232 /**/ | |
6667 | 3233 658, |
3234 /**/ | |
6665 | 3235 657, |
3236 /**/ | |
6663 | 3237 656, |
3238 /**/ | |
6661 | 3239 655, |
3240 /**/ | |
6659 | 3241 654, |
3242 /**/ | |
6657 | 3243 653, |
3244 /**/ | |
6655 | 3245 652, |
3246 /**/ | |
6653 | 3247 651, |
3248 /**/ | |
6651 | 3249 650, |
3250 /**/ | |
6649 | 3251 649, |
3252 /**/ | |
6645 | 3253 648, |
3254 /**/ | |
6643 | 3255 647, |
3256 /**/ | |
6641 | 3257 646, |
3258 /**/ | |
6639 | 3259 645, |
3260 /**/ | |
6637 | 3261 644, |
3262 /**/ | |
6635 | 3263 643, |
3264 /**/ | |
6633 | 3265 642, |
3266 /**/ | |
6631 | 3267 641, |
3268 /**/ | |
6629 | 3269 640, |
3270 /**/ | |
6627 | 3271 639, |
3272 /**/ | |
6625 | 3273 638, |
3274 /**/ | |
6623 | 3275 637, |
3276 /**/ | |
6620 | 3277 636, |
3278 /**/ | |
6618 | 3279 635, |
3280 /**/ | |
6616 | 3281 634, |
3282 /**/ | |
6614 | 3283 633, |
3284 /**/ | |
6612 | 3285 632, |
3286 /**/ | |
6610 | 3287 631, |
3288 /**/ | |
6608 | 3289 630, |
3290 /**/ | |
6606 | 3291 629, |
3292 /**/ | |
6604 | 3293 628, |
3294 /**/ | |
6602 | 3295 627, |
3296 /**/ | |
6600 | 3297 626, |
3298 /**/ | |
6598 | 3299 625, |
3300 /**/ | |
6596 | 3301 624, |
3302 /**/ | |
6594 | 3303 623, |
3304 /**/ | |
6592 | 3305 622, |
3306 /**/ | |
6590 | 3307 621, |
3308 /**/ | |
6588 | 3309 620, |
3310 /**/ | |
6586 | 3311 619, |
3312 /**/ | |
6584 | 3313 618, |
3314 /**/ | |
6581 | 3315 617, |
3316 /**/ | |
6579 | 3317 616, |
3318 /**/ | |
6577 | 3319 615, |
3320 /**/ | |
6575 | 3321 614, |
3322 /**/ | |
6573 | 3323 613, |
3324 /**/ | |
6571 | 3325 612, |
3326 /**/ | |
6569 | 3327 611, |
3328 /**/ | |
6567 | 3329 610, |
3330 /**/ | |
6565 | 3331 609, |
3332 /**/ | |
6563 | 3333 608, |
3334 /**/ | |
6561 | 3335 607, |
3336 /**/ | |
6559 | 3337 606, |
3338 /**/ | |
6557 | 3339 605, |
3340 /**/ | |
6555 | 3341 604, |
3342 /**/ | |
6553 | 3343 603, |
3344 /**/ | |
6551 | 3345 602, |
3346 /**/ | |
6549 | 3347 601, |
3348 /**/ | |
6547 | 3349 600, |
3350 /**/ | |
6545 | 3351 599, |
3352 /**/ | |
6543 | 3353 598, |
3354 /**/ | |
6541 | 3355 597, |
3356 /**/ | |
6539 | 3357 596, |
3358 /**/ | |
6537 | 3359 595, |
3360 /**/ | |
6535 | 3361 594, |
3362 /**/ | |
6533 | 3363 593, |
3364 /**/ | |
6531 | 3365 592, |
3366 /**/ | |
6528 | 3367 591, |
3368 /**/ | |
6526 | 3369 590, |
3370 /**/ | |
6524 | 3371 589, |
3372 /**/ | |
6522 | 3373 588, |
3374 /**/ | |
6520 | 3375 587, |
3376 /**/ | |
6518 | 3377 586, |
3378 /**/ | |
6516 | 3379 585, |
3380 /**/ | |
6514 | 3381 584, |
3382 /**/ | |
6512 | 3383 583, |
3384 /**/ | |
6510 | 3385 582, |
3386 /**/ | |
6508 | 3387 581, |
3388 /**/ | |
6506 | 3389 580, |
3390 /**/ | |
6503 | 3391 579, |
3392 /**/ | |
6501 | 3393 578, |
3394 /**/ | |
6499 | 3395 577, |
3396 /**/ | |
6497 | 3397 576, |
3398 /**/ | |
6495 | 3399 575, |
3400 /**/ | |
6493 | 3401 574, |
3402 /**/ | |
6491 | 3403 573, |
3404 /**/ | |
6489 | 3405 572, |
3406 /**/ | |
6487 | 3407 571, |
3408 /**/ | |
6485 | 3409 570, |
3410 /**/ | |
6482 | 3411 569, |
3412 /**/ | |
6480 | 3413 568, |
3414 /**/ | |
6477 | 3415 567, |
3416 /**/ | |
6474 | 3417 566, |
3418 /**/ | |
6472 | 3419 565, |
3420 /**/ | |
6470 | 3421 564, |
3422 /**/ | |
6468 | 3423 563, |
3424 /**/ | |
6466 | 3425 562, |
3426 /**/ | |
6464 | 3427 561, |
3428 /**/ | |
6462 | 3429 560, |
3430 /**/ | |
6460 | 3431 559, |
3432 /**/ | |
6458 | 3433 558, |
3434 /**/ | |
6456 | 3435 557, |
3436 /**/ | |
6454 | 3437 556, |
3438 /**/ | |
6452 | 3439 555, |
3440 /**/ | |
6450 | 3441 554, |
3442 /**/ | |
6448 | 3443 553, |
3444 /**/ | |
6445 | 3445 552, |
3446 /**/ | |
6443 | 3447 551, |
3448 /**/ | |
6441 | 3449 550, |
3450 /**/ | |
6438 | 3451 549, |
3452 /**/ | |
6436 | 3453 548, |
3454 /**/ | |
6434 | 3455 547, |
3456 /**/ | |
6432 | 3457 546, |
3458 /**/ | |
6430 | 3459 545, |
3460 /**/ | |
6428 | 3461 544, |
3462 /**/ | |
6426 | 3463 543, |
3464 /**/ | |
6424 | 3465 542, |
3466 /**/ | |
6422 | 3467 541, |
3468 /**/ | |
6419 | 3469 540, |
3470 /**/ | |
6417 | 3471 539, |
3472 /**/ | |
6415 | 3473 538, |
3474 /**/ | |
6413 | 3475 537, |
3476 /**/ | |
6411 | 3477 536, |
3478 /**/ | |
6409 | 3479 535, |
3480 /**/ | |
6406 | 3481 534, |
3482 /**/ | |
6404 | 3483 533, |
3484 /**/ | |
6402 | 3485 532, |
3486 /**/ | |
6400 | 3487 531, |
3488 /**/ | |
6398 | 3489 530, |
3490 /**/ | |
6396 | 3491 529, |
3492 /**/ | |
6394 | 3493 528, |
3494 /**/ | |
6392 | 3495 527, |
3496 /**/ | |
6390 | 3497 526, |
3498 /**/ | |
6388 | 3499 525, |
3500 /**/ | |
6386 | 3501 524, |
3502 /**/ | |
6383 | 3503 523, |
3504 /**/ | |
6381 | 3505 522, |
3506 /**/ | |
6379 | 3507 521, |
3508 /**/ | |
6377 | 3509 520, |
3510 /**/ | |
6375 | 3511 519, |
3512 /**/ | |
6373 | 3513 518, |
3514 /**/ | |
6371 | 3515 517, |
3516 /**/ | |
6367 | 3517 516, |
3518 /**/ | |
6365 | 3519 515, |
3520 /**/ | |
6363 | 3521 514, |
3522 /**/ | |
6361 | 3523 513, |
3524 /**/ | |
6359 | 3525 512, |
3526 /**/ | |
6357 | 3527 511, |
3528 /**/ | |
6355 | 3529 510, |
3530 /**/ | |
6353 | 3531 509, |
3532 /**/ | |
6351 | 3533 508, |
3534 /**/ | |
6349 | 3535 507, |
3536 /**/ | |
6347 | 3537 506, |
3538 /**/ | |
6345 | 3539 505, |
3540 /**/ | |
6343 | 3541 504, |
3542 /**/ | |
6341 | 3543 503, |
3544 /**/ | |
6339 | 3545 502, |
3546 /**/ | |
6337 | 3547 501, |
3548 /**/ | |
6334 | 3549 500, |
3550 /**/ | |
6332 | 3551 499, |
3552 /**/ | |
6330 | 3553 498, |
3554 /**/ | |
6328 | 3555 497, |
3556 /**/ | |
6326 | 3557 496, |
3558 /**/ | |
6324 | 3559 495, |
3560 /**/ | |
6322 | 3561 494, |
3562 /**/ | |
6320 | 3563 493, |
3564 /**/ | |
6318 | 3565 492, |
3566 /**/ | |
6316 | 3567 491, |
3568 /**/ | |
6314 | 3569 490, |
3570 /**/ | |
6312 | 3571 489, |
3572 /**/ | |
6310 | 3573 488, |
3574 /**/ | |
6307 | 3575 487, |
3576 /**/ | |
6305 | 3577 486, |
3578 /**/ | |
6303 | 3579 485, |
3580 /**/ | |
6301 | 3581 484, |
3582 /**/ | |
6299 | 3583 483, |
3584 /**/ | |
6297 | 3585 482, |
3586 /**/ | |
6295 | 3587 481, |
3588 /**/ | |
6293 | 3589 480, |
3590 /**/ | |
6290 | 3591 479, |
3592 /**/ | |
6288 | 3593 478, |
3594 /**/ | |
6286 | 3595 477, |
3596 /**/ | |
6284 | 3597 476, |
3598 /**/ | |
6282 | 3599 475, |
3600 /**/ | |
6280 | 3601 474, |
3602 /**/ | |
6278 | 3603 473, |
3604 /**/ | |
6276 | 3605 472, |
3606 /**/ | |
6274 | 3607 471, |
3608 /**/ | |
6272 | 3609 470, |
3610 /**/ | |
6270 | 3611 469, |
3612 /**/ | |
6268 | 3613 468, |
3614 /**/ | |
6266 | 3615 467, |
3616 /**/ | |
6264 | 3617 466, |
3618 /**/ | |
6262 | 3619 465, |
3620 /**/ | |
6260 | 3621 464, |
3622 /**/ | |
6257 | 3623 463, |
3624 /**/ | |
6255 | 3625 462, |
3626 /**/ | |
6253 | 3627 461, |
3628 /**/ | |
6251 | 3629 460, |
3630 /**/ | |
6249 | 3631 459, |
3632 /**/ | |
6247 | 3633 458, |
3634 /**/ | |
6245 | 3635 457, |
3636 /**/ | |
6243 | 3637 456, |
3638 /**/ | |
6241 | 3639 455, |
3640 /**/ | |
6239 | 3641 454, |
3642 /**/ | |
6236 | 3643 453, |
3644 /**/ | |
6234 | 3645 452, |
3646 /**/ | |
6232 | 3647 451, |
3648 /**/ | |
6230 | 3649 450, |
3650 /**/ | |
6228 | 3651 449, |
3652 /**/ | |
6226 | 3653 448, |
3654 /**/ | |
6224 | 3655 447, |
3656 /**/ | |
6222 | 3657 446, |
3658 /**/ | |
6220 | 3659 445, |
3660 /**/ | |
6218 | 3661 444, |
3662 /**/ | |
6216 | 3663 443, |
3664 /**/ | |
6214 | 3665 442, |
3666 /**/ | |
6211 | 3667 441, |
3668 /**/ | |
6209 | 3669 440, |
3670 /**/ | |
6207 | 3671 439, |
3672 /**/ | |
6205 | 3673 438, |
3674 /**/ | |
6203 | 3675 437, |
3676 /**/ | |
6201 | 3677 436, |
3678 /**/ | |
6199 | 3679 435, |
3680 /**/ | |
6197 | 3681 434, |
3682 /**/ | |
6195 | 3683 433, |
3684 /**/ | |
6193 | 3685 432, |
3686 /**/ | |
6191 | 3687 431, |
3688 /**/ | |
6189 | 3689 430, |
3690 /**/ | |
6187 | 3691 429, |
3692 /**/ | |
6185 | 3693 428, |
3694 /**/ | |
6183 | 3695 427, |
3696 /**/ | |
6181 | 3697 426, |
3698 /**/ | |
6178 | 3699 425, |
3700 /**/ | |
6176 | 3701 424, |
3702 /**/ | |
6174 | 3703 423, |
3704 /**/ | |
6172 | 3705 422, |
3706 /**/ | |
6170 | 3707 421, |
3708 /**/ | |
6168 | 3709 420, |
3710 /**/ | |
6166 | 3711 419, |
3712 /**/ | |
6164 | 3713 418, |
3714 /**/ | |
6162 | 3715 417, |
3716 /**/ | |
6160 | 3717 416, |
3718 /**/ | |
6158
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
3719 415, |
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
3720 /**/ |
6154 | 3721 414, |
3722 /**/ | |
6151 | 3723 413, |
3724 /**/ | |
6149 | 3725 412, |
3726 /**/ | |
6147 | 3727 411, |
3728 /**/ | |
6145 | 3729 410, |
3730 /**/ | |
6143 | 3731 409, |
3732 /**/ | |
6140 | 3733 408, |
3734 /**/ | |
6138 | 3735 407, |
3736 /**/ | |
6136 | 3737 406, |
3738 /**/ | |
6134 | 3739 405, |
3740 /**/ | |
6132 | 3741 404, |
3742 /**/ | |
6130 | 3743 403, |
3744 /**/ | |
6128 | 3745 402, |
3746 /**/ | |
6126 | 3747 401, |
3748 /**/ | |
6124 | 3749 400, |
3750 /**/ | |
6122 | 3751 399, |
3752 /**/ | |
6120 | 3753 398, |
3754 /**/ | |
6118 | 3755 397, |
3756 /**/ | |
6116 | 3757 396, |
3758 /**/ | |
6114 | 3759 395, |
3760 /**/ | |
6112 | 3761 394, |
3762 /**/ | |
6110 | 3763 393, |
3764 /**/ | |
6108 | 3765 392, |
3766 /**/ | |
6106 | 3767 391, |
3768 /**/ | |
6104 | 3769 390, |
3770 /**/ | |
6102 | 3771 389, |
3772 /**/ | |
6100 | 3773 388, |
3774 /**/ | |
6098 | 3775 387, |
3776 /**/ | |
6096 | 3777 386, |
3778 /**/ | |
6094 | 3779 385, |
3780 /**/ | |
6092 | 3781 384, |
3782 /**/ | |
6089 | 3783 383, |
3784 /**/ | |
6087 | 3785 382, |
3786 /**/ | |
6085 | 3787 381, |
3788 /**/ | |
6083 | 3789 380, |
3790 /**/ | |
6081 | 3791 379, |
3792 /**/ | |
6079 | 3793 378, |
3794 /**/ | |
6077 | 3795 377, |
3796 /**/ | |
6075 | 3797 376, |
3798 /**/ | |
6073 | 3799 375, |
3800 /**/ | |
6071 | 3801 374, |
3802 /**/ | |
6068 | 3803 373, |
3804 /**/ | |
6066 | 3805 372, |
3806 /**/ | |
6064 | 3807 371, |
3808 /**/ | |
6062 | 3809 370, |
3810 /**/ | |
6060 | 3811 369, |
3812 /**/ | |
6058 | 3813 368, |
3814 /**/ | |
6056 | 3815 367, |
3816 /**/ | |
6054 | 3817 366, |
3818 /**/ | |
6052 | 3819 365, |
3820 /**/ | |
6049 | 3821 364, |
3822 /**/ | |
6047 | 3823 363, |
3824 /**/ | |
6045 | 3825 362, |
3826 /**/ | |
6043 | 3827 361, |
3828 /**/ | |
6041 | 3829 360, |
3830 /**/ | |
6039 | 3831 359, |
3832 /**/ | |
6037 | 3833 358, |
3834 /**/ | |
6035 | 3835 357, |
3836 /**/ | |
6033 | 3837 356, |
3838 /**/ | |
6030 | 3839 355, |
3840 /**/ | |
6028 | 3841 354, |
3842 /**/ | |
6026 | 3843 353, |
3844 /**/ | |
6024 | 3845 352, |
3846 /**/ | |
6022 | 3847 351, |
3848 /**/ | |
6020 | 3849 350, |
3850 /**/ | |
6018 | 3851 349, |
3852 /**/ | |
6016 | 3853 348, |
3854 /**/ | |
6014 | 3855 347, |
3856 /**/ | |
6012 | 3857 346, |
3858 /**/ | |
6010 | 3859 345, |
3860 /**/ | |
6007 | 3861 344, |
3862 /**/ | |
6005 | 3863 343, |
3864 /**/ | |
6003 | 3865 342, |
3866 /**/ | |
6001 | 3867 341, |
3868 /**/ | |
5999 | 3869 340, |
3870 /**/ | |
5997 | 3871 339, |
3872 /**/ | |
5995 | 3873 338, |
3874 /**/ | |
5993 | 3875 337, |
3876 /**/ | |
5991 | 3877 336, |
3878 /**/ | |
5989 | 3879 335, |
3880 /**/ | |
5987 | 3881 334, |
3882 /**/ | |
5985 | 3883 333, |
3884 /**/ | |
5983 | 3885 332, |
3886 /**/ | |
5981 | 3887 331, |
3888 /**/ | |
5979 | 3889 330, |
3890 /**/ | |
5977 | 3891 329, |
3892 /**/ | |
5975 | 3893 328, |
3894 /**/ | |
5973 | 3895 327, |
3896 /**/ | |
5971 | 3897 326, |
3898 /**/ | |
5969 | 3899 325, |
3900 /**/ | |
5966 | 3901 324, |
3902 /**/ | |
5964 | 3903 323, |
3904 /**/ | |
5962 | 3905 322, |
3906 /**/ | |
5960 | 3907 321, |
3908 /**/ | |
5958 | 3909 320, |
3910 /**/ | |
5956 | 3911 319, |
3912 /**/ | |
5954 | 3913 318, |
3914 /**/ | |
5952 | 3915 317, |
3916 /**/ | |
5950 | 3917 316, |
3918 /**/ | |
5948 | 3919 315, |
3920 /**/ | |
5946 | 3921 314, |
3922 /**/ | |
5944 | 3923 313, |
3924 /**/ | |
5942 | 3925 312, |
3926 /**/ | |
5940 | 3927 311, |
3928 /**/ | |
5938 | 3929 310, |
3930 /**/ | |
5936 | 3931 309, |
3932 /**/ | |
5934 | 3933 308, |
3934 /**/ | |
5932 | 3935 307, |
3936 /**/ | |
5930 | 3937 306, |
3938 /**/ | |
5927 | 3939 305, |
3940 /**/ | |
5925 | 3941 304, |
3942 /**/ | |
5923 | 3943 303, |
3944 /**/ | |
5921 | 3945 302, |
3946 /**/ | |
5919 | 3947 301, |
3948 /**/ | |
5917 | 3949 300, |
3950 /**/ | |
5915 | 3951 299, |
3952 /**/ | |
5913 | 3953 298, |
3954 /**/ | |
5911 | 3955 297, |
3956 /**/ | |
5909 | 3957 296, |
3958 /**/ | |
5905 | 3959 295, |
3960 /**/ | |
5903 | 3961 294, |
3962 /**/ | |
5901 | 3963 293, |
3964 /**/ | |
5899 | 3965 292, |
3966 /**/ | |
5897 | 3967 291, |
3968 /**/ | |
5895 | 3969 290, |
3970 /**/ | |
5893 | 3971 289, |
3972 /**/ | |
5891 | 3973 288, |
3974 /**/ | |
5889 | 3975 287, |
3976 /**/ | |
5887 | 3977 286, |
3978 /**/ | |
5885 | 3979 285, |
3980 /**/ | |
5883 | 3981 284, |
3982 /**/ | |
5881 | 3983 283, |
3984 /**/ | |
5879 | 3985 282, |
3986 /**/ | |
5877 | 3987 281, |
3988 /**/ | |
5875 | 3989 280, |
3990 /**/ | |
5873 | 3991 279, |
3992 /**/ | |
5871 | 3993 278, |
3994 /**/ | |
5869 | 3995 277, |
3996 /**/ | |
5867 | 3997 276, |
3998 /**/ | |
5865 | 3999 275, |
4000 /**/ | |
5863 | 4001 274, |
4002 /**/ | |
5860 | 4003 273, |
4004 /**/ | |
5858 | 4005 272, |
4006 /**/ | |
5856 | 4007 271, |
4008 /**/ | |
5854 | 4009 270, |
4010 /**/ | |
5852 | 4011 269, |
4012 /**/ | |
5850 | 4013 268, |
4014 /**/ | |
5848 | 4015 267, |
4016 /**/ | |
5846 | 4017 266, |
4018 /**/ | |
5844 | 4019 265, |
4020 /**/ | |
5842 | 4021 264, |
4022 /**/ | |
5840 | 4023 263, |
4024 /**/ | |
5838 | 4025 262, |
4026 /**/ | |
5836 | 4027 261, |
4028 /**/ | |
5834 | 4029 260, |
4030 /**/ | |
5832 | 4031 259, |
4032 /**/ | |
5830 | 4033 258, |
4034 /**/ | |
5828 | 4035 257, |
4036 /**/ | |
5826 | 4037 256, |
4038 /**/ | |
5824 | 4039 255, |
4040 /**/ | |
5822 | 4041 254, |
4042 /**/ | |
5820 | 4043 253, |
4044 /**/ | |
5818 | 4045 252, |
4046 /**/ | |
5816 | 4047 251, |
4048 /**/ | |
5812 | 4049 250, |
4050 /**/ | |
5810 | 4051 249, |
4052 /**/ | |
5808 | 4053 248, |
4054 /**/ | |
5806 | 4055 247, |
4056 /**/ | |
5804 | 4057 246, |
4058 /**/ | |
5802 | 4059 245, |
4060 /**/ | |
5800 | 4061 244, |
4062 /**/ | |
5798 | 4063 243, |
4064 /**/ | |
5796 | 4065 242, |
4066 /**/ | |
5794 | 4067 241, |
4068 /**/ | |
5792 | 4069 240, |
4070 /**/ | |
5790 | 4071 239, |
4072 /**/ | |
5788 | 4073 238, |
4074 /**/ | |
5786 | 4075 237, |
4076 /**/ | |
5784 | 4077 236, |
4078 /**/ | |
5782 | 4079 235, |
4080 /**/ | |
5780 | 4081 234, |
4082 /**/ | |
5778 | 4083 233, |
4084 /**/ | |
5776 | 4085 232, |
4086 /**/ | |
5774 | 4087 231, |
4088 /**/ | |
5772 | 4089 230, |
4090 /**/ | |
5770 | 4091 229, |
4092 /**/ | |
5768 | 4093 228, |
4094 /**/ | |
5766 | 4095 227, |
4096 /**/ | |
5764 | 4097 226, |
4098 /**/ | |
5761 | 4099 225, |
4100 /**/ | |
5759 | 4101 224, |
4102 /**/ | |
5757 | 4103 223, |
4104 /**/ | |
5755 | 4105 222, |
4106 /**/ | |
5753 | 4107 221, |
4108 /**/ | |
5751 | 4109 220, |
4110 /**/ | |
5749 | 4111 219, |
4112 /**/ | |
5747 | 4113 218, |
4114 /**/ | |
5745 | 4115 217, |
4116 /**/ | |
5743 | 4117 216, |
4118 /**/ | |
5741 | 4119 215, |
4120 /**/ | |
5739 | 4121 214, |
4122 /**/ | |
5737 | 4123 213, |
4124 /**/ | |
5735 | 4125 212, |
4126 /**/ | |
5732 | 4127 211, |
4128 /**/ | |
5730 | 4129 210, |
4130 /**/ | |
5728 | 4131 209, |
4132 /**/ | |
5726 | 4133 208, |
4134 /**/ | |
5724 | 4135 207, |
4136 /**/ | |
5722 | 4137 206, |
4138 /**/ | |
5720 | 4139 205, |
4140 /**/ | |
5718 | 4141 204, |
4142 /**/ | |
5716 | 4143 203, |
4144 /**/ | |
5714 | 4145 202, |
4146 /**/ | |
5712 | 4147 201, |
4148 /**/ | |
5710 | 4149 200, |
4150 /**/ | |
5708 | 4151 199, |
4152 /**/ | |
5706 | 4153 198, |
4154 /**/ | |
5704 | 4155 197, |
4156 /**/ | |
5702 | 4157 196, |
4158 /**/ | |
5700 | 4159 195, |
4160 /**/ | |
5698 | 4161 194, |
4162 /**/ | |
5695 | 4163 193, |
4164 /**/ | |
5693 | 4165 192, |
4166 /**/ | |
5690 | 4167 191, |
4168 /**/ | |
5688 | 4169 190, |
4170 /**/ | |
5686 | 4171 189, |
4172 /**/ | |
5684 | 4173 188, |
4174 /**/ | |
5682 | 4175 187, |
4176 /**/ | |
5680 | 4177 186, |
4178 /**/ | |
5678 | 4179 185, |
4180 /**/ | |
5676 | 4181 184, |
4182 /**/ | |
5674 | 4183 183, |
4184 /**/ | |
5672 | 4185 182, |
4186 /**/ | |
5670 | 4187 181, |
4188 /**/ | |
5668 | 4189 180, |
4190 /**/ | |
5666 | 4191 179, |
4192 /**/ | |
5664 | 4193 178, |
4194 /**/ | |
5661 | 4195 177, |
4196 /**/ | |
5659 | 4197 176, |
4198 /**/ | |
5657 | 4199 175, |
4200 /**/ | |
5655 | 4201 174, |
4202 /**/ | |
5653 | 4203 173, |
4204 /**/ | |
5651 | 4205 172, |
4206 /**/ | |
5649 | 4207 171, |
4208 /**/ | |
5647 | 4209 170, |
4210 /**/ | |
5645 | 4211 169, |
4212 /**/ | |
5643 | 4213 168, |
4214 /**/ | |
5641 | 4215 167, |
4216 /**/ | |
5639 | 4217 166, |
4218 /**/ | |
5637 | 4219 165, |
4220 /**/ | |
5635 | 4221 164, |
4222 /**/ | |
5633 | 4223 163, |
4224 /**/ | |
5631 | 4225 162, |
4226 /**/ | |
5629 | 4227 161, |
4228 /**/ | |
5627 | 4229 160, |
4230 /**/ | |
5625 | 4231 159, |
4232 /**/ | |
5623 | 4233 158, |
4234 /**/ | |
5621 | 4235 157, |
4236 /**/ | |
5619 | 4237 156, |
4238 /**/ | |
5616 | 4239 155, |
4240 /**/ | |
5614 | 4241 154, |
4242 /**/ | |
5612 | 4243 153, |
4244 /**/ | |
5610 | 4245 152, |
4246 /**/ | |
5608 | 4247 151, |
4248 /**/ | |
5606 | 4249 150, |
4250 /**/ | |
5604 | 4251 149, |
4252 /**/ | |
5602 | 4253 148, |
4254 /**/ | |
5600 | 4255 147, |
4256 /**/ | |
5598 | 4257 146, |
4258 /**/ | |
5596 | 4259 145, |
4260 /**/ | |
5594 | 4261 144, |
4262 /**/ | |
5592 | 4263 143, |
4264 /**/ | |
5590 | 4265 142, |
4266 /**/ | |
5588 | 4267 141, |
4268 /**/ | |
5586 | 4269 140, |
4270 /**/ | |
5584 | 4271 139, |
4272 /**/ | |
5582 | 4273 138, |
4274 /**/ | |
5580 | 4275 137, |
4276 /**/ | |
5578 | 4277 136, |
4278 /**/ | |
5575 | 4279 135, |
4280 /**/ | |
5573 | 4281 134, |
4282 /**/ | |
5571 | 4283 133, |
4284 /**/ | |
5569 | 4285 132, |
4286 /**/ | |
5566 | 4287 131, |
4288 /**/ | |
5564 | 4289 130, |
4290 /**/ | |
5562 | 4291 129, |
4292 /**/ | |
5560 | 4293 128, |
4294 /**/ | |
5558 | 4295 127, |
4296 /**/ | |
5556 | 4297 126, |
4298 /**/ | |
5553 | 4299 125, |
4300 /**/ | |
5551 | 4301 124, |
4302 /**/ | |
5549 | 4303 123, |
4304 /**/ | |
5547 | 4305 122, |
4306 /**/ | |
5545 | 4307 121, |
4308 /**/ | |
5543 | 4309 120, |
4310 /**/ | |
5541 | 4311 119, |
4312 /**/ | |
5539 | 4313 118, |
4314 /**/ | |
5537 | 4315 117, |
4316 /**/ | |
5535 | 4317 116, |
4318 /**/ | |
5533 | 4319 115, |
4320 /**/ | |
5531 | 4321 114, |
4322 /**/ | |
5529 | 4323 113, |
4324 /**/ | |
5527 | 4325 112, |
4326 /**/ | |
5525 | 4327 111, |
4328 /**/ | |
5523 | 4329 110, |
4330 /**/ | |
5521 | 4331 109, |
4332 /**/ | |
5519 | 4333 108, |
4334 /**/ | |
5517 | 4335 107, |
4336 /**/ | |
5515 | 4337 106, |
4338 /**/ | |
5513 | 4339 105, |
4340 /**/ | |
5511 | 4341 104, |
4342 /**/ | |
5508 | 4343 103, |
4344 /**/ | |
5506 | 4345 102, |
4346 /**/ | |
5504 | 4347 101, |
4348 /**/ | |
5502 | 4349 100, |
4350 /**/ | |
5500 | 4351 99, |
4352 /**/ | |
5498 | 4353 98, |
4354 /**/ | |
5496 | 4355 97, |
4356 /**/ | |
5494 | 4357 96, |
4358 /**/ | |
5492 | 4359 95, |
4360 /**/ | |
5490 | 4361 94, |
4362 /**/ | |
5488 | 4363 93, |
4364 /**/ | |
5485 | 4365 92, |
4366 /**/ | |
5483 | 4367 91, |
4368 /**/ | |
5481 | 4369 90, |
4370 /**/ | |
5479 | 4371 89, |
4372 /**/ | |
5477 | 4373 88, |
4374 /**/ | |
5475 | 4375 87, |
4376 /**/ | |
5473 | 4377 86, |
4378 /**/ | |
5471 | 4379 85, |
4380 /**/ | |
5469 | 4381 84, |
4382 /**/ | |
5467 | 4383 83, |
4384 /**/ | |
5464 | 4385 82, |
4386 /**/ | |
5462 | 4387 81, |
4388 /**/ | |
5460 | 4389 80, |
4390 /**/ | |
5458 | 4391 79, |
4392 /**/ | |
5456 | 4393 78, |
4394 /**/ | |
5454 | 4395 77, |
4396 /**/ | |
5452 | 4397 76, |
4398 /**/ | |
5450 | 4399 75, |
4400 /**/ | |
5448 | 4401 74, |
4402 /**/ | |
5446 | 4403 73, |
4404 /**/ | |
5444 | 4405 72, |
4406 /**/ | |
5442 | 4407 71, |
4408 /**/ | |
5440 | 4409 70, |
4410 /**/ | |
5438 | 4411 69, |
4412 /**/ | |
5436 | 4413 68, |
4414 /**/ | |
5434 | 4415 67, |
4416 /**/ | |
5432 | 4417 66, |
4418 /**/ | |
5430 | 4419 65, |
4420 /**/ | |
5428 | 4421 64, |
4422 /**/ | |
5426 | 4423 63, |
4424 /**/ | |
5423 | 4425 62, |
4426 /**/ | |
5421 | 4427 61, |
4428 /**/ | |
5419 | 4429 60, |
4430 /**/ | |
5417 | 4431 59, |
4432 /**/ | |
5415 | 4433 58, |
4434 /**/ | |
5413 | 4435 57, |
4436 /**/ | |
5411 | 4437 56, |
4438 /**/ | |
5409 | 4439 55, |
4440 /**/ | |
5407 | 4441 54, |
4442 /**/ | |
5405 | 4443 53, |
4444 /**/ | |
5403 | 4445 52, |
4446 /**/ | |
5401 | 4447 51, |
4448 /**/ | |
5398 | 4449 50, |
4450 /**/ | |
5396 | 4451 49, |
4452 /**/ | |
5394 | 4453 48, |
4454 /**/ | |
5392 | 4455 47, |
4456 /**/ | |
5390 | 4457 46, |
4458 /**/ | |
5388 | 4459 45, |
4460 /**/ | |
5386 | 4461 44, |
4462 /**/ | |
5384 | 4463 43, |
4464 /**/ | |
5382 | 4465 42, |
4466 /**/ | |
5380 | 4467 41, |
4468 /**/ | |
5378 | 4469 40, |
4470 /**/ | |
5376 | 4471 39, |
4472 /**/ | |
5374 | 4473 38, |
4474 /**/ | |
5372 | 4475 37, |
4476 /**/ | |
5370 | 4477 36, |
4478 /**/ | |
5367 | 4479 35, |
4480 /**/ | |
5365 | 4481 34, |
4482 /**/ | |
5363 | 4483 33, |
4484 /**/ | |
5360 | 4485 32, |
4486 /**/ | |
5358 | 4487 31, |
4488 /**/ | |
5356 | 4489 30, |
4490 /**/ | |
5353 | 4491 29, |
4492 /**/ | |
5351 | 4493 28, |
4494 /**/ | |
5349 | 4495 27, |
4496 /**/ | |
5347 | 4497 26, |
4498 /**/ | |
5345 | 4499 25, |
4500 /**/ | |
5343 | 4501 24, |
4502 /**/ | |
5341 | 4503 23, |
4504 /**/ | |
5338 | 4505 22, |
4506 /**/ | |
5336 | 4507 21, |
4508 /**/ | |
5334 | 4509 20, |
4510 /**/ | |
5332 | 4511 19, |
4512 /**/ | |
5330 | 4513 18, |
4514 /**/ | |
5328 | 4515 17, |
4516 /**/ | |
5326 | 4517 16, |
4518 /**/ | |
5324 | 4519 15, |
4520 /**/ | |
5322 | 4521 14, |
4522 /**/ | |
5320 | 4523 13, |
4524 /**/ | |
5318 | 4525 12, |
4526 /**/ | |
5316 | 4527 11, |
4528 /**/ | |
5314 | 4529 10, |
4530 /**/ | |
5312 | 4531 9, |
4532 /**/ | |
5310 | 4533 8, |
4534 /**/ | |
5308 | 4535 7, |
4536 /**/ | |
5306 | 4537 6, |
4538 /**/ | |
5304 | 4539 5, |
4540 /**/ | |
5302 | 4541 4, |
4542 /**/ | |
5300 | 4543 3, |
4544 /**/ | |
5298 | 4545 2, |
4546 /**/ | |
5296 | 4547 1, |
4548 /**/ | |
7 | 4549 0 |
4550 }; | |
4551 | |
1760 | 4552 /* |
4553 * Place to put a short description when adding a feature with a patch. | |
4554 * Keep it short, e.g.,: "relative numbers", "persistent undo". | |
4555 * Also add a comment marker to separate the lines. | |
4556 * See the official Vim patches for the diff format: It must use a context of | |
1777 | 4557 * one line only. Create it by hand or use "diff -C2" and edit the patch. |
1760 | 4558 */ |
4559 static char *(extra_patches[]) = | |
4560 { /* Add your patch description below this line */ | |
4561 /**/ | |
4562 NULL | |
4563 }; | |
4564 | |
7 | 4565 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4566 highest_patch(void) |
7 | 4567 { |
4568 int i; | |
4569 int h = 0; | |
4570 | |
4571 for (i = 0; included_patches[i] != 0; ++i) | |
4572 if (included_patches[i] > h) | |
4573 h = included_patches[i]; | |
4574 return h; | |
4575 } | |
4576 | |
4577 #if defined(FEAT_EVAL) || defined(PROTO) | |
4578 /* | |
4579 * Return TRUE if patch "n" has been included. | |
4580 */ | |
4581 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4582 has_patch(int n) |
7 | 4583 { |
4584 int i; | |
4585 | |
4586 for (i = 0; included_patches[i] != 0; ++i) | |
4587 if (included_patches[i] == n) | |
4588 return TRUE; | |
4589 return FALSE; | |
4590 } | |
4591 #endif | |
4592 | |
4593 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4594 ex_version(exarg_T *eap) |
7 | 4595 { |
4596 /* | |
4597 * Ignore a ":version 9.99" command. | |
4598 */ | |
4599 if (*eap->arg == NUL) | |
4600 { | |
4601 msg_putchar('\n'); | |
4602 list_version(); | |
4603 } | |
4604 } | |
4605 | |
4147 | 4606 /* |
4607 * List all features aligned in columns, dictionary style. | |
4608 */ | |
4609 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4610 list_features(void) |
4147 | 4611 { |
4612 int i; | |
4613 int ncol; | |
4614 int nrow; | |
4615 int nfeat = 0; | |
4616 int width = 0; | |
4617 | |
4618 /* Find the length of the longest feature name, use that + 1 as the column | |
4619 * width */ | |
4620 for (i = 0; features[i] != NULL; ++i) | |
4621 { | |
4160 | 4622 int l = (int)STRLEN(features[i]); |
4147 | 4623 |
4624 if (l > width) | |
4625 width = l; | |
4626 ++nfeat; | |
4627 } | |
4628 width += 1; | |
4629 | |
4630 if (Columns < width) | |
4631 { | |
4632 /* Not enough screen columns - show one per line */ | |
4633 for (i = 0; features[i] != NULL; ++i) | |
4634 { | |
4635 version_msg(features[i]); | |
4636 if (msg_col > 0) | |
4637 msg_putchar('\n'); | |
4638 } | |
4639 return; | |
4640 } | |
4641 | |
4642 /* The rightmost column doesn't need a separator. | |
4643 * Sacrifice it to fit in one more column if possible. */ | |
4170 | 4644 ncol = (int) (Columns + 1) / width; |
4147 | 4645 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0); |
4646 | |
4170 | 4647 /* i counts columns then rows. idx counts rows then columns. */ |
4147 | 4648 for (i = 0; !got_int && i < nrow * ncol; ++i) |
4649 { | |
4650 int idx = (i / ncol) + (i % ncol) * nrow; | |
4651 | |
4652 if (idx < nfeat) | |
4653 { | |
4654 int last_col = (i + 1) % ncol == 0; | |
4655 | |
4656 msg_puts((char_u *)features[idx]); | |
4657 if (last_col) | |
4658 { | |
4659 if (msg_col > 0) | |
4660 msg_putchar('\n'); | |
4661 } | |
4662 else | |
4663 { | |
4664 while (msg_col % width) | |
4665 msg_putchar(' '); | |
4666 } | |
4667 } | |
4668 else | |
4170 | 4669 { |
4670 if (msg_col > 0) | |
4671 msg_putchar('\n'); | |
4672 } | |
4147 | 4673 } |
4674 } | |
4160 | 4675 |
7 | 4676 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4677 list_version(void) |
7 | 4678 { |
4679 int i; | |
4680 int first; | |
4681 char *s = ""; | |
4682 | |
4683 /* | |
4684 * When adding features here, don't forget to update the list of | |
4685 * internal variables in eval.c! | |
4686 */ | |
4687 MSG(longVersion); | |
4688 #ifdef WIN3264 | |
4689 # ifdef FEAT_GUI_W32 | |
4690 # if defined(_MSC_VER) && (_MSC_VER <= 1010) | |
4691 /* Only MS VC 4.1 and earlier can do Win32s */ | |
1607 | 4692 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version")); |
7 | 4693 # else |
990 | 4694 # ifdef _WIN64 |
1607 | 4695 MSG_PUTS(_("\nMS-Windows 64-bit GUI version")); |
990 | 4696 # else |
1607 | 4697 MSG_PUTS(_("\nMS-Windows 32-bit GUI version")); |
990 | 4698 # endif |
7 | 4699 # endif |
4700 if (gui_is_win32s()) | |
4701 MSG_PUTS(_(" in Win32s mode")); | |
4702 # ifdef FEAT_OLE | |
4703 MSG_PUTS(_(" with OLE support")); | |
4704 # endif | |
4705 # else | |
1607 | 4706 # ifdef _WIN64 |
4707 MSG_PUTS(_("\nMS-Windows 64-bit console version")); | |
4708 # else | |
4709 MSG_PUTS(_("\nMS-Windows 32-bit console version")); | |
4710 # endif | |
7 | 4711 # endif |
4712 #endif | |
4713 #ifdef MACOS | |
4714 # ifdef MACOS_X | |
4715 # ifdef MACOS_X_UNIX | |
4716 MSG_PUTS(_("\nMacOS X (unix) version")); | |
4717 # else | |
4718 MSG_PUTS(_("\nMacOS X version")); | |
4719 # endif | |
4720 #else | |
4721 MSG_PUTS(_("\nMacOS version")); | |
4722 # endif | |
4723 #endif | |
4724 | |
4725 #ifdef VMS | |
1705 | 4726 MSG_PUTS(_("\nOpenVMS version")); |
1045 | 4727 # ifdef HAVE_PATHDEF |
4728 if (*compiled_arch != NUL) | |
4729 { | |
4730 MSG_PUTS(" - "); | |
4731 MSG_PUTS(compiled_arch); | |
4732 } | |
4733 # endif | |
4734 | |
7 | 4735 #endif |
4736 | |
4737 /* Print the list of patch numbers if there is at least one. */ | |
4738 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */ | |
4739 if (included_patches[0] != 0) | |
4740 { | |
4741 MSG_PUTS(_("\nIncluded patches: ")); | |
4742 first = -1; | |
4743 /* find last one */ | |
4744 for (i = 0; included_patches[i] != 0; ++i) | |
4745 ; | |
4746 while (--i >= 0) | |
4747 { | |
4748 if (first < 0) | |
4749 first = included_patches[i]; | |
4750 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1) | |
4751 { | |
4752 MSG_PUTS(s); | |
4753 s = ", "; | |
4754 msg_outnum((long)first); | |
4755 if (first != included_patches[i]) | |
4756 { | |
4757 MSG_PUTS("-"); | |
4758 msg_outnum((long)included_patches[i]); | |
4759 } | |
4760 first = -1; | |
4761 } | |
4762 } | |
4763 } | |
4764 | |
1760 | 4765 /* Print the list of extra patch descriptions if there is at least one. */ |
4766 if (extra_patches[0] != NULL) | |
4767 { | |
4768 MSG_PUTS(_("\nExtra patches: ")); | |
4769 s = ""; | |
4770 for (i = 0; extra_patches[i] != NULL; ++i) | |
4771 { | |
4772 MSG_PUTS(s); | |
4773 s = ", "; | |
4774 MSG_PUTS(extra_patches[i]); | |
4775 } | |
4776 } | |
4777 | |
7 | 4778 #ifdef MODIFIED_BY |
4779 MSG_PUTS("\n"); | |
4780 MSG_PUTS(_("Modified by ")); | |
4781 MSG_PUTS(MODIFIED_BY); | |
4782 #endif | |
4783 | |
4784 #ifdef HAVE_PATHDEF | |
4785 if (*compiled_user != NUL || *compiled_sys != NUL) | |
4786 { | |
4787 MSG_PUTS(_("\nCompiled ")); | |
4788 if (*compiled_user != NUL) | |
4789 { | |
4790 MSG_PUTS(_("by ")); | |
4791 MSG_PUTS(compiled_user); | |
4792 } | |
4793 if (*compiled_sys != NUL) | |
4794 { | |
4795 MSG_PUTS("@"); | |
4796 MSG_PUTS(compiled_sys); | |
4797 } | |
4798 } | |
4799 #endif | |
4800 | |
4801 #ifdef FEAT_HUGE | |
4802 MSG_PUTS(_("\nHuge version ")); | |
4803 #else | |
4804 # ifdef FEAT_BIG | |
4805 MSG_PUTS(_("\nBig version ")); | |
4806 # else | |
4807 # ifdef FEAT_NORMAL | |
4808 MSG_PUTS(_("\nNormal version ")); | |
4809 # else | |
4810 # ifdef FEAT_SMALL | |
4811 MSG_PUTS(_("\nSmall version ")); | |
4812 # else | |
4813 MSG_PUTS(_("\nTiny version ")); | |
4814 # endif | |
4815 # endif | |
4816 # endif | |
4817 #endif | |
4818 #ifndef FEAT_GUI | |
4819 MSG_PUTS(_("without GUI.")); | |
4820 #else | |
4821 # ifdef FEAT_GUI_GTK | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4822 # ifdef USE_GTK3 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4823 MSG_PUTS(_("with GTK3 GUI.")); |
7 | 4824 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4825 # ifdef FEAT_GUI_GNOME |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4826 MSG_PUTS(_("with GTK2-GNOME GUI.")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4827 # else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4828 MSG_PUTS(_("with GTK2 GUI.")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4829 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4830 # endif |
7 | 4831 # else |
4832 # ifdef FEAT_GUI_MOTIF | |
4833 MSG_PUTS(_("with X11-Motif GUI.")); | |
4834 # else | |
4835 # ifdef FEAT_GUI_ATHENA | |
4836 # ifdef FEAT_GUI_NEXTAW | |
4837 MSG_PUTS(_("with X11-neXtaw GUI.")); | |
4838 # else | |
4839 MSG_PUTS(_("with X11-Athena GUI.")); | |
4840 # endif | |
4841 # else | |
4842 # ifdef FEAT_GUI_PHOTON | |
4843 MSG_PUTS(_("with Photon GUI.")); | |
4844 # else | |
4845 # if defined(MSWIN) | |
4846 MSG_PUTS(_("with GUI.")); | |
4847 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4848 # if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON |
7 | 4849 MSG_PUTS(_("with Carbon GUI.")); |
4850 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4851 # if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX |
7 | 4852 MSG_PUTS(_("with Cocoa GUI.")); |
4853 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4854 # if defined(MACOS) |
7 | 4855 MSG_PUTS(_("with (classic) GUI.")); |
4856 # endif | |
4857 # endif | |
4858 # endif | |
4859 # endif | |
4860 # endif | |
4861 # endif | |
4862 # endif | |
4863 # endif | |
4864 #endif | |
4865 version_msg(_(" Features included (+) or not (-):\n")); | |
4866 | |
4147 | 4867 list_features(); |
7 | 4868 |
4869 #ifdef SYS_VIMRC_FILE | |
4870 version_msg(_(" system vimrc file: \"")); | |
4871 version_msg(SYS_VIMRC_FILE); | |
4872 version_msg("\"\n"); | |
4873 #endif | |
4874 #ifdef USR_VIMRC_FILE | |
4875 version_msg(_(" user vimrc file: \"")); | |
4876 version_msg(USR_VIMRC_FILE); | |
4877 version_msg("\"\n"); | |
4878 #endif | |
4879 #ifdef USR_VIMRC_FILE2 | |
4880 version_msg(_(" 2nd user vimrc file: \"")); | |
4881 version_msg(USR_VIMRC_FILE2); | |
4882 version_msg("\"\n"); | |
4883 #endif | |
4884 #ifdef USR_VIMRC_FILE3 | |
4885 version_msg(_(" 3rd user vimrc file: \"")); | |
4886 version_msg(USR_VIMRC_FILE3); | |
4887 version_msg("\"\n"); | |
4888 #endif | |
4889 #ifdef USR_EXRC_FILE | |
4890 version_msg(_(" user exrc file: \"")); | |
4891 version_msg(USR_EXRC_FILE); | |
4892 version_msg("\"\n"); | |
4893 #endif | |
4894 #ifdef USR_EXRC_FILE2 | |
4895 version_msg(_(" 2nd user exrc file: \"")); | |
4896 version_msg(USR_EXRC_FILE2); | |
4897 version_msg("\"\n"); | |
4898 #endif | |
4899 #ifdef FEAT_GUI | |
4900 # ifdef SYS_GVIMRC_FILE | |
4901 version_msg(_(" system gvimrc file: \"")); | |
4902 version_msg(SYS_GVIMRC_FILE); | |
4903 version_msg("\"\n"); | |
4904 # endif | |
4905 version_msg(_(" user gvimrc file: \"")); | |
4906 version_msg(USR_GVIMRC_FILE); | |
4907 version_msg("\"\n"); | |
4908 # ifdef USR_GVIMRC_FILE2 | |
4909 version_msg(_("2nd user gvimrc file: \"")); | |
4910 version_msg(USR_GVIMRC_FILE2); | |
4911 version_msg("\"\n"); | |
4912 # endif | |
4913 # ifdef USR_GVIMRC_FILE3 | |
4914 version_msg(_("3rd user gvimrc file: \"")); | |
4915 version_msg(USR_GVIMRC_FILE3); | |
4916 version_msg("\"\n"); | |
4917 # endif | |
4918 #endif | |
4919 #ifdef FEAT_GUI | |
4920 # ifdef SYS_MENU_FILE | |
4921 version_msg(_(" system menu file: \"")); | |
4922 version_msg(SYS_MENU_FILE); | |
4923 version_msg("\"\n"); | |
4924 # endif | |
4925 #endif | |
4926 #ifdef HAVE_PATHDEF | |
4927 if (*default_vim_dir != NUL) | |
4928 { | |
4929 version_msg(_(" fall-back for $VIM: \"")); | |
4930 version_msg((char *)default_vim_dir); | |
4931 version_msg("\"\n"); | |
4932 } | |
4933 if (*default_vimruntime_dir != NUL) | |
4934 { | |
4935 version_msg(_(" f-b for $VIMRUNTIME: \"")); | |
4936 version_msg((char *)default_vimruntime_dir); | |
4937 version_msg("\"\n"); | |
4938 } | |
4939 version_msg(_("Compilation: ")); | |
4940 version_msg((char *)all_cflags); | |
4941 version_msg("\n"); | |
4942 #ifdef VMS | |
4943 if (*compiler_version != NUL) | |
4944 { | |
4945 version_msg(_("Compiler: ")); | |
4946 version_msg((char *)compiler_version); | |
4947 version_msg("\n"); | |
4948 } | |
4949 #endif | |
4950 version_msg(_("Linking: ")); | |
4951 version_msg((char *)all_lflags); | |
4952 #endif | |
4953 #ifdef DEBUG | |
4954 version_msg("\n"); | |
4955 version_msg(_(" DEBUG BUILD")); | |
4956 #endif | |
4957 } | |
4958 | |
4959 /* | |
4960 * Output a string for the version message. If it's going to wrap, output a | |
4961 * newline, unless the message is too long to fit on the screen anyway. | |
4962 */ | |
4963 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4964 version_msg(char *s) |
7 | 4965 { |
4966 int len = (int)STRLEN(s); | |
4967 | |
4968 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns | |
4969 && *s != '\n') | |
4970 msg_putchar('\n'); | |
4971 if (!got_int) | |
4972 MSG_PUTS(s); | |
4973 } | |
4974 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4975 static void do_intro_line(int row, char_u *mesg, int add_version, int attr); |
7 | 4976 |
4977 /* | |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4978 * 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
|
4979 */ |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4980 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4981 maybe_intro_message(void) |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4982 { |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4983 if (bufempty() |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4984 && curbuf->b_fname == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4985 #ifdef FEAT_WINDOWS |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4986 && firstwin->w_next == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4987 #endif |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4988 && vim_strchr(p_shm, SHM_INTRO) == NULL) |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4989 intro_message(FALSE); |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4990 } |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4991 |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4992 /* |
7 | 4993 * Give an introductory message about Vim. |
4994 * Only used when starting Vim on an empty file, without a file name. | |
4995 * Or with the ":intro" command (for Sven :-). | |
4996 */ | |
4997 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4998 intro_message( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4999 int colon) /* TRUE for ":intro" */ |
7 | 5000 { |
5001 int i; | |
5002 int row; | |
5003 int blanklines; | |
5004 int sponsor; | |
5005 char *p; | |
5006 static char *(lines[]) = | |
5007 { | |
5008 N_("VIM - Vi IMproved"), | |
5009 "", | |
5010 N_("version "), | |
5011 N_("by Bram Moolenaar et al."), | |
5012 #ifdef MODIFIED_BY | |
5013 " ", | |
5014 #endif | |
5015 N_("Vim is open source and freely distributable"), | |
5016 "", | |
5017 N_("Help poor children in Uganda!"), | |
5018 N_("type :help iccf<Enter> for information "), | |
5019 "", | |
5020 N_("type :q<Enter> to exit "), | |
5021 N_("type :help<Enter> or <F1> for on-line help"), | |
26 | 5022 N_("type :help version7<Enter> for version info"), |
7 | 5023 NULL, |
5024 "", | |
5025 N_("Running in Vi compatible mode"), | |
5026 N_("type :set nocp<Enter> for Vim defaults"), | |
5027 N_("type :help cp-default<Enter> for info on this"), | |
5028 }; | |
5029 #ifdef FEAT_GUI | |
5030 static char *(gui_lines[]) = | |
5031 { | |
5032 NULL, | |
5033 NULL, | |
5034 NULL, | |
5035 NULL, | |
5036 #ifdef MODIFIED_BY | |
5037 NULL, | |
5038 #endif | |
5039 NULL, | |
5040 NULL, | |
5041 NULL, | |
5042 N_("menu Help->Orphans for information "), | |
5043 NULL, | |
5044 N_("Running modeless, typed text is inserted"), | |
5045 N_("menu Edit->Global Settings->Toggle Insert Mode "), | |
5046 N_(" for two modes "), | |
5047 NULL, | |
5048 NULL, | |
5049 NULL, | |
5050 N_("menu Edit->Global Settings->Toggle Vi Compatible"), | |
5051 N_(" for Vim defaults "), | |
5052 }; | |
5053 #endif | |
5054 | |
5055 /* blanklines = screen height - # message lines */ | |
5056 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1); | |
5057 if (!p_cp) | |
5058 blanklines += 4; /* add 4 for not showing "Vi compatible" message */ | |
5059 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
5060 if (mch_windows95()) | |
5061 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */ | |
5062 #endif | |
5063 | |
5064 #ifdef FEAT_WINDOWS | |
5065 /* Don't overwrite a statusline. Depends on 'cmdheight'. */ | |
5066 if (p_ls > 1) | |
5067 blanklines -= Rows - topframe->fr_height; | |
5068 #endif | |
5069 if (blanklines < 0) | |
5070 blanklines = 0; | |
5071 | |
5072 /* Show the sponsor and register message one out of four times, the Uganda | |
5073 * message two out of four times. */ | |
615 | 5074 sponsor = (int)time(NULL); |
7 | 5075 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); |
5076 | |
5077 /* start displaying the message lines after half of the blank lines */ | |
5078 row = blanklines / 2; | |
5079 if ((row >= 2 && Columns >= 50) || colon) | |
5080 { | |
5081 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i) | |
5082 { | |
5083 p = lines[i]; | |
5084 #ifdef FEAT_GUI | |
5085 if (p_im && gui.in_use && gui_lines[i] != NULL) | |
5086 p = gui_lines[i]; | |
5087 #endif | |
5088 if (p == NULL) | |
5089 { | |
5090 if (!p_cp) | |
5091 break; | |
5092 continue; | |
5093 } | |
5094 if (sponsor != 0) | |
5095 { | |
5096 if (strstr(p, "children") != NULL) | |
5097 p = sponsor < 0 | |
5098 ? N_("Sponsor Vim development!") | |
5099 : N_("Become a registered Vim user!"); | |
5100 else if (strstr(p, "iccf") != NULL) | |
5101 p = sponsor < 0 | |
5102 ? N_("type :help sponsor<Enter> for information ") | |
5103 : N_("type :help register<Enter> for information "); | |
5104 else if (strstr(p, "Orphans") != NULL) | |
5105 p = N_("menu Help->Sponsor/Register for information "); | |
5106 } | |
5107 if (*p != NUL) | |
5108 do_intro_line(row, (char_u *)_(p), i == 2, 0); | |
5109 ++row; | |
5110 } | |
5111 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
5112 if (mch_windows95()) | |
5113 { | |
5114 do_intro_line(++row, | |
5115 (char_u *)_("WARNING: Windows 95/98/ME detected"), | |
5116 FALSE, hl_attr(HLF_E)); | |
5117 do_intro_line(++row, | |
5118 (char_u *)_("type :help windows95<Enter> for info on this"), | |
5119 FALSE, 0); | |
5120 } | |
5121 #endif | |
5122 } | |
5123 | |
5124 /* Make the wait-return message appear just below the text. */ | |
5125 if (colon) | |
5126 msg_row = row; | |
5127 } | |
5128 | |
5129 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5130 do_intro_line( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5131 int row, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5132 char_u *mesg, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5133 int add_version, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5134 int attr) |
7 | 5135 { |
5136 char_u vers[20]; | |
5137 int col; | |
5138 char_u *p; | |
5139 int l; | |
5140 int clen; | |
5141 #ifdef MODIFIED_BY | |
5142 # define MODBY_LEN 150 | |
5143 char_u modby[MODBY_LEN]; | |
5144 | |
5145 if (*mesg == ' ') | |
5146 { | |
1491 | 5147 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1); |
9159
6b003ff07234
commit https://github.com/vim/vim/commit/9b0ac229bcfc91acabd35fc576055a94c1687c32
Christian Brabandt <cb@256bit.org>
parents:
9157
diff
changeset
|
5148 l = (int)STRLEN(modby); |
1491 | 5149 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1); |
7 | 5150 mesg = modby; |
5151 } | |
5152 #endif | |
5153 | |
5154 /* Center the message horizontally. */ | |
5155 col = vim_strsize(mesg); | |
5156 if (add_version) | |
5157 { | |
5158 STRCPY(vers, mediumVersion); | |
5159 if (highest_patch()) | |
5160 { | |
5161 /* Check for 9.9x or 9.9xx, alpha/beta version */ | |
2619 | 5162 if (isalpha((int)vers[3])) |
7 | 5163 { |
3396 | 5164 int len = (isalpha((int)vers[4])) ? 5 : 4; |
5165 sprintf((char *)vers + len, ".%d%s", highest_patch(), | |
5166 mediumVersion + len); | |
7 | 5167 } |
5168 else | |
5169 sprintf((char *)vers + 3, ".%d", highest_patch()); | |
5170 } | |
5171 col += (int)STRLEN(vers); | |
5172 } | |
5173 col = (Columns - col) / 2; | |
5174 if (col < 0) | |
5175 col = 0; | |
5176 | |
5177 /* Split up in parts to highlight <> items differently. */ | |
5178 for (p = mesg; *p != NUL; p += l) | |
5179 { | |
5180 clen = 0; | |
5181 for (l = 0; p[l] != NUL | |
5182 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l) | |
5183 { | |
5184 #ifdef FEAT_MBYTE | |
5185 if (has_mbyte) | |
5186 { | |
5187 clen += ptr2cells(p + l); | |
474 | 5188 l += (*mb_ptr2len)(p + l) - 1; |
7 | 5189 } |
5190 else | |
5191 #endif | |
5192 clen += byte2cells(p[l]); | |
5193 } | |
5194 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr); | |
5195 col += clen; | |
5196 } | |
5197 | |
5198 /* Add the version number to the version line. */ | |
5199 if (add_version) | |
5200 screen_puts(vers, row, col, 0); | |
5201 } | |
5202 | |
5203 /* | |
5204 * ":intro": clear screen, display intro screen and wait for return. | |
5205 */ | |
5206 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5207 ex_intro(exarg_T *eap UNUSED) |
7 | 5208 { |
5209 screenclear(); | |
5210 intro_message(TRUE); | |
5211 wait_return(TRUE); | |
5212 } |