Mercurial > vim
annotate src/version.c @ 9117:0cc48b3cd884 v7.4.1842
commit https://github.com/vim/vim/commit/03e19a04ac2ca55643663b97b6ab94043233dcbd
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue May 24 22:29:49 2016 +0200
patch 7.4.1842
Problem: get() works for Partial but not for Funcref.
Solution: Accept Funcref. Also return the function itself. (Nikolai Pavlov)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 24 May 2016 22:30:07 +0200 |
parents | f221aec7fcca |
children | 39cc63e8df7c |
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 /**/ | |
9117
0cc48b3cd884
commit https://github.com/vim/vim/commit/03e19a04ac2ca55643663b97b6ab94043233dcbd
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
757 1842, |
0cc48b3cd884
commit https://github.com/vim/vim/commit/03e19a04ac2ca55643663b97b6ab94043233dcbd
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
758 /**/ |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9112
diff
changeset
|
759 1841, |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9112
diff
changeset
|
760 /**/ |
9112
932f94b2d8c2
commit https://github.com/vim/vim/commit/a57024453115592b8847af40ddd965a33898e390
Christian Brabandt <cb@256bit.org>
parents:
9110
diff
changeset
|
761 1840, |
932f94b2d8c2
commit https://github.com/vim/vim/commit/a57024453115592b8847af40ddd965a33898e390
Christian Brabandt <cb@256bit.org>
parents:
9110
diff
changeset
|
762 /**/ |
9110
6d3888e2232c
commit https://github.com/vim/vim/commit/2bbf8eff6fab16d86e7bcfc0da1962d31bec7891
Christian Brabandt <cb@256bit.org>
parents:
9108
diff
changeset
|
763 1839, |
6d3888e2232c
commit https://github.com/vim/vim/commit/2bbf8eff6fab16d86e7bcfc0da1962d31bec7891
Christian Brabandt <cb@256bit.org>
parents:
9108
diff
changeset
|
764 /**/ |
9108
d319453f62b3
commit https://github.com/vim/vim/commit/574860b5ee9da281c875dad07a607454e135eaee
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
765 1838, |
d319453f62b3
commit https://github.com/vim/vim/commit/574860b5ee9da281c875dad07a607454e135eaee
Christian Brabandt <cb@256bit.org>
parents:
9106
diff
changeset
|
766 /**/ |
9106
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9104
diff
changeset
|
767 1837, |
97a9538c37ff
commit https://github.com/vim/vim/commit/c67e89213476b5f4756d92208b57ce9ef4a4cf24
Christian Brabandt <cb@256bit.org>
parents:
9104
diff
changeset
|
768 /**/ |
9104
2242a5766417
commit https://github.com/vim/vim/commit/1d429610bf9e99a6252be8abbc910d6667e4d1da
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
769 1836, |
2242a5766417
commit https://github.com/vim/vim/commit/1d429610bf9e99a6252be8abbc910d6667e4d1da
Christian Brabandt <cb@256bit.org>
parents:
9102
diff
changeset
|
770 /**/ |
9102
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
9100
diff
changeset
|
771 1835, |
0e90f3e13d88
commit https://github.com/vim/vim/commit/991dea3ab185fb35e577ab0bdfd443cd4b43ccc6
Christian Brabandt <cb@256bit.org>
parents:
9100
diff
changeset
|
772 /**/ |
9100
ddccff0480d2
commit https://github.com/vim/vim/commit/908be438794619f10ef7fa25e24e5893b2ae0189
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
773 1834, |
ddccff0480d2
commit https://github.com/vim/vim/commit/908be438794619f10ef7fa25e24e5893b2ae0189
Christian Brabandt <cb@256bit.org>
parents:
9098
diff
changeset
|
774 /**/ |
9098
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
9095
diff
changeset
|
775 1833, |
0d52ddff8db4
commit https://github.com/vim/vim/commit/2ff8b64679242e73248774a388d54931c9ce49bd
Christian Brabandt <cb@256bit.org>
parents:
9095
diff
changeset
|
776 /**/ |
9095
634a8299bd2c
commit https://github.com/vim/vim/commit/dc303bce10c60a3314078ea168064552fadf01af
Christian Brabandt <cb@256bit.org>
parents:
9093
diff
changeset
|
777 1832, |
634a8299bd2c
commit https://github.com/vim/vim/commit/dc303bce10c60a3314078ea168064552fadf01af
Christian Brabandt <cb@256bit.org>
parents:
9093
diff
changeset
|
778 /**/ |
9093
ad9322b525e1
commit https://github.com/vim/vim/commit/e40d75f6ef73095286b66e546c70ff6f045e009d
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
779 1831, |
ad9322b525e1
commit https://github.com/vim/vim/commit/e40d75f6ef73095286b66e546c70ff6f045e009d
Christian Brabandt <cb@256bit.org>
parents:
9091
diff
changeset
|
780 /**/ |
9091
294cfd18e9c7
commit https://github.com/vim/vim/commit/73a733e08bb7853d2ac12c60756ae51e39abb4d9
Christian Brabandt <cb@256bit.org>
parents:
9089
diff
changeset
|
781 1830, |
294cfd18e9c7
commit https://github.com/vim/vim/commit/73a733e08bb7853d2ac12c60756ae51e39abb4d9
Christian Brabandt <cb@256bit.org>
parents:
9089
diff
changeset
|
782 /**/ |
9089
6bc0a492e8ba
commit https://github.com/vim/vim/commit/de7eb0a47b557eb4656c6b63d421c7e7bae1ef30
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
783 1829, |
6bc0a492e8ba
commit https://github.com/vim/vim/commit/de7eb0a47b557eb4656c6b63d421c7e7bae1ef30
Christian Brabandt <cb@256bit.org>
parents:
9087
diff
changeset
|
784 /**/ |
9087
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
9085
diff
changeset
|
785 1828, |
d4606ae170aa
commit https://github.com/vim/vim/commit/e0f76d00979c972329f6c371463a20da61ccad65
Christian Brabandt <cb@256bit.org>
parents:
9085
diff
changeset
|
786 /**/ |
9085
d362e6df1deb
commit https://github.com/vim/vim/commit/fb6ffc732e65dbc459c89247ff78134402f1a18b
Christian Brabandt <cb@256bit.org>
parents:
9083
diff
changeset
|
787 1827, |
d362e6df1deb
commit https://github.com/vim/vim/commit/fb6ffc732e65dbc459c89247ff78134402f1a18b
Christian Brabandt <cb@256bit.org>
parents:
9083
diff
changeset
|
788 /**/ |
9083
69bb7b230094
commit https://github.com/vim/vim/commit/cf7ff70ca73218d618e7c00ab785bcf5f9120a94
Christian Brabandt <cb@256bit.org>
parents:
9081
diff
changeset
|
789 1826, |
69bb7b230094
commit https://github.com/vim/vim/commit/cf7ff70ca73218d618e7c00ab785bcf5f9120a94
Christian Brabandt <cb@256bit.org>
parents:
9081
diff
changeset
|
790 /**/ |
9081
b2b915c1d311
commit https://github.com/vim/vim/commit/5d96e3ae534ade8ed09a5de9ff8fd7519537ec28
Christian Brabandt <cb@256bit.org>
parents:
9079
diff
changeset
|
791 1825, |
b2b915c1d311
commit https://github.com/vim/vim/commit/5d96e3ae534ade8ed09a5de9ff8fd7519537ec28
Christian Brabandt <cb@256bit.org>
parents:
9079
diff
changeset
|
792 /**/ |
9079
2cd83c854073
commit https://github.com/vim/vim/commit/36e0f7da9bc4a6ee8a7b17df503542a339e034c8
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
793 1824, |
2cd83c854073
commit https://github.com/vim/vim/commit/36e0f7da9bc4a6ee8a7b17df503542a339e034c8
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
794 /**/ |
9077
a2441f2ff85d
commit https://github.com/vim/vim/commit/d9db8b448c214eb583e84c598bca0688b9202ba7
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
795 1823, |
a2441f2ff85d
commit https://github.com/vim/vim/commit/d9db8b448c214eb583e84c598bca0688b9202ba7
Christian Brabandt <cb@256bit.org>
parents:
9074
diff
changeset
|
796 /**/ |
9074
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9072
diff
changeset
|
797 1822, |
3aab62b76363
commit https://github.com/vim/vim/commit/ea83bf06b92baeb6d68a10d8e8ffad289d31dae2
Christian Brabandt <cb@256bit.org>
parents:
9072
diff
changeset
|
798 /**/ |
9072
f60bdac6cc2c
commit https://github.com/vim/vim/commit/4ed6b2e2d7fd5959fb9b9f608935d47305c4bbe4
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
799 1821, |
f60bdac6cc2c
commit https://github.com/vim/vim/commit/4ed6b2e2d7fd5959fb9b9f608935d47305c4bbe4
Christian Brabandt <cb@256bit.org>
parents:
9070
diff
changeset
|
800 /**/ |
9070
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
801 1820, |
0bb25b026fc9
commit https://github.com/vim/vim/commit/9ccaae04c6f263e6db14fc403bca2404a7871114
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
802 /**/ |
9068
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
803 1819, |
0a3bc9fdea20
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Christian Brabandt <cb@256bit.org>
parents:
9066
diff
changeset
|
804 /**/ |
9066
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
9064
diff
changeset
|
805 1818, |
c7bdd383275d
commit https://github.com/vim/vim/commit/89c79b99328b66f77f1d12dc8c6701dfe2c57f15
Christian Brabandt <cb@256bit.org>
parents:
9064
diff
changeset
|
806 /**/ |
9064
a86103d4b356
commit https://github.com/vim/vim/commit/cefe4f994853c2d4866e2aa4ea3e3f36ab2fea13
Christian Brabandt <cb@256bit.org>
parents:
9062
diff
changeset
|
807 1817, |
a86103d4b356
commit https://github.com/vim/vim/commit/cefe4f994853c2d4866e2aa4ea3e3f36ab2fea13
Christian Brabandt <cb@256bit.org>
parents:
9062
diff
changeset
|
808 /**/ |
9062
0aa90b84118c
commit https://github.com/vim/vim/commit/d8585eded6359f1d7e1981e96ae775efd077c638
Christian Brabandt <cb@256bit.org>
parents:
9060
diff
changeset
|
809 1816, |
0aa90b84118c
commit https://github.com/vim/vim/commit/d8585eded6359f1d7e1981e96ae775efd077c638
Christian Brabandt <cb@256bit.org>
parents:
9060
diff
changeset
|
810 /**/ |
9060
616793d0412b
commit https://github.com/vim/vim/commit/9a3b3311d26c990208150255ad65472bb4eefaa4
Christian Brabandt <cb@256bit.org>
parents:
9058
diff
changeset
|
811 1815, |
616793d0412b
commit https://github.com/vim/vim/commit/9a3b3311d26c990208150255ad65472bb4eefaa4
Christian Brabandt <cb@256bit.org>
parents:
9058
diff
changeset
|
812 /**/ |
9058
87c2e43a4a12
commit https://github.com/vim/vim/commit/b8d4905592fc26fcd09180d7d6bfefd899f2f6c6
Christian Brabandt <cb@256bit.org>
parents:
9056
diff
changeset
|
813 1814, |
87c2e43a4a12
commit https://github.com/vim/vim/commit/b8d4905592fc26fcd09180d7d6bfefd899f2f6c6
Christian Brabandt <cb@256bit.org>
parents:
9056
diff
changeset
|
814 /**/ |
9056
19d2dfb3f5e2
commit https://github.com/vim/vim/commit/9b4ebc692d77ca8ef90d72517347f74c2474dd3d
Christian Brabandt <cb@256bit.org>
parents:
9054
diff
changeset
|
815 1813, |
19d2dfb3f5e2
commit https://github.com/vim/vim/commit/9b4ebc692d77ca8ef90d72517347f74c2474dd3d
Christian Brabandt <cb@256bit.org>
parents:
9054
diff
changeset
|
816 /**/ |
9054
f129fd3ebd98
commit https://github.com/vim/vim/commit/187147aedd588070d0676664d5076d046644094e
Christian Brabandt <cb@256bit.org>
parents:
9052
diff
changeset
|
817 1812, |
f129fd3ebd98
commit https://github.com/vim/vim/commit/187147aedd588070d0676664d5076d046644094e
Christian Brabandt <cb@256bit.org>
parents:
9052
diff
changeset
|
818 /**/ |
9052
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
9050
diff
changeset
|
819 1811, |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
9050
diff
changeset
|
820 /**/ |
9050
31bba6f25d84
commit https://github.com/vim/vim/commit/715d285d79a1d97928dd717278e25e6de45d1496
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
821 1810, |
31bba6f25d84
commit https://github.com/vim/vim/commit/715d285d79a1d97928dd717278e25e6de45d1496
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
822 /**/ |
9048
5bb5569bec60
commit https://github.com/vim/vim/commit/868cfc19bb079a16ca58884b551486566f35419b
Christian Brabandt <cb@256bit.org>
parents:
9046
diff
changeset
|
823 1809, |
5bb5569bec60
commit https://github.com/vim/vim/commit/868cfc19bb079a16ca58884b551486566f35419b
Christian Brabandt <cb@256bit.org>
parents:
9046
diff
changeset
|
824 /**/ |
9046
057fb9d0191b
commit https://github.com/vim/vim/commit/8a24b794b89916c8074892e7b25121a21f1fa9c9
Christian Brabandt <cb@256bit.org>
parents:
9044
diff
changeset
|
825 1808, |
057fb9d0191b
commit https://github.com/vim/vim/commit/8a24b794b89916c8074892e7b25121a21f1fa9c9
Christian Brabandt <cb@256bit.org>
parents:
9044
diff
changeset
|
826 /**/ |
9044
5abf6f38cbbb
commit https://github.com/vim/vim/commit/d75263c020a5044fa73bc8cd57ce73ca5e23b360
Christian Brabandt <cb@256bit.org>
parents:
9042
diff
changeset
|
827 1807, |
5abf6f38cbbb
commit https://github.com/vim/vim/commit/d75263c020a5044fa73bc8cd57ce73ca5e23b360
Christian Brabandt <cb@256bit.org>
parents:
9042
diff
changeset
|
828 /**/ |
9042
21bd2230c5cd
commit https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201
Christian Brabandt <cb@256bit.org>
parents:
9039
diff
changeset
|
829 1806, |
21bd2230c5cd
commit https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201
Christian Brabandt <cb@256bit.org>
parents:
9039
diff
changeset
|
830 /**/ |
9039
0764ed56b18c
commit https://github.com/vim/vim/commit/4cc39a527fecc96ad6639f10c9389c66af828cf1
Christian Brabandt <cb@256bit.org>
parents:
9037
diff
changeset
|
831 1805, |
0764ed56b18c
commit https://github.com/vim/vim/commit/4cc39a527fecc96ad6639f10c9389c66af828cf1
Christian Brabandt <cb@256bit.org>
parents:
9037
diff
changeset
|
832 /**/ |
9037
d07035f84f0d
commit https://github.com/vim/vim/commit/b20545f2a718d4f19c3f609fd11c0ca4eff450ce
Christian Brabandt <cb@256bit.org>
parents:
9035
diff
changeset
|
833 1804, |
d07035f84f0d
commit https://github.com/vim/vim/commit/b20545f2a718d4f19c3f609fd11c0ca4eff450ce
Christian Brabandt <cb@256bit.org>
parents:
9035
diff
changeset
|
834 /**/ |
9035
08854bb267b2
commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
835 1803, |
08854bb267b2
commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847
Christian Brabandt <cb@256bit.org>
parents:
9033
diff
changeset
|
836 /**/ |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
9031
diff
changeset
|
837 1802, |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
9031
diff
changeset
|
838 /**/ |
9031
8208f5f58505
commit https://github.com/vim/vim/commit/113ce084569893a3897c8cc4d7d0f301fef7978a
Christian Brabandt <cb@256bit.org>
parents:
9029
diff
changeset
|
839 1801, |
8208f5f58505
commit https://github.com/vim/vim/commit/113ce084569893a3897c8cc4d7d0f301fef7978a
Christian Brabandt <cb@256bit.org>
parents:
9029
diff
changeset
|
840 /**/ |
9029
f06767547415
commit https://github.com/vim/vim/commit/631225627d448b591e529a5d3e7ac74ef44b8459
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
841 1800, |
f06767547415
commit https://github.com/vim/vim/commit/631225627d448b591e529a5d3e7ac74ef44b8459
Christian Brabandt <cb@256bit.org>
parents:
9027
diff
changeset
|
842 /**/ |
9027
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
843 1799, |
773d627cac0b
commit https://github.com/vim/vim/commit/61be73bb0f965a895bfb064ea3e55476ac175162
Christian Brabandt <cb@256bit.org>
parents:
9025
diff
changeset
|
844 /**/ |
9025
0bc1d66dfa2f
commit https://github.com/vim/vim/commit/bb82762907ba024717ad9af3b229c2fa6405cd36
Christian Brabandt <cb@256bit.org>
parents:
9023
diff
changeset
|
845 1798, |
0bc1d66dfa2f
commit https://github.com/vim/vim/commit/bb82762907ba024717ad9af3b229c2fa6405cd36
Christian Brabandt <cb@256bit.org>
parents:
9023
diff
changeset
|
846 /**/ |
9023
8263edf411a7
commit https://github.com/vim/vim/commit/c61348e83fd4eed8b999fe5b7cdfb4caf90bf3fd
Christian Brabandt <cb@256bit.org>
parents:
9021
diff
changeset
|
847 1797, |
8263edf411a7
commit https://github.com/vim/vim/commit/c61348e83fd4eed8b999fe5b7cdfb4caf90bf3fd
Christian Brabandt <cb@256bit.org>
parents:
9021
diff
changeset
|
848 /**/ |
9021
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
849 1796, |
bb6ca6366085
commit https://github.com/vim/vim/commit/283ee8b3a07b9da18f6c73f35cf465b83f96406a
Christian Brabandt <cb@256bit.org>
parents:
9019
diff
changeset
|
850 /**/ |
9019
2e3c6071db97
commit https://github.com/vim/vim/commit/5487544fa5d46af9f8f98aa4f5c59074a6e0639a
Christian Brabandt <cb@256bit.org>
parents:
9017
diff
changeset
|
851 1795, |
2e3c6071db97
commit https://github.com/vim/vim/commit/5487544fa5d46af9f8f98aa4f5c59074a6e0639a
Christian Brabandt <cb@256bit.org>
parents:
9017
diff
changeset
|
852 /**/ |
9017
7b1200ea03a1
commit https://github.com/vim/vim/commit/c285fe7c3ffdb3ec4eff20a1d1d5accfc80f1a86
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
853 1794, |
7b1200ea03a1
commit https://github.com/vim/vim/commit/c285fe7c3ffdb3ec4eff20a1d1d5accfc80f1a86
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
854 /**/ |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
855 1793, |
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
9013
diff
changeset
|
856 /**/ |
9013
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9011
diff
changeset
|
857 1792, |
22c29a515b53
commit https://github.com/vim/vim/commit/ab3022196ea4f1496e79b8ee85996e31c45d02f1
Christian Brabandt <cb@256bit.org>
parents:
9011
diff
changeset
|
858 /**/ |
9011
72a597e9e36d
commit https://github.com/vim/vim/commit/674127e1801fd02ff07dddf0dc3bf0d8cce68997
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
859 1791, |
72a597e9e36d
commit https://github.com/vim/vim/commit/674127e1801fd02ff07dddf0dc3bf0d8cce68997
Christian Brabandt <cb@256bit.org>
parents:
9009
diff
changeset
|
860 /**/ |
9009
149d976650a1
commit https://github.com/vim/vim/commit/6231cb8b5b208becf088531816027001acc754e5
Christian Brabandt <cb@256bit.org>
parents:
9007
diff
changeset
|
861 1790, |
149d976650a1
commit https://github.com/vim/vim/commit/6231cb8b5b208becf088531816027001acc754e5
Christian Brabandt <cb@256bit.org>
parents:
9007
diff
changeset
|
862 /**/ |
9007
d5c6f1c5cd28
commit https://github.com/vim/vim/commit/437905c25d4cedfa16d0f87392e4a000d22362b7
Christian Brabandt <cb@256bit.org>
parents:
9005
diff
changeset
|
863 1789, |
d5c6f1c5cd28
commit https://github.com/vim/vim/commit/437905c25d4cedfa16d0f87392e4a000d22362b7
Christian Brabandt <cb@256bit.org>
parents:
9005
diff
changeset
|
864 /**/ |
9005
c473a9393dc5
commit https://github.com/vim/vim/commit/c7baa43fdb3f5b001ba3e6eb05bf6e199698eeea
Christian Brabandt <cb@256bit.org>
parents:
9003
diff
changeset
|
865 1788, |
c473a9393dc5
commit https://github.com/vim/vim/commit/c7baa43fdb3f5b001ba3e6eb05bf6e199698eeea
Christian Brabandt <cb@256bit.org>
parents:
9003
diff
changeset
|
866 /**/ |
9003
072556995a8e
commit https://github.com/vim/vim/commit/b2658a1ab02cd0ba848164f70c7c464fdc398162
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
867 1787, |
072556995a8e
commit https://github.com/vim/vim/commit/b2658a1ab02cd0ba848164f70c7c464fdc398162
Christian Brabandt <cb@256bit.org>
parents:
9001
diff
changeset
|
868 /**/ |
9001
57b791947796
commit https://github.com/vim/vim/commit/d10abe52019d10403eb559ea0a424bbd310b738f
Christian Brabandt <cb@256bit.org>
parents:
8999
diff
changeset
|
869 1786, |
57b791947796
commit https://github.com/vim/vim/commit/d10abe52019d10403eb559ea0a424bbd310b738f
Christian Brabandt <cb@256bit.org>
parents:
8999
diff
changeset
|
870 /**/ |
8999
f414db42d167
commit https://github.com/vim/vim/commit/490465bda6ab66f78041709cc02f48a25486a3e5
Christian Brabandt <cb@256bit.org>
parents:
8997
diff
changeset
|
871 1785, |
f414db42d167
commit https://github.com/vim/vim/commit/490465bda6ab66f78041709cc02f48a25486a3e5
Christian Brabandt <cb@256bit.org>
parents:
8997
diff
changeset
|
872 /**/ |
8997
90fd01ade690
commit https://github.com/vim/vim/commit/8e9eb3a6a1e589949f1c878c839528d917fdfc4a
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
873 1784, |
90fd01ade690
commit https://github.com/vim/vim/commit/8e9eb3a6a1e589949f1c878c839528d917fdfc4a
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
874 /**/ |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8993
diff
changeset
|
875 1783, |
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8993
diff
changeset
|
876 /**/ |
8993
2085167ab1b0
commit https://github.com/vim/vim/commit/fca66003053f8c0da5161d1fe4b75b3a389934b5
Christian Brabandt <cb@256bit.org>
parents:
8991
diff
changeset
|
877 1782, |
2085167ab1b0
commit https://github.com/vim/vim/commit/fca66003053f8c0da5161d1fe4b75b3a389934b5
Christian Brabandt <cb@256bit.org>
parents:
8991
diff
changeset
|
878 /**/ |
8991
42e85487c0f9
commit https://github.com/vim/vim/commit/da5b3dcf06a3af5b398450258be32b0416451a9b
Christian Brabandt <cb@256bit.org>
parents:
8989
diff
changeset
|
879 1781, |
42e85487c0f9
commit https://github.com/vim/vim/commit/da5b3dcf06a3af5b398450258be32b0416451a9b
Christian Brabandt <cb@256bit.org>
parents:
8989
diff
changeset
|
880 /**/ |
8989
e600e696c0a1
commit https://github.com/vim/vim/commit/dc633cf82758f67f656cda7fa8ccc30414ee53f8
Christian Brabandt <cb@256bit.org>
parents:
8987
diff
changeset
|
881 1780, |
e600e696c0a1
commit https://github.com/vim/vim/commit/dc633cf82758f67f656cda7fa8ccc30414ee53f8
Christian Brabandt <cb@256bit.org>
parents:
8987
diff
changeset
|
882 /**/ |
8987
42beb54724fa
commit https://github.com/vim/vim/commit/73dfe917ba6357413aaf98a021c91add5ac6e9bc
Christian Brabandt <cb@256bit.org>
parents:
8985
diff
changeset
|
883 1779, |
42beb54724fa
commit https://github.com/vim/vim/commit/73dfe917ba6357413aaf98a021c91add5ac6e9bc
Christian Brabandt <cb@256bit.org>
parents:
8985
diff
changeset
|
884 /**/ |
8985
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8983
diff
changeset
|
885 1778, |
42eb58c9da92
commit https://github.com/vim/vim/commit/b2fa54a84078e2b8dc3c7c7bfbccf6b75c0788d0
Christian Brabandt <cb@256bit.org>
parents:
8983
diff
changeset
|
886 /**/ |
8983
5cbd81536f27
commit https://github.com/vim/vim/commit/3849992b16011e36a5cb5be4b127f843389b96fd
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
887 1777, |
5cbd81536f27
commit https://github.com/vim/vim/commit/3849992b16011e36a5cb5be4b127f843389b96fd
Christian Brabandt <cb@256bit.org>
parents:
8981
diff
changeset
|
888 /**/ |
8981
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8979
diff
changeset
|
889 1776, |
3b51b0aeb9a3
commit https://github.com/vim/vim/commit/a1c487eef71d1673e57511453009de9cb4c9af51
Christian Brabandt <cb@256bit.org>
parents:
8979
diff
changeset
|
890 /**/ |
8979
a1dac213df8b
commit https://github.com/vim/vim/commit/763b684373bf5954445d8d8d99da1e39a4fc5105
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
891 1775, |
a1dac213df8b
commit https://github.com/vim/vim/commit/763b684373bf5954445d8d8d99da1e39a4fc5105
Christian Brabandt <cb@256bit.org>
parents:
8977
diff
changeset
|
892 /**/ |
8977
b3da1ec8d156
commit https://github.com/vim/vim/commit/902647d2dfb42dce8449dfbbc22dab27a528744d
Christian Brabandt <cb@256bit.org>
parents:
8975
diff
changeset
|
893 1774, |
b3da1ec8d156
commit https://github.com/vim/vim/commit/902647d2dfb42dce8449dfbbc22dab27a528744d
Christian Brabandt <cb@256bit.org>
parents:
8975
diff
changeset
|
894 /**/ |
8975
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8973
diff
changeset
|
895 1773, |
9c097bfad637
commit https://github.com/vim/vim/commit/380130f1e18da92a44372728fe044f56db58585b
Christian Brabandt <cb@256bit.org>
parents:
8973
diff
changeset
|
896 /**/ |
8973
887bded0d8ea
commit https://github.com/vim/vim/commit/54a38415caa31de8b4ac46a9234ae339b1fd6255
Christian Brabandt <cb@256bit.org>
parents:
8971
diff
changeset
|
897 1772, |
887bded0d8ea
commit https://github.com/vim/vim/commit/54a38415caa31de8b4ac46a9234ae339b1fd6255
Christian Brabandt <cb@256bit.org>
parents:
8971
diff
changeset
|
898 /**/ |
8971
138824071d4f
commit https://github.com/vim/vim/commit/21decdd3e6d5ce3469a3c2743de1f4aada388d8c
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
899 1771, |
138824071d4f
commit https://github.com/vim/vim/commit/21decdd3e6d5ce3469a3c2743de1f4aada388d8c
Christian Brabandt <cb@256bit.org>
parents:
8969
diff
changeset
|
900 /**/ |
8969
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8967
diff
changeset
|
901 1770, |
c83e2c1e7f2b
commit https://github.com/vim/vim/commit/8a633e3427b47286869aa4b96f2bfc1fe65b25cd
Christian Brabandt <cb@256bit.org>
parents:
8967
diff
changeset
|
902 /**/ |
8967
df5f9284fcba
commit https://github.com/vim/vim/commit/6d4431e7b675ba7a0194c0b8eb84b7d92e4e7953
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
903 1769, |
df5f9284fcba
commit https://github.com/vim/vim/commit/6d4431e7b675ba7a0194c0b8eb84b7d92e4e7953
Christian Brabandt <cb@256bit.org>
parents:
8965
diff
changeset
|
904 /**/ |
8965
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8963
diff
changeset
|
905 1768, |
90f7dc794aa0
commit https://github.com/vim/vim/commit/d106e5ba7f10f0d2a14eaefe5d78405044416cb9
Christian Brabandt <cb@256bit.org>
parents:
8963
diff
changeset
|
906 /**/ |
8963
53e53aeb35ad
commit https://github.com/vim/vim/commit/4adfaabfe7e07da9546b45130cad0d266ba48611
Christian Brabandt <cb@256bit.org>
parents:
8960
diff
changeset
|
907 1767, |
53e53aeb35ad
commit https://github.com/vim/vim/commit/4adfaabfe7e07da9546b45130cad0d266ba48611
Christian Brabandt <cb@256bit.org>
parents:
8960
diff
changeset
|
908 /**/ |
8960
ea3eb5a815b5
commit https://github.com/vim/vim/commit/02cfac85b4e4b038bb2df6962699fa93a42c7eb1
Christian Brabandt <cb@256bit.org>
parents:
8958
diff
changeset
|
909 1766, |
ea3eb5a815b5
commit https://github.com/vim/vim/commit/02cfac85b4e4b038bb2df6962699fa93a42c7eb1
Christian Brabandt <cb@256bit.org>
parents:
8958
diff
changeset
|
910 /**/ |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8956
diff
changeset
|
911 1765, |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8956
diff
changeset
|
912 /**/ |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8956
diff
changeset
|
913 1764, |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8956
diff
changeset
|
914 /**/ |
8956
d9e671c5afe6
commit https://github.com/vim/vim/commit/ba53435144f46eaaa53c63a62e748b3feee9742c
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
915 1763, |
d9e671c5afe6
commit https://github.com/vim/vim/commit/ba53435144f46eaaa53c63a62e748b3feee9742c
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
916 /**/ |
8954
ab4fe611d205
commit https://github.com/vim/vim/commit/268a06ce901d2c780304e0395028e3c2f60ec755
Christian Brabandt <cb@256bit.org>
parents:
8952
diff
changeset
|
917 1762, |
ab4fe611d205
commit https://github.com/vim/vim/commit/268a06ce901d2c780304e0395028e3c2f60ec755
Christian Brabandt <cb@256bit.org>
parents:
8952
diff
changeset
|
918 /**/ |
8952
9b04f9e8d1d4
commit https://github.com/vim/vim/commit/8ed43916dbea4ccedcc84d271e292abbf658b9c5
Christian Brabandt <cb@256bit.org>
parents:
8949
diff
changeset
|
919 1761, |
9b04f9e8d1d4
commit https://github.com/vim/vim/commit/8ed43916dbea4ccedcc84d271e292abbf658b9c5
Christian Brabandt <cb@256bit.org>
parents:
8949
diff
changeset
|
920 /**/ |
8949
c44ab784f5e5
commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
921 1760, |
c44ab784f5e5
commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents:
8947
diff
changeset
|
922 /**/ |
8947
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8945
diff
changeset
|
923 1759, |
c07caeb90a35
commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents:
8945
diff
changeset
|
924 /**/ |
8945
a3060addc328
commit https://github.com/vim/vim/commit/245c41070c7f37d52be43cce0cb140bd3ade6c7e
Christian Brabandt <cb@256bit.org>
parents:
8943
diff
changeset
|
925 1758, |
a3060addc328
commit https://github.com/vim/vim/commit/245c41070c7f37d52be43cce0cb140bd3ade6c7e
Christian Brabandt <cb@256bit.org>
parents:
8943
diff
changeset
|
926 /**/ |
8943
47036dcd83a4
commit https://github.com/vim/vim/commit/8e42ae5069d4985869e46eaa56900ed19e30f504
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
927 1757, |
47036dcd83a4
commit https://github.com/vim/vim/commit/8e42ae5069d4985869e46eaa56900ed19e30f504
Christian Brabandt <cb@256bit.org>
parents:
8941
diff
changeset
|
928 /**/ |
8941
0e7b1897ceb3
commit https://github.com/vim/vim/commit/a6e42501424f6670fa864c739d2dc2eb764900b9
Christian Brabandt <cb@256bit.org>
parents:
8939
diff
changeset
|
929 1756, |
0e7b1897ceb3
commit https://github.com/vim/vim/commit/a6e42501424f6670fa864c739d2dc2eb764900b9
Christian Brabandt <cb@256bit.org>
parents:
8939
diff
changeset
|
930 /**/ |
8939
36cb3aff8c1c
commit https://github.com/vim/vim/commit/517ffbee0d5b7b46320726faaa330b61f54e867c
Christian Brabandt <cb@256bit.org>
parents:
8937
diff
changeset
|
931 1755, |
36cb3aff8c1c
commit https://github.com/vim/vim/commit/517ffbee0d5b7b46320726faaa330b61f54e867c
Christian Brabandt <cb@256bit.org>
parents:
8937
diff
changeset
|
932 /**/ |
8937
da4f6e238374
commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents:
8935
diff
changeset
|
933 1754, |
da4f6e238374
commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents:
8935
diff
changeset
|
934 /**/ |
8935
219d80fee92f
commit https://github.com/vim/vim/commit/c020042083b9c0a4e932b562c3bef97c76328e18
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
935 1753, |
219d80fee92f
commit https://github.com/vim/vim/commit/c020042083b9c0a4e932b562c3bef97c76328e18
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
936 /**/ |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8930
diff
changeset
|
937 1752, |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8930
diff
changeset
|
938 /**/ |
8930
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8928
diff
changeset
|
939 1751, |
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8928
diff
changeset
|
940 /**/ |
8928
e6916e1683bb
commit https://github.com/vim/vim/commit/7f7c3325d3f1baba32263a3457cfc4d90ecd5ff1
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
941 1750, |
e6916e1683bb
commit https://github.com/vim/vim/commit/7f7c3325d3f1baba32263a3457cfc4d90ecd5ff1
Christian Brabandt <cb@256bit.org>
parents:
8926
diff
changeset
|
942 /**/ |
8926
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
943 1749, |
fc69eed19ba7
commit https://github.com/vim/vim/commit/30e12d259ee78272359f9da2655d0593a4f6a626
Christian Brabandt <cb@256bit.org>
parents:
8923
diff
changeset
|
944 /**/ |
8923
face93b02af4
commit https://github.com/vim/vim/commit/1538fc34fae3fae39773ca43f6ff52401fce61d8
Christian Brabandt <cb@256bit.org>
parents:
8921
diff
changeset
|
945 1748, |
face93b02af4
commit https://github.com/vim/vim/commit/1538fc34fae3fae39773ca43f6ff52401fce61d8
Christian Brabandt <cb@256bit.org>
parents:
8921
diff
changeset
|
946 /**/ |
8921
c3e7cc135754
commit https://github.com/vim/vim/commit/fe4b18640656ddea41f60cf7a76956c9cc5494d6
Christian Brabandt <cb@256bit.org>
parents:
8919
diff
changeset
|
947 1747, |
c3e7cc135754
commit https://github.com/vim/vim/commit/fe4b18640656ddea41f60cf7a76956c9cc5494d6
Christian Brabandt <cb@256bit.org>
parents:
8919
diff
changeset
|
948 /**/ |
8919
240ad5a78199
commit https://github.com/vim/vim/commit/95509e18f8806046eeee27482c77666bbec515da
Christian Brabandt <cb@256bit.org>
parents:
8917
diff
changeset
|
949 1746, |
240ad5a78199
commit https://github.com/vim/vim/commit/95509e18f8806046eeee27482c77666bbec515da
Christian Brabandt <cb@256bit.org>
parents:
8917
diff
changeset
|
950 /**/ |
8917
d07e51166f08
commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents:
8915
diff
changeset
|
951 1745, |
d07e51166f08
commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents:
8915
diff
changeset
|
952 /**/ |
8915
8cbf472483fa
commit https://github.com/vim/vim/commit/66210042892389d36e3d37203ec77f61467bfb1c
Christian Brabandt <cb@256bit.org>
parents:
8913
diff
changeset
|
953 1744, |
8cbf472483fa
commit https://github.com/vim/vim/commit/66210042892389d36e3d37203ec77f61467bfb1c
Christian Brabandt <cb@256bit.org>
parents:
8913
diff
changeset
|
954 /**/ |
8913
caffda31048c
commit https://github.com/vim/vim/commit/75be2339d877bbd38df91c0181e1e0e388852df6
Christian Brabandt <cb@256bit.org>
parents:
8911
diff
changeset
|
955 1743, |
caffda31048c
commit https://github.com/vim/vim/commit/75be2339d877bbd38df91c0181e1e0e388852df6
Christian Brabandt <cb@256bit.org>
parents:
8911
diff
changeset
|
956 /**/ |
8911
460c8cc144f0
commit https://github.com/vim/vim/commit/5d18e0eca59ffbba22c7f7c91c9f99d672095728
Christian Brabandt <cb@256bit.org>
parents:
8909
diff
changeset
|
957 1742, |
460c8cc144f0
commit https://github.com/vim/vim/commit/5d18e0eca59ffbba22c7f7c91c9f99d672095728
Christian Brabandt <cb@256bit.org>
parents:
8909
diff
changeset
|
958 /**/ |
8909
6393ac6d7060
commit https://github.com/vim/vim/commit/b22bd46b9681d73d095f2eadff8163d3a6cf416b
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
959 1741, |
6393ac6d7060
commit https://github.com/vim/vim/commit/b22bd46b9681d73d095f2eadff8163d3a6cf416b
Christian Brabandt <cb@256bit.org>
parents:
8907
diff
changeset
|
960 /**/ |
8907
5deb9e8f4292
commit https://github.com/vim/vim/commit/4d585022023b96f6507e8cae5ed8fc8d926f5140
Christian Brabandt <cb@256bit.org>
parents:
8905
diff
changeset
|
961 1740, |
5deb9e8f4292
commit https://github.com/vim/vim/commit/4d585022023b96f6507e8cae5ed8fc8d926f5140
Christian Brabandt <cb@256bit.org>
parents:
8905
diff
changeset
|
962 /**/ |
8905
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8903
diff
changeset
|
963 1739, |
9200836eee15
commit https://github.com/vim/vim/commit/bea1ede1c59a11ca5bf9d91cd30b7b2937b9fb41
Christian Brabandt <cb@256bit.org>
parents:
8903
diff
changeset
|
964 /**/ |
8903
9da3751688e9
commit https://github.com/vim/vim/commit/5d91646599a7b74310845e30a2a52ff197dc0ed7
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
965 1738, |
9da3751688e9
commit https://github.com/vim/vim/commit/5d91646599a7b74310845e30a2a52ff197dc0ed7
Christian Brabandt <cb@256bit.org>
parents:
8901
diff
changeset
|
966 /**/ |
8901
b4dad96ade29
commit https://github.com/vim/vim/commit/52196b2dbe3b64b5054e1df3d3aa8fc65e30addc
Christian Brabandt <cb@256bit.org>
parents:
8899
diff
changeset
|
967 1737, |
b4dad96ade29
commit https://github.com/vim/vim/commit/52196b2dbe3b64b5054e1df3d3aa8fc65e30addc
Christian Brabandt <cb@256bit.org>
parents:
8899
diff
changeset
|
968 /**/ |
8899
fe12294683d8
commit https://github.com/vim/vim/commit/baa9fcaf4042a6dbe01e64ce63cb54941ee00f09
Christian Brabandt <cb@256bit.org>
parents:
8897
diff
changeset
|
969 1736, |
fe12294683d8
commit https://github.com/vim/vim/commit/baa9fcaf4042a6dbe01e64ce63cb54941ee00f09
Christian Brabandt <cb@256bit.org>
parents:
8897
diff
changeset
|
970 /**/ |
8897
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8895
diff
changeset
|
971 1735, |
a410390e340b
commit https://github.com/vim/vim/commit/451f849fd6282a4facd4f0f58af62837443fb5a6
Christian Brabandt <cb@256bit.org>
parents:
8895
diff
changeset
|
972 /**/ |
8895
7f29248d5789
commit https://github.com/vim/vim/commit/0f518a8f4d4be4cac10389680f6bd5e3781f94b0
Christian Brabandt <cb@256bit.org>
parents:
8893
diff
changeset
|
973 1734, |
7f29248d5789
commit https://github.com/vim/vim/commit/0f518a8f4d4be4cac10389680f6bd5e3781f94b0
Christian Brabandt <cb@256bit.org>
parents:
8893
diff
changeset
|
974 /**/ |
8893
d5d2e48666bd
commit https://github.com/vim/vim/commit/839e954aaa72ef62f65416d177f829e681c15466
Christian Brabandt <cb@256bit.org>
parents:
8891
diff
changeset
|
975 1733, |
d5d2e48666bd
commit https://github.com/vim/vim/commit/839e954aaa72ef62f65416d177f829e681c15466
Christian Brabandt <cb@256bit.org>
parents:
8891
diff
changeset
|
976 /**/ |
8891
d7ba3f9b9ba6
commit https://github.com/vim/vim/commit/429fcfbf9a9275367fe9441a50a3dcd773497d84
Christian Brabandt <cb@256bit.org>
parents:
8889
diff
changeset
|
977 1732, |
d7ba3f9b9ba6
commit https://github.com/vim/vim/commit/429fcfbf9a9275367fe9441a50a3dcd773497d84
Christian Brabandt <cb@256bit.org>
parents:
8889
diff
changeset
|
978 /**/ |
8889
8755d57debaa
commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents:
8887
diff
changeset
|
979 1731, |
8755d57debaa
commit https://github.com/vim/vim/commit/8110a091bc749d8748a20807a724a3af3ca6d509
Christian Brabandt <cb@256bit.org>
parents:
8887
diff
changeset
|
980 /**/ |
8887
8bf855dea79e
commit https://github.com/vim/vim/commit/58de0e2dcc1f2d251b74892a06d71a14973f3187
Christian Brabandt <cb@256bit.org>
parents:
8885
diff
changeset
|
981 1730, |
8bf855dea79e
commit https://github.com/vim/vim/commit/58de0e2dcc1f2d251b74892a06d71a14973f3187
Christian Brabandt <cb@256bit.org>
parents:
8885
diff
changeset
|
982 /**/ |
8885
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
983 1729, |
54a380c74547
commit https://github.com/vim/vim/commit/6244a0fc29163ba1c734f92b55a89e01e6cf2a67
Christian Brabandt <cb@256bit.org>
parents:
8883
diff
changeset
|
984 /**/ |
8883
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8881
diff
changeset
|
985 1728, |
b7de875169e6
commit https://github.com/vim/vim/commit/81edd171a9465cf99cede4fa4a7b7bca3d538b0f
Christian Brabandt <cb@256bit.org>
parents:
8881
diff
changeset
|
986 /**/ |
8881
ed0b39dd7fd6
commit https://github.com/vim/vim/commit/ebf7dfa6f121c82f97d2adca3d45fbaba9ad8f7e
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
987 1727, |
ed0b39dd7fd6
commit https://github.com/vim/vim/commit/ebf7dfa6f121c82f97d2adca3d45fbaba9ad8f7e
Christian Brabandt <cb@256bit.org>
parents:
8879
diff
changeset
|
988 /**/ |
8879
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8877
diff
changeset
|
989 1726, |
cea5ff374062
commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents:
8877
diff
changeset
|
990 /**/ |
8877
50e40f322e78
commit https://github.com/vim/vim/commit/3780bb923a688e0051a9a23474eeb38a8acb695a
Christian Brabandt <cb@256bit.org>
parents:
8874
diff
changeset
|
991 1725, |
50e40f322e78
commit https://github.com/vim/vim/commit/3780bb923a688e0051a9a23474eeb38a8acb695a
Christian Brabandt <cb@256bit.org>
parents:
8874
diff
changeset
|
992 /**/ |
8874
ccab37bb9ac9
commit https://github.com/vim/vim/commit/73cd8fb3e87e4b29dfc489f58e56dee1839c18e5
Christian Brabandt <cb@256bit.org>
parents:
8872
diff
changeset
|
993 1724, |
ccab37bb9ac9
commit https://github.com/vim/vim/commit/73cd8fb3e87e4b29dfc489f58e56dee1839c18e5
Christian Brabandt <cb@256bit.org>
parents:
8872
diff
changeset
|
994 /**/ |
8872
4d4de770f970
commit https://github.com/vim/vim/commit/f73d3bc253fa79ad220f52f04b93e782e95a9d43
Christian Brabandt <cb@256bit.org>
parents:
8870
diff
changeset
|
995 1723, |
4d4de770f970
commit https://github.com/vim/vim/commit/f73d3bc253fa79ad220f52f04b93e782e95a9d43
Christian Brabandt <cb@256bit.org>
parents:
8870
diff
changeset
|
996 /**/ |
8870
30988ffb7498
commit https://github.com/vim/vim/commit/0239acb11fe4bfe9b525ea90b782759da5eb7704
Christian Brabandt <cb@256bit.org>
parents:
8867
diff
changeset
|
997 1722, |
30988ffb7498
commit https://github.com/vim/vim/commit/0239acb11fe4bfe9b525ea90b782759da5eb7704
Christian Brabandt <cb@256bit.org>
parents:
8867
diff
changeset
|
998 /**/ |
8867
538d278d3db6
commit https://github.com/vim/vim/commit/a4d13de8363abf4c12fe99a52b4e49e763de92fe
Christian Brabandt <cb@256bit.org>
parents:
8865
diff
changeset
|
999 1721, |
538d278d3db6
commit https://github.com/vim/vim/commit/a4d13de8363abf4c12fe99a52b4e49e763de92fe
Christian Brabandt <cb@256bit.org>
parents:
8865
diff
changeset
|
1000 /**/ |
8865
be36707a661a
commit https://github.com/vim/vim/commit/9e4043757cd2fc18d071fdd98abf297d74878943
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
1001 1720, |
be36707a661a
commit https://github.com/vim/vim/commit/9e4043757cd2fc18d071fdd98abf297d74878943
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
1002 /**/ |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8861
diff
changeset
|
1003 1719, |
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8861
diff
changeset
|
1004 /**/ |
8861
45fe799c9672
commit https://github.com/vim/vim/commit/d56374e25df0b317b01423a01f158157faa647fa
Christian Brabandt <cb@256bit.org>
parents:
8859
diff
changeset
|
1005 1718, |
45fe799c9672
commit https://github.com/vim/vim/commit/d56374e25df0b317b01423a01f158157faa647fa
Christian Brabandt <cb@256bit.org>
parents:
8859
diff
changeset
|
1006 /**/ |
8859
03250bc0c63a
commit https://github.com/vim/vim/commit/0e4c1de5560c7f8b4cae539ec8cff0949daba3fc
Christian Brabandt <cb@256bit.org>
parents:
8857
diff
changeset
|
1007 1717, |
03250bc0c63a
commit https://github.com/vim/vim/commit/0e4c1de5560c7f8b4cae539ec8cff0949daba3fc
Christian Brabandt <cb@256bit.org>
parents:
8857
diff
changeset
|
1008 /**/ |
8857
df68de6b6f1c
commit https://github.com/vim/vim/commit/baec5c1768098f9dd867b465aaabfdfb294f10c2
Christian Brabandt <cb@256bit.org>
parents:
8855
diff
changeset
|
1009 1716, |
df68de6b6f1c
commit https://github.com/vim/vim/commit/baec5c1768098f9dd867b465aaabfdfb294f10c2
Christian Brabandt <cb@256bit.org>
parents:
8855
diff
changeset
|
1010 /**/ |
8855
b76195a1e38e
commit https://github.com/vim/vim/commit/ddecc25947dbdd689d5bcaed32f298a08abdd497
Christian Brabandt <cb@256bit.org>
parents:
8853
diff
changeset
|
1011 1715, |
b76195a1e38e
commit https://github.com/vim/vim/commit/ddecc25947dbdd689d5bcaed32f298a08abdd497
Christian Brabandt <cb@256bit.org>
parents:
8853
diff
changeset
|
1012 /**/ |
8853
48b4c1c284fb
commit https://github.com/vim/vim/commit/54f1b7abf8c48b1dd997202258d1d0673ed4bd29
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1013 1714, |
48b4c1c284fb
commit https://github.com/vim/vim/commit/54f1b7abf8c48b1dd997202258d1d0673ed4bd29
Christian Brabandt <cb@256bit.org>
parents:
8851
diff
changeset
|
1014 /**/ |
8851
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8849
diff
changeset
|
1015 1713, |
1b38596644ba
commit https://github.com/vim/vim/commit/f80663f17b2f2499b45eb4467088704c8298c385
Christian Brabandt <cb@256bit.org>
parents:
8849
diff
changeset
|
1016 /**/ |
8849
9f40a379ff1e
commit https://github.com/vim/vim/commit/49b27326447d0827c59c6cd201d58f65c1163086
Christian Brabandt <cb@256bit.org>
parents:
8847
diff
changeset
|
1017 1712, |
9f40a379ff1e
commit https://github.com/vim/vim/commit/49b27326447d0827c59c6cd201d58f65c1163086
Christian Brabandt <cb@256bit.org>
parents:
8847
diff
changeset
|
1018 /**/ |
8847
470ea7526cc6
commit https://github.com/vim/vim/commit/a742e084b677f76c67e9e52c4f9fb9ab24002e20
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
1019 1711, |
470ea7526cc6
commit https://github.com/vim/vim/commit/a742e084b677f76c67e9e52c4f9fb9ab24002e20
Christian Brabandt <cb@256bit.org>
parents:
8845
diff
changeset
|
1020 /**/ |
8845
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8843
diff
changeset
|
1021 1710, |
210e767296d9
commit https://github.com/vim/vim/commit/17fe5e1aecbeff5ca4b2a821ede9badd5dddae59
Christian Brabandt <cb@256bit.org>
parents:
8843
diff
changeset
|
1022 /**/ |
8843
87a6a0d65788
commit https://github.com/vim/vim/commit/4c9ce053d9f2a94cd704342dd4c25670a5995cbd
Christian Brabandt <cb@256bit.org>
parents:
8841
diff
changeset
|
1023 1709, |
87a6a0d65788
commit https://github.com/vim/vim/commit/4c9ce053d9f2a94cd704342dd4c25670a5995cbd
Christian Brabandt <cb@256bit.org>
parents:
8841
diff
changeset
|
1024 /**/ |
8841
f196308a2813
commit https://github.com/vim/vim/commit/2a6fa564a3b5061c14ff63b8b0f12801df0b0ac2
Christian Brabandt <cb@256bit.org>
parents:
8839
diff
changeset
|
1025 1708, |
f196308a2813
commit https://github.com/vim/vim/commit/2a6fa564a3b5061c14ff63b8b0f12801df0b0ac2
Christian Brabandt <cb@256bit.org>
parents:
8839
diff
changeset
|
1026 /**/ |
8839
9fa567d13551
commit https://github.com/vim/vim/commit/0921ecff1c5a74541bad6c073e8ade32247403d8
Christian Brabandt <cb@256bit.org>
parents:
8837
diff
changeset
|
1027 1707, |
9fa567d13551
commit https://github.com/vim/vim/commit/0921ecff1c5a74541bad6c073e8ade32247403d8
Christian Brabandt <cb@256bit.org>
parents:
8837
diff
changeset
|
1028 /**/ |
8837
e6c92db1e8b8
commit https://github.com/vim/vim/commit/e185c1efba3cb2611ac303c39a08e908497cbac4
Christian Brabandt <cb@256bit.org>
parents:
8835
diff
changeset
|
1029 1706, |
e6c92db1e8b8
commit https://github.com/vim/vim/commit/e185c1efba3cb2611ac303c39a08e908497cbac4
Christian Brabandt <cb@256bit.org>
parents:
8835
diff
changeset
|
1030 /**/ |
8835
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1031 1705, |
c1a5623cfc86
commit https://github.com/vim/vim/commit/7c1c6dbb6817640fd3956a0d5417da23fde336d8
Christian Brabandt <cb@256bit.org>
parents:
8833
diff
changeset
|
1032 /**/ |
8833
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8831
diff
changeset
|
1033 1704, |
dc10bd23f918
commit https://github.com/vim/vim/commit/3dda7db4e1f7c4a8110a1f83001ec36b46693d27
Christian Brabandt <cb@256bit.org>
parents:
8831
diff
changeset
|
1034 /**/ |
8831
6f41d68aa68e
commit https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
Christian Brabandt <cb@256bit.org>
parents:
8829
diff
changeset
|
1035 1703, |
6f41d68aa68e
commit https://github.com/vim/vim/commit/b50e5f56861deb867478997397f7c784a7043233
Christian Brabandt <cb@256bit.org>
parents:
8829
diff
changeset
|
1036 /**/ |
8829
a2c27f6aaf3a
commit https://github.com/vim/vim/commit/4afc7c5d4a73340831077a02bfe1f74935e7f4a1
Christian Brabandt <cb@256bit.org>
parents:
8827
diff
changeset
|
1037 1702, |
a2c27f6aaf3a
commit https://github.com/vim/vim/commit/4afc7c5d4a73340831077a02bfe1f74935e7f4a1
Christian Brabandt <cb@256bit.org>
parents:
8827
diff
changeset
|
1038 /**/ |
8827
c154fbd3004f
commit https://github.com/vim/vim/commit/f9f22dbe4f90673ecce601a9dee4bb750ce3cd8f
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
1039 1701, |
c154fbd3004f
commit https://github.com/vim/vim/commit/f9f22dbe4f90673ecce601a9dee4bb750ce3cd8f
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
1040 /**/ |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8823
diff
changeset
|
1041 1700, |
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8823
diff
changeset
|
1042 /**/ |
8823
6d92bbe6c7de
commit https://github.com/vim/vim/commit/71fb0c146bef08dc276fc5793bd47366e6e0f32a
Christian Brabandt <cb@256bit.org>
parents:
8821
diff
changeset
|
1043 1699, |
6d92bbe6c7de
commit https://github.com/vim/vim/commit/71fb0c146bef08dc276fc5793bd47366e6e0f32a
Christian Brabandt <cb@256bit.org>
parents:
8821
diff
changeset
|
1044 /**/ |
8821
0bab7b98e930
commit https://github.com/vim/vim/commit/298c65971e884666d57c32bff6b730d517d9dc30
Christian Brabandt <cb@256bit.org>
parents:
8819
diff
changeset
|
1045 1698, |
0bab7b98e930
commit https://github.com/vim/vim/commit/298c65971e884666d57c32bff6b730d517d9dc30
Christian Brabandt <cb@256bit.org>
parents:
8819
diff
changeset
|
1046 /**/ |
8819
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
1047 1697, |
a1132255e3e1
commit https://github.com/vim/vim/commit/cb0700844c1274fe8bc0ceaffaee0ad21c406f30
Christian Brabandt <cb@256bit.org>
parents:
8817
diff
changeset
|
1048 /**/ |
8817
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8815
diff
changeset
|
1049 1696, |
b7eb7bbd71d0
commit https://github.com/vim/vim/commit/fd773e9e88add7d1ffef890fb9f3a00d613b4326
Christian Brabandt <cb@256bit.org>
parents:
8815
diff
changeset
|
1050 /**/ |
8815
50d9fb580ffe
commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents:
8813
diff
changeset
|
1051 1695, |
50d9fb580ffe
commit https://github.com/vim/vim/commit/8bc189e81aa98ba4aebb03a9dc9527a210fce816
Christian Brabandt <cb@256bit.org>
parents:
8813
diff
changeset
|
1052 /**/ |
8813
b92938076e40
commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1053 1694, |
b92938076e40
commit https://github.com/vim/vim/commit/f28d87146544e3b5d70aaa6a2513019f6de043ad
Christian Brabandt <cb@256bit.org>
parents:
8810
diff
changeset
|
1054 /**/ |
8810
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8808
diff
changeset
|
1055 1693, |
83d0b976d9b3
commit https://github.com/vim/vim/commit/864733ad92e30cd603314604af73f25106db4c90
Christian Brabandt <cb@256bit.org>
parents:
8808
diff
changeset
|
1056 /**/ |
8808
6b70b9cdebfc
commit https://github.com/vim/vim/commit/9bd547aca41799605c3a3f83444f6725c2d6eda9
Christian Brabandt <cb@256bit.org>
parents:
8806
diff
changeset
|
1057 1692, |
6b70b9cdebfc
commit https://github.com/vim/vim/commit/9bd547aca41799605c3a3f83444f6725c2d6eda9
Christian Brabandt <cb@256bit.org>
parents:
8806
diff
changeset
|
1058 /**/ |
8806
8fff73f17ff1
commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
1059 1691, |
8fff73f17ff1
commit https://github.com/vim/vim/commit/b681be175b6991cdc2b8ddd49b0e97e3fe2b201e
Christian Brabandt <cb@256bit.org>
parents:
8804
diff
changeset
|
1060 /**/ |
8804
75446578a52f
commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents:
8802
diff
changeset
|
1061 1690, |
75446578a52f
commit https://github.com/vim/vim/commit/42356150badca33b4e42dc8172abbceff2e86cbe
Christian Brabandt <cb@256bit.org>
parents:
8802
diff
changeset
|
1062 /**/ |
8802
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8800
diff
changeset
|
1063 1689, |
eaf11fa2fec8
commit https://github.com/vim/vim/commit/758535a1df4c5e86b45dddf12db2a54dea28ca40
Christian Brabandt <cb@256bit.org>
parents:
8800
diff
changeset
|
1064 /**/ |
8800
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8798
diff
changeset
|
1065 1688, |
f57949e1e9f1
commit https://github.com/vim/vim/commit/67c2c058ea34628bd575aac7ddba4cd3b244ed57
Christian Brabandt <cb@256bit.org>
parents:
8798
diff
changeset
|
1066 /**/ |
8798
176647a751d7
commit https://github.com/vim/vim/commit/bdf0bda968a53a55149a4c83a10a60c28e431305
Christian Brabandt <cb@256bit.org>
parents:
8796
diff
changeset
|
1067 1687, |
176647a751d7
commit https://github.com/vim/vim/commit/bdf0bda968a53a55149a4c83a10a60c28e431305
Christian Brabandt <cb@256bit.org>
parents:
8796
diff
changeset
|
1068 /**/ |
8796
fb764adba294
commit https://github.com/vim/vim/commit/e9c07270031e312082604d3505650f185aa65948
Christian Brabandt <cb@256bit.org>
parents:
8793
diff
changeset
|
1069 1686, |
fb764adba294
commit https://github.com/vim/vim/commit/e9c07270031e312082604d3505650f185aa65948
Christian Brabandt <cb@256bit.org>
parents:
8793
diff
changeset
|
1070 /**/ |
8793
dda254280bab
commit https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
Christian Brabandt <cb@256bit.org>
parents:
8791
diff
changeset
|
1071 1685, |
dda254280bab
commit https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
Christian Brabandt <cb@256bit.org>
parents:
8791
diff
changeset
|
1072 /**/ |
8791
43b5ff7837ea
commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents:
8789
diff
changeset
|
1073 1684, |
43b5ff7837ea
commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents:
8789
diff
changeset
|
1074 /**/ |
8789
667da8443275
commit https://github.com/vim/vim/commit/e609ad557c15e3e5d1e9ace2c578f48c5589c488
Christian Brabandt <cb@256bit.org>
parents:
8787
diff
changeset
|
1075 1683, |
667da8443275
commit https://github.com/vim/vim/commit/e609ad557c15e3e5d1e9ace2c578f48c5589c488
Christian Brabandt <cb@256bit.org>
parents:
8787
diff
changeset
|
1076 /**/ |
8787
33f5732d8932
commit https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
Christian Brabandt <cb@256bit.org>
parents:
8785
diff
changeset
|
1077 1682, |
33f5732d8932
commit https://github.com/vim/vim/commit/72188e9aae26e6191c68ff673ef145104b17c64f
Christian Brabandt <cb@256bit.org>
parents:
8785
diff
changeset
|
1078 /**/ |
8785
1cb59cd2d382
commit https://github.com/vim/vim/commit/ef9d9b94a8803c405884bb6914ed745ede57c596
Christian Brabandt <cb@256bit.org>
parents:
8783
diff
changeset
|
1079 1681, |
1cb59cd2d382
commit https://github.com/vim/vim/commit/ef9d9b94a8803c405884bb6914ed745ede57c596
Christian Brabandt <cb@256bit.org>
parents:
8783
diff
changeset
|
1080 /**/ |
8783
23b7f05a7f48
commit https://github.com/vim/vim/commit/925ccfde79bf734bc89269c705cebe2d49fe6444
Christian Brabandt <cb@256bit.org>
parents:
8781
diff
changeset
|
1081 1680, |
23b7f05a7f48
commit https://github.com/vim/vim/commit/925ccfde79bf734bc89269c705cebe2d49fe6444
Christian Brabandt <cb@256bit.org>
parents:
8781
diff
changeset
|
1082 /**/ |
8781
65be74c1467b
commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
1083 1679, |
65be74c1467b
commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Christian Brabandt <cb@256bit.org>
parents:
8779
diff
changeset
|
1084 /**/ |
8779
26495bd795d2
commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents:
8777
diff
changeset
|
1085 1678, |
26495bd795d2
commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28
Christian Brabandt <cb@256bit.org>
parents:
8777
diff
changeset
|
1086 /**/ |
8777
a345060d671a
commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3
Christian Brabandt <cb@256bit.org>
parents:
8775
diff
changeset
|
1087 1677, |
a345060d671a
commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3
Christian Brabandt <cb@256bit.org>
parents:
8775
diff
changeset
|
1088 /**/ |
8775
d5136647ce31
commit https://github.com/vim/vim/commit/fead3ac9a35e0fc358141d3eb19574cd8a3ecb55
Christian Brabandt <cb@256bit.org>
parents:
8773
diff
changeset
|
1089 1676, |
d5136647ce31
commit https://github.com/vim/vim/commit/fead3ac9a35e0fc358141d3eb19574cd8a3ecb55
Christian Brabandt <cb@256bit.org>
parents:
8773
diff
changeset
|
1090 /**/ |
8773
08944b17c29c
commit https://github.com/vim/vim/commit/e101204906e10f1e100e2f9017985c61f26b03ac
Christian Brabandt <cb@256bit.org>
parents:
8771
diff
changeset
|
1091 1675, |
08944b17c29c
commit https://github.com/vim/vim/commit/e101204906e10f1e100e2f9017985c61f26b03ac
Christian Brabandt <cb@256bit.org>
parents:
8771
diff
changeset
|
1092 /**/ |
8771
57cafbda13ad
commit https://github.com/vim/vim/commit/cf2d8dee5117b9add3a3f5fc91b3569437e7d359
Christian Brabandt <cb@256bit.org>
parents:
8769
diff
changeset
|
1093 1674, |
57cafbda13ad
commit https://github.com/vim/vim/commit/cf2d8dee5117b9add3a3f5fc91b3569437e7d359
Christian Brabandt <cb@256bit.org>
parents:
8769
diff
changeset
|
1094 /**/ |
8769
7ac9d9e98892
commit https://github.com/vim/vim/commit/2946d0236dc9e23ec0050feacdb959b9ae5672a8
Christian Brabandt <cb@256bit.org>
parents:
8767
diff
changeset
|
1095 1673, |
7ac9d9e98892
commit https://github.com/vim/vim/commit/2946d0236dc9e23ec0050feacdb959b9ae5672a8
Christian Brabandt <cb@256bit.org>
parents:
8767
diff
changeset
|
1096 /**/ |
8767
3c8ddce4118e
commit https://github.com/vim/vim/commit/e934e8f5c1c5c64411d98583ecbcf89e5ad01073
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
1097 1672, |
3c8ddce4118e
commit https://github.com/vim/vim/commit/e934e8f5c1c5c64411d98583ecbcf89e5ad01073
Christian Brabandt <cb@256bit.org>
parents:
8765
diff
changeset
|
1098 /**/ |
8765
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8763
diff
changeset
|
1099 1671, |
3daf70d22168
commit https://github.com/vim/vim/commit/61264d99692803eec76a171916ab9720c75536b0
Christian Brabandt <cb@256bit.org>
parents:
8763
diff
changeset
|
1100 /**/ |
8763
4b83af41f5db
commit https://github.com/vim/vim/commit/a32095fc8fdf5fe3d487c86d9cc54adb1236731e
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
1101 1670, |
4b83af41f5db
commit https://github.com/vim/vim/commit/a32095fc8fdf5fe3d487c86d9cc54adb1236731e
Christian Brabandt <cb@256bit.org>
parents:
8761
diff
changeset
|
1102 /**/ |
8761
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8759
diff
changeset
|
1103 1669, |
f8707ec9efe4
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Christian Brabandt <cb@256bit.org>
parents:
8759
diff
changeset
|
1104 /**/ |
8759
cc2ef7367643
commit https://github.com/vim/vim/commit/ee1f7b3cb71684aaa9bf457e2caf9d02187e6b7c
Christian Brabandt <cb@256bit.org>
parents:
8757
diff
changeset
|
1105 1668, |
cc2ef7367643
commit https://github.com/vim/vim/commit/ee1f7b3cb71684aaa9bf457e2caf9d02187e6b7c
Christian Brabandt <cb@256bit.org>
parents:
8757
diff
changeset
|
1106 /**/ |
8757
4fb37555e814
commit https://github.com/vim/vim/commit/84e1d2b21a424f2687b61daaf84f5fc4f1ab0abe
Christian Brabandt <cb@256bit.org>
parents:
8755
diff
changeset
|
1107 1667, |
4fb37555e814
commit https://github.com/vim/vim/commit/84e1d2b21a424f2687b61daaf84f5fc4f1ab0abe
Christian Brabandt <cb@256bit.org>
parents:
8755
diff
changeset
|
1108 /**/ |
8755
7038ec89d1fd
commit https://github.com/vim/vim/commit/46c00a6565b8f1f4b7b1041d03eaceaf6ffc4aee
Christian Brabandt <cb@256bit.org>
parents:
8753
diff
changeset
|
1109 1666, |
7038ec89d1fd
commit https://github.com/vim/vim/commit/46c00a6565b8f1f4b7b1041d03eaceaf6ffc4aee
Christian Brabandt <cb@256bit.org>
parents:
8753
diff
changeset
|
1110 /**/ |
8753
df91c8263f04
commit https://github.com/vim/vim/commit/8038568722a0aad72d001edf4972c29abab57f8f
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1111 1665, |
df91c8263f04
commit https://github.com/vim/vim/commit/8038568722a0aad72d001edf4972c29abab57f8f
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
1112 /**/ |
8751
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8749
diff
changeset
|
1113 1664, |
7f974075eb8f
commit https://github.com/vim/vim/commit/89c64d557dbe0bacfdd7b2872411b00cc1523d85
Christian Brabandt <cb@256bit.org>
parents:
8749
diff
changeset
|
1114 /**/ |
8749
65a5a18d3acf
commit https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
Christian Brabandt <cb@256bit.org>
parents:
8746
diff
changeset
|
1115 1663, |
65a5a18d3acf
commit https://github.com/vim/vim/commit/ea6553bec340920d8a09c7210cdc2d218e25ace2
Christian Brabandt <cb@256bit.org>
parents:
8746
diff
changeset
|
1116 /**/ |
8746
4c38a4733578
commit https://github.com/vim/vim/commit/c4dcd60c76666bf113719f929709ad6120eb6528
Christian Brabandt <cb@256bit.org>
parents:
8744
diff
changeset
|
1117 1662, |
4c38a4733578
commit https://github.com/vim/vim/commit/c4dcd60c76666bf113719f929709ad6120eb6528
Christian Brabandt <cb@256bit.org>
parents:
8744
diff
changeset
|
1118 /**/ |
8744
ff9973bbbfcb
commit https://github.com/vim/vim/commit/fa8b2e173dd5f6c4a5cfd326abdcf68b8eebf90d
Christian Brabandt <cb@256bit.org>
parents:
8742
diff
changeset
|
1119 1661, |
ff9973bbbfcb
commit https://github.com/vim/vim/commit/fa8b2e173dd5f6c4a5cfd326abdcf68b8eebf90d
Christian Brabandt <cb@256bit.org>
parents:
8742
diff
changeset
|
1120 /**/ |
8742
03e5171c23e5
commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
1121 1660, |
03e5171c23e5
commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a
Christian Brabandt <cb@256bit.org>
parents:
8740
diff
changeset
|
1122 /**/ |
8740
a35b596cd7ac
commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e
Christian Brabandt <cb@256bit.org>
parents:
8738
diff
changeset
|
1123 1659, |
a35b596cd7ac
commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e
Christian Brabandt <cb@256bit.org>
parents:
8738
diff
changeset
|
1124 /**/ |
8738
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8736
diff
changeset
|
1125 1658, |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
8736
diff
changeset
|
1126 /**/ |
8736
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8734
diff
changeset
|
1127 1657, |
06bf71f13eb7
commit https://github.com/vim/vim/commit/8fdd7210479f0c486822ad8934087b4bfd8a4765
Christian Brabandt <cb@256bit.org>
parents:
8734
diff
changeset
|
1128 /**/ |
8734
986f7c00d43d
commit https://github.com/vim/vim/commit/92e35efaf6a3278e4729115648997f09cd4005f5
Christian Brabandt <cb@256bit.org>
parents:
8732
diff
changeset
|
1129 1656, |
986f7c00d43d
commit https://github.com/vim/vim/commit/92e35efaf6a3278e4729115648997f09cd4005f5
Christian Brabandt <cb@256bit.org>
parents:
8732
diff
changeset
|
1130 /**/ |
8732
29765df3a866
commit https://github.com/vim/vim/commit/1e7885abe8daa793fd9328d0fd6c456214cb467e
Christian Brabandt <cb@256bit.org>
parents:
8730
diff
changeset
|
1131 1655, |
29765df3a866
commit https://github.com/vim/vim/commit/1e7885abe8daa793fd9328d0fd6c456214cb467e
Christian Brabandt <cb@256bit.org>
parents:
8730
diff
changeset
|
1132 /**/ |
8730
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8728
diff
changeset
|
1133 1654, |
c1ac169ee618
commit https://github.com/vim/vim/commit/52c6eaffd43a8c8865f8d6ed7cde0a8b137479e2
Christian Brabandt <cb@256bit.org>
parents:
8728
diff
changeset
|
1134 /**/ |
8728
b1ca6aa215b7
commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
1135 1653, |
b1ca6aa215b7
commit https://github.com/vim/vim/commit/da64ab322ae35e473a24b211d22d05b1439aa05c
Christian Brabandt <cb@256bit.org>
parents:
8726
diff
changeset
|
1136 /**/ |
8726
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
8724
diff
changeset
|
1137 1652, |
4c5c08316979
commit https://github.com/vim/vim/commit/610cc1b9b3c8104382f5506606c1f87118c28114
Christian Brabandt <cb@256bit.org>
parents:
8724
diff
changeset
|
1138 /**/ |
8724
e6d1608ca601
commit https://github.com/vim/vim/commit/780d4c3fff3c06baa3135a9f9739c56a0c280a94
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1139 1651, |
e6d1608ca601
commit https://github.com/vim/vim/commit/780d4c3fff3c06baa3135a9f9739c56a0c280a94
Christian Brabandt <cb@256bit.org>
parents:
8722
diff
changeset
|
1140 /**/ |
8722
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8720
diff
changeset
|
1141 1650, |
ecb57048c2a8
commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d
Christian Brabandt <cb@256bit.org>
parents:
8720
diff
changeset
|
1142 /**/ |
8720
9380c37723f8
commit https://github.com/vim/vim/commit/aedfcbe1e6c7df6edcd6756d7601bfdec7dd2087
Christian Brabandt <cb@256bit.org>
parents:
8718
diff
changeset
|
1143 1649, |
9380c37723f8
commit https://github.com/vim/vim/commit/aedfcbe1e6c7df6edcd6756d7601bfdec7dd2087
Christian Brabandt <cb@256bit.org>
parents:
8718
diff
changeset
|
1144 /**/ |
8718
f1840a719771
commit https://github.com/vim/vim/commit/bee6c0cf86a75faa2aa893f2c9db82fd944a89a5
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1145 1648, |
f1840a719771
commit https://github.com/vim/vim/commit/bee6c0cf86a75faa2aa893f2c9db82fd944a89a5
Christian Brabandt <cb@256bit.org>
parents:
8716
diff
changeset
|
1146 /**/ |
8716
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8714
diff
changeset
|
1147 1647, |
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8714
diff
changeset
|
1148 /**/ |
8714
a5224eeb3546
commit https://github.com/vim/vim/commit/4c90861e9f864eab94f043c432acff508396ed62
Christian Brabandt <cb@256bit.org>
parents:
8712
diff
changeset
|
1149 1646, |
a5224eeb3546
commit https://github.com/vim/vim/commit/4c90861e9f864eab94f043c432acff508396ed62
Christian Brabandt <cb@256bit.org>
parents:
8712
diff
changeset
|
1150 /**/ |
8712
65130a9d3386
commit https://github.com/vim/vim/commit/c5fbe8af4cd80789f831b78aa44ff0b238138769
Christian Brabandt <cb@256bit.org>
parents:
8710
diff
changeset
|
1151 1645, |
65130a9d3386
commit https://github.com/vim/vim/commit/c5fbe8af4cd80789f831b78aa44ff0b238138769
Christian Brabandt <cb@256bit.org>
parents:
8710
diff
changeset
|
1152 /**/ |
8710
af3cb5c068fd
commit https://github.com/vim/vim/commit/24c77a1e3a2ad510582116229462b482d69b4b8e
Christian Brabandt <cb@256bit.org>
parents:
8708
diff
changeset
|
1153 1644, |
af3cb5c068fd
commit https://github.com/vim/vim/commit/24c77a1e3a2ad510582116229462b482d69b4b8e
Christian Brabandt <cb@256bit.org>
parents:
8708
diff
changeset
|
1154 /**/ |
8708
31f9fa8e1532
commit https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
Christian Brabandt <cb@256bit.org>
parents:
8706
diff
changeset
|
1155 1643, |
31f9fa8e1532
commit https://github.com/vim/vim/commit/d4caf5c16a9f1c9477d426e58d8d3dc47ab5f066
Christian Brabandt <cb@256bit.org>
parents:
8706
diff
changeset
|
1156 /**/ |
8706
f63892cfe283
commit https://github.com/vim/vim/commit/6a08454b93784c92296d4c08456401cbaa74c9d5
Christian Brabandt <cb@256bit.org>
parents:
8704
diff
changeset
|
1157 1642, |
f63892cfe283
commit https://github.com/vim/vim/commit/6a08454b93784c92296d4c08456401cbaa74c9d5
Christian Brabandt <cb@256bit.org>
parents:
8704
diff
changeset
|
1158 /**/ |
8704
8af6e33e4d4c
commit https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1159 1641, |
8af6e33e4d4c
commit https://github.com/vim/vim/commit/5ca84ce4aa2832041f843e624c222bbc1f4d3e14
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1160 /**/ |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8700
diff
changeset
|
1161 1640, |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8700
diff
changeset
|
1162 /**/ |
8700
077706f01e80
commit https://github.com/vim/vim/commit/5f436fcf9960c95702820d5ac1b8b612995f6c04
Christian Brabandt <cb@256bit.org>
parents:
8698
diff
changeset
|
1163 1639, |
077706f01e80
commit https://github.com/vim/vim/commit/5f436fcf9960c95702820d5ac1b8b612995f6c04
Christian Brabandt <cb@256bit.org>
parents:
8698
diff
changeset
|
1164 /**/ |
8698
13b0ed12a78a
commit https://github.com/vim/vim/commit/e4eb6ff089e79e659acf33c17dd0fda7177de526
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
1165 1638, |
13b0ed12a78a
commit https://github.com/vim/vim/commit/e4eb6ff089e79e659acf33c17dd0fda7177de526
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
1166 /**/ |
8696
869727342e43
commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
1167 1637, |
869727342e43
commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents:
8694
diff
changeset
|
1168 /**/ |
8694
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8692
diff
changeset
|
1169 1636, |
f2e81ae5ab48
commit https://github.com/vim/vim/commit/6135d0d803084f6c2dd8672df1bef4c6e58f9e19
Christian Brabandt <cb@256bit.org>
parents:
8692
diff
changeset
|
1170 /**/ |
8692
683b3702970a
commit https://github.com/vim/vim/commit/6a06363861fcc6beca6e06b39385da411ce58633
Christian Brabandt <cb@256bit.org>
parents:
8690
diff
changeset
|
1171 1635, |
683b3702970a
commit https://github.com/vim/vim/commit/6a06363861fcc6beca6e06b39385da411ce58633
Christian Brabandt <cb@256bit.org>
parents:
8690
diff
changeset
|
1172 /**/ |
8690
6a1becf4f282
commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents:
8688
diff
changeset
|
1173 1634, |
6a1becf4f282
commit https://github.com/vim/vim/commit/8e08125d3a9afd0b16cd84454ae9ddad0abaaab0
Christian Brabandt <cb@256bit.org>
parents:
8688
diff
changeset
|
1174 /**/ |
8688
7ec1aa86dc80
commit https://github.com/vim/vim/commit/b763eba7ae3540cd879f7c29882a29308f9688db
Christian Brabandt <cb@256bit.org>
parents:
8686
diff
changeset
|
1175 1633, |
7ec1aa86dc80
commit https://github.com/vim/vim/commit/b763eba7ae3540cd879f7c29882a29308f9688db
Christian Brabandt <cb@256bit.org>
parents:
8686
diff
changeset
|
1176 /**/ |
8686
92657771648f
commit https://github.com/vim/vim/commit/6098957458e538682f54e23de217da06200876a3
Christian Brabandt <cb@256bit.org>
parents:
8684
diff
changeset
|
1177 1632, |
92657771648f
commit https://github.com/vim/vim/commit/6098957458e538682f54e23de217da06200876a3
Christian Brabandt <cb@256bit.org>
parents:
8684
diff
changeset
|
1178 /**/ |
8684
6e567914f55a
commit https://github.com/vim/vim/commit/573e445664eef399a72b1bfc975260a639605fef
Christian Brabandt <cb@256bit.org>
parents:
8682
diff
changeset
|
1179 1631, |
6e567914f55a
commit https://github.com/vim/vim/commit/573e445664eef399a72b1bfc975260a639605fef
Christian Brabandt <cb@256bit.org>
parents:
8682
diff
changeset
|
1180 /**/ |
8682
4ce551bd5024
commit https://github.com/vim/vim/commit/d63aff0a65b955447de2fd8bfdaee29b61ce2843
Christian Brabandt <cb@256bit.org>
parents:
8680
diff
changeset
|
1181 1630, |
4ce551bd5024
commit https://github.com/vim/vim/commit/d63aff0a65b955447de2fd8bfdaee29b61ce2843
Christian Brabandt <cb@256bit.org>
parents:
8680
diff
changeset
|
1182 /**/ |
8680
131e651fb347
commit https://github.com/vim/vim/commit/b86f10ee10bdf932df02bdaf601dffa671518a47
Christian Brabandt <cb@256bit.org>
parents:
8678
diff
changeset
|
1183 1629, |
131e651fb347
commit https://github.com/vim/vim/commit/b86f10ee10bdf932df02bdaf601dffa671518a47
Christian Brabandt <cb@256bit.org>
parents:
8678
diff
changeset
|
1184 /**/ |
8678
a4e7f4a62193
commit https://github.com/vim/vim/commit/3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6
Christian Brabandt <cb@256bit.org>
parents:
8676
diff
changeset
|
1185 1628, |
a4e7f4a62193
commit https://github.com/vim/vim/commit/3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6
Christian Brabandt <cb@256bit.org>
parents:
8676
diff
changeset
|
1186 /**/ |
8676
289765409225
commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d
Christian Brabandt <cb@256bit.org>
parents:
8674
diff
changeset
|
1187 1627, |
289765409225
commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d
Christian Brabandt <cb@256bit.org>
parents:
8674
diff
changeset
|
1188 /**/ |
8674
4a4d5815a974
commit https://github.com/vim/vim/commit/580984e026a46ea0c29789897b701057423b4923
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
1189 1626, |
4a4d5815a974
commit https://github.com/vim/vim/commit/580984e026a46ea0c29789897b701057423b4923
Christian Brabandt <cb@256bit.org>
parents:
8671
diff
changeset
|
1190 /**/ |
8671
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8669
diff
changeset
|
1191 1625, |
8f6bc5626829
commit https://github.com/vim/vim/commit/be6aa46c4d8948e164f7d181dc19ed2fc4818395
Christian Brabandt <cb@256bit.org>
parents:
8669
diff
changeset
|
1192 /**/ |
8669
06848fe9c816
commit https://github.com/vim/vim/commit/03602ec28ed25739e88b2c835adb0662d3720bb2
Christian Brabandt <cb@256bit.org>
parents:
8667
diff
changeset
|
1193 1624, |
06848fe9c816
commit https://github.com/vim/vim/commit/03602ec28ed25739e88b2c835adb0662d3720bb2
Christian Brabandt <cb@256bit.org>
parents:
8667
diff
changeset
|
1194 /**/ |
8667
8c80c21a1885
commit https://github.com/vim/vim/commit/e9d6a298df6108e2044b1f0da5a2712f0c51c7d9
Christian Brabandt <cb@256bit.org>
parents:
8665
diff
changeset
|
1195 1623, |
8c80c21a1885
commit https://github.com/vim/vim/commit/e9d6a298df6108e2044b1f0da5a2712f0c51c7d9
Christian Brabandt <cb@256bit.org>
parents:
8665
diff
changeset
|
1196 /**/ |
8665
7a2346148551
commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Christian Brabandt <cb@256bit.org>
parents:
8663
diff
changeset
|
1197 1622, |
7a2346148551
commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Christian Brabandt <cb@256bit.org>
parents:
8663
diff
changeset
|
1198 /**/ |
8663
b2a48aabe21f
commit https://github.com/vim/vim/commit/a63cdb5ed685181c377ee89f1d1de6a97dfeb151
Christian Brabandt <cb@256bit.org>
parents:
8661
diff
changeset
|
1199 1621, |
b2a48aabe21f
commit https://github.com/vim/vim/commit/a63cdb5ed685181c377ee89f1d1de6a97dfeb151
Christian Brabandt <cb@256bit.org>
parents:
8661
diff
changeset
|
1200 /**/ |
8661
a931160ffc41
commit https://github.com/vim/vim/commit/4077b33a8370afb3d5ae74e556a0119cf51fe294
Christian Brabandt <cb@256bit.org>
parents:
8659
diff
changeset
|
1201 1620, |
a931160ffc41
commit https://github.com/vim/vim/commit/4077b33a8370afb3d5ae74e556a0119cf51fe294
Christian Brabandt <cb@256bit.org>
parents:
8659
diff
changeset
|
1202 /**/ |
8659
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8657
diff
changeset
|
1203 1619, |
72e2f387466f
commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents:
8657
diff
changeset
|
1204 /**/ |
8657
c70eea7a7677
commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Christian Brabandt <cb@256bit.org>
parents:
8655
diff
changeset
|
1205 1618, |
c70eea7a7677
commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Christian Brabandt <cb@256bit.org>
parents:
8655
diff
changeset
|
1206 /**/ |
8655
1eb302bf2475
commit https://github.com/vim/vim/commit/ba61ac0d61f46de7d29c64bb0de6d25c2e378be0
Christian Brabandt <cb@256bit.org>
parents:
8653
diff
changeset
|
1207 1617, |
1eb302bf2475
commit https://github.com/vim/vim/commit/ba61ac0d61f46de7d29c64bb0de6d25c2e378be0
Christian Brabandt <cb@256bit.org>
parents:
8653
diff
changeset
|
1208 /**/ |
8653
d80edead9675
commit https://github.com/vim/vim/commit/ac74d5e86cd16b42e81ba48f58f3d45c72758248
Christian Brabandt <cb@256bit.org>
parents:
8651
diff
changeset
|
1209 1616, |
d80edead9675
commit https://github.com/vim/vim/commit/ac74d5e86cd16b42e81ba48f58f3d45c72758248
Christian Brabandt <cb@256bit.org>
parents:
8651
diff
changeset
|
1210 /**/ |
8651
8a106a24d128
commit https://github.com/vim/vim/commit/829c8e369630a7cbbdac015d8177b7fde25e2f19
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1211 1615, |
8a106a24d128
commit https://github.com/vim/vim/commit/829c8e369630a7cbbdac015d8177b7fde25e2f19
Christian Brabandt <cb@256bit.org>
parents:
8649
diff
changeset
|
1212 /**/ |
8649
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
1213 1614, |
ec78ecf15de7
commit https://github.com/vim/vim/commit/7eba3d2cbf19e731dc51652bc26099cc253d538a
Christian Brabandt <cb@256bit.org>
parents:
8647
diff
changeset
|
1214 /**/ |
8647
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
1215 1613, |
59866aabe737
commit https://github.com/vim/vim/commit/064154c3fedd6a46ca2f61463d7e5567bd22d9f1
Christian Brabandt <cb@256bit.org>
parents:
8645
diff
changeset
|
1216 /**/ |
8645
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1217 1612, |
f4819f0fc5ad
commit https://github.com/vim/vim/commit/d293b2b9d43ee4b7b48ca6974202cbf319438975
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1218 /**/ |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
1219 1611, |
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
1220 /**/ |
8641
0af716a4f5d2
commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents:
8639
diff
changeset
|
1221 1610, |
0af716a4f5d2
commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents:
8639
diff
changeset
|
1222 /**/ |
8639
91286ec46e97
commit https://github.com/vim/vim/commit/4d581a826c54cecdde3001fdf0a5becf67e54cfd
Christian Brabandt <cb@256bit.org>
parents:
8637
diff
changeset
|
1223 1609, |
91286ec46e97
commit https://github.com/vim/vim/commit/4d581a826c54cecdde3001fdf0a5becf67e54cfd
Christian Brabandt <cb@256bit.org>
parents:
8637
diff
changeset
|
1224 /**/ |
8637
ff41ece2e4b8
commit https://github.com/vim/vim/commit/5c29154b521e9948190be653cfda666ecbb63b5b
Christian Brabandt <cb@256bit.org>
parents:
8635
diff
changeset
|
1225 1608, |
ff41ece2e4b8
commit https://github.com/vim/vim/commit/5c29154b521e9948190be653cfda666ecbb63b5b
Christian Brabandt <cb@256bit.org>
parents:
8635
diff
changeset
|
1226 /**/ |
8635
3a38d465f731
commit https://github.com/vim/vim/commit/f0e86a0dbddc18568910e9e4aaae0cd88ca8087a
Christian Brabandt <cb@256bit.org>
parents:
8633
diff
changeset
|
1227 1607, |
3a38d465f731
commit https://github.com/vim/vim/commit/f0e86a0dbddc18568910e9e4aaae0cd88ca8087a
Christian Brabandt <cb@256bit.org>
parents:
8633
diff
changeset
|
1228 /**/ |
8633
80d78e1ab787
commit https://github.com/vim/vim/commit/953cc7fb139dc2ba8590f8b03a095b63f4e1208f
Christian Brabandt <cb@256bit.org>
parents:
8631
diff
changeset
|
1229 1606, |
80d78e1ab787
commit https://github.com/vim/vim/commit/953cc7fb139dc2ba8590f8b03a095b63f4e1208f
Christian Brabandt <cb@256bit.org>
parents:
8631
diff
changeset
|
1230 /**/ |
8631
e5f2e0f8af10
commit https://github.com/vim/vim/commit/3905e291fe4375ca5c59efa9ffcb01a39c7be3a9
Christian Brabandt <cb@256bit.org>
parents:
8629
diff
changeset
|
1231 1605, |
e5f2e0f8af10
commit https://github.com/vim/vim/commit/3905e291fe4375ca5c59efa9ffcb01a39c7be3a9
Christian Brabandt <cb@256bit.org>
parents:
8629
diff
changeset
|
1232 /**/ |
8629
54ac275e3fc4
commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1233 1604, |
54ac275e3fc4
commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233
Christian Brabandt <cb@256bit.org>
parents:
8627
diff
changeset
|
1234 /**/ |
8627
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8625
diff
changeset
|
1235 1603, |
7c98c5d0298c
commit https://github.com/vim/vim/commit/bfb96c047b79b2aab5fd57a2472871508819f3ef
Christian Brabandt <cb@256bit.org>
parents:
8625
diff
changeset
|
1236 /**/ |
8625
d98fbc8dca8e
commit https://github.com/vim/vim/commit/cff572abb922d49455b01484e99b98c371fa4560
Christian Brabandt <cb@256bit.org>
parents:
8623
diff
changeset
|
1237 1602, |
d98fbc8dca8e
commit https://github.com/vim/vim/commit/cff572abb922d49455b01484e99b98c371fa4560
Christian Brabandt <cb@256bit.org>
parents:
8623
diff
changeset
|
1238 /**/ |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
8621
diff
changeset
|
1239 1601, |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
8621
diff
changeset
|
1240 /**/ |
8621
6b9c960d68b3
commit https://github.com/vim/vim/commit/062cc1857d1c990287384409332b2b050bc9c82e
Christian Brabandt <cb@256bit.org>
parents:
8619
diff
changeset
|
1241 1600, |
6b9c960d68b3
commit https://github.com/vim/vim/commit/062cc1857d1c990287384409332b2b050bc9c82e
Christian Brabandt <cb@256bit.org>
parents:
8619
diff
changeset
|
1242 /**/ |
8619
5c9603b1084d
commit https://github.com/vim/vim/commit/8a82c7fa5ec55b59782f7a7846d6152ccf3a22c7
Christian Brabandt <cb@256bit.org>
parents:
8617
diff
changeset
|
1243 1599, |
5c9603b1084d
commit https://github.com/vim/vim/commit/8a82c7fa5ec55b59782f7a7846d6152ccf3a22c7
Christian Brabandt <cb@256bit.org>
parents:
8617
diff
changeset
|
1244 /**/ |
8617
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8615
diff
changeset
|
1245 1598, |
eab968bf3ce7
commit https://github.com/vim/vim/commit/6d8d849f5ac8a3a228c62fd29e8f40ae1b8381fc
Christian Brabandt <cb@256bit.org>
parents:
8615
diff
changeset
|
1246 /**/ |
8615
99aed8c33bbf
commit https://github.com/vim/vim/commit/9f6154f26ef17b0a7efd2fcdd79cabfe510f28b4
Christian Brabandt <cb@256bit.org>
parents:
8613
diff
changeset
|
1247 1597, |
99aed8c33bbf
commit https://github.com/vim/vim/commit/9f6154f26ef17b0a7efd2fcdd79cabfe510f28b4
Christian Brabandt <cb@256bit.org>
parents:
8613
diff
changeset
|
1248 /**/ |
8613
3dacf96b4020
commit https://github.com/vim/vim/commit/ba8cd122ef60a7c71a7723be0d635f0c2d4556ab
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
1249 1596, |
3dacf96b4020
commit https://github.com/vim/vim/commit/ba8cd122ef60a7c71a7723be0d635f0c2d4556ab
Christian Brabandt <cb@256bit.org>
parents:
8611
diff
changeset
|
1250 /**/ |
8611
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
1251 1595, |
f12689430f4b
commit https://github.com/vim/vim/commit/c0a1d7f3ad4d41b64c6c881bb8ad7c201f8439a3
Christian Brabandt <cb@256bit.org>
parents:
8609
diff
changeset
|
1252 /**/ |
8609
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8607
diff
changeset
|
1253 1594, |
40bb2619f5e2
commit https://github.com/vim/vim/commit/943bb2b8eb80266a5de143feeab4c842c4b68c61
Christian Brabandt <cb@256bit.org>
parents:
8607
diff
changeset
|
1254 /**/ |
8607
d762390fb27b
commit https://github.com/vim/vim/commit/a889cf4642a89537e3eeecf6d30326bf6aa4776f
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
1255 1593, |
d762390fb27b
commit https://github.com/vim/vim/commit/a889cf4642a89537e3eeecf6d30326bf6aa4776f
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
1256 /**/ |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
1257 1592, |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
1258 /**/ |
8603
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8601
diff
changeset
|
1259 1591, |
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
8601
diff
changeset
|
1260 /**/ |
8601
46306a98407c
commit https://github.com/vim/vim/commit/3f242a844e83a5a04943869f6e3bcbf8650dc465
Christian Brabandt <cb@256bit.org>
parents:
8599
diff
changeset
|
1261 1590, |
46306a98407c
commit https://github.com/vim/vim/commit/3f242a844e83a5a04943869f6e3bcbf8650dc465
Christian Brabandt <cb@256bit.org>
parents:
8599
diff
changeset
|
1262 /**/ |
8599
ddb04cbe1e0c
commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
1263 1589, |
ddb04cbe1e0c
commit https://github.com/vim/vim/commit/9e63f61cb01c70fd71652f54b2d01ee27b2a3534
Christian Brabandt <cb@256bit.org>
parents:
8597
diff
changeset
|
1264 /**/ |
8597
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8595
diff
changeset
|
1265 1588, |
51de88bf954d
commit https://github.com/vim/vim/commit/1ff2b64b11e7d263c6853745d5e594bd8f94b91e
Christian Brabandt <cb@256bit.org>
parents:
8595
diff
changeset
|
1266 /**/ |
8595
887b378f29d1
commit https://github.com/vim/vim/commit/1c8b4edb9b6cd5248925f3f06ec82486be9fb4ea
Christian Brabandt <cb@256bit.org>
parents:
8593
diff
changeset
|
1267 1587, |
887b378f29d1
commit https://github.com/vim/vim/commit/1c8b4edb9b6cd5248925f3f06ec82486be9fb4ea
Christian Brabandt <cb@256bit.org>
parents:
8593
diff
changeset
|
1268 /**/ |
8593
dc36cef103de
commit https://github.com/vim/vim/commit/8a1bb046378f4bc68d6a04af2eab80fb3ce04da6
Christian Brabandt <cb@256bit.org>
parents:
8591
diff
changeset
|
1269 1586, |
dc36cef103de
commit https://github.com/vim/vim/commit/8a1bb046378f4bc68d6a04af2eab80fb3ce04da6
Christian Brabandt <cb@256bit.org>
parents:
8591
diff
changeset
|
1270 /**/ |
8591
5bc958a92849
commit https://github.com/vim/vim/commit/d22a18928ebcb465393da1418bb88204b97badb1
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1271 1585, |
5bc958a92849
commit https://github.com/vim/vim/commit/d22a18928ebcb465393da1418bb88204b97badb1
Christian Brabandt <cb@256bit.org>
parents:
8589
diff
changeset
|
1272 /**/ |
8589
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8587
diff
changeset
|
1273 1584, |
e32ab146b6c9
commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents:
8587
diff
changeset
|
1274 /**/ |
8587
fb8d7086e99d
commit https://github.com/vim/vim/commit/597385ab43093ba27adcb86cdc1b46aba86a0093
Christian Brabandt <cb@256bit.org>
parents:
8585
diff
changeset
|
1275 1583, |
fb8d7086e99d
commit https://github.com/vim/vim/commit/597385ab43093ba27adcb86cdc1b46aba86a0093
Christian Brabandt <cb@256bit.org>
parents:
8585
diff
changeset
|
1276 /**/ |
8585
ce37bbedcb65
commit https://github.com/vim/vim/commit/6f2e4b36c9d9908e1cace2b1b96e2c154a837bc2
Christian Brabandt <cb@256bit.org>
parents:
8583
diff
changeset
|
1277 1582, |
ce37bbedcb65
commit https://github.com/vim/vim/commit/6f2e4b36c9d9908e1cace2b1b96e2c154a837bc2
Christian Brabandt <cb@256bit.org>
parents:
8583
diff
changeset
|
1278 /**/ |
8583
537bbbd4e987
commit https://github.com/vim/vim/commit/65639032bb7b17996cd255d1508a1df4ad528a1f
Christian Brabandt <cb@256bit.org>
parents:
8581
diff
changeset
|
1279 1581, |
537bbbd4e987
commit https://github.com/vim/vim/commit/65639032bb7b17996cd255d1508a1df4ad528a1f
Christian Brabandt <cb@256bit.org>
parents:
8581
diff
changeset
|
1280 /**/ |
8581
fd454847836d
commit https://github.com/vim/vim/commit/7a5c46a9df7ef01a4f6a620861c35400d5ad28d9
Christian Brabandt <cb@256bit.org>
parents:
8579
diff
changeset
|
1281 1580, |
fd454847836d
commit https://github.com/vim/vim/commit/7a5c46a9df7ef01a4f6a620861c35400d5ad28d9
Christian Brabandt <cb@256bit.org>
parents:
8579
diff
changeset
|
1282 /**/ |
8579
556817999955
commit https://github.com/vim/vim/commit/a3dc5e92dcb79bdc4f0103e6eb91de4c7a6ee9a7
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
1283 1579, |
556817999955
commit https://github.com/vim/vim/commit/a3dc5e92dcb79bdc4f0103e6eb91de4c7a6ee9a7
Christian Brabandt <cb@256bit.org>
parents:
8577
diff
changeset
|
1284 /**/ |
8577
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
1285 1578, |
63dc856bd13d
commit https://github.com/vim/vim/commit/975b5271eed4fa0500c24a8f37be0b1797cb9db7
Christian Brabandt <cb@256bit.org>
parents:
8575
diff
changeset
|
1286 /**/ |
8575
b5209a4e5baf
commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e
Christian Brabandt <cb@256bit.org>
parents:
8573
diff
changeset
|
1287 1577, |
b5209a4e5baf
commit https://github.com/vim/vim/commit/ab1fa3955f25dfdb7e329c3bd76e175c93c8cb5e
Christian Brabandt <cb@256bit.org>
parents:
8573
diff
changeset
|
1288 /**/ |
8573
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8571
diff
changeset
|
1289 1576, |
c76cb97073bd
commit https://github.com/vim/vim/commit/927030af23982a70580178e32806cd3638ce6e5b
Christian Brabandt <cb@256bit.org>
parents:
8571
diff
changeset
|
1290 /**/ |
8571
debe6347024d
commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897
Christian Brabandt <cb@256bit.org>
parents:
8568
diff
changeset
|
1291 1575, |
debe6347024d
commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897
Christian Brabandt <cb@256bit.org>
parents:
8568
diff
changeset
|
1292 /**/ |
8568
17bbbca531be
commit https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
Christian Brabandt <cb@256bit.org>
parents:
8566
diff
changeset
|
1293 1574, |
17bbbca531be
commit https://github.com/vim/vim/commit/d22e9465f6228207a4fe722ee84371c7817060d6
Christian Brabandt <cb@256bit.org>
parents:
8566
diff
changeset
|
1294 /**/ |
8566
28e10c1bed22
commit https://github.com/vim/vim/commit/ce2ec0a82a778ff4d79a2c3309f6cac079d7b5ee
Christian Brabandt <cb@256bit.org>
parents:
8564
diff
changeset
|
1295 1573, |
28e10c1bed22
commit https://github.com/vim/vim/commit/ce2ec0a82a778ff4d79a2c3309f6cac079d7b5ee
Christian Brabandt <cb@256bit.org>
parents:
8564
diff
changeset
|
1296 /**/ |
8564
8818bca7a824
commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368
Christian Brabandt <cb@256bit.org>
parents:
8562
diff
changeset
|
1297 1572, |
8818bca7a824
commit https://github.com/vim/vim/commit/85a7cb4dcf50aa562ff1fc872bfc1b50a5a9e368
Christian Brabandt <cb@256bit.org>
parents:
8562
diff
changeset
|
1298 /**/ |
8562
40b982c98587
commit https://github.com/vim/vim/commit/8e15ffcde757ffc6cfe8b5e384948b3278e9af33
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
1299 1571, |
40b982c98587
commit https://github.com/vim/vim/commit/8e15ffcde757ffc6cfe8b5e384948b3278e9af33
Christian Brabandt <cb@256bit.org>
parents:
8560
diff
changeset
|
1300 /**/ |
8560
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1301 1570, |
f3c636c673f7
commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents:
8558
diff
changeset
|
1302 /**/ |
8558
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
1303 1569, |
22aecf80378e
commit https://github.com/vim/vim/commit/e27dba499aaaf2ffe9f0da45f062450b434cddaa
Christian Brabandt <cb@256bit.org>
parents:
8556
diff
changeset
|
1304 /**/ |
8556
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8554
diff
changeset
|
1305 1568, |
f4dca5239317
commit https://github.com/vim/vim/commit/00f9e0dbbd3472db217d56639fad9346b9eb3b82
Christian Brabandt <cb@256bit.org>
parents:
8554
diff
changeset
|
1306 /**/ |
8554
7d3548ae729d
commit https://github.com/vim/vim/commit/1abb502635c7f317e05a0cf3ea067101f9d684f5
Christian Brabandt <cb@256bit.org>
parents:
8552
diff
changeset
|
1307 1567, |
7d3548ae729d
commit https://github.com/vim/vim/commit/1abb502635c7f317e05a0cf3ea067101f9d684f5
Christian Brabandt <cb@256bit.org>
parents:
8552
diff
changeset
|
1308 /**/ |
8552
96968d6bba3e
commit https://github.com/vim/vim/commit/4f118be2bb987cdf313da879d2a93ae125e99202
Christian Brabandt <cb@256bit.org>
parents:
8550
diff
changeset
|
1309 1566, |
96968d6bba3e
commit https://github.com/vim/vim/commit/4f118be2bb987cdf313da879d2a93ae125e99202
Christian Brabandt <cb@256bit.org>
parents:
8550
diff
changeset
|
1310 /**/ |
8550
56d0eb96c25a
commit https://github.com/vim/vim/commit/f1551964448607f8222de2d8f0992ea43eb2fe67
Christian Brabandt <cb@256bit.org>
parents:
8548
diff
changeset
|
1311 1565, |
56d0eb96c25a
commit https://github.com/vim/vim/commit/f1551964448607f8222de2d8f0992ea43eb2fe67
Christian Brabandt <cb@256bit.org>
parents:
8548
diff
changeset
|
1312 /**/ |
8548
24db3583c496
commit https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Christian Brabandt <cb@256bit.org>
parents:
8546
diff
changeset
|
1313 1564, |
24db3583c496
commit https://github.com/vim/vim/commit/346418c624f1bc7c04c98907134a2b284e6452dd
Christian Brabandt <cb@256bit.org>
parents:
8546
diff
changeset
|
1314 /**/ |
8546
996109e24f02
commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
1315 1563, |
996109e24f02
commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17
Christian Brabandt <cb@256bit.org>
parents:
8544
diff
changeset
|
1316 /**/ |
8544
b4850f705181
commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43
Christian Brabandt <cb@256bit.org>
parents:
8542
diff
changeset
|
1317 1562, |
b4850f705181
commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43
Christian Brabandt <cb@256bit.org>
parents:
8542
diff
changeset
|
1318 /**/ |
8542
80cfe52ca3a2
commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911
Christian Brabandt <cb@256bit.org>
parents:
8540
diff
changeset
|
1319 1561, |
80cfe52ca3a2
commit https://github.com/vim/vim/commit/39afdea2035c34239910267978538a3c99b66911
Christian Brabandt <cb@256bit.org>
parents:
8540
diff
changeset
|
1320 /**/ |
8540
fec8655cf1bf
commit https://github.com/vim/vim/commit/d6c2f0526064eef6f8917d2bad00df707d79ea16
Christian Brabandt <cb@256bit.org>
parents:
8538
diff
changeset
|
1321 1560, |
fec8655cf1bf
commit https://github.com/vim/vim/commit/d6c2f0526064eef6f8917d2bad00df707d79ea16
Christian Brabandt <cb@256bit.org>
parents:
8538
diff
changeset
|
1322 /**/ |
8538
c337c813c64d
commit https://github.com/vim/vim/commit/1735bc988c546cc962c5f94792815b4d7cb79710
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1323 1559, |
c337c813c64d
commit https://github.com/vim/vim/commit/1735bc988c546cc962c5f94792815b4d7cb79710
Christian Brabandt <cb@256bit.org>
parents:
8536
diff
changeset
|
1324 /**/ |
8536
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
1325 1558, |
09041d2fd7d0
commit https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
Christian Brabandt <cb@256bit.org>
parents:
8534
diff
changeset
|
1326 /**/ |
8534
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8532
diff
changeset
|
1327 1557, |
485d4d8a97f6
commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5
Christian Brabandt <cb@256bit.org>
parents:
8532
diff
changeset
|
1328 /**/ |
8532
3de84783c029
commit https://github.com/vim/vim/commit/a3442cb5056ca62fc71fa03f68a9395e4391caf4
Christian Brabandt <cb@256bit.org>
parents:
8530
diff
changeset
|
1329 1556, |
3de84783c029
commit https://github.com/vim/vim/commit/a3442cb5056ca62fc71fa03f68a9395e4391caf4
Christian Brabandt <cb@256bit.org>
parents:
8530
diff
changeset
|
1330 /**/ |
8530
66afe6d5a9de
commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e
Christian Brabandt <cb@256bit.org>
parents:
8528
diff
changeset
|
1331 1555, |
66afe6d5a9de
commit https://github.com/vim/vim/commit/fff341eb5960f656529b56c949043f041eddbb1e
Christian Brabandt <cb@256bit.org>
parents:
8528
diff
changeset
|
1332 /**/ |
8528
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8526
diff
changeset
|
1333 1554, |
630300c7a26c
commit https://github.com/vim/vim/commit/52f9c19015df5ee1ee8592b6f3f15b8a57c8f5be
Christian Brabandt <cb@256bit.org>
parents:
8526
diff
changeset
|
1334 /**/ |
8526
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1335 1553, |
981cc3bef9f3
commit https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
1336 /**/ |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8522
diff
changeset
|
1337 1552, |
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8522
diff
changeset
|
1338 /**/ |
8522
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8520
diff
changeset
|
1339 1551, |
721e8d6cb7b5
commit https://github.com/vim/vim/commit/6bef5306e4f2cacb3a93667992c2312d4b293c9d
Christian Brabandt <cb@256bit.org>
parents:
8520
diff
changeset
|
1340 /**/ |
8520
b4350a4d1e01
commit https://github.com/vim/vim/commit/2d8f56acb32428d0f965d42dd13b27100b46fa15
Christian Brabandt <cb@256bit.org>
parents:
8518
diff
changeset
|
1341 1550, |
b4350a4d1e01
commit https://github.com/vim/vim/commit/2d8f56acb32428d0f965d42dd13b27100b46fa15
Christian Brabandt <cb@256bit.org>
parents:
8518
diff
changeset
|
1342 /**/ |
8518
24ac80377d86
commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents:
8516
diff
changeset
|
1343 1549, |
24ac80377d86
commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents:
8516
diff
changeset
|
1344 /**/ |
8516
14ab6c685581
commit https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
Christian Brabandt <cb@256bit.org>
parents:
8514
diff
changeset
|
1345 1548, |
14ab6c685581
commit https://github.com/vim/vim/commit/5a2800fd141a8fc0c80cdf421dcb76001a22327f
Christian Brabandt <cb@256bit.org>
parents:
8514
diff
changeset
|
1346 /**/ |
8514
260d01c1cd17
commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
8512
diff
changeset
|
1347 1547, |
260d01c1cd17
commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
8512
diff
changeset
|
1348 /**/ |
8512
5104f96b6ecf
commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1349 1546, |
5104f96b6ecf
commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
8510
diff
changeset
|
1350 /**/ |
8510
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8508
diff
changeset
|
1351 1545, |
9f5bd031530d
commit https://github.com/vim/vim/commit/b4ebf9ae3b93d082ab3b9f4aab2f6729f77fa46a
Christian Brabandt <cb@256bit.org>
parents:
8508
diff
changeset
|
1352 /**/ |
8508
13e5a1f02be4
commit https://github.com/vim/vim/commit/583c1f14a4e1d89fe029b1c134d405357468ece7
Christian Brabandt <cb@256bit.org>
parents:
8506
diff
changeset
|
1353 1544, |
13e5a1f02be4
commit https://github.com/vim/vim/commit/583c1f14a4e1d89fe029b1c134d405357468ece7
Christian Brabandt <cb@256bit.org>
parents:
8506
diff
changeset
|
1354 /**/ |
8506
c93c352717b3
commit https://github.com/vim/vim/commit/5a6ec52392b78d41153660d0353d5b86a2dc583c
Christian Brabandt <cb@256bit.org>
parents:
8504
diff
changeset
|
1355 1543, |
c93c352717b3
commit https://github.com/vim/vim/commit/5a6ec52392b78d41153660d0353d5b86a2dc583c
Christian Brabandt <cb@256bit.org>
parents:
8504
diff
changeset
|
1356 /**/ |
8504
0b31cc4b261e
commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c
Christian Brabandt <cb@256bit.org>
parents:
8502
diff
changeset
|
1357 1542, |
0b31cc4b261e
commit https://github.com/vim/vim/commit/1adda3403d80e96446248a92ceafee036053765c
Christian Brabandt <cb@256bit.org>
parents:
8502
diff
changeset
|
1358 /**/ |
8502
ee5cb2e9ed5a
commit https://github.com/vim/vim/commit/8950a563b306ce76f259573d91c2ddccdf52e32e
Christian Brabandt <cb@256bit.org>
parents:
8500
diff
changeset
|
1359 1541, |
ee5cb2e9ed5a
commit https://github.com/vim/vim/commit/8950a563b306ce76f259573d91c2ddccdf52e32e
Christian Brabandt <cb@256bit.org>
parents:
8500
diff
changeset
|
1360 /**/ |
8500
1227dc21865b
commit https://github.com/vim/vim/commit/ac42afd10b96424b89762871905e3e785cdfba3d
Christian Brabandt <cb@256bit.org>
parents:
8498
diff
changeset
|
1361 1540, |
1227dc21865b
commit https://github.com/vim/vim/commit/ac42afd10b96424b89762871905e3e785cdfba3d
Christian Brabandt <cb@256bit.org>
parents:
8498
diff
changeset
|
1362 /**/ |
8498
42277980a76d
commit https://github.com/vim/vim/commit/8e2c942ce49f2555d7dc2088cf3aa856820c5e32
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
1363 1539, |
42277980a76d
commit https://github.com/vim/vim/commit/8e2c942ce49f2555d7dc2088cf3aa856820c5e32
Christian Brabandt <cb@256bit.org>
parents:
8495
diff
changeset
|
1364 /**/ |
8495
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1365 1538, |
8877ea0a27ec
commit https://github.com/vim/vim/commit/4fc563b397949ce23190045112fa08c0776a56e6
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
1366 /**/ |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
1367 1537, |
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8491
diff
changeset
|
1368 /**/ |
8491
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8489
diff
changeset
|
1369 1536, |
daebcbd87bd3
commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents:
8489
diff
changeset
|
1370 /**/ |
8489
76b9c2305531
commit https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
Christian Brabandt <cb@256bit.org>
parents:
8487
diff
changeset
|
1371 1535, |
76b9c2305531
commit https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
Christian Brabandt <cb@256bit.org>
parents:
8487
diff
changeset
|
1372 /**/ |
8487
ce789e3dc84d
commit https://github.com/vim/vim/commit/846cdb227526272e2cd8ecba4f7168e2226cd633
Christian Brabandt <cb@256bit.org>
parents:
8485
diff
changeset
|
1373 1534, |
ce789e3dc84d
commit https://github.com/vim/vim/commit/846cdb227526272e2cd8ecba4f7168e2226cd633
Christian Brabandt <cb@256bit.org>
parents:
8485
diff
changeset
|
1374 /**/ |
8485
675ec6cc9021
commit https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
1375 1533, |
675ec6cc9021
commit https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
Christian Brabandt <cb@256bit.org>
parents:
8483
diff
changeset
|
1376 /**/ |
8483
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8481
diff
changeset
|
1377 1532, |
7376d36395f0
commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents:
8481
diff
changeset
|
1378 /**/ |
8481
8924d7adbc22
commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
1379 1531, |
8924d7adbc22
commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Christian Brabandt <cb@256bit.org>
parents:
8479
diff
changeset
|
1380 /**/ |
8479
9f63e4506c40
commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents:
8477
diff
changeset
|
1381 1530, |
9f63e4506c40
commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents:
8477
diff
changeset
|
1382 /**/ |
8477
c08c6d19db4d
commit https://github.com/vim/vim/commit/29fd03878c41526a586d77b3f3cd7938d26297af
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
1383 1529, |
c08c6d19db4d
commit https://github.com/vim/vim/commit/29fd03878c41526a586d77b3f3cd7938d26297af
Christian Brabandt <cb@256bit.org>
parents:
8475
diff
changeset
|
1384 /**/ |
8475
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8473
diff
changeset
|
1385 1528, |
aec051e61547
commit https://github.com/vim/vim/commit/af1a0e371e739f8dff337fd31da0ff8ffb347b43
Christian Brabandt <cb@256bit.org>
parents:
8473
diff
changeset
|
1386 /**/ |
8473
ade1797aa6f4
commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0
Christian Brabandt <cb@256bit.org>
parents:
8471
diff
changeset
|
1387 1527, |
ade1797aa6f4
commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0
Christian Brabandt <cb@256bit.org>
parents:
8471
diff
changeset
|
1388 /**/ |
8471
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
1389 1526, |
c1aae3a79279
commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents:
8469
diff
changeset
|
1390 /**/ |
8469
42020d59a432
commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents:
8467
diff
changeset
|
1391 1525, |
42020d59a432
commit https://github.com/vim/vim/commit/beb003b303cde1e55634aae9f810535684b76211
Christian Brabandt <cb@256bit.org>
parents:
8467
diff
changeset
|
1392 /**/ |
8467
86a327403fb0
commit https://github.com/vim/vim/commit/045a284a83c2a85113de233d5233eae34724a4b6
Christian Brabandt <cb@256bit.org>
parents:
8465
diff
changeset
|
1393 1524, |
86a327403fb0
commit https://github.com/vim/vim/commit/045a284a83c2a85113de233d5233eae34724a4b6
Christian Brabandt <cb@256bit.org>
parents:
8465
diff
changeset
|
1394 /**/ |
8465
5927180d0b4d
commit https://github.com/vim/vim/commit/0622732b32ff4a883e4f490a1b38ada539da8ba2
Christian Brabandt <cb@256bit.org>
parents:
8463
diff
changeset
|
1395 1523, |
5927180d0b4d
commit https://github.com/vim/vim/commit/0622732b32ff4a883e4f490a1b38ada539da8ba2
Christian Brabandt <cb@256bit.org>
parents:
8463
diff
changeset
|
1396 /**/ |
8463
508504ca52ac
commit https://github.com/vim/vim/commit/6ff02c96519946716069f05c62849986a706033b
Christian Brabandt <cb@256bit.org>
parents:
8461
diff
changeset
|
1397 1522, |
508504ca52ac
commit https://github.com/vim/vim/commit/6ff02c96519946716069f05c62849986a706033b
Christian Brabandt <cb@256bit.org>
parents:
8461
diff
changeset
|
1398 /**/ |
8461
988ddc5742f5
commit https://github.com/vim/vim/commit/8322e1f06e8fa39a6bb790a7d8d7db5d7aff3366
Christian Brabandt <cb@256bit.org>
parents:
8459
diff
changeset
|
1399 1521, |
988ddc5742f5
commit https://github.com/vim/vim/commit/8322e1f06e8fa39a6bb790a7d8d7db5d7aff3366
Christian Brabandt <cb@256bit.org>
parents:
8459
diff
changeset
|
1400 /**/ |
8459
9fb171e8466d
commit https://github.com/vim/vim/commit/d9d473ea124339c4dd173127db47c4583645ac2c
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
1401 1520, |
9fb171e8466d
commit https://github.com/vim/vim/commit/d9d473ea124339c4dd173127db47c4583645ac2c
Christian Brabandt <cb@256bit.org>
parents:
8457
diff
changeset
|
1402 /**/ |
8457
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
1403 1519, |
20533e3de373
commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents:
8455
diff
changeset
|
1404 /**/ |
8455
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8453
diff
changeset
|
1405 1518, |
d0717262d802
commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3
Christian Brabandt <cb@256bit.org>
parents:
8453
diff
changeset
|
1406 /**/ |
8453
fed4e19bd884
commit https://github.com/vim/vim/commit/367aabdbf76f7df00fd18e39d9378d1360a526ab
Christian Brabandt <cb@256bit.org>
parents:
8451
diff
changeset
|
1407 1517, |
fed4e19bd884
commit https://github.com/vim/vim/commit/367aabdbf76f7df00fd18e39d9378d1360a526ab
Christian Brabandt <cb@256bit.org>
parents:
8451
diff
changeset
|
1408 /**/ |
8451
c0b5c2b0a5ee
commit https://github.com/vim/vim/commit/8049253b96838b3584600e5ad229abad37a95b10
Christian Brabandt <cb@256bit.org>
parents:
8449
diff
changeset
|
1409 1516, |
c0b5c2b0a5ee
commit https://github.com/vim/vim/commit/8049253b96838b3584600e5ad229abad37a95b10
Christian Brabandt <cb@256bit.org>
parents:
8449
diff
changeset
|
1410 /**/ |
8449
3d567b5839c5
commit https://github.com/vim/vim/commit/9fe885e49ade94e6277db0dd18a5bbc1c94c60c4
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
1411 1515, |
3d567b5839c5
commit https://github.com/vim/vim/commit/9fe885e49ade94e6277db0dd18a5bbc1c94c60c4
Christian Brabandt <cb@256bit.org>
parents:
8447
diff
changeset
|
1412 /**/ |
8447
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
1413 1514, |
6f26b680c243
commit https://github.com/vim/vim/commit/e98d12105213975f37b8d653bd909bd787a2cda9
Christian Brabandt <cb@256bit.org>
parents:
8445
diff
changeset
|
1414 /**/ |
8445
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
1415 1513, |
dd2e2bd69d0e
commit https://github.com/vim/vim/commit/41e0f2f48f541eb2c8eb5620d3f1d270eb979154
Christian Brabandt <cb@256bit.org>
parents:
8443
diff
changeset
|
1416 /**/ |
8443
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
1417 1512, |
6c421014a0b3
commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents:
8441
diff
changeset
|
1418 /**/ |
8441
768065c86a35
commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents:
8438
diff
changeset
|
1419 1511, |
768065c86a35
commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Christian Brabandt <cb@256bit.org>
parents:
8438
diff
changeset
|
1420 /**/ |
8438
541ca10b3bc7
commit https://github.com/vim/vim/commit/304563c0b3e24895322ce3a29378388665b4769b
Christian Brabandt <cb@256bit.org>
parents:
8436
diff
changeset
|
1421 1510, |
541ca10b3bc7
commit https://github.com/vim/vim/commit/304563c0b3e24895322ce3a29378388665b4769b
Christian Brabandt <cb@256bit.org>
parents:
8436
diff
changeset
|
1422 /**/ |
8436
0e6fd2f802b3
commit https://github.com/vim/vim/commit/151f656e171f6ffbb0cbeb343cbcf2ffac0c36b0
Christian Brabandt <cb@256bit.org>
parents:
8434
diff
changeset
|
1423 1509, |
0e6fd2f802b3
commit https://github.com/vim/vim/commit/151f656e171f6ffbb0cbeb343cbcf2ffac0c36b0
Christian Brabandt <cb@256bit.org>
parents:
8434
diff
changeset
|
1424 /**/ |
8434
a0e7d7070799
commit https://github.com/vim/vim/commit/47cff3a444be7e99bae52b39b2174c22d58d2f86
Christian Brabandt <cb@256bit.org>
parents:
8432
diff
changeset
|
1425 1508, |
a0e7d7070799
commit https://github.com/vim/vim/commit/47cff3a444be7e99bae52b39b2174c22d58d2f86
Christian Brabandt <cb@256bit.org>
parents:
8432
diff
changeset
|
1426 /**/ |
8432
6af4329b5592
commit https://github.com/vim/vim/commit/4e329fcaf7122370a6d1815a30aaf29476d3f722
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
1427 1507, |
6af4329b5592
commit https://github.com/vim/vim/commit/4e329fcaf7122370a6d1815a30aaf29476d3f722
Christian Brabandt <cb@256bit.org>
parents:
8430
diff
changeset
|
1428 /**/ |
8430
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8428
diff
changeset
|
1429 1506, |
800423dbc260
commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents:
8428
diff
changeset
|
1430 /**/ |
8428
4e22d0e7bfb1
commit https://github.com/vim/vim/commit/d0b6502a7ace39d6cd30874110a572371d10beae
Christian Brabandt <cb@256bit.org>
parents:
8426
diff
changeset
|
1431 1505, |
4e22d0e7bfb1
commit https://github.com/vim/vim/commit/d0b6502a7ace39d6cd30874110a572371d10beae
Christian Brabandt <cb@256bit.org>
parents:
8426
diff
changeset
|
1432 /**/ |
8426
02ce040591c8
commit https://github.com/vim/vim/commit/3f39f648662bf8723f687d14694041779ed0780c
Christian Brabandt <cb@256bit.org>
parents:
8424
diff
changeset
|
1433 1504, |
02ce040591c8
commit https://github.com/vim/vim/commit/3f39f648662bf8723f687d14694041779ed0780c
Christian Brabandt <cb@256bit.org>
parents:
8424
diff
changeset
|
1434 /**/ |
8424
be45d4921f1f
commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3
Christian Brabandt <cb@256bit.org>
parents:
8422
diff
changeset
|
1435 1503, |
be45d4921f1f
commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3
Christian Brabandt <cb@256bit.org>
parents:
8422
diff
changeset
|
1436 /**/ |
8422
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8420
diff
changeset
|
1437 1502, |
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8420
diff
changeset
|
1438 /**/ |
8420
f6d21a33d489
commit https://github.com/vim/vim/commit/38fd4bb2842df7634823b99c655b3896a7a2e988
Christian Brabandt <cb@256bit.org>
parents:
8418
diff
changeset
|
1439 1501, |
f6d21a33d489
commit https://github.com/vim/vim/commit/38fd4bb2842df7634823b99c655b3896a7a2e988
Christian Brabandt <cb@256bit.org>
parents:
8418
diff
changeset
|
1440 /**/ |
8418
89f38c77e11e
commit https://github.com/vim/vim/commit/9ef00be261115acb5bae3b3ca45c1d86a19ba2c7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
1441 1500, |
89f38c77e11e
commit https://github.com/vim/vim/commit/9ef00be261115acb5bae3b3ca45c1d86a19ba2c7
Christian Brabandt <cb@256bit.org>
parents:
8416
diff
changeset
|
1442 /**/ |
8416
1a6527cce675
commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents:
8414
diff
changeset
|
1443 1499, |
1a6527cce675
commit https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Christian Brabandt <cb@256bit.org>
parents:
8414
diff
changeset
|
1444 /**/ |
8414
8c888844de9c
commit https://github.com/vim/vim/commit/2588b5a43f049ddf542991050260237051caad77
Christian Brabandt <cb@256bit.org>
parents:
8412
diff
changeset
|
1445 1498, |
8c888844de9c
commit https://github.com/vim/vim/commit/2588b5a43f049ddf542991050260237051caad77
Christian Brabandt <cb@256bit.org>
parents:
8412
diff
changeset
|
1446 /**/ |
8412
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8410
diff
changeset
|
1447 1497, |
7ee2b87ba896
commit https://github.com/vim/vim/commit/0ecbe33718b06a3771fd2c65b331c8c9504657d7
Christian Brabandt <cb@256bit.org>
parents:
8410
diff
changeset
|
1448 /**/ |
8410
05ec48deb353
commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
1449 1496, |
05ec48deb353
commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc
Christian Brabandt <cb@256bit.org>
parents:
8408
diff
changeset
|
1450 /**/ |
8408
2f1a63269250
commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
1451 1495, |
2f1a63269250
commit https://github.com/vim/vim/commit/802d559431e6003a46c7f19628213b7cec8ba6d0
Christian Brabandt <cb@256bit.org>
parents:
8406
diff
changeset
|
1452 /**/ |
8406
5d926807c19c
commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents:
8404
diff
changeset
|
1453 1494, |
5d926807c19c
commit https://github.com/vim/vim/commit/119d4693e06e68d4f099aa7287e375ae3d265fd0
Christian Brabandt <cb@256bit.org>
parents:
8404
diff
changeset
|
1454 /**/ |
8404
8894d595b786
commit https://github.com/vim/vim/commit/5983ad0b038fa689653246cb304fd43e8ae39a78
Christian Brabandt <cb@256bit.org>
parents:
8402
diff
changeset
|
1455 1493, |
8894d595b786
commit https://github.com/vim/vim/commit/5983ad0b038fa689653246cb304fd43e8ae39a78
Christian Brabandt <cb@256bit.org>
parents:
8402
diff
changeset
|
1456 /**/ |
8402
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8399
diff
changeset
|
1457 1492, |
eed1ca42f9aa
commit https://github.com/vim/vim/commit/35ca0e7a1cb6e6daef8e0052a8437801226cef19
Christian Brabandt <cb@256bit.org>
parents:
8399
diff
changeset
|
1458 /**/ |
8399
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
1459 1491, |
7d1c42e3ce11
commit https://github.com/vim/vim/commit/20b4f463f4ab50fa9bcc9838aa94101fa5698125
Christian Brabandt <cb@256bit.org>
parents:
8397
diff
changeset
|
1460 /**/ |
8397
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8395
diff
changeset
|
1461 1490, |
1e58a938aafc
commit https://github.com/vim/vim/commit/2369c15407cf9a730a396ebf9709abb280c5ce48
Christian Brabandt <cb@256bit.org>
parents:
8395
diff
changeset
|
1462 /**/ |
8395
8137d5b642f3
commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents:
8393
diff
changeset
|
1463 1489, |
8137d5b642f3
commit https://github.com/vim/vim/commit/0c171716c0430458741fbf18a6fd4baea4c0390b
Christian Brabandt <cb@256bit.org>
parents:
8393
diff
changeset
|
1464 /**/ |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8390
diff
changeset
|
1465 1488, |
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8390
diff
changeset
|
1466 /**/ |
8390
2230c0da23bd
commit https://github.com/vim/vim/commit/6300317b15eb33409f652c603fb402417fe4eed7
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
1467 1487, |
2230c0da23bd
commit https://github.com/vim/vim/commit/6300317b15eb33409f652c603fb402417fe4eed7
Christian Brabandt <cb@256bit.org>
parents:
8388
diff
changeset
|
1468 /**/ |
8388
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
1469 1486, |
f5972de59001
commit https://github.com/vim/vim/commit/f3654827368e6204608036353a0360e9e7c21e02
Christian Brabandt <cb@256bit.org>
parents:
8386
diff
changeset
|
1470 /**/ |
8386
3b9a306724ec
commit https://github.com/vim/vim/commit/014069a7ac51557e531eb3c8b94e36f2193f6c21
Christian Brabandt <cb@256bit.org>
parents:
8384
diff
changeset
|
1471 1485, |
3b9a306724ec
commit https://github.com/vim/vim/commit/014069a7ac51557e531eb3c8b94e36f2193f6c21
Christian Brabandt <cb@256bit.org>
parents:
8384
diff
changeset
|
1472 /**/ |
8384
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8382
diff
changeset
|
1473 1484, |
764dba33605c
commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents:
8382
diff
changeset
|
1474 /**/ |
8382
3dbe93a240d8
commit https://github.com/vim/vim/commit/d6547fc6471d9084f942bdc4ae3aedb39361751d
Christian Brabandt <cb@256bit.org>
parents:
8380
diff
changeset
|
1475 1483, |
3dbe93a240d8
commit https://github.com/vim/vim/commit/d6547fc6471d9084f942bdc4ae3aedb39361751d
Christian Brabandt <cb@256bit.org>
parents:
8380
diff
changeset
|
1476 /**/ |
8380
892d7dcf17ec
commit https://github.com/vim/vim/commit/da94fdf2588b3910d38e477a755748ce2c6d2e66
Christian Brabandt <cb@256bit.org>
parents:
8378
diff
changeset
|
1477 1482, |
892d7dcf17ec
commit https://github.com/vim/vim/commit/da94fdf2588b3910d38e477a755748ce2c6d2e66
Christian Brabandt <cb@256bit.org>
parents:
8378
diff
changeset
|
1478 /**/ |
8378
52777ec8a394
commit https://github.com/vim/vim/commit/9f7820f83bc994bbbecdca9483b355953f07179b
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
1479 1481, |
52777ec8a394
commit https://github.com/vim/vim/commit/9f7820f83bc994bbbecdca9483b355953f07179b
Christian Brabandt <cb@256bit.org>
parents:
8376
diff
changeset
|
1480 /**/ |
8376
e448f2a5d45b
commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents:
8374
diff
changeset
|
1481 1480, |
e448f2a5d45b
commit https://github.com/vim/vim/commit/91715873d19a1859c08eeded7848113596e2f2bd
Christian Brabandt <cb@256bit.org>
parents:
8374
diff
changeset
|
1482 /**/ |
8374
5d834058bf44
commit https://github.com/vim/vim/commit/863c1a9079fa340d663ccafb011729a29186d73e
Christian Brabandt <cb@256bit.org>
parents:
8372
diff
changeset
|
1483 1479, |
5d834058bf44
commit https://github.com/vim/vim/commit/863c1a9079fa340d663ccafb011729a29186d73e
Christian Brabandt <cb@256bit.org>
parents:
8372
diff
changeset
|
1484 /**/ |
8372
ce791ff9e0da
commit https://github.com/vim/vim/commit/1bdd42627d619258d0e847f217cfc1c2795f1ac5
Christian Brabandt <cb@256bit.org>
parents:
8370
diff
changeset
|
1485 1478, |
ce791ff9e0da
commit https://github.com/vim/vim/commit/1bdd42627d619258d0e847f217cfc1c2795f1ac5
Christian Brabandt <cb@256bit.org>
parents:
8370
diff
changeset
|
1486 /**/ |
8370
cd7ea16d1300
commit https://github.com/vim/vim/commit/b5760a1ce5b700fc32b8bd11948ee189a847c59e
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
1487 1477, |
cd7ea16d1300
commit https://github.com/vim/vim/commit/b5760a1ce5b700fc32b8bd11948ee189a847c59e
Christian Brabandt <cb@256bit.org>
parents:
8368
diff
changeset
|
1488 /**/ |
8368
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
1489 1476, |
db2a07b710ed
commit https://github.com/vim/vim/commit/f1d2501ebe33e148886c2914acd33140e20ee222
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
1490 /**/ |
8366
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8364
diff
changeset
|
1491 1475, |
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8364
diff
changeset
|
1492 /**/ |
8364
991d8fd4d841
commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Christian Brabandt <cb@256bit.org>
parents:
8362
diff
changeset
|
1493 1474, |
991d8fd4d841
commit https://github.com/vim/vim/commit/5fac467474376a844407cecc0ff481510ead221c
Christian Brabandt <cb@256bit.org>
parents:
8362
diff
changeset
|
1494 /**/ |
8362
a541dd5cfd3a
commit https://github.com/vim/vim/commit/d1413d90983fc6c579ad66ba4d4611b057197f94
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
1495 1473, |
a541dd5cfd3a
commit https://github.com/vim/vim/commit/d1413d90983fc6c579ad66ba4d4611b057197f94
Christian Brabandt <cb@256bit.org>
parents:
8360
diff
changeset
|
1496 /**/ |
8360
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8358
diff
changeset
|
1497 1472, |
45740f83b3ce
commit https://github.com/vim/vim/commit/4ca812b15378f83e56a2dc42947a61d0aa40697f
Christian Brabandt <cb@256bit.org>
parents:
8358
diff
changeset
|
1498 /**/ |
8358
49d0e094cb93
commit https://github.com/vim/vim/commit/bf73b91c664488ca57e2b4a8eb9b1f36f6625bc7
Christian Brabandt <cb@256bit.org>
parents:
8356
diff
changeset
|
1499 1471, |
49d0e094cb93
commit https://github.com/vim/vim/commit/bf73b91c664488ca57e2b4a8eb9b1f36f6625bc7
Christian Brabandt <cb@256bit.org>
parents:
8356
diff
changeset
|
1500 /**/ |
8356
e0d576743e4f
commit https://github.com/vim/vim/commit/289a90551d185c307abd4cfe6baadea8990d956b
Christian Brabandt <cb@256bit.org>
parents:
8354
diff
changeset
|
1501 1470, |
e0d576743e4f
commit https://github.com/vim/vim/commit/289a90551d185c307abd4cfe6baadea8990d956b
Christian Brabandt <cb@256bit.org>
parents:
8354
diff
changeset
|
1502 /**/ |
8354
b151c3f9be72
commit https://github.com/vim/vim/commit/42bc6dde46f1b52476cc84ee89277f981b4116c4
Christian Brabandt <cb@256bit.org>
parents:
8352
diff
changeset
|
1503 1469, |
b151c3f9be72
commit https://github.com/vim/vim/commit/42bc6dde46f1b52476cc84ee89277f981b4116c4
Christian Brabandt <cb@256bit.org>
parents:
8352
diff
changeset
|
1504 /**/ |
8352
2c40b40c3220
commit https://github.com/vim/vim/commit/51d1d536802b5d8232d47e56f165ba8a009529b5
Christian Brabandt <cb@256bit.org>
parents:
8350
diff
changeset
|
1505 1468, |
2c40b40c3220
commit https://github.com/vim/vim/commit/51d1d536802b5d8232d47e56f165ba8a009529b5
Christian Brabandt <cb@256bit.org>
parents:
8350
diff
changeset
|
1506 /**/ |
8350
e70fa2e110ec
commit https://github.com/vim/vim/commit/10b369f67064cee91a5eb41383a694162c5c5e73
Christian Brabandt <cb@256bit.org>
parents:
8348
diff
changeset
|
1507 1467, |
e70fa2e110ec
commit https://github.com/vim/vim/commit/10b369f67064cee91a5eb41383a694162c5c5e73
Christian Brabandt <cb@256bit.org>
parents:
8348
diff
changeset
|
1508 /**/ |
8348
a0cff08e7aa3
commit https://github.com/vim/vim/commit/6b584af3d7337639da27fd847c7c69a406af397e
Christian Brabandt <cb@256bit.org>
parents:
8346
diff
changeset
|
1509 1466, |
a0cff08e7aa3
commit https://github.com/vim/vim/commit/6b584af3d7337639da27fd847c7c69a406af397e
Christian Brabandt <cb@256bit.org>
parents:
8346
diff
changeset
|
1510 /**/ |
8346
8fa75a4c39bd
commit https://github.com/vim/vim/commit/cc7f8be3e0e6c4d902b02052a862e21c3a3fbe22
Christian Brabandt <cb@256bit.org>
parents:
8344
diff
changeset
|
1511 1465, |
8fa75a4c39bd
commit https://github.com/vim/vim/commit/cc7f8be3e0e6c4d902b02052a862e21c3a3fbe22
Christian Brabandt <cb@256bit.org>
parents:
8344
diff
changeset
|
1512 /**/ |
8344
2aa24f702b8d
commit https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Christian Brabandt <cb@256bit.org>
parents:
8342
diff
changeset
|
1513 1464, |
2aa24f702b8d
commit https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Christian Brabandt <cb@256bit.org>
parents:
8342
diff
changeset
|
1514 /**/ |
8342
446558924b66
commit https://github.com/vim/vim/commit/a6b8976bb724f8c85dd5699d115d795f7b730298
Christian Brabandt <cb@256bit.org>
parents:
8340
diff
changeset
|
1515 1463, |
446558924b66
commit https://github.com/vim/vim/commit/a6b8976bb724f8c85dd5699d115d795f7b730298
Christian Brabandt <cb@256bit.org>
parents:
8340
diff
changeset
|
1516 /**/ |
8340
c66e1f50c142
commit https://github.com/vim/vim/commit/2f6271b1e7cff985cac66f6850116bcf3fcccd58
Christian Brabandt <cb@256bit.org>
parents:
8338
diff
changeset
|
1517 1462, |
c66e1f50c142
commit https://github.com/vim/vim/commit/2f6271b1e7cff985cac66f6850116bcf3fcccd58
Christian Brabandt <cb@256bit.org>
parents:
8338
diff
changeset
|
1518 /**/ |
8338
3e54b31d50c7
commit https://github.com/vim/vim/commit/a86f14a923d9a242107c16d0852f61f3daf985a8
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
1519 1461, |
3e54b31d50c7
commit https://github.com/vim/vim/commit/a86f14a923d9a242107c16d0852f61f3daf985a8
Christian Brabandt <cb@256bit.org>
parents:
8336
diff
changeset
|
1520 /**/ |
8336
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8334
diff
changeset
|
1521 1460, |
d44ff1525ff0
commit https://github.com/vim/vim/commit/fdcc9afb71ea88fe63bbed8bad0d5bae607bfb73
Christian Brabandt <cb@256bit.org>
parents:
8334
diff
changeset
|
1522 /**/ |
8334
ad4b00bf2984
commit https://github.com/vim/vim/commit/e081e21f760bffc24ca98d5f9bbdb5f02e6aea79
Christian Brabandt <cb@256bit.org>
parents:
8332
diff
changeset
|
1523 1459, |
ad4b00bf2984
commit https://github.com/vim/vim/commit/e081e21f760bffc24ca98d5f9bbdb5f02e6aea79
Christian Brabandt <cb@256bit.org>
parents:
8332
diff
changeset
|
1524 /**/ |
8332
07713b8243ac
commit https://github.com/vim/vim/commit/fdd6ce4a2f922afac7bd719a00228dbd8539b9c4
Christian Brabandt <cb@256bit.org>
parents:
8330
diff
changeset
|
1525 1458, |
07713b8243ac
commit https://github.com/vim/vim/commit/fdd6ce4a2f922afac7bd719a00228dbd8539b9c4
Christian Brabandt <cb@256bit.org>
parents:
8330
diff
changeset
|
1526 /**/ |
8330
ec940c11f749
commit https://github.com/vim/vim/commit/d42119fff228434fe57e88d501c744de0a9fb1b1
Christian Brabandt <cb@256bit.org>
parents:
8328
diff
changeset
|
1527 1457, |
ec940c11f749
commit https://github.com/vim/vim/commit/d42119fff228434fe57e88d501c744de0a9fb1b1
Christian Brabandt <cb@256bit.org>
parents:
8328
diff
changeset
|
1528 /**/ |
8328
0a55dd381410
commit https://github.com/vim/vim/commit/29e1951e14907b62797554ad0cc85cbbe75a1be4
Christian Brabandt <cb@256bit.org>
parents:
8326
diff
changeset
|
1529 1456, |
0a55dd381410
commit https://github.com/vim/vim/commit/29e1951e14907b62797554ad0cc85cbbe75a1be4
Christian Brabandt <cb@256bit.org>
parents:
8326
diff
changeset
|
1530 /**/ |
8326
bec1dcfaa8be
commit https://github.com/vim/vim/commit/fc2457e21d136cb366076edd448e67c9732dc40a
Christian Brabandt <cb@256bit.org>
parents:
8324
diff
changeset
|
1531 1455, |
bec1dcfaa8be
commit https://github.com/vim/vim/commit/fc2457e21d136cb366076edd448e67c9732dc40a
Christian Brabandt <cb@256bit.org>
parents:
8324
diff
changeset
|
1532 /**/ |
8324
5e88bd55b789
commit https://github.com/vim/vim/commit/9730f74a0b2acb490943393a203a24ab8fab923a
Christian Brabandt <cb@256bit.org>
parents:
8322
diff
changeset
|
1533 1454, |
5e88bd55b789
commit https://github.com/vim/vim/commit/9730f74a0b2acb490943393a203a24ab8fab923a
Christian Brabandt <cb@256bit.org>
parents:
8322
diff
changeset
|
1534 /**/ |
8322
cff44093ddb0
commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents:
8320
diff
changeset
|
1535 1453, |
cff44093ddb0
commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents:
8320
diff
changeset
|
1536 /**/ |
8320
e2021d6feeda
commit https://github.com/vim/vim/commit/18b5d6df10a5f08ffebbec85a1cf2828871e3736
Christian Brabandt <cb@256bit.org>
parents:
8318
diff
changeset
|
1537 1452, |
e2021d6feeda
commit https://github.com/vim/vim/commit/18b5d6df10a5f08ffebbec85a1cf2828871e3736
Christian Brabandt <cb@256bit.org>
parents:
8318
diff
changeset
|
1538 /**/ |
8318
190d8084cb3a
commit https://github.com/vim/vim/commit/707659490d35e8d66e8bbdcfd93b12dc1387d86c
Christian Brabandt <cb@256bit.org>
parents:
8316
diff
changeset
|
1539 1451, |
190d8084cb3a
commit https://github.com/vim/vim/commit/707659490d35e8d66e8bbdcfd93b12dc1387d86c
Christian Brabandt <cb@256bit.org>
parents:
8316
diff
changeset
|
1540 /**/ |
8316
058b9e4a291b
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents:
8314
diff
changeset
|
1541 1450, |
058b9e4a291b
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents:
8314
diff
changeset
|
1542 /**/ |
8314
4e057409f1d7
commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents:
8312
diff
changeset
|
1543 1449, |
4e057409f1d7
commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents:
8312
diff
changeset
|
1544 /**/ |
8312
1001ec135d6e
commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents:
8310
diff
changeset
|
1545 1448, |
1001ec135d6e
commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents:
8310
diff
changeset
|
1546 /**/ |
8310
aec8f8ce8e4c
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents:
8308
diff
changeset
|
1547 1447, |
aec8f8ce8e4c
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents:
8308
diff
changeset
|
1548 /**/ |
8308
c1f29c1a968a
commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents:
8306
diff
changeset
|
1549 1446, |
c1f29c1a968a
commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents:
8306
diff
changeset
|
1550 /**/ |
8306
7fcf3f6020c1
commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents:
8304
diff
changeset
|
1551 1445, |
7fcf3f6020c1
commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents:
8304
diff
changeset
|
1552 /**/ |
8304
097886a3379b
commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1553 1444, |
097886a3379b
commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
1554 /**/ |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8299
diff
changeset
|
1555 1443, |
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8299
diff
changeset
|
1556 /**/ |
8299
d2a215e8d5b4
commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents:
8297
diff
changeset
|
1557 1442, |
d2a215e8d5b4
commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents:
8297
diff
changeset
|
1558 /**/ |
8297
4929eca308b7
commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents:
8295
diff
changeset
|
1559 1441, |
4929eca308b7
commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents:
8295
diff
changeset
|
1560 /**/ |
8295
18fd94bd4eb8
commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents:
8293
diff
changeset
|
1561 1440, |
18fd94bd4eb8
commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents:
8293
diff
changeset
|
1562 /**/ |
8293
367a7fed630b
commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents:
8291
diff
changeset
|
1563 1439, |
367a7fed630b
commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents:
8291
diff
changeset
|
1564 /**/ |
8291
ac0c43e7af20
commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1565 1438, |
ac0c43e7af20
commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
1566 /**/ |
8289
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8287
diff
changeset
|
1567 1437, |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8287
diff
changeset
|
1568 /**/ |
8287
56dbae4b73c6
commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents:
8285
diff
changeset
|
1569 1436, |
56dbae4b73c6
commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents:
8285
diff
changeset
|
1570 /**/ |
8285
e05e28dcb590
commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents:
8283
diff
changeset
|
1571 1435, |
e05e28dcb590
commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents:
8283
diff
changeset
|
1572 /**/ |
8283
b8a56d4d83e0
commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1573 1434, |
b8a56d4d83e0
commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
1574 /**/ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8279
diff
changeset
|
1575 1433, |
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8279
diff
changeset
|
1576 /**/ |
8279
738c2929d6ad
commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents:
8277
diff
changeset
|
1577 1432, |
738c2929d6ad
commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents:
8277
diff
changeset
|
1578 /**/ |
8277
fa1e3fa56104
commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents:
8275
diff
changeset
|
1579 1431, |
fa1e3fa56104
commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents:
8275
diff
changeset
|
1580 /**/ |
8275
ff900e499f79
commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents:
8273
diff
changeset
|
1581 1430, |
ff900e499f79
commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents:
8273
diff
changeset
|
1582 /**/ |
8273
0c3210caefa6
commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents:
8271
diff
changeset
|
1583 1429, |
0c3210caefa6
commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents:
8271
diff
changeset
|
1584 /**/ |
8271
770774e66011
commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents:
8269
diff
changeset
|
1585 1428, |
770774e66011
commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents:
8269
diff
changeset
|
1586 /**/ |
8269
553a4c8dd796
commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
1587 1427, |
553a4c8dd796
commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
1588 /**/ |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8265
diff
changeset
|
1589 1426, |
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8265
diff
changeset
|
1590 /**/ |
8265
792bc43e69a7
commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents:
8263
diff
changeset
|
1591 1425, |
792bc43e69a7
commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents:
8263
diff
changeset
|
1592 /**/ |
8263
96c0100f22f1
commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents:
8261
diff
changeset
|
1593 1424, |
96c0100f22f1
commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents:
8261
diff
changeset
|
1594 /**/ |
8261
a412b466bedc
commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents:
8259
diff
changeset
|
1595 1423, |
a412b466bedc
commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents:
8259
diff
changeset
|
1596 /**/ |
8259
99a70c3b902f
commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents:
8257
diff
changeset
|
1597 1422, |
99a70c3b902f
commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents:
8257
diff
changeset
|
1598 /**/ |
8257
c4ffdda8cdfd
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents:
8255
diff
changeset
|
1599 1421, |
c4ffdda8cdfd
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents:
8255
diff
changeset
|
1600 /**/ |
8255
355652348057
commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents:
8253
diff
changeset
|
1601 1420, |
355652348057
commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents:
8253
diff
changeset
|
1602 /**/ |
8253
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8251
diff
changeset
|
1603 1419, |
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8251
diff
changeset
|
1604 /**/ |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8249
diff
changeset
|
1605 1418, |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8249
diff
changeset
|
1606 /**/ |
8249
8dd8d96278a4
commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents:
8247
diff
changeset
|
1607 1417, |
8dd8d96278a4
commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents:
8247
diff
changeset
|
1608 /**/ |
8247
6ee794dc950e
commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents:
8244
diff
changeset
|
1609 1416, |
6ee794dc950e
commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents:
8244
diff
changeset
|
1610 /**/ |
8244
acc8029e530f
commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents:
8242
diff
changeset
|
1611 1415, |
acc8029e530f
commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents:
8242
diff
changeset
|
1612 /**/ |
8242
1313d2e282dc
commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
1613 1414, |
1313d2e282dc
commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
1614 /**/ |
8240
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8238
diff
changeset
|
1615 1413, |
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8238
diff
changeset
|
1616 /**/ |
8238
d7e1526ae1b9
commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents:
8236
diff
changeset
|
1617 1412, |
d7e1526ae1b9
commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents:
8236
diff
changeset
|
1618 /**/ |
8236
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
8234
diff
changeset
|
1619 1411, |
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
8234
diff
changeset
|
1620 /**/ |
8234
dc72f4a463e4
commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents:
8232
diff
changeset
|
1621 1410, |
dc72f4a463e4
commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents:
8232
diff
changeset
|
1622 /**/ |
8232
a777ff826523
commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents:
8230
diff
changeset
|
1623 1409, |
a777ff826523
commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents:
8230
diff
changeset
|
1624 /**/ |
8230
51ca0cee512e
commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents:
8228
diff
changeset
|
1625 1408, |
51ca0cee512e
commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents:
8228
diff
changeset
|
1626 /**/ |
8228
a0e552c51c34
commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents:
8226
diff
changeset
|
1627 1407, |
a0e552c51c34
commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents:
8226
diff
changeset
|
1628 /**/ |
8226
cb0edf7bd0a4
commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents:
8224
diff
changeset
|
1629 1406, |
cb0edf7bd0a4
commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents:
8224
diff
changeset
|
1630 /**/ |
8224
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
1631 1405, |
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
1632 /**/ |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
1633 1404, |
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
1634 /**/ |
8220
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
1635 1403, |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
1636 /**/ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
1637 1402, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
1638 /**/ |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
1639 1401, |
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
1640 /**/ |
8214
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1641 1400, |
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
1642 /**/ |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8210
diff
changeset
|
1643 1399, |
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8210
diff
changeset
|
1644 /**/ |
8210
b717dae2f26d
commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents:
8208
diff
changeset
|
1645 1398, |
b717dae2f26d
commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents:
8208
diff
changeset
|
1646 /**/ |
8208
c11aaa31a0ed
commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents:
8206
diff
changeset
|
1647 1397, |
c11aaa31a0ed
commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents:
8206
diff
changeset
|
1648 /**/ |
8206
78f2e8c07973
commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1649 1396, |
78f2e8c07973
commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1650 /**/ |
8204
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8202
diff
changeset
|
1651 1395, |
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8202
diff
changeset
|
1652 /**/ |
8202
c16aa03d8db5
commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents:
8200
diff
changeset
|
1653 1394, |
c16aa03d8db5
commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents:
8200
diff
changeset
|
1654 /**/ |
8200
ee84450e604e
commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents:
8198
diff
changeset
|
1655 1393, |
ee84450e604e
commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents:
8198
diff
changeset
|
1656 /**/ |
8198
7c21dd028e0f
commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents:
8196
diff
changeset
|
1657 1392, |
7c21dd028e0f
commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents:
8196
diff
changeset
|
1658 /**/ |
8196
cbb2f84da063
commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents:
8194
diff
changeset
|
1659 1391, |
cbb2f84da063
commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents:
8194
diff
changeset
|
1660 /**/ |
8194
265bcedffc15
commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents:
8192
diff
changeset
|
1661 1390, |
265bcedffc15
commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents:
8192
diff
changeset
|
1662 /**/ |
8192
fa2668601c7a
commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents:
8190
diff
changeset
|
1663 1389, |
fa2668601c7a
commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents:
8190
diff
changeset
|
1664 /**/ |
8190
a8e7b8328cb4
commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents:
8188
diff
changeset
|
1665 1388, |
a8e7b8328cb4
commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents:
8188
diff
changeset
|
1666 /**/ |
8188
9531717f0694
commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents:
8186
diff
changeset
|
1667 1387, |
9531717f0694
commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents:
8186
diff
changeset
|
1668 /**/ |
8186
5fed86dac210
commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents:
8184
diff
changeset
|
1669 1386, |
5fed86dac210
commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents:
8184
diff
changeset
|
1670 /**/ |
8184
1f81c571d0e7
commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
1671 1385, |
1f81c571d0e7
commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
1672 /**/ |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
1673 1384, |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
1674 /**/ |
8180
1e48ffa2d697
commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents:
8178
diff
changeset
|
1675 1383, |
1e48ffa2d697
commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents:
8178
diff
changeset
|
1676 /**/ |
8178
e77efd7a7dad
commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1677 1382, |
e77efd7a7dad
commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
1678 /**/ |
8176
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
1679 1381, |
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
1680 /**/ |
8174
f2286ff0c102
commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
1681 1380, |
f2286ff0c102
commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
1682 /**/ |
8172
db5c79d93eee
commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
1683 1379, |
db5c79d93eee
commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
1684 /**/ |
8170
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8168
diff
changeset
|
1685 1378, |
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8168
diff
changeset
|
1686 /**/ |
8168
454a30a7590e
commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents:
8165
diff
changeset
|
1687 1377, |
454a30a7590e
commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents:
8165
diff
changeset
|
1688 /**/ |
8165
973686665238
commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
1689 1376, |
973686665238
commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
1690 /**/ |
8163
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
8161
diff
changeset
|
1691 1375, |
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
8161
diff
changeset
|
1692 /**/ |
8161
e9caba58213b
commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents:
8159
diff
changeset
|
1693 1374, |
e9caba58213b
commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents:
8159
diff
changeset
|
1694 /**/ |
8159
d0958e22d9ff
commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents:
8157
diff
changeset
|
1695 1373, |
d0958e22d9ff
commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents:
8157
diff
changeset
|
1696 /**/ |
8157
74b44d06d3c7
commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents:
8155
diff
changeset
|
1697 1372, |
74b44d06d3c7
commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents:
8155
diff
changeset
|
1698 /**/ |
8155
6ee6fb27dcea
commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents:
8153
diff
changeset
|
1699 1371, |
6ee6fb27dcea
commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents:
8153
diff
changeset
|
1700 /**/ |
8153
240deebfadde
commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
1701 1370, |
240deebfadde
commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
1702 /**/ |
8151
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8149
diff
changeset
|
1703 1369, |
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8149
diff
changeset
|
1704 /**/ |
8149
028e24e4c0f4
commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents:
8146
diff
changeset
|
1705 1368, |
028e24e4c0f4
commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents:
8146
diff
changeset
|
1706 /**/ |
8146
5dacbd22fefd
commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents:
8144
diff
changeset
|
1707 1367, |
5dacbd22fefd
commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents:
8144
diff
changeset
|
1708 /**/ |
8144
efbb9916290c
commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents:
8142
diff
changeset
|
1709 1366, |
efbb9916290c
commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents:
8142
diff
changeset
|
1710 /**/ |
8142
71aabce3142e
commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
1711 1365, |
71aabce3142e
commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
1712 /**/ |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8138
diff
changeset
|
1713 1364, |
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8138
diff
changeset
|
1714 /**/ |
8138
f52504c10387
commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents:
8136
diff
changeset
|
1715 1363, |
f52504c10387
commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents:
8136
diff
changeset
|
1716 /**/ |
8136
9b2d25319c48
commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents:
8134
diff
changeset
|
1717 1362, |
9b2d25319c48
commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents:
8134
diff
changeset
|
1718 /**/ |
8134
8abef552ece7
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents:
8132
diff
changeset
|
1719 1361, |
8abef552ece7
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents:
8132
diff
changeset
|
1720 /**/ |
8132
f96536c291d8
commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents:
8130
diff
changeset
|
1721 1360, |
f96536c291d8
commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents:
8130
diff
changeset
|
1722 /**/ |
8130
3462f9cfedf8
commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents:
8128
diff
changeset
|
1723 1359, |
3462f9cfedf8
commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents:
8128
diff
changeset
|
1724 /**/ |
8128
985cd5917560
commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents:
8126
diff
changeset
|
1725 1358, |
985cd5917560
commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents:
8126
diff
changeset
|
1726 /**/ |
8126
0aa9cb77a8dd
commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents:
8124
diff
changeset
|
1727 1357, |
0aa9cb77a8dd
commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents:
8124
diff
changeset
|
1728 /**/ |
8124
310dd635e8c9
commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents:
8122
diff
changeset
|
1729 1356, |
310dd635e8c9
commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents:
8122
diff
changeset
|
1730 /**/ |
8122
39532ee7dd43
commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
1731 1355, |
39532ee7dd43
commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
1732 /**/ |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8118
diff
changeset
|
1733 1354, |
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8118
diff
changeset
|
1734 /**/ |
8118
1f28be191fab
commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents:
8116
diff
changeset
|
1735 1353, |
1f28be191fab
commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents:
8116
diff
changeset
|
1736 /**/ |
8116
3c1bdf20c8b9
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
1737 1352, |
3c1bdf20c8b9
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
1738 /**/ |
8114
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
1739 1351, |
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
1740 /**/ |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
1741 1350, |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
1742 /**/ |
8110
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
8108
diff
changeset
|
1743 1349, |
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
8108
diff
changeset
|
1744 /**/ |
8108
50515f2e81d1
commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents:
8106
diff
changeset
|
1745 1348, |
50515f2e81d1
commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents:
8106
diff
changeset
|
1746 /**/ |
8106
58505cbea7e5
commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents:
8104
diff
changeset
|
1747 1347, |
58505cbea7e5
commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents:
8104
diff
changeset
|
1748 /**/ |
8104
1a03abdc4234
commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents:
8102
diff
changeset
|
1749 1346, |
1a03abdc4234
commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents:
8102
diff
changeset
|
1750 /**/ |
8102
441298d72f3c
commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents:
8100
diff
changeset
|
1751 1345, |
441298d72f3c
commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents:
8100
diff
changeset
|
1752 /**/ |
8100
ae50910ce279
commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents:
8098
diff
changeset
|
1753 1344, |
ae50910ce279
commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents:
8098
diff
changeset
|
1754 /**/ |
8098
7bc924a34288
commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents:
8096
diff
changeset
|
1755 1343, |
7bc924a34288
commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents:
8096
diff
changeset
|
1756 /**/ |
8096
882ba5080c5c
commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
1757 1342, |
882ba5080c5c
commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
1758 /**/ |
8094
18a3f0f05244
commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents:
8092
diff
changeset
|
1759 1341, |
18a3f0f05244
commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents:
8092
diff
changeset
|
1760 /**/ |
8092
d82fb42b611b
commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1761 1340, |
d82fb42b611b
commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
1762 /**/ |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8088
diff
changeset
|
1763 1339, |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8088
diff
changeset
|
1764 /**/ |
8088
1b70dae3e79a
commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents:
8086
diff
changeset
|
1765 1338, |
1b70dae3e79a
commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents:
8086
diff
changeset
|
1766 /**/ |
8086
04ed31f9ef70
commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
1767 1337, |
04ed31f9ef70
commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
1768 /**/ |
8084
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
1769 1336, |
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
1770 /**/ |
8082
0c7f5abe84b8
commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1771 1335, |
0c7f5abe84b8
commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
1772 /**/ |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8078
diff
changeset
|
1773 1334, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8078
diff
changeset
|
1774 /**/ |
8078
7676818d486b
commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
1775 1333, |
7676818d486b
commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
1776 /**/ |
8076
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8074
diff
changeset
|
1777 1332, |
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8074
diff
changeset
|
1778 /**/ |
8074
dc32c8026899
commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents:
8072
diff
changeset
|
1779 1331, |
dc32c8026899
commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents:
8072
diff
changeset
|
1780 /**/ |
8072
38887bf423ba
commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents:
8070
diff
changeset
|
1781 1330, |
38887bf423ba
commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents:
8070
diff
changeset
|
1782 /**/ |
8070
e4c3f6720b03
commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents:
8068
diff
changeset
|
1783 1329, |
e4c3f6720b03
commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents:
8068
diff
changeset
|
1784 /**/ |
8068
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8066
diff
changeset
|
1785 1328, |
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8066
diff
changeset
|
1786 /**/ |
8066
1aa8ed4ee48b
commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
1787 1327, |
1aa8ed4ee48b
commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
1788 /**/ |
8064
1e853c5273d0
commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents:
8062
diff
changeset
|
1789 1326, |
1e853c5273d0
commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents:
8062
diff
changeset
|
1790 /**/ |
8062
7fe3b9dc132b
commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1791 1325, |
7fe3b9dc132b
commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
1792 /**/ |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8057
diff
changeset
|
1793 1324, |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8057
diff
changeset
|
1794 /**/ |
8057
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8055
diff
changeset
|
1795 1323, |
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8055
diff
changeset
|
1796 /**/ |
8055
6db4b1c863ec
commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
1797 1322, |
6db4b1c863ec
commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
1798 /**/ |
8053
774d53057a23
commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
1799 1321, |
774d53057a23
commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
1800 /**/ |
8051
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
1801 1320, |
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
1802 /**/ |
8049
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
1803 1319, |
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
1804 /**/ |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8045
diff
changeset
|
1805 1318, |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8045
diff
changeset
|
1806 /**/ |
8045
9f9b74579bdc
commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents:
8043
diff
changeset
|
1807 1317, |
9f9b74579bdc
commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents:
8043
diff
changeset
|
1808 /**/ |
8043
167e22951df4
commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
1809 1316, |
167e22951df4
commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
1810 /**/ |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8039
diff
changeset
|
1811 1315, |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8039
diff
changeset
|
1812 /**/ |
8039
72324c2e890a
commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1813 1314, |
72324c2e890a
commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1814 /**/ |
8037
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8035
diff
changeset
|
1815 1313, |
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8035
diff
changeset
|
1816 /**/ |
8035
f48041801aac
commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents:
8033
diff
changeset
|
1817 1312, |
f48041801aac
commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents:
8033
diff
changeset
|
1818 /**/ |
8033
a1b10634a28a
commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1819 1311, |
a1b10634a28a
commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1820 /**/ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8029
diff
changeset
|
1821 1310, |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8029
diff
changeset
|
1822 /**/ |
8029
770dd91ad9f7
commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents:
8027
diff
changeset
|
1823 1309, |
770dd91ad9f7
commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents:
8027
diff
changeset
|
1824 /**/ |
8027
4fd171e5cedc
commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents:
8025
diff
changeset
|
1825 1308, |
4fd171e5cedc
commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents:
8025
diff
changeset
|
1826 /**/ |
8025
1f0f08c601b7
commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
1827 1307, |
1f0f08c601b7
commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
1828 /**/ |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8021
diff
changeset
|
1829 1306, |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8021
diff
changeset
|
1830 /**/ |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
8019
diff
changeset
|
1831 1305, |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
8019
diff
changeset
|
1832 /**/ |
8019
d685893d852e
commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents:
8017
diff
changeset
|
1833 1304, |
d685893d852e
commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents:
8017
diff
changeset
|
1834 /**/ |
8017
c59a65524084
commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
1835 1303, |
c59a65524084
commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
1836 /**/ |
8015
b421c7f2f172
commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents:
8013
diff
changeset
|
1837 1302, |
b421c7f2f172
commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents:
8013
diff
changeset
|
1838 /**/ |
8013
dfae8bce5920
commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents:
8011
diff
changeset
|
1839 1301, |
dfae8bce5920
commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents:
8011
diff
changeset
|
1840 /**/ |
8011
26f555e9aab1
commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents:
8009
diff
changeset
|
1841 1300, |
26f555e9aab1
commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents:
8009
diff
changeset
|
1842 /**/ |
8009
b2cfa3416ba0
commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents:
8007
diff
changeset
|
1843 1299, |
b2cfa3416ba0
commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents:
8007
diff
changeset
|
1844 /**/ |
8007
ac78cba9e72b
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents:
8005
diff
changeset
|
1845 1298, |
ac78cba9e72b
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents:
8005
diff
changeset
|
1846 /**/ |
8005
d65aa95725d3
commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
1847 1297, |
d65aa95725d3
commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
1848 /**/ |
8003
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
8001
diff
changeset
|
1849 1296, |
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
8001
diff
changeset
|
1850 /**/ |
8001
e5dbeb923ce6
commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
1851 1295, |
e5dbeb923ce6
commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
1852 /**/ |
7999
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7997
diff
changeset
|
1853 1294, |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7997
diff
changeset
|
1854 /**/ |
7997
c1c9ab17e197
commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents:
7995
diff
changeset
|
1855 1293, |
c1c9ab17e197
commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents:
7995
diff
changeset
|
1856 /**/ |
7995
d244f2e46d69
commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents:
7993
diff
changeset
|
1857 1292, |
d244f2e46d69
commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents:
7993
diff
changeset
|
1858 /**/ |
7993
0756eab66b71
commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents:
7990
diff
changeset
|
1859 1291, |
0756eab66b71
commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents:
7990
diff
changeset
|
1860 /**/ |
7990
75de22db840d
commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents:
7988
diff
changeset
|
1861 1290, |
75de22db840d
commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents:
7988
diff
changeset
|
1862 /**/ |
7988
d3fed9a639db
commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents:
7986
diff
changeset
|
1863 1289, |
d3fed9a639db
commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents:
7986
diff
changeset
|
1864 /**/ |
7986
8e0d4cd8157a
commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents:
7984
diff
changeset
|
1865 1288, |
8e0d4cd8157a
commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents:
7984
diff
changeset
|
1866 /**/ |
7984
c166ff6797cb
commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents:
7982
diff
changeset
|
1867 1287, |
c166ff6797cb
commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents:
7982
diff
changeset
|
1868 /**/ |
7982
5c30ba57aaea
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents:
7979
diff
changeset
|
1869 1286, |
5c30ba57aaea
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents:
7979
diff
changeset
|
1870 /**/ |
7979
22367b9f528a
commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents:
7977
diff
changeset
|
1871 1285, |
22367b9f528a
commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents:
7977
diff
changeset
|
1872 /**/ |
7977
96fe78b32ad5
commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents:
7975
diff
changeset
|
1873 1284, |
96fe78b32ad5
commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents:
7975
diff
changeset
|
1874 /**/ |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7973
diff
changeset
|
1875 1283, |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7973
diff
changeset
|
1876 /**/ |
7973
00344cd730f6
commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents:
7971
diff
changeset
|
1877 1282, |
00344cd730f6
commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents:
7971
diff
changeset
|
1878 /**/ |
7971
f91a24e33475
commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents:
7969
diff
changeset
|
1879 1281, |
f91a24e33475
commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents:
7969
diff
changeset
|
1880 /**/ |
7969
0de25de30ba3
commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents:
7967
diff
changeset
|
1881 1280, |
0de25de30ba3
commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents:
7967
diff
changeset
|
1882 /**/ |
7967
45ea5ebf3a98
commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents:
7965
diff
changeset
|
1883 1279, |
45ea5ebf3a98
commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents:
7965
diff
changeset
|
1884 /**/ |
7965
646d5148fee2
commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents:
7963
diff
changeset
|
1885 1278, |
646d5148fee2
commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents:
7963
diff
changeset
|
1886 /**/ |
7963
d96e38f35e2d
commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1887 1277, |
d96e38f35e2d
commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1888 /**/ |
7961
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7959
diff
changeset
|
1889 1276, |
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7959
diff
changeset
|
1890 /**/ |
7959
fc9ba91a6533
commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
1891 1275, |
fc9ba91a6533
commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
1892 /**/ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
1893 1274, |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
1894 /**/ |
7955
a4de8e834b8f
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents:
7953
diff
changeset
|
1895 1273, |
a4de8e834b8f
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents:
7953
diff
changeset
|
1896 /**/ |
7953
a028a16110e2
commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents:
7951
diff
changeset
|
1897 1272, |
a028a16110e2
commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents:
7951
diff
changeset
|
1898 /**/ |
7951
03e716299680
commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents:
7949
diff
changeset
|
1899 1271, |
03e716299680
commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents:
7949
diff
changeset
|
1900 /**/ |
7949
3f7382858d4d
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents:
7947
diff
changeset
|
1901 1270, |
3f7382858d4d
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents:
7947
diff
changeset
|
1902 /**/ |
7947
b2922673917a
commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents:
7945
diff
changeset
|
1903 1269, |
b2922673917a
commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents:
7945
diff
changeset
|
1904 /**/ |
7945
e72438a11172
commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents:
7943
diff
changeset
|
1905 1268, |
e72438a11172
commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents:
7943
diff
changeset
|
1906 /**/ |
7943
e875f0fbd9c0
commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
1907 1267, |
e875f0fbd9c0
commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
1908 /**/ |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7939
diff
changeset
|
1909 1266, |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7939
diff
changeset
|
1910 /**/ |
7939
dcc0bd6b1574
commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents:
7937
diff
changeset
|
1911 1265, |
dcc0bd6b1574
commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents:
7937
diff
changeset
|
1912 /**/ |
7937
2e905dfc6999
commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
1913 1264, |
2e905dfc6999
commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
1914 /**/ |
7935
3f2e0b62003d
commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents:
7933
diff
changeset
|
1915 1263, |
3f2e0b62003d
commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents:
7933
diff
changeset
|
1916 /**/ |
7933
1f0743f4f88f
commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents:
7931
diff
changeset
|
1917 1262, |
1f0743f4f88f
commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents:
7931
diff
changeset
|
1918 /**/ |
7931
2679e636e862
commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents:
7929
diff
changeset
|
1919 1261, |
2679e636e862
commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents:
7929
diff
changeset
|
1920 /**/ |
7929
e44240b5a6da
commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents:
7927
diff
changeset
|
1921 1260, |
e44240b5a6da
commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents:
7927
diff
changeset
|
1922 /**/ |
7927
2a34dd90beba
commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents:
7925
diff
changeset
|
1923 1259, |
2a34dd90beba
commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents:
7925
diff
changeset
|
1924 /**/ |
7925
b724dbb299d5
commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents:
7922
diff
changeset
|
1925 1258, |
b724dbb299d5
commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents:
7922
diff
changeset
|
1926 /**/ |
7922
14540239601d
commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents:
7920
diff
changeset
|
1927 1257, |
14540239601d
commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents:
7920
diff
changeset
|
1928 /**/ |
7920
1ebc7be4dbbf
commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents:
7918
diff
changeset
|
1929 1256, |
1ebc7be4dbbf
commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents:
7918
diff
changeset
|
1930 /**/ |
7918
ce5a7a613867
commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents:
7916
diff
changeset
|
1931 1255, |
ce5a7a613867
commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents:
7916
diff
changeset
|
1932 /**/ |
7916
54602dcac207
commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents:
7914
diff
changeset
|
1933 1254, |
54602dcac207
commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents:
7914
diff
changeset
|
1934 /**/ |
7914
35973ce58c84
commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents:
7912
diff
changeset
|
1935 1253, |
35973ce58c84
commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents:
7912
diff
changeset
|
1936 /**/ |
7912
1c6ef9113556
commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents:
7910
diff
changeset
|
1937 1252, |
1c6ef9113556
commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents:
7910
diff
changeset
|
1938 /**/ |
7910
e873010fb658
commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents:
7908
diff
changeset
|
1939 1251, |
e873010fb658
commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents:
7908
diff
changeset
|
1940 /**/ |
7908
a343a738010e
commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents:
7906
diff
changeset
|
1941 1250, |
a343a738010e
commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents:
7906
diff
changeset
|
1942 /**/ |
7906
ea1fd8d750a6
commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents:
7904
diff
changeset
|
1943 1249, |
ea1fd8d750a6
commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents:
7904
diff
changeset
|
1944 /**/ |
7904
14a5de0990a5
commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents:
7902
diff
changeset
|
1945 1248, |
14a5de0990a5
commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents:
7902
diff
changeset
|
1946 /**/ |
7902
f12d6235a753
commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents:
7899
diff
changeset
|
1947 1247, |
f12d6235a753
commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents:
7899
diff
changeset
|
1948 /**/ |
7899
93c61501c2cf
commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents:
7897
diff
changeset
|
1949 1246, |
93c61501c2cf
commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents:
7897
diff
changeset
|
1950 /**/ |
7897
43071dab7621
commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents:
7895
diff
changeset
|
1951 1245, |
43071dab7621
commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents:
7895
diff
changeset
|
1952 /**/ |
7895
bff95e0d8885
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents:
7893
diff
changeset
|
1953 1244, |
bff95e0d8885
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents:
7893
diff
changeset
|
1954 /**/ |
7893
df2b8af14072
commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents:
7891
diff
changeset
|
1955 1243, |
df2b8af14072
commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents:
7891
diff
changeset
|
1956 /**/ |
7891
d14cf20b44dc
commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents:
7889
diff
changeset
|
1957 1242, |
d14cf20b44dc
commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents:
7889
diff
changeset
|
1958 /**/ |
7889
8e84273089d0
commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents:
7887
diff
changeset
|
1959 1241, |
8e84273089d0
commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents:
7887
diff
changeset
|
1960 /**/ |
7887
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7885
diff
changeset
|
1961 1240, |
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7885
diff
changeset
|
1962 /**/ |
7885
6e6f829af138
commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents:
7883
diff
changeset
|
1963 1239, |
6e6f829af138
commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents:
7883
diff
changeset
|
1964 /**/ |
7883
98a96e0ca73b
commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
1965 1238, |
98a96e0ca73b
commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
1966 /**/ |
7881
e7afe45a202a
commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
1967 1237, |
e7afe45a202a
commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
1968 /**/ |
7879
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
7877
diff
changeset
|
1969 1236, |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
7877
diff
changeset
|
1970 /**/ |
7877
7fbd2de703a9
commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents:
7874
diff
changeset
|
1971 1235, |
7fbd2de703a9
commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents:
7874
diff
changeset
|
1972 /**/ |
7874
2313f1a94153
commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents:
7872
diff
changeset
|
1973 1234, |
2313f1a94153
commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents:
7872
diff
changeset
|
1974 /**/ |
7872
4b9d4600166f
commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1975 1233, |
4b9d4600166f
commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1976 /**/ |
7870
fb5ba6fbc843
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents:
7868
diff
changeset
|
1977 1232, |
fb5ba6fbc843
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents:
7868
diff
changeset
|
1978 /**/ |
7868
17e6ff1a74f1
commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents:
7866
diff
changeset
|
1979 1231, |
17e6ff1a74f1
commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents:
7866
diff
changeset
|
1980 /**/ |
7866
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7864
diff
changeset
|
1981 1230, |
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7864
diff
changeset
|
1982 /**/ |
7864
6b0891de44a9
commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents:
7862
diff
changeset
|
1983 1229, |
6b0891de44a9
commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents:
7862
diff
changeset
|
1984 /**/ |
7862
d4fec9208e7e
commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents:
7860
diff
changeset
|
1985 1228, |
d4fec9208e7e
commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents:
7860
diff
changeset
|
1986 /**/ |
7860
150576e6b984
commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents:
7858
diff
changeset
|
1987 1227, |
150576e6b984
commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents:
7858
diff
changeset
|
1988 /**/ |
7858
e90a16795c74
commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1989 1226, |
e90a16795c74
commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1990 /**/ |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7854
diff
changeset
|
1991 1225, |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7854
diff
changeset
|
1992 /**/ |
7854
b512d9cce151
commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents:
7852
diff
changeset
|
1993 1224, |
b512d9cce151
commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents:
7852
diff
changeset
|
1994 /**/ |
7852
8818755d8326
commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
1995 1223, |
8818755d8326
commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
1996 /**/ |
7850
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7848
diff
changeset
|
1997 1222, |
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7848
diff
changeset
|
1998 /**/ |
7848
798673834bab
commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents:
7846
diff
changeset
|
1999 1221, |
798673834bab
commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents:
7846
diff
changeset
|
2000 /**/ |
7846
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
2001 1220, |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
2002 /**/ |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
2003 1219, |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
2004 /**/ |
7842
cf744110897d
commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents:
7840
diff
changeset
|
2005 1218, |
cf744110897d
commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents:
7840
diff
changeset
|
2006 /**/ |
7840
28f569c7dab9
commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
2007 1217, |
28f569c7dab9
commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
2008 /**/ |
7838
cfed0e9f0ca2
commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
2009 1216, |
cfed0e9f0ca2
commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
2010 /**/ |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
2011 1215, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
2012 /**/ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2013 1214, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2014 /**/ |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7831
diff
changeset
|
2015 1213, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7831
diff
changeset
|
2016 /**/ |
7831
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
2017 1212, |
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
2018 /**/ |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
2019 1211, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
2020 /**/ |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7825
diff
changeset
|
2021 1210, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7825
diff
changeset
|
2022 /**/ |
7825
7898da204b98
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
2023 1209, |
7898da204b98
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
2024 /**/ |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
2025 1208, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
2026 /**/ |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
2027 1207, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
2028 /**/ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
2029 1206, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
2030 /**/ |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2031 1205, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
2032 /**/ |
7815
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
2033 1204, |
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
2034 /**/ |
7813
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7811
diff
changeset
|
2035 1203, |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7811
diff
changeset
|
2036 /**/ |
7811
7fda54504fee
commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents:
7809
diff
changeset
|
2037 1202, |
7fda54504fee
commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents:
7809
diff
changeset
|
2038 /**/ |
7809
4635a259ecc0
commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2039 1201, |
4635a259ecc0
commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2040 /**/ |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2041 1200, |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2042 /**/ |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2043 1199, |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2044 /**/ |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2045 1198, |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
2046 /**/ |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2047 1197, |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2048 /**/ |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2049 1196, |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
2050 /**/ |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7795
diff
changeset
|
2051 1195, |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7795
diff
changeset
|
2052 /**/ |
7795
4f23088b47ea
commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents:
7793
diff
changeset
|
2053 1194, |
4f23088b47ea
commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents:
7793
diff
changeset
|
2054 /**/ |
7793
2981a37cec61
commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents:
7791
diff
changeset
|
2055 1193, |
2981a37cec61
commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents:
7791
diff
changeset
|
2056 /**/ |
7791
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
2057 1192, |
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
2058 /**/ |
7788
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
2059 1191, |
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
2060 /**/ |
7786
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
2061 1190, |
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
2062 /**/ |
7784
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
2063 1189, |
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
2064 /**/ |
7782
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
2065 1188, |
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
2066 /**/ |
7780
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
2067 1187, |
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
2068 /**/ |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
2069 1186, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
2070 /**/ |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
2071 1185, |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
2072 /**/ |
7774
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
2073 1184, |
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
2074 /**/ |
7772
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
2075 1183, |
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
2076 /**/ |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
2077 1182, |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
2078 /**/ |
7768
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
2079 1181, |
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
2080 /**/ |
7765
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
2081 1180, |
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
2082 /**/ |
7763
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
2083 1179, |
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
2084 /**/ |
7761
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
2085 1178, |
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
2086 /**/ |
7759
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
2087 1177, |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
2088 /**/ |
7757
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
2089 1176, |
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
2090 /**/ |
7755
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
2091 1175, |
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
2092 /**/ |
7753
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
2093 1174, |
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
2094 /**/ |
7751
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
2095 1173, |
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
2096 /**/ |
7749
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
2097 1172, |
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
2098 /**/ |
7747
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
2099 1171, |
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
2100 /**/ |
7745
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2101 1170, |
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
2102 /**/ |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
2103 1169, |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
2104 /**/ |
7740
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
2105 1168, |
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
2106 /**/ |
7738
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
2107 1167, |
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
2108 /**/ |
7736
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
2109 1166, |
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
2110 /**/ |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
2111 1165, |
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
2112 /**/ |
7732
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
2113 1164, |
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
2114 /**/ |
7730
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
2115 1163, |
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
2116 /**/ |
7728
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
2117 1162, |
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
2118 /**/ |
7726
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
2119 1161, |
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
2120 /**/ |
7724
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
2121 1160, |
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
2122 /**/ |
7722
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
2123 1159, |
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
2124 /**/ |
7720
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
2125 1158, |
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
2126 /**/ |
7718
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
2127 1157, |
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
2128 /**/ |
7716
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
2129 1156, |
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
2130 /**/ |
7714
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
2131 1155, |
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
2132 /**/ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
2133 1154, |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
2134 /**/ |
7710
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
2135 1153, |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
2136 /**/ |
7708
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
2137 1152, |
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
2138 /**/ |
7705
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
2139 1151, |
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
2140 /**/ |
7703
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
2141 1150, |
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
2142 /**/ |
7701
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
2143 1149, |
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
2144 /**/ |
7699
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
2145 1148, |
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
2146 /**/ |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
2147 1147, |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
2148 /**/ |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
2149 1146, |
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
2150 /**/ |
7693
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
2151 1145, |
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
2152 /**/ |
7691
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
2153 1144, |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
2154 /**/ |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
2155 1143, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
2156 /**/ |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
2157 1142, |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
2158 /**/ |
7685
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
2159 1141, |
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
2160 /**/ |
7683
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
2161 1140, |
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
2162 /**/ |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2163 1139, |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
2164 /**/ |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
2165 1138, |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
2166 /**/ |
7677
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
2167 1137, |
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
2168 /**/ |
7675
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
2169 1136, |
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
2170 /**/ |
7672
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
2171 1135, |
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
2172 /**/ |
7670
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
2173 1134, |
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
2174 /**/ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
2175 1133, |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
2176 /**/ |
7666
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
2177 1132, |
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
2178 /**/ |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
2179 1131, |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
2180 /**/ |
7662
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
2181 1130, |
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
2182 /**/ |
7660
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
2183 1129, |
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
2184 /**/ |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
2185 1128, |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
2186 /**/ |
7655
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
2187 1127, |
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
2188 /**/ |
7653
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
2189 1126, |
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
2190 /**/ |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
2191 1125, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
2192 /**/ |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
2193 1124, |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
2194 /**/ |
7647
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
2195 1123, |
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
2196 /**/ |
7645
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
2197 1122, |
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
2198 /**/ |
7643
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
2199 1121, |
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
2200 /**/ |
7641
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
2201 1120, |
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
2202 /**/ |
7639
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
2203 1119, |
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
2204 /**/ |
7637
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
2205 1118, |
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
2206 /**/ |
7635
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
2207 1117, |
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
2208 /**/ |
7633
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
2209 1116, |
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
2210 /**/ |
7631
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
2211 1115, |
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
2212 /**/ |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
2213 1114, |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
2214 /**/ |
7627
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
2215 1113, |
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
2216 /**/ |
7625
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
2217 1112, |
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
2218 /**/ |
7623
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
2219 1111, |
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
2220 /**/ |
7621
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
2221 1110, |
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
2222 /**/ |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2223 1109, |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
2224 /**/ |
7617
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
2225 1108, |
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
2226 /**/ |
7615
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
2227 1107, |
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
2228 /**/ |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
2229 1106, |
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
2230 /**/ |
7611
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
2231 1105, |
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
2232 /**/ |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
2233 1104, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
2234 /**/ |
7607
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
2235 1103, |
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
2236 /**/ |
7605
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
2237 1102, |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
2238 /**/ |
7603
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
2239 1101, |
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
2240 /**/ |
7602
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
2241 1100, |
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
2242 /**/ |
7600
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
2243 1099, |
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
2244 /**/ |
7598
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
2245 1098, |
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
2246 /**/ |
7595
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
2247 1097, |
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
2248 /**/ |
7593
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
2249 1096, |
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
2250 /**/ |
7591
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
2251 1095, |
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
2252 /**/ |
7588
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
2253 1094, |
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
2254 /**/ |
7586
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
2255 1093, |
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
2256 /**/ |
7584
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
2257 1092, |
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
2258 /**/ |
7582
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
2259 1091, |
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
2260 /**/ |
7580
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
2261 1090, |
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
2262 /**/ |
7578
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
2263 1089, |
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
2264 /**/ |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
2265 1088, |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
2266 /**/ |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
2267 1087, |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
2268 /**/ |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
2269 1086, |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
2270 /**/ |
7570
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2271 1085, |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
2272 /**/ |
7568
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
2273 1084, |
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
2274 /**/ |
7566
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
2275 1083, |
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
2276 /**/ |
7564
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
2277 1082, |
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
2278 /**/ |
7562
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
2279 1081, |
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
2280 /**/ |
7560
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
2281 1080, |
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
2282 /**/ |
7558
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
2283 1079, |
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
2284 /**/ |
7555
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
2285 1078, |
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
2286 /**/ |
7553
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
2287 1077, |
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
2288 /**/ |
7551
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
2289 1076, |
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
2290 /**/ |
7549
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
2291 1075, |
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
2292 /**/ |
7547
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
2293 1074, |
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
2294 /**/ |
7545
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
2295 1073, |
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
2296 /**/ |
7542
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
2297 1072, |
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
2298 /**/ |
7540
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
2299 1071, |
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
2300 /**/ |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
2301 1070, |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
2302 /**/ |
7536
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
2303 1069, |
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
2304 /**/ |
7534
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
2305 1068, |
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
2306 /**/ |
7532
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
2307 1067, |
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
2308 /**/ |
7530
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
2309 1066, |
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
2310 /**/ |
7528
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
2311 1065, |
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
2312 /**/ |
7526
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
2313 1064, |
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
2314 /**/ |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
2315 1063, |
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
2316 /**/ |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
2317 1062, |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
2318 /**/ |
7519
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
2319 1061, |
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
2320 /**/ |
7517
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
2321 1060, |
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
2322 /**/ |
7515
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
2323 1059, |
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
2324 /**/ |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
2325 1058, |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
2326 /**/ |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
2327 1057, |
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
2328 /**/ |
7509
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
2329 1056, |
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
2330 /**/ |
7506
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
2331 1055, |
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
2332 /**/ |
7504
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
2333 1054, |
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
2334 /**/ |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
2335 1053, |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
2336 /**/ |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
2337 1052, |
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
2338 /**/ |
7498
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
2339 1051, |
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
2340 /**/ |
7496
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
2341 1050, |
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
2342 /**/ |
7494
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
2343 1049, |
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
2344 /**/ |
7492
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
2345 1048, |
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
2346 /**/ |
7490
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
2347 1047, |
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
2348 /**/ |
7488
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
2349 1046, |
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
2350 /**/ |
7486
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
2351 1045, |
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
2352 /**/ |
7484
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
2353 1044, |
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
2354 /**/ |
7482
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
2355 1043, |
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
2356 /**/ |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
2357 1042, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
2358 /**/ |
7478
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
2359 1041, |
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
2360 /**/ |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
2361 1040, |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
2362 /**/ |
7473
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
2363 1039, |
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
2364 /**/ |
7471
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
2365 1038, |
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
2366 /**/ |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2367 1037, |
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
2368 /**/ |
7467
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
2369 1036, |
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
2370 /**/ |
7465
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
2371 1035, |
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
2372 /**/ |
7462
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
2373 1034, |
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
2374 /**/ |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
2375 1033, |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
2376 /**/ |
7458
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
2377 1032, |
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
2378 /**/ |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
2379 1031, |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
2380 /**/ |
7454
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
2381 1030, |
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
2382 /**/ |
7452
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
2383 1029, |
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
2384 /**/ |
7450
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2385 1028, |
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2386 /**/ |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
2387 1027, |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
2388 /**/ |
7445
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
2389 1026, |
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
2390 /**/ |
7443
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
2391 1025, |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
2392 /**/ |
7441
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
2393 1024, |
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
2394 /**/ |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
2395 1023, |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
2396 /**/ |
7437
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
2397 1022, |
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
2398 /**/ |
7435
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
2399 1021, |
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
2400 /**/ |
7433
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
2401 1020, |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
2402 /**/ |
7430
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
2403 1019, |
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
2404 /**/ |
7428
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
2405 1018, |
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
2406 /**/ |
7426
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
2407 1017, |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
2408 /**/ |
7424
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
2409 1016, |
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
2410 /**/ |
7422
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
2411 1015, |
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
2412 /**/ |
7420
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
2413 1014, |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
2414 /**/ |
7418
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
2415 1013, |
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
2416 /**/ |
7416
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
2417 1012, |
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
2418 /**/ |
7414
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
2419 1011, |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
2420 /**/ |
7412
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2421 1010, |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
2422 /**/ |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2423 1009, |
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2424 /**/ |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
2425 1008, |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
2426 /**/ |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
2427 1007, |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
2428 /**/ |
7404
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
2429 1006, |
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
2430 /**/ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
2431 1005, |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
2432 /**/ |
7399
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
2433 1004, |
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
2434 /**/ |
7397
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
2435 1003, |
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
2436 /**/ |
7395
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
2437 1002, |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
2438 /**/ |
7393
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
2439 1001, |
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
2440 /**/ |
7391
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
2441 1000, |
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
2442 /**/ |
7389
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
2443 999, |
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
2444 /**/ |
7387
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
2445 998, |
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
2446 /**/ |
7385
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
2447 997, |
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
2448 /**/ |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2449 996, |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
2450 /**/ |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
2451 995, |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
2452 /**/ |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
2453 994, |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
2454 /**/ |
7376
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
2455 993, |
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
2456 /**/ |
7374
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
2457 992, |
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
2458 /**/ |
7372
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
2459 991, |
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
2460 /**/ |
7370
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
2461 990, |
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
2462 /**/ |
7368
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
2463 989, |
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
2464 /**/ |
7366
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
2465 988, |
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
2466 /**/ |
7364
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
2467 987, |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
2468 /**/ |
7362
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
2469 986, |
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
2470 /**/ |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
2471 985, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
2472 /**/ |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
2473 984, |
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
2474 /**/ |
7356
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
2475 983, |
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
2476 /**/ |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
2477 982, |
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
2478 /**/ |
7352
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
2479 981, |
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
2480 /**/ |
7350
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
2481 980, |
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
2482 /**/ |
7347
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
2483 979, |
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
2484 /**/ |
7345
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
2485 978, |
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
2486 /**/ |
7344
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
2487 977, |
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
2488 /**/ |
7342
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
2489 976, |
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
2490 /**/ |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
2491 975, |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
2492 /**/ |
7338
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
2493 974, |
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
2494 /**/ |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
2495 973, |
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
2496 /**/ |
7334
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
2497 972, |
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
2498 /**/ |
7332
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
2499 971, |
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
2500 /**/ |
7330
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
2501 970, |
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
2502 /**/ |
7328
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
2503 969, |
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
2504 /**/ |
7326
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
2505 968, |
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
2506 /**/ |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
2507 967, |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
2508 /**/ |
7322
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
2509 966, |
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
2510 /**/ |
7320
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
2511 965, |
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
2512 /**/ |
7318
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
2513 964, |
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
2514 /**/ |
7316
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
2515 963, |
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
2516 /**/ |
7313
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
2517 962, |
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
2518 /**/ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
2519 961, |
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
2520 /**/ |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2521 960, |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
2522 /**/ |
7307
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
2523 959, |
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
2524 /**/ |
7305
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
2525 958, |
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
2526 /**/ |
7303
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
2527 957, |
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
2528 /**/ |
7301
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
2529 956, |
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
2530 /**/ |
7299
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
2531 955, |
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
2532 /**/ |
7297
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
2533 954, |
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
2534 /**/ |
7295
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
2535 953, |
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
2536 /**/ |
7293
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
2537 952, |
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
2538 /**/ |
7291
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
2539 951, |
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
2540 /**/ |
7289
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
2541 950, |
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
2542 /**/ |
7287
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
2543 949, |
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
2544 /**/ |
7285
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
2545 948, |
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
2546 /**/ |
7283
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
2547 947, |
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
2548 /**/ |
7281
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
2549 946, |
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
2550 /**/ |
7279
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
2551 945, |
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
2552 /**/ |
7277
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
2553 944, |
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
2554 /**/ |
7275
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
2555 943, |
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
2556 /**/ |
7273
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
2557 942, |
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
2558 /**/ |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
2559 941, |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
2560 /**/ |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
2561 940, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
2562 /**/ |
7262
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
2563 939, |
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
2564 /**/ |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
2565 938, |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
2566 /**/ |
7258
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
2567 937, |
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
2568 /**/ |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
2569 936, |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
2570 /**/ |
7254
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
2571 935, |
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
2572 /**/ |
7252
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
2573 934, |
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
2574 /**/ |
7250
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
2575 933, |
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
2576 /**/ |
7248
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
2577 932, |
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
2578 /**/ |
7246
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
2579 931, |
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
2580 /**/ |
7243
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2581 930, |
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
2582 /**/ |
7241
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2583 929, |
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
2584 /**/ |
7239
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
2585 928, |
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
2586 /**/ |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
2587 927, |
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
2588 /**/ |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
2589 926, |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
2590 /**/ |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
2591 925, |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
2592 /**/ |
7231
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
2593 924, |
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
2594 /**/ |
7229
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
2595 923, |
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
2596 /**/ |
7226
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
2597 922, |
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
2598 /**/ |
7224
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
2599 921, |
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
2600 /**/ |
7222
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
2601 920, |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
2602 /**/ |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
2603 919, |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
2604 /**/ |
7218
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
2605 918, |
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
2606 /**/ |
7216
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2607 917, |
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
2608 /**/ |
7214
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
2609 916, |
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
2610 /**/ |
7212
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
2611 915, |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
2612 /**/ |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
2613 914, |
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
2614 /**/ |
7208
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
2615 913, |
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
2616 /**/ |
7206
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
2617 912, |
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
2618 /**/ |
7204
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
2619 911, |
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
2620 /**/ |
7202
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
2621 910, |
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
2622 /**/ |
7200
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
2623 909, |
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
2624 /**/ |
7198
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
2625 908, |
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
2626 /**/ |
7196
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
2627 907, |
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
2628 /**/ |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
2629 906, |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
2630 /**/ |
7191
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
2631 905, |
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
2632 /**/ |
7189
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
2633 904, |
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
2634 /**/ |
7186
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
2635 903, |
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
2636 /**/ |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
2637 902, |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
2638 /**/ |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
2639 901, |
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
2640 /**/ |
7179
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
2641 900, |
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
2642 /**/ |
7177
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
2643 899, |
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
2644 /**/ |
7174
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
2645 898, |
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
2646 /**/ |
7172
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
2647 897, |
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
2648 /**/ |
7170
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
2649 896, |
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
2650 /**/ |
7168
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
2651 895, |
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
2652 /**/ |
7166
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
2653 894, |
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
2654 /**/ |
7164
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
2655 893, |
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
2656 /**/ |
7162
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
2657 892, |
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
2658 /**/ |
7160
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
2659 891, |
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
2660 /**/ |
7158
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
2661 890, |
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
2662 /**/ |
7156
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
2663 889, |
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
2664 /**/ |
7154
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
2665 888, |
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
2666 /**/ |
7152
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2667 887, |
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
2668 /**/ |
7150
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
2669 886, |
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
2670 /**/ |
7148
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
2671 885, |
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
2672 /**/ |
7145
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
2673 884, |
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
2674 /**/ |
7143
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
2675 883, |
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
2676 /**/ |
7141
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
2677 882, |
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
2678 /**/ |
7139
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
2679 881, |
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
2680 /**/ |
7137
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
2681 880, |
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
2682 /**/ |
7135
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
2683 879, |
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
2684 /**/ |
7133
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
2685 878, |
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
2686 /**/ |
7131
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
2687 877, |
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
2688 /**/ |
7129
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
2689 876, |
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
2690 /**/ |
7127
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
2691 875, |
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
2692 /**/ |
7125
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
2693 874, |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
2694 /**/ |
7123
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
2695 873, |
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
2696 /**/ |
7121
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
2697 872, |
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
2698 /**/ |
7119
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
2699 871, |
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
2700 /**/ |
7117
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
2701 870, |
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
2702 /**/ |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
2703 869, |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
2704 /**/ |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
2705 868, |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
2706 /**/ |
7111
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2707 867, |
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
2708 /**/ |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
2709 866, |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
2710 /**/ |
7107
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
2711 865, |
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
2712 /**/ |
7105
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
2713 864, |
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
2714 /**/ |
7103
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
2715 863, |
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
2716 /**/ |
7101
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
2717 862, |
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
2718 /**/ |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
2719 861, |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
2720 /**/ |
7096
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
2721 860, |
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
2722 /**/ |
7094
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
2723 859, |
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
2724 /**/ |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
2725 858, |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
2726 /**/ |
7090
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
2727 857, |
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
2728 /**/ |
7088
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
2729 856, |
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
2730 /**/ |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
2731 855, |
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
2732 /**/ |
7084
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
2733 854, |
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
2734 /**/ |
7082
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2735 853, |
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2736 /**/ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
2737 852, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
2738 /**/ |
7078
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
2739 851, |
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
2740 /**/ |
7076
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
2741 850, |
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
2742 /**/ |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
2743 849, |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
2744 /**/ |
7072
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
2745 848, |
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
2746 /**/ |
7070
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
2747 847, |
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
2748 /**/ |
7068
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
2749 846, |
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
2750 /**/ |
7066
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
2751 845, |
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
2752 /**/ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
2753 844, |
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
2754 /**/ |
7062
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
2755 843, |
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
2756 /**/ |
7060
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
2757 842, |
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
2758 /**/ |
7058
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
2759 841, |
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
2760 /**/ |
7056
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
2761 840, |
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
2762 /**/ |
7054
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
2763 839, |
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
2764 /**/ |
7052
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
2765 838, |
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
2766 /**/ |
7049
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
2767 837, |
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
2768 /**/ |
7046
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
2769 836, |
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
2770 /**/ |
7044
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
2771 835, |
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
2772 /**/ |
7042
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
2773 834, |
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
2774 /**/ |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
2775 833, |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
2776 /**/ |
7038
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
2777 832, |
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
2778 /**/ |
7036
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2779 831, |
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
2780 /**/ |
7034
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
2781 830, |
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
2782 /**/ |
7032
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
2783 829, |
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
2784 /**/ |
7030
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
2785 828, |
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
2786 /**/ |
7021 | 2787 827, |
2788 /**/ | |
7019 | 2789 826, |
2790 /**/ | |
7017 | 2791 825, |
2792 /**/ | |
7014 | 2793 824, |
2794 /**/ | |
7011 | 2795 823, |
2796 /**/ | |
7009 | 2797 822, |
2798 /**/ | |
7007 | 2799 821, |
2800 /**/ | |
7005 | 2801 820, |
2802 /**/ | |
7003 | 2803 819, |
2804 /**/ | |
7001 | 2805 818, |
2806 /**/ | |
6999 | 2807 817, |
2808 /**/ | |
6997 | 2809 816, |
2810 /**/ | |
6995 | 2811 815, |
2812 /**/ | |
6993 | 2813 814, |
2814 /**/ | |
6991 | 2815 813, |
2816 /**/ | |
6989 | 2817 812, |
2818 /**/ | |
6987 | 2819 811, |
2820 /**/ | |
6985 | 2821 810, |
2822 /**/ | |
6983 | 2823 809, |
2824 /**/ | |
6981 | 2825 808, |
2826 /**/ | |
6979 | 2827 807, |
2828 /**/ | |
6977 | 2829 806, |
2830 /**/ | |
6975 | 2831 805, |
2832 /**/ | |
6973 | 2833 804, |
2834 /**/ | |
6971 | 2835 803, |
2836 /**/ | |
6969 | 2837 802, |
2838 /**/ | |
6967 | 2839 801, |
2840 /**/ | |
6965 | 2841 800, |
2842 /**/ | |
6963 | 2843 799, |
2844 /**/ | |
6961 | 2845 798, |
2846 /**/ | |
6959 | 2847 797, |
2848 /**/ | |
6957 | 2849 796, |
2850 /**/ | |
6954 | 2851 795, |
2852 /**/ | |
6952 | 2853 794, |
2854 /**/ | |
6949 | 2855 793, |
2856 /**/ | |
6947 | 2857 792, |
2858 /**/ | |
6945 | 2859 791, |
2860 /**/ | |
6943 | 2861 790, |
2862 /**/ | |
6941 | 2863 789, |
2864 /**/ | |
6939 | 2865 788, |
2866 /**/ | |
6937 | 2867 787, |
2868 /**/ | |
6935 | 2869 786, |
2870 /**/ | |
6933 | 2871 785, |
2872 /**/ | |
6931 | 2873 784, |
2874 /**/ | |
6929 | 2875 783, |
2876 /**/ | |
6927 | 2877 782, |
2878 /**/ | |
6925 | 2879 781, |
2880 /**/ | |
6923 | 2881 780, |
2882 /**/ | |
6921 | 2883 779, |
2884 /**/ | |
6919 | 2885 778, |
2886 /**/ | |
6916 | 2887 777, |
2888 /**/ | |
6914 | 2889 776, |
2890 /**/ | |
6911 | 2891 775, |
2892 /**/ | |
6909 | 2893 774, |
2894 /**/ | |
6907 | 2895 773, |
2896 /**/ | |
6905 | 2897 772, |
2898 /**/ | |
6903 | 2899 771, |
2900 /**/ | |
6901 | 2901 770, |
2902 /**/ | |
6899 | 2903 769, |
2904 /**/ | |
6897 | 2905 768, |
2906 /**/ | |
6895 | 2907 767, |
2908 /**/ | |
6893 | 2909 766, |
2910 /**/ | |
6891 | 2911 765, |
2912 /**/ | |
6889 | 2913 764, |
2914 /**/ | |
6887 | 2915 763, |
2916 /**/ | |
6885 | 2917 762, |
2918 /**/ | |
6882 | 2919 761, |
2920 /**/ | |
6880 | 2921 760, |
2922 /**/ | |
6878 | 2923 759, |
2924 /**/ | |
6876 | 2925 758, |
2926 /**/ | |
6874 | 2927 757, |
2928 /**/ | |
6872 | 2929 756, |
2930 /**/ | |
6870 | 2931 755, |
2932 /**/ | |
6868 | 2933 754, |
2934 /**/ | |
6866 | 2935 753, |
2936 /**/ | |
6864 | 2937 752, |
2938 /**/ | |
6862 | 2939 751, |
2940 /**/ | |
6860 | 2941 750, |
2942 /**/ | |
6858 | 2943 749, |
2944 /**/ | |
6856 | 2945 748, |
2946 /**/ | |
6853 | 2947 747, |
2948 /**/ | |
6851 | 2949 746, |
2950 /**/ | |
6849 | 2951 745, |
2952 /**/ | |
6847 | 2953 744, |
2954 /**/ | |
6845 | 2955 743, |
2956 /**/ | |
6843 | 2957 742, |
2958 /**/ | |
6841 | 2959 741, |
2960 /**/ | |
6838 | 2961 740, |
2962 /**/ | |
6836 | 2963 739, |
2964 /**/ | |
6834 | 2965 738, |
2966 /**/ | |
6832 | 2967 737, |
2968 /**/ | |
6830 | 2969 736, |
2970 /**/ | |
6828 | 2971 735, |
2972 /**/ | |
6826 | 2973 734, |
2974 /**/ | |
6824 | 2975 733, |
2976 /**/ | |
6821 | 2977 732, |
2978 /**/ | |
6819 | 2979 731, |
2980 /**/ | |
6817 | 2981 730, |
2982 /**/ | |
6815 | 2983 729, |
2984 /**/ | |
6813 | 2985 728, |
2986 /**/ | |
6811 | 2987 727, |
2988 /**/ | |
6809 | 2989 726, |
2990 /**/ | |
6807 | 2991 725, |
2992 /**/ | |
6805 | 2993 724, |
2994 /**/ | |
6803 | 2995 723, |
2996 /**/ | |
6801 | 2997 722, |
2998 /**/ | |
6799 | 2999 721, |
3000 /**/ | |
6797 | 3001 720, |
3002 /**/ | |
6795 | 3003 719, |
3004 /**/ | |
6793 | 3005 718, |
3006 /**/ | |
6791 | 3007 717, |
3008 /**/ | |
6789 | 3009 716, |
3010 /**/ | |
6787 | 3011 715, |
3012 /**/ | |
6785 | 3013 714, |
3014 /**/ | |
6783 | 3015 713, |
3016 /**/ | |
6781 | 3017 712, |
3018 /**/ | |
6779 | 3019 711, |
3020 /**/ | |
6777 | 3021 710, |
3022 /**/ | |
6775 | 3023 709, |
3024 /**/ | |
6773 | 3025 708, |
3026 /**/ | |
6771 | 3027 707, |
3028 /**/ | |
6769 | 3029 706, |
3030 /**/ | |
6767 | 3031 705, |
3032 /**/ | |
6765 | 3033 704, |
3034 /**/ | |
6763 | 3035 703, |
3036 /**/ | |
6761 | 3037 702, |
3038 /**/ | |
6759 | 3039 701, |
3040 /**/ | |
6755 | 3041 700, |
3042 /**/ | |
6753 | 3043 699, |
3044 /**/ | |
6751 | 3045 698, |
3046 /**/ | |
6749 | 3047 697, |
3048 /**/ | |
6747 | 3049 696, |
3050 /**/ | |
6745 | 3051 695, |
3052 /**/ | |
6742 | 3053 694, |
3054 /**/ | |
6739 | 3055 693, |
3056 /**/ | |
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
|
3057 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
|
3058 /**/ |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
3059 691, |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
3060 /**/ |
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
|
3061 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
|
3062 /**/ |
6731 | 3063 689, |
3064 /**/ | |
6729 | 3065 688, |
3066 /**/ | |
6727 | 3067 687, |
3068 /**/ | |
6725 | 3069 686, |
3070 /**/ | |
6723 | 3071 685, |
3072 /**/ | |
6721 | 3073 684, |
3074 /**/ | |
6719 | 3075 683, |
3076 /**/ | |
6717 | 3077 682, |
3078 /**/ | |
6714 | 3079 681, |
3080 /**/ | |
6712 | 3081 680, |
3082 /**/ | |
6710 | 3083 679, |
3084 /**/ | |
6708 | 3085 678, |
3086 /**/ | |
6706 | 3087 677, |
3088 /**/ | |
6704 | 3089 676, |
3090 /**/ | |
6702 | 3091 675, |
3092 /**/ | |
6700 | 3093 674, |
3094 /**/ | |
6698 | 3095 673, |
3096 /**/ | |
6695 | 3097 672, |
3098 /**/ | |
6693 | 3099 671, |
3100 /**/ | |
6691 | 3101 670, |
3102 /**/ | |
6689 | 3103 669, |
3104 /**/ | |
6687 | 3105 668, |
3106 /**/ | |
6685 | 3107 667, |
3108 /**/ | |
6683 | 3109 666, |
3110 /**/ | |
6681 | 3111 665, |
3112 /**/ | |
6679 | 3113 664, |
3114 /**/ | |
6677 | 3115 663, |
3116 /**/ | |
6675 | 3117 662, |
3118 /**/ | |
6673 | 3119 661, |
3120 /**/ | |
6671 | 3121 660, |
3122 /**/ | |
6669 | 3123 659, |
3124 /**/ | |
6667 | 3125 658, |
3126 /**/ | |
6665 | 3127 657, |
3128 /**/ | |
6663 | 3129 656, |
3130 /**/ | |
6661 | 3131 655, |
3132 /**/ | |
6659 | 3133 654, |
3134 /**/ | |
6657 | 3135 653, |
3136 /**/ | |
6655 | 3137 652, |
3138 /**/ | |
6653 | 3139 651, |
3140 /**/ | |
6651 | 3141 650, |
3142 /**/ | |
6649 | 3143 649, |
3144 /**/ | |
6645 | 3145 648, |
3146 /**/ | |
6643 | 3147 647, |
3148 /**/ | |
6641 | 3149 646, |
3150 /**/ | |
6639 | 3151 645, |
3152 /**/ | |
6637 | 3153 644, |
3154 /**/ | |
6635 | 3155 643, |
3156 /**/ | |
6633 | 3157 642, |
3158 /**/ | |
6631 | 3159 641, |
3160 /**/ | |
6629 | 3161 640, |
3162 /**/ | |
6627 | 3163 639, |
3164 /**/ | |
6625 | 3165 638, |
3166 /**/ | |
6623 | 3167 637, |
3168 /**/ | |
6620 | 3169 636, |
3170 /**/ | |
6618 | 3171 635, |
3172 /**/ | |
6616 | 3173 634, |
3174 /**/ | |
6614 | 3175 633, |
3176 /**/ | |
6612 | 3177 632, |
3178 /**/ | |
6610 | 3179 631, |
3180 /**/ | |
6608 | 3181 630, |
3182 /**/ | |
6606 | 3183 629, |
3184 /**/ | |
6604 | 3185 628, |
3186 /**/ | |
6602 | 3187 627, |
3188 /**/ | |
6600 | 3189 626, |
3190 /**/ | |
6598 | 3191 625, |
3192 /**/ | |
6596 | 3193 624, |
3194 /**/ | |
6594 | 3195 623, |
3196 /**/ | |
6592 | 3197 622, |
3198 /**/ | |
6590 | 3199 621, |
3200 /**/ | |
6588 | 3201 620, |
3202 /**/ | |
6586 | 3203 619, |
3204 /**/ | |
6584 | 3205 618, |
3206 /**/ | |
6581 | 3207 617, |
3208 /**/ | |
6579 | 3209 616, |
3210 /**/ | |
6577 | 3211 615, |
3212 /**/ | |
6575 | 3213 614, |
3214 /**/ | |
6573 | 3215 613, |
3216 /**/ | |
6571 | 3217 612, |
3218 /**/ | |
6569 | 3219 611, |
3220 /**/ | |
6567 | 3221 610, |
3222 /**/ | |
6565 | 3223 609, |
3224 /**/ | |
6563 | 3225 608, |
3226 /**/ | |
6561 | 3227 607, |
3228 /**/ | |
6559 | 3229 606, |
3230 /**/ | |
6557 | 3231 605, |
3232 /**/ | |
6555 | 3233 604, |
3234 /**/ | |
6553 | 3235 603, |
3236 /**/ | |
6551 | 3237 602, |
3238 /**/ | |
6549 | 3239 601, |
3240 /**/ | |
6547 | 3241 600, |
3242 /**/ | |
6545 | 3243 599, |
3244 /**/ | |
6543 | 3245 598, |
3246 /**/ | |
6541 | 3247 597, |
3248 /**/ | |
6539 | 3249 596, |
3250 /**/ | |
6537 | 3251 595, |
3252 /**/ | |
6535 | 3253 594, |
3254 /**/ | |
6533 | 3255 593, |
3256 /**/ | |
6531 | 3257 592, |
3258 /**/ | |
6528 | 3259 591, |
3260 /**/ | |
6526 | 3261 590, |
3262 /**/ | |
6524 | 3263 589, |
3264 /**/ | |
6522 | 3265 588, |
3266 /**/ | |
6520 | 3267 587, |
3268 /**/ | |
6518 | 3269 586, |
3270 /**/ | |
6516 | 3271 585, |
3272 /**/ | |
6514 | 3273 584, |
3274 /**/ | |
6512 | 3275 583, |
3276 /**/ | |
6510 | 3277 582, |
3278 /**/ | |
6508 | 3279 581, |
3280 /**/ | |
6506 | 3281 580, |
3282 /**/ | |
6503 | 3283 579, |
3284 /**/ | |
6501 | 3285 578, |
3286 /**/ | |
6499 | 3287 577, |
3288 /**/ | |
6497 | 3289 576, |
3290 /**/ | |
6495 | 3291 575, |
3292 /**/ | |
6493 | 3293 574, |
3294 /**/ | |
6491 | 3295 573, |
3296 /**/ | |
6489 | 3297 572, |
3298 /**/ | |
6487 | 3299 571, |
3300 /**/ | |
6485 | 3301 570, |
3302 /**/ | |
6482 | 3303 569, |
3304 /**/ | |
6480 | 3305 568, |
3306 /**/ | |
6477 | 3307 567, |
3308 /**/ | |
6474 | 3309 566, |
3310 /**/ | |
6472 | 3311 565, |
3312 /**/ | |
6470 | 3313 564, |
3314 /**/ | |
6468 | 3315 563, |
3316 /**/ | |
6466 | 3317 562, |
3318 /**/ | |
6464 | 3319 561, |
3320 /**/ | |
6462 | 3321 560, |
3322 /**/ | |
6460 | 3323 559, |
3324 /**/ | |
6458 | 3325 558, |
3326 /**/ | |
6456 | 3327 557, |
3328 /**/ | |
6454 | 3329 556, |
3330 /**/ | |
6452 | 3331 555, |
3332 /**/ | |
6450 | 3333 554, |
3334 /**/ | |
6448 | 3335 553, |
3336 /**/ | |
6445 | 3337 552, |
3338 /**/ | |
6443 | 3339 551, |
3340 /**/ | |
6441 | 3341 550, |
3342 /**/ | |
6438 | 3343 549, |
3344 /**/ | |
6436 | 3345 548, |
3346 /**/ | |
6434 | 3347 547, |
3348 /**/ | |
6432 | 3349 546, |
3350 /**/ | |
6430 | 3351 545, |
3352 /**/ | |
6428 | 3353 544, |
3354 /**/ | |
6426 | 3355 543, |
3356 /**/ | |
6424 | 3357 542, |
3358 /**/ | |
6422 | 3359 541, |
3360 /**/ | |
6419 | 3361 540, |
3362 /**/ | |
6417 | 3363 539, |
3364 /**/ | |
6415 | 3365 538, |
3366 /**/ | |
6413 | 3367 537, |
3368 /**/ | |
6411 | 3369 536, |
3370 /**/ | |
6409 | 3371 535, |
3372 /**/ | |
6406 | 3373 534, |
3374 /**/ | |
6404 | 3375 533, |
3376 /**/ | |
6402 | 3377 532, |
3378 /**/ | |
6400 | 3379 531, |
3380 /**/ | |
6398 | 3381 530, |
3382 /**/ | |
6396 | 3383 529, |
3384 /**/ | |
6394 | 3385 528, |
3386 /**/ | |
6392 | 3387 527, |
3388 /**/ | |
6390 | 3389 526, |
3390 /**/ | |
6388 | 3391 525, |
3392 /**/ | |
6386 | 3393 524, |
3394 /**/ | |
6383 | 3395 523, |
3396 /**/ | |
6381 | 3397 522, |
3398 /**/ | |
6379 | 3399 521, |
3400 /**/ | |
6377 | 3401 520, |
3402 /**/ | |
6375 | 3403 519, |
3404 /**/ | |
6373 | 3405 518, |
3406 /**/ | |
6371 | 3407 517, |
3408 /**/ | |
6367 | 3409 516, |
3410 /**/ | |
6365 | 3411 515, |
3412 /**/ | |
6363 | 3413 514, |
3414 /**/ | |
6361 | 3415 513, |
3416 /**/ | |
6359 | 3417 512, |
3418 /**/ | |
6357 | 3419 511, |
3420 /**/ | |
6355 | 3421 510, |
3422 /**/ | |
6353 | 3423 509, |
3424 /**/ | |
6351 | 3425 508, |
3426 /**/ | |
6349 | 3427 507, |
3428 /**/ | |
6347 | 3429 506, |
3430 /**/ | |
6345 | 3431 505, |
3432 /**/ | |
6343 | 3433 504, |
3434 /**/ | |
6341 | 3435 503, |
3436 /**/ | |
6339 | 3437 502, |
3438 /**/ | |
6337 | 3439 501, |
3440 /**/ | |
6334 | 3441 500, |
3442 /**/ | |
6332 | 3443 499, |
3444 /**/ | |
6330 | 3445 498, |
3446 /**/ | |
6328 | 3447 497, |
3448 /**/ | |
6326 | 3449 496, |
3450 /**/ | |
6324 | 3451 495, |
3452 /**/ | |
6322 | 3453 494, |
3454 /**/ | |
6320 | 3455 493, |
3456 /**/ | |
6318 | 3457 492, |
3458 /**/ | |
6316 | 3459 491, |
3460 /**/ | |
6314 | 3461 490, |
3462 /**/ | |
6312 | 3463 489, |
3464 /**/ | |
6310 | 3465 488, |
3466 /**/ | |
6307 | 3467 487, |
3468 /**/ | |
6305 | 3469 486, |
3470 /**/ | |
6303 | 3471 485, |
3472 /**/ | |
6301 | 3473 484, |
3474 /**/ | |
6299 | 3475 483, |
3476 /**/ | |
6297 | 3477 482, |
3478 /**/ | |
6295 | 3479 481, |
3480 /**/ | |
6293 | 3481 480, |
3482 /**/ | |
6290 | 3483 479, |
3484 /**/ | |
6288 | 3485 478, |
3486 /**/ | |
6286 | 3487 477, |
3488 /**/ | |
6284 | 3489 476, |
3490 /**/ | |
6282 | 3491 475, |
3492 /**/ | |
6280 | 3493 474, |
3494 /**/ | |
6278 | 3495 473, |
3496 /**/ | |
6276 | 3497 472, |
3498 /**/ | |
6274 | 3499 471, |
3500 /**/ | |
6272 | 3501 470, |
3502 /**/ | |
6270 | 3503 469, |
3504 /**/ | |
6268 | 3505 468, |
3506 /**/ | |
6266 | 3507 467, |
3508 /**/ | |
6264 | 3509 466, |
3510 /**/ | |
6262 | 3511 465, |
3512 /**/ | |
6260 | 3513 464, |
3514 /**/ | |
6257 | 3515 463, |
3516 /**/ | |
6255 | 3517 462, |
3518 /**/ | |
6253 | 3519 461, |
3520 /**/ | |
6251 | 3521 460, |
3522 /**/ | |
6249 | 3523 459, |
3524 /**/ | |
6247 | 3525 458, |
3526 /**/ | |
6245 | 3527 457, |
3528 /**/ | |
6243 | 3529 456, |
3530 /**/ | |
6241 | 3531 455, |
3532 /**/ | |
6239 | 3533 454, |
3534 /**/ | |
6236 | 3535 453, |
3536 /**/ | |
6234 | 3537 452, |
3538 /**/ | |
6232 | 3539 451, |
3540 /**/ | |
6230 | 3541 450, |
3542 /**/ | |
6228 | 3543 449, |
3544 /**/ | |
6226 | 3545 448, |
3546 /**/ | |
6224 | 3547 447, |
3548 /**/ | |
6222 | 3549 446, |
3550 /**/ | |
6220 | 3551 445, |
3552 /**/ | |
6218 | 3553 444, |
3554 /**/ | |
6216 | 3555 443, |
3556 /**/ | |
6214 | 3557 442, |
3558 /**/ | |
6211 | 3559 441, |
3560 /**/ | |
6209 | 3561 440, |
3562 /**/ | |
6207 | 3563 439, |
3564 /**/ | |
6205 | 3565 438, |
3566 /**/ | |
6203 | 3567 437, |
3568 /**/ | |
6201 | 3569 436, |
3570 /**/ | |
6199 | 3571 435, |
3572 /**/ | |
6197 | 3573 434, |
3574 /**/ | |
6195 | 3575 433, |
3576 /**/ | |
6193 | 3577 432, |
3578 /**/ | |
6191 | 3579 431, |
3580 /**/ | |
6189 | 3581 430, |
3582 /**/ | |
6187 | 3583 429, |
3584 /**/ | |
6185 | 3585 428, |
3586 /**/ | |
6183 | 3587 427, |
3588 /**/ | |
6181 | 3589 426, |
3590 /**/ | |
6178 | 3591 425, |
3592 /**/ | |
6176 | 3593 424, |
3594 /**/ | |
6174 | 3595 423, |
3596 /**/ | |
6172 | 3597 422, |
3598 /**/ | |
6170 | 3599 421, |
3600 /**/ | |
6168 | 3601 420, |
3602 /**/ | |
6166 | 3603 419, |
3604 /**/ | |
6164 | 3605 418, |
3606 /**/ | |
6162 | 3607 417, |
3608 /**/ | |
6160 | 3609 416, |
3610 /**/ | |
6158
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
3611 415, |
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
3612 /**/ |
6154 | 3613 414, |
3614 /**/ | |
6151 | 3615 413, |
3616 /**/ | |
6149 | 3617 412, |
3618 /**/ | |
6147 | 3619 411, |
3620 /**/ | |
6145 | 3621 410, |
3622 /**/ | |
6143 | 3623 409, |
3624 /**/ | |
6140 | 3625 408, |
3626 /**/ | |
6138 | 3627 407, |
3628 /**/ | |
6136 | 3629 406, |
3630 /**/ | |
6134 | 3631 405, |
3632 /**/ | |
6132 | 3633 404, |
3634 /**/ | |
6130 | 3635 403, |
3636 /**/ | |
6128 | 3637 402, |
3638 /**/ | |
6126 | 3639 401, |
3640 /**/ | |
6124 | 3641 400, |
3642 /**/ | |
6122 | 3643 399, |
3644 /**/ | |
6120 | 3645 398, |
3646 /**/ | |
6118 | 3647 397, |
3648 /**/ | |
6116 | 3649 396, |
3650 /**/ | |
6114 | 3651 395, |
3652 /**/ | |
6112 | 3653 394, |
3654 /**/ | |
6110 | 3655 393, |
3656 /**/ | |
6108 | 3657 392, |
3658 /**/ | |
6106 | 3659 391, |
3660 /**/ | |
6104 | 3661 390, |
3662 /**/ | |
6102 | 3663 389, |
3664 /**/ | |
6100 | 3665 388, |
3666 /**/ | |
6098 | 3667 387, |
3668 /**/ | |
6096 | 3669 386, |
3670 /**/ | |
6094 | 3671 385, |
3672 /**/ | |
6092 | 3673 384, |
3674 /**/ | |
6089 | 3675 383, |
3676 /**/ | |
6087 | 3677 382, |
3678 /**/ | |
6085 | 3679 381, |
3680 /**/ | |
6083 | 3681 380, |
3682 /**/ | |
6081 | 3683 379, |
3684 /**/ | |
6079 | 3685 378, |
3686 /**/ | |
6077 | 3687 377, |
3688 /**/ | |
6075 | 3689 376, |
3690 /**/ | |
6073 | 3691 375, |
3692 /**/ | |
6071 | 3693 374, |
3694 /**/ | |
6068 | 3695 373, |
3696 /**/ | |
6066 | 3697 372, |
3698 /**/ | |
6064 | 3699 371, |
3700 /**/ | |
6062 | 3701 370, |
3702 /**/ | |
6060 | 3703 369, |
3704 /**/ | |
6058 | 3705 368, |
3706 /**/ | |
6056 | 3707 367, |
3708 /**/ | |
6054 | 3709 366, |
3710 /**/ | |
6052 | 3711 365, |
3712 /**/ | |
6049 | 3713 364, |
3714 /**/ | |
6047 | 3715 363, |
3716 /**/ | |
6045 | 3717 362, |
3718 /**/ | |
6043 | 3719 361, |
3720 /**/ | |
6041 | 3721 360, |
3722 /**/ | |
6039 | 3723 359, |
3724 /**/ | |
6037 | 3725 358, |
3726 /**/ | |
6035 | 3727 357, |
3728 /**/ | |
6033 | 3729 356, |
3730 /**/ | |
6030 | 3731 355, |
3732 /**/ | |
6028 | 3733 354, |
3734 /**/ | |
6026 | 3735 353, |
3736 /**/ | |
6024 | 3737 352, |
3738 /**/ | |
6022 | 3739 351, |
3740 /**/ | |
6020 | 3741 350, |
3742 /**/ | |
6018 | 3743 349, |
3744 /**/ | |
6016 | 3745 348, |
3746 /**/ | |
6014 | 3747 347, |
3748 /**/ | |
6012 | 3749 346, |
3750 /**/ | |
6010 | 3751 345, |
3752 /**/ | |
6007 | 3753 344, |
3754 /**/ | |
6005 | 3755 343, |
3756 /**/ | |
6003 | 3757 342, |
3758 /**/ | |
6001 | 3759 341, |
3760 /**/ | |
5999 | 3761 340, |
3762 /**/ | |
5997 | 3763 339, |
3764 /**/ | |
5995 | 3765 338, |
3766 /**/ | |
5993 | 3767 337, |
3768 /**/ | |
5991 | 3769 336, |
3770 /**/ | |
5989 | 3771 335, |
3772 /**/ | |
5987 | 3773 334, |
3774 /**/ | |
5985 | 3775 333, |
3776 /**/ | |
5983 | 3777 332, |
3778 /**/ | |
5981 | 3779 331, |
3780 /**/ | |
5979 | 3781 330, |
3782 /**/ | |
5977 | 3783 329, |
3784 /**/ | |
5975 | 3785 328, |
3786 /**/ | |
5973 | 3787 327, |
3788 /**/ | |
5971 | 3789 326, |
3790 /**/ | |
5969 | 3791 325, |
3792 /**/ | |
5966 | 3793 324, |
3794 /**/ | |
5964 | 3795 323, |
3796 /**/ | |
5962 | 3797 322, |
3798 /**/ | |
5960 | 3799 321, |
3800 /**/ | |
5958 | 3801 320, |
3802 /**/ | |
5956 | 3803 319, |
3804 /**/ | |
5954 | 3805 318, |
3806 /**/ | |
5952 | 3807 317, |
3808 /**/ | |
5950 | 3809 316, |
3810 /**/ | |
5948 | 3811 315, |
3812 /**/ | |
5946 | 3813 314, |
3814 /**/ | |
5944 | 3815 313, |
3816 /**/ | |
5942 | 3817 312, |
3818 /**/ | |
5940 | 3819 311, |
3820 /**/ | |
5938 | 3821 310, |
3822 /**/ | |
5936 | 3823 309, |
3824 /**/ | |
5934 | 3825 308, |
3826 /**/ | |
5932 | 3827 307, |
3828 /**/ | |
5930 | 3829 306, |
3830 /**/ | |
5927 | 3831 305, |
3832 /**/ | |
5925 | 3833 304, |
3834 /**/ | |
5923 | 3835 303, |
3836 /**/ | |
5921 | 3837 302, |
3838 /**/ | |
5919 | 3839 301, |
3840 /**/ | |
5917 | 3841 300, |
3842 /**/ | |
5915 | 3843 299, |
3844 /**/ | |
5913 | 3845 298, |
3846 /**/ | |
5911 | 3847 297, |
3848 /**/ | |
5909 | 3849 296, |
3850 /**/ | |
5905 | 3851 295, |
3852 /**/ | |
5903 | 3853 294, |
3854 /**/ | |
5901 | 3855 293, |
3856 /**/ | |
5899 | 3857 292, |
3858 /**/ | |
5897 | 3859 291, |
3860 /**/ | |
5895 | 3861 290, |
3862 /**/ | |
5893 | 3863 289, |
3864 /**/ | |
5891 | 3865 288, |
3866 /**/ | |
5889 | 3867 287, |
3868 /**/ | |
5887 | 3869 286, |
3870 /**/ | |
5885 | 3871 285, |
3872 /**/ | |
5883 | 3873 284, |
3874 /**/ | |
5881 | 3875 283, |
3876 /**/ | |
5879 | 3877 282, |
3878 /**/ | |
5877 | 3879 281, |
3880 /**/ | |
5875 | 3881 280, |
3882 /**/ | |
5873 | 3883 279, |
3884 /**/ | |
5871 | 3885 278, |
3886 /**/ | |
5869 | 3887 277, |
3888 /**/ | |
5867 | 3889 276, |
3890 /**/ | |
5865 | 3891 275, |
3892 /**/ | |
5863 | 3893 274, |
3894 /**/ | |
5860 | 3895 273, |
3896 /**/ | |
5858 | 3897 272, |
3898 /**/ | |
5856 | 3899 271, |
3900 /**/ | |
5854 | 3901 270, |
3902 /**/ | |
5852 | 3903 269, |
3904 /**/ | |
5850 | 3905 268, |
3906 /**/ | |
5848 | 3907 267, |
3908 /**/ | |
5846 | 3909 266, |
3910 /**/ | |
5844 | 3911 265, |
3912 /**/ | |
5842 | 3913 264, |
3914 /**/ | |
5840 | 3915 263, |
3916 /**/ | |
5838 | 3917 262, |
3918 /**/ | |
5836 | 3919 261, |
3920 /**/ | |
5834 | 3921 260, |
3922 /**/ | |
5832 | 3923 259, |
3924 /**/ | |
5830 | 3925 258, |
3926 /**/ | |
5828 | 3927 257, |
3928 /**/ | |
5826 | 3929 256, |
3930 /**/ | |
5824 | 3931 255, |
3932 /**/ | |
5822 | 3933 254, |
3934 /**/ | |
5820 | 3935 253, |
3936 /**/ | |
5818 | 3937 252, |
3938 /**/ | |
5816 | 3939 251, |
3940 /**/ | |
5812 | 3941 250, |
3942 /**/ | |
5810 | 3943 249, |
3944 /**/ | |
5808 | 3945 248, |
3946 /**/ | |
5806 | 3947 247, |
3948 /**/ | |
5804 | 3949 246, |
3950 /**/ | |
5802 | 3951 245, |
3952 /**/ | |
5800 | 3953 244, |
3954 /**/ | |
5798 | 3955 243, |
3956 /**/ | |
5796 | 3957 242, |
3958 /**/ | |
5794 | 3959 241, |
3960 /**/ | |
5792 | 3961 240, |
3962 /**/ | |
5790 | 3963 239, |
3964 /**/ | |
5788 | 3965 238, |
3966 /**/ | |
5786 | 3967 237, |
3968 /**/ | |
5784 | 3969 236, |
3970 /**/ | |
5782 | 3971 235, |
3972 /**/ | |
5780 | 3973 234, |
3974 /**/ | |
5778 | 3975 233, |
3976 /**/ | |
5776 | 3977 232, |
3978 /**/ | |
5774 | 3979 231, |
3980 /**/ | |
5772 | 3981 230, |
3982 /**/ | |
5770 | 3983 229, |
3984 /**/ | |
5768 | 3985 228, |
3986 /**/ | |
5766 | 3987 227, |
3988 /**/ | |
5764 | 3989 226, |
3990 /**/ | |
5761 | 3991 225, |
3992 /**/ | |
5759 | 3993 224, |
3994 /**/ | |
5757 | 3995 223, |
3996 /**/ | |
5755 | 3997 222, |
3998 /**/ | |
5753 | 3999 221, |
4000 /**/ | |
5751 | 4001 220, |
4002 /**/ | |
5749 | 4003 219, |
4004 /**/ | |
5747 | 4005 218, |
4006 /**/ | |
5745 | 4007 217, |
4008 /**/ | |
5743 | 4009 216, |
4010 /**/ | |
5741 | 4011 215, |
4012 /**/ | |
5739 | 4013 214, |
4014 /**/ | |
5737 | 4015 213, |
4016 /**/ | |
5735 | 4017 212, |
4018 /**/ | |
5732 | 4019 211, |
4020 /**/ | |
5730 | 4021 210, |
4022 /**/ | |
5728 | 4023 209, |
4024 /**/ | |
5726 | 4025 208, |
4026 /**/ | |
5724 | 4027 207, |
4028 /**/ | |
5722 | 4029 206, |
4030 /**/ | |
5720 | 4031 205, |
4032 /**/ | |
5718 | 4033 204, |
4034 /**/ | |
5716 | 4035 203, |
4036 /**/ | |
5714 | 4037 202, |
4038 /**/ | |
5712 | 4039 201, |
4040 /**/ | |
5710 | 4041 200, |
4042 /**/ | |
5708 | 4043 199, |
4044 /**/ | |
5706 | 4045 198, |
4046 /**/ | |
5704 | 4047 197, |
4048 /**/ | |
5702 | 4049 196, |
4050 /**/ | |
5700 | 4051 195, |
4052 /**/ | |
5698 | 4053 194, |
4054 /**/ | |
5695 | 4055 193, |
4056 /**/ | |
5693 | 4057 192, |
4058 /**/ | |
5690 | 4059 191, |
4060 /**/ | |
5688 | 4061 190, |
4062 /**/ | |
5686 | 4063 189, |
4064 /**/ | |
5684 | 4065 188, |
4066 /**/ | |
5682 | 4067 187, |
4068 /**/ | |
5680 | 4069 186, |
4070 /**/ | |
5678 | 4071 185, |
4072 /**/ | |
5676 | 4073 184, |
4074 /**/ | |
5674 | 4075 183, |
4076 /**/ | |
5672 | 4077 182, |
4078 /**/ | |
5670 | 4079 181, |
4080 /**/ | |
5668 | 4081 180, |
4082 /**/ | |
5666 | 4083 179, |
4084 /**/ | |
5664 | 4085 178, |
4086 /**/ | |
5661 | 4087 177, |
4088 /**/ | |
5659 | 4089 176, |
4090 /**/ | |
5657 | 4091 175, |
4092 /**/ | |
5655 | 4093 174, |
4094 /**/ | |
5653 | 4095 173, |
4096 /**/ | |
5651 | 4097 172, |
4098 /**/ | |
5649 | 4099 171, |
4100 /**/ | |
5647 | 4101 170, |
4102 /**/ | |
5645 | 4103 169, |
4104 /**/ | |
5643 | 4105 168, |
4106 /**/ | |
5641 | 4107 167, |
4108 /**/ | |
5639 | 4109 166, |
4110 /**/ | |
5637 | 4111 165, |
4112 /**/ | |
5635 | 4113 164, |
4114 /**/ | |
5633 | 4115 163, |
4116 /**/ | |
5631 | 4117 162, |
4118 /**/ | |
5629 | 4119 161, |
4120 /**/ | |
5627 | 4121 160, |
4122 /**/ | |
5625 | 4123 159, |
4124 /**/ | |
5623 | 4125 158, |
4126 /**/ | |
5621 | 4127 157, |
4128 /**/ | |
5619 | 4129 156, |
4130 /**/ | |
5616 | 4131 155, |
4132 /**/ | |
5614 | 4133 154, |
4134 /**/ | |
5612 | 4135 153, |
4136 /**/ | |
5610 | 4137 152, |
4138 /**/ | |
5608 | 4139 151, |
4140 /**/ | |
5606 | 4141 150, |
4142 /**/ | |
5604 | 4143 149, |
4144 /**/ | |
5602 | 4145 148, |
4146 /**/ | |
5600 | 4147 147, |
4148 /**/ | |
5598 | 4149 146, |
4150 /**/ | |
5596 | 4151 145, |
4152 /**/ | |
5594 | 4153 144, |
4154 /**/ | |
5592 | 4155 143, |
4156 /**/ | |
5590 | 4157 142, |
4158 /**/ | |
5588 | 4159 141, |
4160 /**/ | |
5586 | 4161 140, |
4162 /**/ | |
5584 | 4163 139, |
4164 /**/ | |
5582 | 4165 138, |
4166 /**/ | |
5580 | 4167 137, |
4168 /**/ | |
5578 | 4169 136, |
4170 /**/ | |
5575 | 4171 135, |
4172 /**/ | |
5573 | 4173 134, |
4174 /**/ | |
5571 | 4175 133, |
4176 /**/ | |
5569 | 4177 132, |
4178 /**/ | |
5566 | 4179 131, |
4180 /**/ | |
5564 | 4181 130, |
4182 /**/ | |
5562 | 4183 129, |
4184 /**/ | |
5560 | 4185 128, |
4186 /**/ | |
5558 | 4187 127, |
4188 /**/ | |
5556 | 4189 126, |
4190 /**/ | |
5553 | 4191 125, |
4192 /**/ | |
5551 | 4193 124, |
4194 /**/ | |
5549 | 4195 123, |
4196 /**/ | |
5547 | 4197 122, |
4198 /**/ | |
5545 | 4199 121, |
4200 /**/ | |
5543 | 4201 120, |
4202 /**/ | |
5541 | 4203 119, |
4204 /**/ | |
5539 | 4205 118, |
4206 /**/ | |
5537 | 4207 117, |
4208 /**/ | |
5535 | 4209 116, |
4210 /**/ | |
5533 | 4211 115, |
4212 /**/ | |
5531 | 4213 114, |
4214 /**/ | |
5529 | 4215 113, |
4216 /**/ | |
5527 | 4217 112, |
4218 /**/ | |
5525 | 4219 111, |
4220 /**/ | |
5523 | 4221 110, |
4222 /**/ | |
5521 | 4223 109, |
4224 /**/ | |
5519 | 4225 108, |
4226 /**/ | |
5517 | 4227 107, |
4228 /**/ | |
5515 | 4229 106, |
4230 /**/ | |
5513 | 4231 105, |
4232 /**/ | |
5511 | 4233 104, |
4234 /**/ | |
5508 | 4235 103, |
4236 /**/ | |
5506 | 4237 102, |
4238 /**/ | |
5504 | 4239 101, |
4240 /**/ | |
5502 | 4241 100, |
4242 /**/ | |
5500 | 4243 99, |
4244 /**/ | |
5498 | 4245 98, |
4246 /**/ | |
5496 | 4247 97, |
4248 /**/ | |
5494 | 4249 96, |
4250 /**/ | |
5492 | 4251 95, |
4252 /**/ | |
5490 | 4253 94, |
4254 /**/ | |
5488 | 4255 93, |
4256 /**/ | |
5485 | 4257 92, |
4258 /**/ | |
5483 | 4259 91, |
4260 /**/ | |
5481 | 4261 90, |
4262 /**/ | |
5479 | 4263 89, |
4264 /**/ | |
5477 | 4265 88, |
4266 /**/ | |
5475 | 4267 87, |
4268 /**/ | |
5473 | 4269 86, |
4270 /**/ | |
5471 | 4271 85, |
4272 /**/ | |
5469 | 4273 84, |
4274 /**/ | |
5467 | 4275 83, |
4276 /**/ | |
5464 | 4277 82, |
4278 /**/ | |
5462 | 4279 81, |
4280 /**/ | |
5460 | 4281 80, |
4282 /**/ | |
5458 | 4283 79, |
4284 /**/ | |
5456 | 4285 78, |
4286 /**/ | |
5454 | 4287 77, |
4288 /**/ | |
5452 | 4289 76, |
4290 /**/ | |
5450 | 4291 75, |
4292 /**/ | |
5448 | 4293 74, |
4294 /**/ | |
5446 | 4295 73, |
4296 /**/ | |
5444 | 4297 72, |
4298 /**/ | |
5442 | 4299 71, |
4300 /**/ | |
5440 | 4301 70, |
4302 /**/ | |
5438 | 4303 69, |
4304 /**/ | |
5436 | 4305 68, |
4306 /**/ | |
5434 | 4307 67, |
4308 /**/ | |
5432 | 4309 66, |
4310 /**/ | |
5430 | 4311 65, |
4312 /**/ | |
5428 | 4313 64, |
4314 /**/ | |
5426 | 4315 63, |
4316 /**/ | |
5423 | 4317 62, |
4318 /**/ | |
5421 | 4319 61, |
4320 /**/ | |
5419 | 4321 60, |
4322 /**/ | |
5417 | 4323 59, |
4324 /**/ | |
5415 | 4325 58, |
4326 /**/ | |
5413 | 4327 57, |
4328 /**/ | |
5411 | 4329 56, |
4330 /**/ | |
5409 | 4331 55, |
4332 /**/ | |
5407 | 4333 54, |
4334 /**/ | |
5405 | 4335 53, |
4336 /**/ | |
5403 | 4337 52, |
4338 /**/ | |
5401 | 4339 51, |
4340 /**/ | |
5398 | 4341 50, |
4342 /**/ | |
5396 | 4343 49, |
4344 /**/ | |
5394 | 4345 48, |
4346 /**/ | |
5392 | 4347 47, |
4348 /**/ | |
5390 | 4349 46, |
4350 /**/ | |
5388 | 4351 45, |
4352 /**/ | |
5386 | 4353 44, |
4354 /**/ | |
5384 | 4355 43, |
4356 /**/ | |
5382 | 4357 42, |
4358 /**/ | |
5380 | 4359 41, |
4360 /**/ | |
5378 | 4361 40, |
4362 /**/ | |
5376 | 4363 39, |
4364 /**/ | |
5374 | 4365 38, |
4366 /**/ | |
5372 | 4367 37, |
4368 /**/ | |
5370 | 4369 36, |
4370 /**/ | |
5367 | 4371 35, |
4372 /**/ | |
5365 | 4373 34, |
4374 /**/ | |
5363 | 4375 33, |
4376 /**/ | |
5360 | 4377 32, |
4378 /**/ | |
5358 | 4379 31, |
4380 /**/ | |
5356 | 4381 30, |
4382 /**/ | |
5353 | 4383 29, |
4384 /**/ | |
5351 | 4385 28, |
4386 /**/ | |
5349 | 4387 27, |
4388 /**/ | |
5347 | 4389 26, |
4390 /**/ | |
5345 | 4391 25, |
4392 /**/ | |
5343 | 4393 24, |
4394 /**/ | |
5341 | 4395 23, |
4396 /**/ | |
5338 | 4397 22, |
4398 /**/ | |
5336 | 4399 21, |
4400 /**/ | |
5334 | 4401 20, |
4402 /**/ | |
5332 | 4403 19, |
4404 /**/ | |
5330 | 4405 18, |
4406 /**/ | |
5328 | 4407 17, |
4408 /**/ | |
5326 | 4409 16, |
4410 /**/ | |
5324 | 4411 15, |
4412 /**/ | |
5322 | 4413 14, |
4414 /**/ | |
5320 | 4415 13, |
4416 /**/ | |
5318 | 4417 12, |
4418 /**/ | |
5316 | 4419 11, |
4420 /**/ | |
5314 | 4421 10, |
4422 /**/ | |
5312 | 4423 9, |
4424 /**/ | |
5310 | 4425 8, |
4426 /**/ | |
5308 | 4427 7, |
4428 /**/ | |
5306 | 4429 6, |
4430 /**/ | |
5304 | 4431 5, |
4432 /**/ | |
5302 | 4433 4, |
4434 /**/ | |
5300 | 4435 3, |
4436 /**/ | |
5298 | 4437 2, |
4438 /**/ | |
5296 | 4439 1, |
4440 /**/ | |
7 | 4441 0 |
4442 }; | |
4443 | |
1760 | 4444 /* |
4445 * Place to put a short description when adding a feature with a patch. | |
4446 * Keep it short, e.g.,: "relative numbers", "persistent undo". | |
4447 * Also add a comment marker to separate the lines. | |
4448 * See the official Vim patches for the diff format: It must use a context of | |
1777 | 4449 * one line only. Create it by hand or use "diff -C2" and edit the patch. |
1760 | 4450 */ |
4451 static char *(extra_patches[]) = | |
4452 { /* Add your patch description below this line */ | |
4453 /**/ | |
4454 NULL | |
4455 }; | |
4456 | |
7 | 4457 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4458 highest_patch(void) |
7 | 4459 { |
4460 int i; | |
4461 int h = 0; | |
4462 | |
4463 for (i = 0; included_patches[i] != 0; ++i) | |
4464 if (included_patches[i] > h) | |
4465 h = included_patches[i]; | |
4466 return h; | |
4467 } | |
4468 | |
4469 #if defined(FEAT_EVAL) || defined(PROTO) | |
4470 /* | |
4471 * Return TRUE if patch "n" has been included. | |
4472 */ | |
4473 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4474 has_patch(int n) |
7 | 4475 { |
4476 int i; | |
4477 | |
4478 for (i = 0; included_patches[i] != 0; ++i) | |
4479 if (included_patches[i] == n) | |
4480 return TRUE; | |
4481 return FALSE; | |
4482 } | |
4483 #endif | |
4484 | |
4485 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4486 ex_version(exarg_T *eap) |
7 | 4487 { |
4488 /* | |
4489 * Ignore a ":version 9.99" command. | |
4490 */ | |
4491 if (*eap->arg == NUL) | |
4492 { | |
4493 msg_putchar('\n'); | |
4494 list_version(); | |
4495 } | |
4496 } | |
4497 | |
4147 | 4498 /* |
4499 * List all features aligned in columns, dictionary style. | |
4500 */ | |
4501 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4502 list_features(void) |
4147 | 4503 { |
4504 int i; | |
4505 int ncol; | |
4506 int nrow; | |
4507 int nfeat = 0; | |
4508 int width = 0; | |
4509 | |
4510 /* Find the length of the longest feature name, use that + 1 as the column | |
4511 * width */ | |
4512 for (i = 0; features[i] != NULL; ++i) | |
4513 { | |
4160 | 4514 int l = (int)STRLEN(features[i]); |
4147 | 4515 |
4516 if (l > width) | |
4517 width = l; | |
4518 ++nfeat; | |
4519 } | |
4520 width += 1; | |
4521 | |
4522 if (Columns < width) | |
4523 { | |
4524 /* Not enough screen columns - show one per line */ | |
4525 for (i = 0; features[i] != NULL; ++i) | |
4526 { | |
4527 version_msg(features[i]); | |
4528 if (msg_col > 0) | |
4529 msg_putchar('\n'); | |
4530 } | |
4531 return; | |
4532 } | |
4533 | |
4534 /* The rightmost column doesn't need a separator. | |
4535 * Sacrifice it to fit in one more column if possible. */ | |
4170 | 4536 ncol = (int) (Columns + 1) / width; |
4147 | 4537 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0); |
4538 | |
4170 | 4539 /* i counts columns then rows. idx counts rows then columns. */ |
4147 | 4540 for (i = 0; !got_int && i < nrow * ncol; ++i) |
4541 { | |
4542 int idx = (i / ncol) + (i % ncol) * nrow; | |
4543 | |
4544 if (idx < nfeat) | |
4545 { | |
4546 int last_col = (i + 1) % ncol == 0; | |
4547 | |
4548 msg_puts((char_u *)features[idx]); | |
4549 if (last_col) | |
4550 { | |
4551 if (msg_col > 0) | |
4552 msg_putchar('\n'); | |
4553 } | |
4554 else | |
4555 { | |
4556 while (msg_col % width) | |
4557 msg_putchar(' '); | |
4558 } | |
4559 } | |
4560 else | |
4170 | 4561 { |
4562 if (msg_col > 0) | |
4563 msg_putchar('\n'); | |
4564 } | |
4147 | 4565 } |
4566 } | |
4160 | 4567 |
7 | 4568 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4569 list_version(void) |
7 | 4570 { |
4571 int i; | |
4572 int first; | |
4573 char *s = ""; | |
4574 | |
4575 /* | |
4576 * When adding features here, don't forget to update the list of | |
4577 * internal variables in eval.c! | |
4578 */ | |
4579 MSG(longVersion); | |
4580 #ifdef WIN3264 | |
4581 # ifdef FEAT_GUI_W32 | |
4582 # if defined(_MSC_VER) && (_MSC_VER <= 1010) | |
4583 /* Only MS VC 4.1 and earlier can do Win32s */ | |
1607 | 4584 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version")); |
7 | 4585 # else |
990 | 4586 # ifdef _WIN64 |
1607 | 4587 MSG_PUTS(_("\nMS-Windows 64-bit GUI version")); |
990 | 4588 # else |
1607 | 4589 MSG_PUTS(_("\nMS-Windows 32-bit GUI version")); |
990 | 4590 # endif |
7 | 4591 # endif |
4592 if (gui_is_win32s()) | |
4593 MSG_PUTS(_(" in Win32s mode")); | |
4594 # ifdef FEAT_OLE | |
4595 MSG_PUTS(_(" with OLE support")); | |
4596 # endif | |
4597 # else | |
1607 | 4598 # ifdef _WIN64 |
4599 MSG_PUTS(_("\nMS-Windows 64-bit console version")); | |
4600 # else | |
4601 MSG_PUTS(_("\nMS-Windows 32-bit console version")); | |
4602 # endif | |
7 | 4603 # endif |
4604 #endif | |
4605 #ifdef MACOS | |
4606 # ifdef MACOS_X | |
4607 # ifdef MACOS_X_UNIX | |
4608 MSG_PUTS(_("\nMacOS X (unix) version")); | |
4609 # else | |
4610 MSG_PUTS(_("\nMacOS X version")); | |
4611 # endif | |
4612 #else | |
4613 MSG_PUTS(_("\nMacOS version")); | |
4614 # endif | |
4615 #endif | |
4616 | |
4617 #ifdef VMS | |
1705 | 4618 MSG_PUTS(_("\nOpenVMS version")); |
1045 | 4619 # ifdef HAVE_PATHDEF |
4620 if (*compiled_arch != NUL) | |
4621 { | |
4622 MSG_PUTS(" - "); | |
4623 MSG_PUTS(compiled_arch); | |
4624 } | |
4625 # endif | |
4626 | |
7 | 4627 #endif |
4628 | |
4629 /* Print the list of patch numbers if there is at least one. */ | |
4630 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */ | |
4631 if (included_patches[0] != 0) | |
4632 { | |
4633 MSG_PUTS(_("\nIncluded patches: ")); | |
4634 first = -1; | |
4635 /* find last one */ | |
4636 for (i = 0; included_patches[i] != 0; ++i) | |
4637 ; | |
4638 while (--i >= 0) | |
4639 { | |
4640 if (first < 0) | |
4641 first = included_patches[i]; | |
4642 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1) | |
4643 { | |
4644 MSG_PUTS(s); | |
4645 s = ", "; | |
4646 msg_outnum((long)first); | |
4647 if (first != included_patches[i]) | |
4648 { | |
4649 MSG_PUTS("-"); | |
4650 msg_outnum((long)included_patches[i]); | |
4651 } | |
4652 first = -1; | |
4653 } | |
4654 } | |
4655 } | |
4656 | |
1760 | 4657 /* Print the list of extra patch descriptions if there is at least one. */ |
4658 if (extra_patches[0] != NULL) | |
4659 { | |
4660 MSG_PUTS(_("\nExtra patches: ")); | |
4661 s = ""; | |
4662 for (i = 0; extra_patches[i] != NULL; ++i) | |
4663 { | |
4664 MSG_PUTS(s); | |
4665 s = ", "; | |
4666 MSG_PUTS(extra_patches[i]); | |
4667 } | |
4668 } | |
4669 | |
7 | 4670 #ifdef MODIFIED_BY |
4671 MSG_PUTS("\n"); | |
4672 MSG_PUTS(_("Modified by ")); | |
4673 MSG_PUTS(MODIFIED_BY); | |
4674 #endif | |
4675 | |
4676 #ifdef HAVE_PATHDEF | |
4677 if (*compiled_user != NUL || *compiled_sys != NUL) | |
4678 { | |
4679 MSG_PUTS(_("\nCompiled ")); | |
4680 if (*compiled_user != NUL) | |
4681 { | |
4682 MSG_PUTS(_("by ")); | |
4683 MSG_PUTS(compiled_user); | |
4684 } | |
4685 if (*compiled_sys != NUL) | |
4686 { | |
4687 MSG_PUTS("@"); | |
4688 MSG_PUTS(compiled_sys); | |
4689 } | |
4690 } | |
4691 #endif | |
4692 | |
4693 #ifdef FEAT_HUGE | |
4694 MSG_PUTS(_("\nHuge version ")); | |
4695 #else | |
4696 # ifdef FEAT_BIG | |
4697 MSG_PUTS(_("\nBig version ")); | |
4698 # else | |
4699 # ifdef FEAT_NORMAL | |
4700 MSG_PUTS(_("\nNormal version ")); | |
4701 # else | |
4702 # ifdef FEAT_SMALL | |
4703 MSG_PUTS(_("\nSmall version ")); | |
4704 # else | |
4705 MSG_PUTS(_("\nTiny version ")); | |
4706 # endif | |
4707 # endif | |
4708 # endif | |
4709 #endif | |
4710 #ifndef FEAT_GUI | |
4711 MSG_PUTS(_("without GUI.")); | |
4712 #else | |
4713 # ifdef FEAT_GUI_GTK | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4714 # ifdef USE_GTK3 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4715 MSG_PUTS(_("with GTK3 GUI.")); |
7 | 4716 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4717 # ifdef FEAT_GUI_GNOME |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4718 MSG_PUTS(_("with GTK2-GNOME GUI.")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4719 # else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4720 MSG_PUTS(_("with GTK2 GUI.")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4721 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
4722 # endif |
7 | 4723 # else |
4724 # ifdef FEAT_GUI_MOTIF | |
4725 MSG_PUTS(_("with X11-Motif GUI.")); | |
4726 # else | |
4727 # ifdef FEAT_GUI_ATHENA | |
4728 # ifdef FEAT_GUI_NEXTAW | |
4729 MSG_PUTS(_("with X11-neXtaw GUI.")); | |
4730 # else | |
4731 MSG_PUTS(_("with X11-Athena GUI.")); | |
4732 # endif | |
4733 # else | |
4734 # ifdef FEAT_GUI_PHOTON | |
4735 MSG_PUTS(_("with Photon GUI.")); | |
4736 # else | |
4737 # if defined(MSWIN) | |
4738 MSG_PUTS(_("with GUI.")); | |
4739 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4740 # if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON |
7 | 4741 MSG_PUTS(_("with Carbon GUI.")); |
4742 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4743 # if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX |
7 | 4744 MSG_PUTS(_("with Cocoa GUI.")); |
4745 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
4746 # if defined(MACOS) |
7 | 4747 MSG_PUTS(_("with (classic) GUI.")); |
4748 # endif | |
4749 # endif | |
4750 # endif | |
4751 # endif | |
4752 # endif | |
4753 # endif | |
4754 # endif | |
4755 # endif | |
4756 #endif | |
4757 version_msg(_(" Features included (+) or not (-):\n")); | |
4758 | |
4147 | 4759 list_features(); |
7 | 4760 |
4761 #ifdef SYS_VIMRC_FILE | |
4762 version_msg(_(" system vimrc file: \"")); | |
4763 version_msg(SYS_VIMRC_FILE); | |
4764 version_msg("\"\n"); | |
4765 #endif | |
4766 #ifdef USR_VIMRC_FILE | |
4767 version_msg(_(" user vimrc file: \"")); | |
4768 version_msg(USR_VIMRC_FILE); | |
4769 version_msg("\"\n"); | |
4770 #endif | |
4771 #ifdef USR_VIMRC_FILE2 | |
4772 version_msg(_(" 2nd user vimrc file: \"")); | |
4773 version_msg(USR_VIMRC_FILE2); | |
4774 version_msg("\"\n"); | |
4775 #endif | |
4776 #ifdef USR_VIMRC_FILE3 | |
4777 version_msg(_(" 3rd user vimrc file: \"")); | |
4778 version_msg(USR_VIMRC_FILE3); | |
4779 version_msg("\"\n"); | |
4780 #endif | |
4781 #ifdef USR_EXRC_FILE | |
4782 version_msg(_(" user exrc file: \"")); | |
4783 version_msg(USR_EXRC_FILE); | |
4784 version_msg("\"\n"); | |
4785 #endif | |
4786 #ifdef USR_EXRC_FILE2 | |
4787 version_msg(_(" 2nd user exrc file: \"")); | |
4788 version_msg(USR_EXRC_FILE2); | |
4789 version_msg("\"\n"); | |
4790 #endif | |
4791 #ifdef FEAT_GUI | |
4792 # ifdef SYS_GVIMRC_FILE | |
4793 version_msg(_(" system gvimrc file: \"")); | |
4794 version_msg(SYS_GVIMRC_FILE); | |
4795 version_msg("\"\n"); | |
4796 # endif | |
4797 version_msg(_(" user gvimrc file: \"")); | |
4798 version_msg(USR_GVIMRC_FILE); | |
4799 version_msg("\"\n"); | |
4800 # ifdef USR_GVIMRC_FILE2 | |
4801 version_msg(_("2nd user gvimrc file: \"")); | |
4802 version_msg(USR_GVIMRC_FILE2); | |
4803 version_msg("\"\n"); | |
4804 # endif | |
4805 # ifdef USR_GVIMRC_FILE3 | |
4806 version_msg(_("3rd user gvimrc file: \"")); | |
4807 version_msg(USR_GVIMRC_FILE3); | |
4808 version_msg("\"\n"); | |
4809 # endif | |
4810 #endif | |
4811 #ifdef FEAT_GUI | |
4812 # ifdef SYS_MENU_FILE | |
4813 version_msg(_(" system menu file: \"")); | |
4814 version_msg(SYS_MENU_FILE); | |
4815 version_msg("\"\n"); | |
4816 # endif | |
4817 #endif | |
4818 #ifdef HAVE_PATHDEF | |
4819 if (*default_vim_dir != NUL) | |
4820 { | |
4821 version_msg(_(" fall-back for $VIM: \"")); | |
4822 version_msg((char *)default_vim_dir); | |
4823 version_msg("\"\n"); | |
4824 } | |
4825 if (*default_vimruntime_dir != NUL) | |
4826 { | |
4827 version_msg(_(" f-b for $VIMRUNTIME: \"")); | |
4828 version_msg((char *)default_vimruntime_dir); | |
4829 version_msg("\"\n"); | |
4830 } | |
4831 version_msg(_("Compilation: ")); | |
4832 version_msg((char *)all_cflags); | |
4833 version_msg("\n"); | |
4834 #ifdef VMS | |
4835 if (*compiler_version != NUL) | |
4836 { | |
4837 version_msg(_("Compiler: ")); | |
4838 version_msg((char *)compiler_version); | |
4839 version_msg("\n"); | |
4840 } | |
4841 #endif | |
4842 version_msg(_("Linking: ")); | |
4843 version_msg((char *)all_lflags); | |
4844 #endif | |
4845 #ifdef DEBUG | |
4846 version_msg("\n"); | |
4847 version_msg(_(" DEBUG BUILD")); | |
4848 #endif | |
4849 } | |
4850 | |
4851 /* | |
4852 * Output a string for the version message. If it's going to wrap, output a | |
4853 * newline, unless the message is too long to fit on the screen anyway. | |
4854 */ | |
4855 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4856 version_msg(char *s) |
7 | 4857 { |
4858 int len = (int)STRLEN(s); | |
4859 | |
4860 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns | |
4861 && *s != '\n') | |
4862 msg_putchar('\n'); | |
4863 if (!got_int) | |
4864 MSG_PUTS(s); | |
4865 } | |
4866 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4867 static void do_intro_line(int row, char_u *mesg, int add_version, int attr); |
7 | 4868 |
4869 /* | |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4870 * 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
|
4871 */ |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4872 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4873 maybe_intro_message(void) |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4874 { |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4875 if (bufempty() |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4876 && curbuf->b_fname == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4877 #ifdef FEAT_WINDOWS |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4878 && firstwin->w_next == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4879 #endif |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4880 && vim_strchr(p_shm, SHM_INTRO) == NULL) |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4881 intro_message(FALSE); |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4882 } |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4883 |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4884 /* |
7 | 4885 * Give an introductory message about Vim. |
4886 * Only used when starting Vim on an empty file, without a file name. | |
4887 * Or with the ":intro" command (for Sven :-). | |
4888 */ | |
4889 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4890 intro_message( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4891 int colon) /* TRUE for ":intro" */ |
7 | 4892 { |
4893 int i; | |
4894 int row; | |
4895 int blanklines; | |
4896 int sponsor; | |
4897 char *p; | |
4898 static char *(lines[]) = | |
4899 { | |
4900 N_("VIM - Vi IMproved"), | |
4901 "", | |
4902 N_("version "), | |
4903 N_("by Bram Moolenaar et al."), | |
4904 #ifdef MODIFIED_BY | |
4905 " ", | |
4906 #endif | |
4907 N_("Vim is open source and freely distributable"), | |
4908 "", | |
4909 N_("Help poor children in Uganda!"), | |
4910 N_("type :help iccf<Enter> for information "), | |
4911 "", | |
4912 N_("type :q<Enter> to exit "), | |
4913 N_("type :help<Enter> or <F1> for on-line help"), | |
26 | 4914 N_("type :help version7<Enter> for version info"), |
7 | 4915 NULL, |
4916 "", | |
4917 N_("Running in Vi compatible mode"), | |
4918 N_("type :set nocp<Enter> for Vim defaults"), | |
4919 N_("type :help cp-default<Enter> for info on this"), | |
4920 }; | |
4921 #ifdef FEAT_GUI | |
4922 static char *(gui_lines[]) = | |
4923 { | |
4924 NULL, | |
4925 NULL, | |
4926 NULL, | |
4927 NULL, | |
4928 #ifdef MODIFIED_BY | |
4929 NULL, | |
4930 #endif | |
4931 NULL, | |
4932 NULL, | |
4933 NULL, | |
4934 N_("menu Help->Orphans for information "), | |
4935 NULL, | |
4936 N_("Running modeless, typed text is inserted"), | |
4937 N_("menu Edit->Global Settings->Toggle Insert Mode "), | |
4938 N_(" for two modes "), | |
4939 NULL, | |
4940 NULL, | |
4941 NULL, | |
4942 N_("menu Edit->Global Settings->Toggle Vi Compatible"), | |
4943 N_(" for Vim defaults "), | |
4944 }; | |
4945 #endif | |
4946 | |
4947 /* blanklines = screen height - # message lines */ | |
4948 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1); | |
4949 if (!p_cp) | |
4950 blanklines += 4; /* add 4 for not showing "Vi compatible" message */ | |
4951 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
4952 if (mch_windows95()) | |
4953 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */ | |
4954 #endif | |
4955 | |
4956 #ifdef FEAT_WINDOWS | |
4957 /* Don't overwrite a statusline. Depends on 'cmdheight'. */ | |
4958 if (p_ls > 1) | |
4959 blanklines -= Rows - topframe->fr_height; | |
4960 #endif | |
4961 if (blanklines < 0) | |
4962 blanklines = 0; | |
4963 | |
4964 /* Show the sponsor and register message one out of four times, the Uganda | |
4965 * message two out of four times. */ | |
615 | 4966 sponsor = (int)time(NULL); |
7 | 4967 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); |
4968 | |
4969 /* start displaying the message lines after half of the blank lines */ | |
4970 row = blanklines / 2; | |
4971 if ((row >= 2 && Columns >= 50) || colon) | |
4972 { | |
4973 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i) | |
4974 { | |
4975 p = lines[i]; | |
4976 #ifdef FEAT_GUI | |
4977 if (p_im && gui.in_use && gui_lines[i] != NULL) | |
4978 p = gui_lines[i]; | |
4979 #endif | |
4980 if (p == NULL) | |
4981 { | |
4982 if (!p_cp) | |
4983 break; | |
4984 continue; | |
4985 } | |
4986 if (sponsor != 0) | |
4987 { | |
4988 if (strstr(p, "children") != NULL) | |
4989 p = sponsor < 0 | |
4990 ? N_("Sponsor Vim development!") | |
4991 : N_("Become a registered Vim user!"); | |
4992 else if (strstr(p, "iccf") != NULL) | |
4993 p = sponsor < 0 | |
4994 ? N_("type :help sponsor<Enter> for information ") | |
4995 : N_("type :help register<Enter> for information "); | |
4996 else if (strstr(p, "Orphans") != NULL) | |
4997 p = N_("menu Help->Sponsor/Register for information "); | |
4998 } | |
4999 if (*p != NUL) | |
5000 do_intro_line(row, (char_u *)_(p), i == 2, 0); | |
5001 ++row; | |
5002 } | |
5003 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
5004 if (mch_windows95()) | |
5005 { | |
5006 do_intro_line(++row, | |
5007 (char_u *)_("WARNING: Windows 95/98/ME detected"), | |
5008 FALSE, hl_attr(HLF_E)); | |
5009 do_intro_line(++row, | |
5010 (char_u *)_("type :help windows95<Enter> for info on this"), | |
5011 FALSE, 0); | |
5012 } | |
5013 #endif | |
5014 } | |
5015 | |
5016 /* Make the wait-return message appear just below the text. */ | |
5017 if (colon) | |
5018 msg_row = row; | |
5019 } | |
5020 | |
5021 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5022 do_intro_line( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5023 int row, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5024 char_u *mesg, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5025 int add_version, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5026 int attr) |
7 | 5027 { |
5028 char_u vers[20]; | |
5029 int col; | |
5030 char_u *p; | |
5031 int l; | |
5032 int clen; | |
5033 #ifdef MODIFIED_BY | |
5034 # define MODBY_LEN 150 | |
5035 char_u modby[MODBY_LEN]; | |
5036 | |
5037 if (*mesg == ' ') | |
5038 { | |
1491 | 5039 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1); |
7 | 5040 l = STRLEN(modby); |
1491 | 5041 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1); |
7 | 5042 mesg = modby; |
5043 } | |
5044 #endif | |
5045 | |
5046 /* Center the message horizontally. */ | |
5047 col = vim_strsize(mesg); | |
5048 if (add_version) | |
5049 { | |
5050 STRCPY(vers, mediumVersion); | |
5051 if (highest_patch()) | |
5052 { | |
5053 /* Check for 9.9x or 9.9xx, alpha/beta version */ | |
2619 | 5054 if (isalpha((int)vers[3])) |
7 | 5055 { |
3396 | 5056 int len = (isalpha((int)vers[4])) ? 5 : 4; |
5057 sprintf((char *)vers + len, ".%d%s", highest_patch(), | |
5058 mediumVersion + len); | |
7 | 5059 } |
5060 else | |
5061 sprintf((char *)vers + 3, ".%d", highest_patch()); | |
5062 } | |
5063 col += (int)STRLEN(vers); | |
5064 } | |
5065 col = (Columns - col) / 2; | |
5066 if (col < 0) | |
5067 col = 0; | |
5068 | |
5069 /* Split up in parts to highlight <> items differently. */ | |
5070 for (p = mesg; *p != NUL; p += l) | |
5071 { | |
5072 clen = 0; | |
5073 for (l = 0; p[l] != NUL | |
5074 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l) | |
5075 { | |
5076 #ifdef FEAT_MBYTE | |
5077 if (has_mbyte) | |
5078 { | |
5079 clen += ptr2cells(p + l); | |
474 | 5080 l += (*mb_ptr2len)(p + l) - 1; |
7 | 5081 } |
5082 else | |
5083 #endif | |
5084 clen += byte2cells(p[l]); | |
5085 } | |
5086 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr); | |
5087 col += clen; | |
5088 } | |
5089 | |
5090 /* Add the version number to the version line. */ | |
5091 if (add_version) | |
5092 screen_puts(vers, row, col, 0); | |
5093 } | |
5094 | |
5095 /* | |
5096 * ":intro": clear screen, display intro screen and wait for return. | |
5097 */ | |
5098 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
5099 ex_intro(exarg_T *eap UNUSED) |
7 | 5100 { |
5101 screenclear(); | |
5102 intro_message(TRUE); | |
5103 wait_return(TRUE); | |
5104 } |