Mercurial > vim
annotate src/version.c @ 7791:6f81cf49da14 v7.4.1192
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jan 28 22:46:58 2016 +0100
patch 7.4.1192
Problem: Can't build with FEAT_EVAL but without FEAT_MBYTE. (John
Marriott)
Solution: Add #ifdef for FEAT_MBYTE.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 28 Jan 2016 23:00:04 +0100 |
parents | 192ae655ac91 |
children | 2981a37cec61 |
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 |
39 make_version() | |
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 | |
5166
467efeee8f9e
updated for version 7.4a.009
Bram Moolenaar <bram@vim.org>
parents:
5164
diff
changeset
|
58 static void list_features __ARGS((void)); |
7 | 59 static void version_msg __ARGS((char *s)); |
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 | |
7759
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
109 #ifdef FEAT_CHANNEL |
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 #ifdef FEAT_EX_EXTRA | |
225 "+ex_extra", | |
226 #else | |
227 "-ex_extra", | |
228 #endif | |
229 #ifdef FEAT_SEARCH_EXTRA | |
230 "+extra_search", | |
231 #else | |
232 "-extra_search", | |
233 #endif | |
234 #ifdef FEAT_FKMAP | |
235 "+farsi", | |
236 #else | |
237 "-farsi", | |
238 #endif | |
239 #ifdef FEAT_SEARCHPATH | |
240 "+file_in_path", | |
241 #else | |
242 "-file_in_path", | |
243 #endif | |
244 #ifdef FEAT_FIND_ID | |
245 "+find_in_path", | |
246 #else | |
247 "-find_in_path", | |
248 #endif | |
1621 | 249 #ifdef FEAT_FLOAT |
250 "+float", | |
251 #else | |
252 "-float", | |
253 #endif | |
7 | 254 #ifdef FEAT_FOLDING |
255 "+folding", | |
256 #else | |
257 "-folding", | |
258 #endif | |
259 #ifdef FEAT_FOOTER | |
260 "+footer", | |
261 #else | |
262 "-footer", | |
263 #endif | |
264 /* only interesting on Unix systems */ | |
265 #if !defined(USE_SYSTEM) && defined(UNIX) | |
266 "+fork()", | |
267 #endif | |
268 #ifdef FEAT_GETTEXT | |
269 # ifdef DYNAMIC_GETTEXT | |
270 "+gettext/dyn", | |
271 # else | |
272 "+gettext", | |
273 # endif | |
274 #else | |
275 "-gettext", | |
276 #endif | |
277 #ifdef FEAT_HANGULIN | |
278 "+hangul_input", | |
279 #else | |
280 "-hangul_input", | |
281 #endif | |
282 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV) | |
283 # ifdef DYNAMIC_ICONV | |
284 "+iconv/dyn", | |
285 # else | |
286 "+iconv", | |
287 # endif | |
288 #else | |
289 "-iconv", | |
290 #endif | |
291 #ifdef FEAT_INS_EXPAND | |
292 "+insert_expand", | |
293 #else | |
294 "-insert_expand", | |
295 #endif | |
296 #ifdef FEAT_JUMPLIST | |
297 "+jumplist", | |
298 #else | |
299 "-jumplist", | |
300 #endif | |
301 #ifdef FEAT_KEYMAP | |
302 "+keymap", | |
303 #else | |
304 "-keymap", | |
305 #endif | |
306 #ifdef FEAT_LANGMAP | |
307 "+langmap", | |
308 #else | |
309 "-langmap", | |
310 #endif | |
311 #ifdef FEAT_LIBCALL | |
312 "+libcall", | |
313 #else | |
314 "-libcall", | |
315 #endif | |
316 #ifdef FEAT_LINEBREAK | |
317 "+linebreak", | |
318 #else | |
319 "-linebreak", | |
320 #endif | |
321 #ifdef FEAT_LISP | |
322 "+lispindent", | |
323 #else | |
324 "-lispindent", | |
325 #endif | |
326 #ifdef FEAT_LISTCMDS | |
327 "+listcmds", | |
328 #else | |
329 "-listcmds", | |
330 #endif | |
331 #ifdef FEAT_LOCALMAP | |
332 "+localmap", | |
333 #else | |
334 "-localmap", | |
335 #endif | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
336 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
337 # ifdef DYNAMIC_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
338 "+lua/dyn", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
339 # else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
340 "+lua", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
341 # endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
342 #else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
343 "-lua", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
344 #endif |
7 | 345 #ifdef FEAT_MENU |
346 "+menu", | |
347 #else | |
348 "-menu", | |
349 #endif | |
350 #ifdef FEAT_SESSION | |
351 "+mksession", | |
352 #else | |
353 "-mksession", | |
354 #endif | |
355 #ifdef FEAT_MODIFY_FNAME | |
356 "+modify_fname", | |
357 #else | |
358 "-modify_fname", | |
359 #endif | |
360 #ifdef FEAT_MOUSE | |
361 "+mouse", | |
362 # ifdef FEAT_MOUSESHAPE | |
363 "+mouseshape", | |
364 # else | |
365 "-mouseshape", | |
366 # endif | |
367 # else | |
368 "-mouse", | |
369 #endif | |
3898 | 370 |
7 | 371 #if defined(UNIX) || defined(VMS) |
372 # ifdef FEAT_MOUSE_DEC | |
373 "+mouse_dec", | |
374 # else | |
375 "-mouse_dec", | |
376 # endif | |
377 # ifdef FEAT_MOUSE_GPM | |
378 "+mouse_gpm", | |
379 # else | |
380 "-mouse_gpm", | |
381 # endif | |
382 # ifdef FEAT_MOUSE_JSB | |
383 "+mouse_jsbterm", | |
384 # else | |
385 "-mouse_jsbterm", | |
386 # endif | |
387 # ifdef FEAT_MOUSE_NET | |
388 "+mouse_netterm", | |
389 # else | |
390 "-mouse_netterm", | |
391 # endif | |
392 #endif | |
3898 | 393 |
7 | 394 #ifdef __QNX__ |
395 # ifdef FEAT_MOUSE_PTERM | |
396 "+mouse_pterm", | |
397 # else | |
398 "-mouse_pterm", | |
399 # endif | |
400 #endif | |
3898 | 401 |
402 #if defined(UNIX) || defined(VMS) | |
403 # ifdef FEAT_MOUSE_SGR | |
404 "+mouse_sgr", | |
405 # else | |
406 "-mouse_sgr", | |
407 # endif | |
408 # ifdef FEAT_SYSMOUSE | |
409 "+mouse_sysmouse", | |
410 # else | |
411 "-mouse_sysmouse", | |
412 # endif | |
413 # ifdef FEAT_MOUSE_URXVT | |
414 "+mouse_urxvt", | |
415 # else | |
416 "-mouse_urxvt", | |
417 # endif | |
418 # ifdef FEAT_MOUSE_XTERM | |
419 "+mouse_xterm", | |
420 # else | |
421 "-mouse_xterm", | |
422 # endif | |
423 #endif | |
424 | |
7 | 425 #ifdef FEAT_MBYTE_IME |
426 # ifdef DYNAMIC_IME | |
427 "+multi_byte_ime/dyn", | |
428 # else | |
429 "+multi_byte_ime", | |
430 # endif | |
431 #else | |
432 # ifdef FEAT_MBYTE | |
433 "+multi_byte", | |
434 # else | |
435 "-multi_byte", | |
436 # endif | |
437 #endif | |
438 #ifdef FEAT_MULTI_LANG | |
439 "+multi_lang", | |
440 #else | |
441 "-multi_lang", | |
442 #endif | |
14 | 443 #ifdef FEAT_MZSCHEME |
132 | 444 # ifdef DYNAMIC_MZSCHEME |
445 "+mzscheme/dyn", | |
446 # else | |
14 | 447 "+mzscheme", |
132 | 448 # endif |
14 | 449 #else |
450 "-mzscheme", | |
451 #endif | |
7 | 452 #ifdef FEAT_NETBEANS_INTG |
453 "+netbeans_intg", | |
454 #else | |
455 "-netbeans_intg", | |
456 #endif | |
457 #ifdef FEAT_GUI_W32 | |
458 # ifdef FEAT_OLE | |
459 "+ole", | |
460 # else | |
461 "-ole", | |
462 # endif | |
463 #endif | |
464 #ifdef FEAT_PATH_EXTRA | |
465 "+path_extra", | |
466 #else | |
467 "-path_extra", | |
468 #endif | |
469 #ifdef FEAT_PERL | |
470 # ifdef DYNAMIC_PERL | |
471 "+perl/dyn", | |
472 # else | |
473 "+perl", | |
474 # endif | |
475 #else | |
476 "-perl", | |
477 #endif | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
478 #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
|
479 "+persistent_undo", |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
480 #else |
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 #endif |
7 | 483 #ifdef FEAT_PRINTER |
484 # ifdef FEAT_POSTSCRIPT | |
485 "+postscript", | |
486 # else | |
487 "-postscript", | |
488 # endif | |
489 "+printer", | |
490 #else | |
491 "-printer", | |
492 #endif | |
170 | 493 #ifdef FEAT_PROFILE |
494 "+profile", | |
495 #else | |
496 "-profile", | |
497 #endif | |
7 | 498 #ifdef FEAT_PYTHON |
499 # ifdef DYNAMIC_PYTHON | |
500 "+python/dyn", | |
501 # else | |
502 "+python", | |
503 # endif | |
504 #else | |
505 "-python", | |
506 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
507 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
508 # ifdef DYNAMIC_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
509 "+python3/dyn", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
510 # else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
511 "+python3", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
512 # endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
513 #else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
514 "-python3", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
515 #endif |
7 | 516 #ifdef FEAT_QUICKFIX |
517 "+quickfix", | |
518 #else | |
519 "-quickfix", | |
520 #endif | |
857 | 521 #ifdef FEAT_RELTIME |
522 "+reltime", | |
523 #else | |
524 "-reltime", | |
525 #endif | |
7 | 526 #ifdef FEAT_RIGHTLEFT |
527 "+rightleft", | |
528 #else | |
529 "-rightleft", | |
530 #endif | |
531 #ifdef FEAT_RUBY | |
532 # ifdef DYNAMIC_RUBY | |
533 "+ruby/dyn", | |
534 # else | |
535 "+ruby", | |
536 # endif | |
537 #else | |
538 "-ruby", | |
539 #endif | |
540 #ifdef FEAT_SCROLLBIND | |
541 "+scrollbind", | |
542 #else | |
543 "-scrollbind", | |
544 #endif | |
545 #ifdef FEAT_SIGNS | |
546 "+signs", | |
547 #else | |
548 "-signs", | |
549 #endif | |
550 #ifdef FEAT_SMARTINDENT | |
551 "+smartindent", | |
552 #else | |
553 "-smartindent", | |
554 #endif | |
555 #ifdef FEAT_SNIFF | |
556 "+sniff", | |
557 #else | |
558 "-sniff", | |
559 #endif | |
1989 | 560 #ifdef STARTUPTIME |
561 "+startuptime", | |
562 #else | |
563 "-startuptime", | |
564 #endif | |
7 | 565 #ifdef FEAT_STL_OPT |
566 "+statusline", | |
567 #else | |
568 "-statusline", | |
569 #endif | |
570 #ifdef FEAT_SUN_WORKSHOP | |
571 "+sun_workshop", | |
572 #else | |
573 "-sun_workshop", | |
574 #endif | |
575 #ifdef FEAT_SYN_HL | |
576 "+syntax", | |
577 #else | |
578 "-syntax", | |
579 #endif | |
580 /* only interesting on Unix systems */ | |
581 #if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__)) | |
582 "+system()", | |
583 #endif | |
584 #ifdef FEAT_TAG_BINS | |
585 "+tag_binary", | |
586 #else | |
587 "-tag_binary", | |
588 #endif | |
589 #ifdef FEAT_TAG_OLDSTATIC | |
590 "+tag_old_static", | |
591 #else | |
592 "-tag_old_static", | |
593 #endif | |
594 #ifdef FEAT_TAG_ANYWHITE | |
595 "+tag_any_white", | |
596 #else | |
597 "-tag_any_white", | |
598 #endif | |
599 #ifdef FEAT_TCL | |
600 # ifdef DYNAMIC_TCL | |
601 "+tcl/dyn", | |
602 # else | |
603 "+tcl", | |
604 # endif | |
605 #else | |
606 "-tcl", | |
607 #endif | |
608 #if defined(UNIX) || defined(__EMX__) | |
609 /* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */ | |
610 # ifdef TERMINFO | |
611 "+terminfo", | |
612 # else | |
613 "-terminfo", | |
614 # endif | |
615 #else /* unix always includes termcap support */ | |
616 # ifdef HAVE_TGETENT | |
617 "+tgetent", | |
618 # else | |
619 "-tgetent", | |
620 # endif | |
621 #endif | |
622 #ifdef FEAT_TERMRESPONSE | |
623 "+termresponse", | |
624 #else | |
625 "-termresponse", | |
626 #endif | |
627 #ifdef FEAT_TEXTOBJ | |
628 "+textobjects", | |
629 #else | |
630 "-textobjects", | |
631 #endif | |
632 #ifdef FEAT_TITLE | |
633 "+title", | |
634 #else | |
635 "-title", | |
636 #endif | |
637 #ifdef FEAT_TOOLBAR | |
638 "+toolbar", | |
639 #else | |
640 "-toolbar", | |
641 #endif | |
642 #ifdef FEAT_USR_CMDS | |
643 "+user_commands", | |
644 #else | |
645 "-user_commands", | |
646 #endif | |
647 #ifdef FEAT_VERTSPLIT | |
648 "+vertsplit", | |
649 #else | |
650 "-vertsplit", | |
651 #endif | |
652 #ifdef FEAT_VIRTUALEDIT | |
653 "+virtualedit", | |
654 #else | |
655 "-virtualedit", | |
656 #endif | |
657 "+visual", | |
5735 | 658 #ifdef FEAT_VISUALEXTRA |
7 | 659 "+visualextra", |
5735 | 660 #else |
7 | 661 "-visualextra", |
662 #endif | |
663 #ifdef FEAT_VIMINFO | |
664 "+viminfo", | |
665 #else | |
666 "-viminfo", | |
667 #endif | |
668 #ifdef FEAT_VREPLACE | |
669 "+vreplace", | |
670 #else | |
671 "-vreplace", | |
672 #endif | |
673 #ifdef FEAT_WILDIGN | |
674 "+wildignore", | |
675 #else | |
676 "-wildignore", | |
677 #endif | |
678 #ifdef FEAT_WILDMENU | |
679 "+wildmenu", | |
680 #else | |
681 "-wildmenu", | |
682 #endif | |
683 #ifdef FEAT_WINDOWS | |
684 "+windows", | |
685 #else | |
686 "-windows", | |
687 #endif | |
688 #ifdef FEAT_WRITEBACKUP | |
689 "+writebackup", | |
690 #else | |
691 "-writebackup", | |
692 #endif | |
693 #if defined(UNIX) || defined(VMS) | |
694 # ifdef FEAT_X11 | |
695 "+X11", | |
696 # else | |
697 "-X11", | |
698 # endif | |
699 #endif | |
700 #ifdef FEAT_XFONTSET | |
701 "+xfontset", | |
702 #else | |
703 "-xfontset", | |
704 #endif | |
705 #ifdef FEAT_XIM | |
706 "+xim", | |
707 #else | |
708 "-xim", | |
709 #endif | |
710 #if defined(UNIX) || defined(VMS) | |
711 # ifdef USE_XSMP_INTERACT | |
712 "+xsmp_interact", | |
713 # else | |
714 # ifdef USE_XSMP | |
715 "+xsmp", | |
716 # else | |
717 "-xsmp", | |
718 # endif | |
719 # endif | |
720 # ifdef FEAT_XCLIPBOARD | |
721 "+xterm_clipboard", | |
722 # else | |
723 "-xterm_clipboard", | |
724 # endif | |
725 #endif | |
726 #ifdef FEAT_XTERM_SAVE | |
727 "+xterm_save", | |
728 #else | |
729 "-xterm_save", | |
730 #endif | |
731 #ifdef WIN3264 | |
732 # ifdef FEAT_XPM_W32 | |
733 "+xpm_w32", | |
734 # else | |
735 "-xpm_w32", | |
736 # endif | |
5316 | 737 #else |
738 # ifdef HAVE_XPM | |
739 "+xpm", | |
740 # else | |
741 "-xpm", | |
742 # endif | |
7 | 743 #endif |
744 NULL | |
745 }; | |
746 | |
747 static int included_patches[] = | |
748 { /* Add new patch number below this line */ | |
749 /**/ | |
7791
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
750 1192, |
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
751 /**/ |
7788
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
752 1191, |
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
753 /**/ |
7786
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
754 1190, |
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
755 /**/ |
7784
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
756 1189, |
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
757 /**/ |
7782
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
758 1188, |
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
759 /**/ |
7780
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
760 1187, |
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
761 /**/ |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
762 1186, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
763 /**/ |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
764 1185, |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
765 /**/ |
7774
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
766 1184, |
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
767 /**/ |
7772
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
768 1183, |
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
769 /**/ |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
770 1182, |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
771 /**/ |
7768
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
772 1181, |
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
773 /**/ |
7765
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
774 1180, |
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
775 /**/ |
7763
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
776 1179, |
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
777 /**/ |
7761
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
778 1178, |
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
779 /**/ |
7759
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
780 1177, |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
781 /**/ |
7757
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
782 1176, |
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
783 /**/ |
7755
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
784 1175, |
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
785 /**/ |
7753
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
786 1174, |
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
787 /**/ |
7751
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
788 1173, |
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
789 /**/ |
7749
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
790 1172, |
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
791 /**/ |
7747
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
792 1171, |
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
793 /**/ |
7745
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
794 1170, |
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
795 /**/ |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
796 1169, |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
797 /**/ |
7740
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
798 1168, |
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
799 /**/ |
7738
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
800 1167, |
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
801 /**/ |
7736
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
802 1166, |
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
803 /**/ |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
804 1165, |
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
805 /**/ |
7732
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
806 1164, |
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
807 /**/ |
7730
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
808 1163, |
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
809 /**/ |
7728
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
810 1162, |
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
811 /**/ |
7726
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
812 1161, |
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
813 /**/ |
7724
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
814 1160, |
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
815 /**/ |
7722
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
816 1159, |
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
817 /**/ |
7720
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
818 1158, |
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
819 /**/ |
7718
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
820 1157, |
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
821 /**/ |
7716
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
822 1156, |
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
823 /**/ |
7714
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
824 1155, |
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
825 /**/ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
826 1154, |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
827 /**/ |
7710
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
828 1153, |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
829 /**/ |
7708
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
830 1152, |
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
831 /**/ |
7705
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
832 1151, |
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
833 /**/ |
7703
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
834 1150, |
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
835 /**/ |
7701
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
836 1149, |
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
837 /**/ |
7699
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
838 1148, |
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
839 /**/ |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
840 1147, |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
841 /**/ |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
842 1146, |
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
843 /**/ |
7693
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
844 1145, |
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
845 /**/ |
7691
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
846 1144, |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
847 /**/ |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
848 1143, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
849 /**/ |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
850 1142, |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
851 /**/ |
7685
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
852 1141, |
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
853 /**/ |
7683
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
854 1140, |
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
855 /**/ |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
856 1139, |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
857 /**/ |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
858 1138, |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
859 /**/ |
7677
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
860 1137, |
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
861 /**/ |
7675
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
862 1136, |
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
863 /**/ |
7672
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
864 1135, |
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
865 /**/ |
7670
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
866 1134, |
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
867 /**/ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
868 1133, |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
869 /**/ |
7666
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
870 1132, |
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
871 /**/ |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
872 1131, |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
873 /**/ |
7662
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
874 1130, |
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
875 /**/ |
7660
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
876 1129, |
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
877 /**/ |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
878 1128, |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
879 /**/ |
7655
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
880 1127, |
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
881 /**/ |
7653
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
882 1126, |
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
883 /**/ |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
884 1125, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
885 /**/ |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
886 1124, |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
887 /**/ |
7647
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
888 1123, |
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
889 /**/ |
7645
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
890 1122, |
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
891 /**/ |
7643
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
892 1121, |
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
893 /**/ |
7641
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
894 1120, |
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
895 /**/ |
7639
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
896 1119, |
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
897 /**/ |
7637
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
898 1118, |
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
899 /**/ |
7635
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
900 1117, |
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
901 /**/ |
7633
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
902 1116, |
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
903 /**/ |
7631
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
904 1115, |
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
905 /**/ |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
906 1114, |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
907 /**/ |
7627
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
908 1113, |
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
909 /**/ |
7625
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
910 1112, |
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
911 /**/ |
7623
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
912 1111, |
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
913 /**/ |
7621
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
914 1110, |
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
915 /**/ |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
916 1109, |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
917 /**/ |
7617
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
918 1108, |
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
919 /**/ |
7615
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
920 1107, |
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
921 /**/ |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
922 1106, |
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
923 /**/ |
7611
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
924 1105, |
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
925 /**/ |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
926 1104, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
927 /**/ |
7607
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
928 1103, |
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
929 /**/ |
7605
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
930 1102, |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
931 /**/ |
7603
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
932 1101, |
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
933 /**/ |
7602
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
934 1100, |
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
935 /**/ |
7600
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
936 1099, |
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
937 /**/ |
7598
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
938 1098, |
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
939 /**/ |
7595
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
940 1097, |
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
941 /**/ |
7593
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
942 1096, |
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
943 /**/ |
7591
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
944 1095, |
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
945 /**/ |
7588
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
946 1094, |
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
947 /**/ |
7586
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
948 1093, |
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
949 /**/ |
7584
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
950 1092, |
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
951 /**/ |
7582
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
952 1091, |
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
953 /**/ |
7580
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
954 1090, |
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
955 /**/ |
7578
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
956 1089, |
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
957 /**/ |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
958 1088, |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
959 /**/ |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
960 1087, |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
961 /**/ |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
962 1086, |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
963 /**/ |
7570
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
964 1085, |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
965 /**/ |
7568
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
966 1084, |
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
967 /**/ |
7566
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
968 1083, |
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
969 /**/ |
7564
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
970 1082, |
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
971 /**/ |
7562
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
972 1081, |
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
973 /**/ |
7560
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
974 1080, |
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
975 /**/ |
7558
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
976 1079, |
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
977 /**/ |
7555
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
978 1078, |
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
979 /**/ |
7553
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
980 1077, |
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
981 /**/ |
7551
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
982 1076, |
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
983 /**/ |
7549
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
984 1075, |
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
985 /**/ |
7547
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
986 1074, |
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
987 /**/ |
7545
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
988 1073, |
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
989 /**/ |
7542
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
990 1072, |
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
991 /**/ |
7540
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
992 1071, |
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
993 /**/ |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
994 1070, |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
995 /**/ |
7536
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
996 1069, |
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
997 /**/ |
7534
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
998 1068, |
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
999 /**/ |
7532
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
1000 1067, |
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
1001 /**/ |
7530
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1002 1066, |
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1003 /**/ |
7528
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
1004 1065, |
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
1005 /**/ |
7526
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
1006 1064, |
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
1007 /**/ |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
1008 1063, |
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
1009 /**/ |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
1010 1062, |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
1011 /**/ |
7519
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
1012 1061, |
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
1013 /**/ |
7517
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
1014 1060, |
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
1015 /**/ |
7515
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
1016 1059, |
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
1017 /**/ |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1018 1058, |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1019 /**/ |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
1020 1057, |
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
1021 /**/ |
7509
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
1022 1056, |
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
1023 /**/ |
7506
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
1024 1055, |
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
1025 /**/ |
7504
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
1026 1054, |
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
1027 /**/ |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
1028 1053, |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
1029 /**/ |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
1030 1052, |
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
1031 /**/ |
7498
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
1032 1051, |
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
1033 /**/ |
7496
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
1034 1050, |
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
1035 /**/ |
7494
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
1036 1049, |
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
1037 /**/ |
7492
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
1038 1048, |
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
1039 /**/ |
7490
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
1040 1047, |
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
1041 /**/ |
7488
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
1042 1046, |
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
1043 /**/ |
7486
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
1044 1045, |
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
1045 /**/ |
7484
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
1046 1044, |
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
1047 /**/ |
7482
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
1048 1043, |
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
1049 /**/ |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
1050 1042, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
1051 /**/ |
7478
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
1052 1041, |
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
1053 /**/ |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
1054 1040, |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
1055 /**/ |
7473
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
1056 1039, |
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
1057 /**/ |
7471
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1058 1038, |
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1059 /**/ |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
1060 1037, |
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
1061 /**/ |
7467
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
1062 1036, |
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
1063 /**/ |
7465
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
1064 1035, |
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
1065 /**/ |
7462
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
1066 1034, |
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
1067 /**/ |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
1068 1033, |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
1069 /**/ |
7458
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
1070 1032, |
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
1071 /**/ |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
1072 1031, |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
1073 /**/ |
7454
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
1074 1030, |
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
1075 /**/ |
7452
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
1076 1029, |
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
1077 /**/ |
7450
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1078 1028, |
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1079 /**/ |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
1080 1027, |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
1081 /**/ |
7445
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
1082 1026, |
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
1083 /**/ |
7443
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
1084 1025, |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
1085 /**/ |
7441
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
1086 1024, |
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
1087 /**/ |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
1088 1023, |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
1089 /**/ |
7437
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
1090 1022, |
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
1091 /**/ |
7435
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1092 1021, |
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1093 /**/ |
7433
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
1094 1020, |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
1095 /**/ |
7430
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
1096 1019, |
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
1097 /**/ |
7428
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
1098 1018, |
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
1099 /**/ |
7426
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
1100 1017, |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
1101 /**/ |
7424
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
1102 1016, |
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
1103 /**/ |
7422
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
1104 1015, |
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
1105 /**/ |
7420
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
1106 1014, |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
1107 /**/ |
7418
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
1108 1013, |
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
1109 /**/ |
7416
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1110 1012, |
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1111 /**/ |
7414
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
1112 1011, |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
1113 /**/ |
7412
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1114 1010, |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1115 /**/ |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1116 1009, |
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1117 /**/ |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
1118 1008, |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
1119 /**/ |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
1120 1007, |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
1121 /**/ |
7404
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
1122 1006, |
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
1123 /**/ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
1124 1005, |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
1125 /**/ |
7399
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
1126 1004, |
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
1127 /**/ |
7397
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
1128 1003, |
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
1129 /**/ |
7395
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
1130 1002, |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
1131 /**/ |
7393
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
1132 1001, |
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
1133 /**/ |
7391
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
1134 1000, |
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
1135 /**/ |
7389
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
1136 999, |
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
1137 /**/ |
7387
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
1138 998, |
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
1139 /**/ |
7385
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
1140 997, |
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
1141 /**/ |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
1142 996, |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
1143 /**/ |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
1144 995, |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
1145 /**/ |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
1146 994, |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
1147 /**/ |
7376
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
1148 993, |
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
1149 /**/ |
7374
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
1150 992, |
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
1151 /**/ |
7372
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
1152 991, |
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
1153 /**/ |
7370
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
1154 990, |
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
1155 /**/ |
7368
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
1156 989, |
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
1157 /**/ |
7366
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
1158 988, |
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
1159 /**/ |
7364
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
1160 987, |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
1161 /**/ |
7362
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
1162 986, |
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
1163 /**/ |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
1164 985, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
1165 /**/ |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
1166 984, |
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
1167 /**/ |
7356
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
1168 983, |
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
1169 /**/ |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
1170 982, |
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
1171 /**/ |
7352
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
1172 981, |
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
1173 /**/ |
7350
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
1174 980, |
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
1175 /**/ |
7347
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
1176 979, |
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
1177 /**/ |
7345
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
1178 978, |
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
1179 /**/ |
7344
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
1180 977, |
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
1181 /**/ |
7342
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
1182 976, |
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
1183 /**/ |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
1184 975, |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
1185 /**/ |
7338
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
1186 974, |
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
1187 /**/ |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
1188 973, |
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
1189 /**/ |
7334
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
1190 972, |
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
1191 /**/ |
7332
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
1192 971, |
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
1193 /**/ |
7330
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
1194 970, |
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
1195 /**/ |
7328
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
1196 969, |
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
1197 /**/ |
7326
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
1198 968, |
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
1199 /**/ |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
1200 967, |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
1201 /**/ |
7322
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
1202 966, |
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
1203 /**/ |
7320
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
1204 965, |
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
1205 /**/ |
7318
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
1206 964, |
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
1207 /**/ |
7316
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
1208 963, |
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
1209 /**/ |
7313
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
1210 962, |
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
1211 /**/ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
1212 961, |
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
1213 /**/ |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
1214 960, |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
1215 /**/ |
7307
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
1216 959, |
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
1217 /**/ |
7305
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
1218 958, |
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
1219 /**/ |
7303
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1220 957, |
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1221 /**/ |
7301
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
1222 956, |
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
1223 /**/ |
7299
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
1224 955, |
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
1225 /**/ |
7297
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
1226 954, |
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
1227 /**/ |
7295
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
1228 953, |
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
1229 /**/ |
7293
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
1230 952, |
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
1231 /**/ |
7291
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
1232 951, |
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
1233 /**/ |
7289
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
1234 950, |
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
1235 /**/ |
7287
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
1236 949, |
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
1237 /**/ |
7285
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
1238 948, |
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
1239 /**/ |
7283
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
1240 947, |
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
1241 /**/ |
7281
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
1242 946, |
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
1243 /**/ |
7279
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
1244 945, |
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
1245 /**/ |
7277
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
1246 944, |
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
1247 /**/ |
7275
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
1248 943, |
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
1249 /**/ |
7273
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
1250 942, |
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
1251 /**/ |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
1252 941, |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
1253 /**/ |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
1254 940, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
1255 /**/ |
7262
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
1256 939, |
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
1257 /**/ |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
1258 938, |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
1259 /**/ |
7258
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
1260 937, |
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
1261 /**/ |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
1262 936, |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
1263 /**/ |
7254
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
1264 935, |
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
1265 /**/ |
7252
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
1266 934, |
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
1267 /**/ |
7250
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
1268 933, |
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
1269 /**/ |
7248
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
1270 932, |
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
1271 /**/ |
7246
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
1272 931, |
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
1273 /**/ |
7243
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
1274 930, |
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
1275 /**/ |
7241
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
1276 929, |
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
1277 /**/ |
7239
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1278 928, |
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1279 /**/ |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
1280 927, |
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
1281 /**/ |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
1282 926, |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
1283 /**/ |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
1284 925, |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
1285 /**/ |
7231
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
1286 924, |
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
1287 /**/ |
7229
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
1288 923, |
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
1289 /**/ |
7226
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
1290 922, |
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
1291 /**/ |
7224
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
1292 921, |
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
1293 /**/ |
7222
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1294 920, |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1295 /**/ |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
1296 919, |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
1297 /**/ |
7218
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
1298 918, |
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
1299 /**/ |
7216
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
1300 917, |
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
1301 /**/ |
7214
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
1302 916, |
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
1303 /**/ |
7212
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
1304 915, |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
1305 /**/ |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
1306 914, |
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
1307 /**/ |
7208
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
1308 913, |
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
1309 /**/ |
7206
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
1310 912, |
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
1311 /**/ |
7204
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
1312 911, |
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
1313 /**/ |
7202
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
1314 910, |
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
1315 /**/ |
7200
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
1316 909, |
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
1317 /**/ |
7198
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
1318 908, |
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
1319 /**/ |
7196
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
1320 907, |
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
1321 /**/ |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
1322 906, |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
1323 /**/ |
7191
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
1324 905, |
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
1325 /**/ |
7189
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
1326 904, |
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
1327 /**/ |
7186
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
1328 903, |
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
1329 /**/ |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
1330 902, |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
1331 /**/ |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
1332 901, |
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
1333 /**/ |
7179
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
1334 900, |
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
1335 /**/ |
7177
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
1336 899, |
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
1337 /**/ |
7174
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
1338 898, |
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
1339 /**/ |
7172
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
1340 897, |
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
1341 /**/ |
7170
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
1342 896, |
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
1343 /**/ |
7168
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
1344 895, |
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
1345 /**/ |
7166
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
1346 894, |
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
1347 /**/ |
7164
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
1348 893, |
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
1349 /**/ |
7162
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
1350 892, |
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
1351 /**/ |
7160
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
1352 891, |
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
1353 /**/ |
7158
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
1354 890, |
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
1355 /**/ |
7156
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
1356 889, |
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
1357 /**/ |
7154
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
1358 888, |
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
1359 /**/ |
7152
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
1360 887, |
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
1361 /**/ |
7150
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
1362 886, |
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
1363 /**/ |
7148
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
1364 885, |
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
1365 /**/ |
7145
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
1366 884, |
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
1367 /**/ |
7143
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
1368 883, |
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
1369 /**/ |
7141
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
1370 882, |
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
1371 /**/ |
7139
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
1372 881, |
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
1373 /**/ |
7137
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
1374 880, |
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
1375 /**/ |
7135
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
1376 879, |
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
1377 /**/ |
7133
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
1378 878, |
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
1379 /**/ |
7131
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
1380 877, |
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
1381 /**/ |
7129
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
1382 876, |
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
1383 /**/ |
7127
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1384 875, |
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1385 /**/ |
7125
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
1386 874, |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
1387 /**/ |
7123
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
1388 873, |
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
1389 /**/ |
7121
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
1390 872, |
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
1391 /**/ |
7119
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
1392 871, |
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
1393 /**/ |
7117
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
1394 870, |
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
1395 /**/ |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
1396 869, |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
1397 /**/ |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
1398 868, |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
1399 /**/ |
7111
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1400 867, |
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1401 /**/ |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
1402 866, |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
1403 /**/ |
7107
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
1404 865, |
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
1405 /**/ |
7105
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
1406 864, |
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
1407 /**/ |
7103
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
1408 863, |
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
1409 /**/ |
7101
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
1410 862, |
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
1411 /**/ |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
1412 861, |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
1413 /**/ |
7096
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
1414 860, |
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
1415 /**/ |
7094
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
1416 859, |
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
1417 /**/ |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
1418 858, |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
1419 /**/ |
7090
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
1420 857, |
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
1421 /**/ |
7088
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
1422 856, |
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
1423 /**/ |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
1424 855, |
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
1425 /**/ |
7084
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
1426 854, |
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
1427 /**/ |
7082
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
1428 853, |
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
1429 /**/ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1430 852, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1431 /**/ |
7078
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
1432 851, |
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
1433 /**/ |
7076
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
1434 850, |
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
1435 /**/ |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1436 849, |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1437 /**/ |
7072
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
1438 848, |
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
1439 /**/ |
7070
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
1440 847, |
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
1441 /**/ |
7068
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
1442 846, |
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
1443 /**/ |
7066
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
1444 845, |
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
1445 /**/ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
1446 844, |
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
1447 /**/ |
7062
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
1448 843, |
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
1449 /**/ |
7060
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
1450 842, |
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
1451 /**/ |
7058
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
1452 841, |
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
1453 /**/ |
7056
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
1454 840, |
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
1455 /**/ |
7054
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
1456 839, |
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
1457 /**/ |
7052
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
1458 838, |
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
1459 /**/ |
7049
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
1460 837, |
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
1461 /**/ |
7046
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
1462 836, |
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
1463 /**/ |
7044
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
1464 835, |
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
1465 /**/ |
7042
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
1466 834, |
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
1467 /**/ |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
1468 833, |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
1469 /**/ |
7038
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
1470 832, |
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
1471 /**/ |
7036
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
1472 831, |
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
1473 /**/ |
7034
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
1474 830, |
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
1475 /**/ |
7032
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
1476 829, |
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
1477 /**/ |
7030
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
1478 828, |
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
1479 /**/ |
7021 | 1480 827, |
1481 /**/ | |
7019 | 1482 826, |
1483 /**/ | |
7017 | 1484 825, |
1485 /**/ | |
7014 | 1486 824, |
1487 /**/ | |
7011 | 1488 823, |
1489 /**/ | |
7009 | 1490 822, |
1491 /**/ | |
7007 | 1492 821, |
1493 /**/ | |
7005 | 1494 820, |
1495 /**/ | |
7003 | 1496 819, |
1497 /**/ | |
7001 | 1498 818, |
1499 /**/ | |
6999 | 1500 817, |
1501 /**/ | |
6997 | 1502 816, |
1503 /**/ | |
6995 | 1504 815, |
1505 /**/ | |
6993 | 1506 814, |
1507 /**/ | |
6991 | 1508 813, |
1509 /**/ | |
6989 | 1510 812, |
1511 /**/ | |
6987 | 1512 811, |
1513 /**/ | |
6985 | 1514 810, |
1515 /**/ | |
6983 | 1516 809, |
1517 /**/ | |
6981 | 1518 808, |
1519 /**/ | |
6979 | 1520 807, |
1521 /**/ | |
6977 | 1522 806, |
1523 /**/ | |
6975 | 1524 805, |
1525 /**/ | |
6973 | 1526 804, |
1527 /**/ | |
6971 | 1528 803, |
1529 /**/ | |
6969 | 1530 802, |
1531 /**/ | |
6967 | 1532 801, |
1533 /**/ | |
6965 | 1534 800, |
1535 /**/ | |
6963 | 1536 799, |
1537 /**/ | |
6961 | 1538 798, |
1539 /**/ | |
6959 | 1540 797, |
1541 /**/ | |
6957 | 1542 796, |
1543 /**/ | |
6954 | 1544 795, |
1545 /**/ | |
6952 | 1546 794, |
1547 /**/ | |
6949 | 1548 793, |
1549 /**/ | |
6947 | 1550 792, |
1551 /**/ | |
6945 | 1552 791, |
1553 /**/ | |
6943 | 1554 790, |
1555 /**/ | |
6941 | 1556 789, |
1557 /**/ | |
6939 | 1558 788, |
1559 /**/ | |
6937 | 1560 787, |
1561 /**/ | |
6935 | 1562 786, |
1563 /**/ | |
6933 | 1564 785, |
1565 /**/ | |
6931 | 1566 784, |
1567 /**/ | |
6929 | 1568 783, |
1569 /**/ | |
6927 | 1570 782, |
1571 /**/ | |
6925 | 1572 781, |
1573 /**/ | |
6923 | 1574 780, |
1575 /**/ | |
6921 | 1576 779, |
1577 /**/ | |
6919 | 1578 778, |
1579 /**/ | |
6916 | 1580 777, |
1581 /**/ | |
6914 | 1582 776, |
1583 /**/ | |
6911 | 1584 775, |
1585 /**/ | |
6909 | 1586 774, |
1587 /**/ | |
6907 | 1588 773, |
1589 /**/ | |
6905 | 1590 772, |
1591 /**/ | |
6903 | 1592 771, |
1593 /**/ | |
6901 | 1594 770, |
1595 /**/ | |
6899 | 1596 769, |
1597 /**/ | |
6897 | 1598 768, |
1599 /**/ | |
6895 | 1600 767, |
1601 /**/ | |
6893 | 1602 766, |
1603 /**/ | |
6891 | 1604 765, |
1605 /**/ | |
6889 | 1606 764, |
1607 /**/ | |
6887 | 1608 763, |
1609 /**/ | |
6885 | 1610 762, |
1611 /**/ | |
6882 | 1612 761, |
1613 /**/ | |
6880 | 1614 760, |
1615 /**/ | |
6878 | 1616 759, |
1617 /**/ | |
6876 | 1618 758, |
1619 /**/ | |
6874 | 1620 757, |
1621 /**/ | |
6872 | 1622 756, |
1623 /**/ | |
6870 | 1624 755, |
1625 /**/ | |
6868 | 1626 754, |
1627 /**/ | |
6866 | 1628 753, |
1629 /**/ | |
6864 | 1630 752, |
1631 /**/ | |
6862 | 1632 751, |
1633 /**/ | |
6860 | 1634 750, |
1635 /**/ | |
6858 | 1636 749, |
1637 /**/ | |
6856 | 1638 748, |
1639 /**/ | |
6853 | 1640 747, |
1641 /**/ | |
6851 | 1642 746, |
1643 /**/ | |
6849 | 1644 745, |
1645 /**/ | |
6847 | 1646 744, |
1647 /**/ | |
6845 | 1648 743, |
1649 /**/ | |
6843 | 1650 742, |
1651 /**/ | |
6841 | 1652 741, |
1653 /**/ | |
6838 | 1654 740, |
1655 /**/ | |
6836 | 1656 739, |
1657 /**/ | |
6834 | 1658 738, |
1659 /**/ | |
6832 | 1660 737, |
1661 /**/ | |
6830 | 1662 736, |
1663 /**/ | |
6828 | 1664 735, |
1665 /**/ | |
6826 | 1666 734, |
1667 /**/ | |
6824 | 1668 733, |
1669 /**/ | |
6821 | 1670 732, |
1671 /**/ | |
6819 | 1672 731, |
1673 /**/ | |
6817 | 1674 730, |
1675 /**/ | |
6815 | 1676 729, |
1677 /**/ | |
6813 | 1678 728, |
1679 /**/ | |
6811 | 1680 727, |
1681 /**/ | |
6809 | 1682 726, |
1683 /**/ | |
6807 | 1684 725, |
1685 /**/ | |
6805 | 1686 724, |
1687 /**/ | |
6803 | 1688 723, |
1689 /**/ | |
6801 | 1690 722, |
1691 /**/ | |
6799 | 1692 721, |
1693 /**/ | |
6797 | 1694 720, |
1695 /**/ | |
6795 | 1696 719, |
1697 /**/ | |
6793 | 1698 718, |
1699 /**/ | |
6791 | 1700 717, |
1701 /**/ | |
6789 | 1702 716, |
1703 /**/ | |
6787 | 1704 715, |
1705 /**/ | |
6785 | 1706 714, |
1707 /**/ | |
6783 | 1708 713, |
1709 /**/ | |
6781 | 1710 712, |
1711 /**/ | |
6779 | 1712 711, |
1713 /**/ | |
6777 | 1714 710, |
1715 /**/ | |
6775 | 1716 709, |
1717 /**/ | |
6773 | 1718 708, |
1719 /**/ | |
6771 | 1720 707, |
1721 /**/ | |
6769 | 1722 706, |
1723 /**/ | |
6767 | 1724 705, |
1725 /**/ | |
6765 | 1726 704, |
1727 /**/ | |
6763 | 1728 703, |
1729 /**/ | |
6761 | 1730 702, |
1731 /**/ | |
6759 | 1732 701, |
1733 /**/ | |
6755 | 1734 700, |
1735 /**/ | |
6753 | 1736 699, |
1737 /**/ | |
6751 | 1738 698, |
1739 /**/ | |
6749 | 1740 697, |
1741 /**/ | |
6747 | 1742 696, |
1743 /**/ | |
6745 | 1744 695, |
1745 /**/ | |
6742 | 1746 694, |
1747 /**/ | |
6739 | 1748 693, |
1749 /**/ | |
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
|
1750 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
|
1751 /**/ |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
1752 691, |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
1753 /**/ |
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
|
1754 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
|
1755 /**/ |
6731 | 1756 689, |
1757 /**/ | |
6729 | 1758 688, |
1759 /**/ | |
6727 | 1760 687, |
1761 /**/ | |
6725 | 1762 686, |
1763 /**/ | |
6723 | 1764 685, |
1765 /**/ | |
6721 | 1766 684, |
1767 /**/ | |
6719 | 1768 683, |
1769 /**/ | |
6717 | 1770 682, |
1771 /**/ | |
6714 | 1772 681, |
1773 /**/ | |
6712 | 1774 680, |
1775 /**/ | |
6710 | 1776 679, |
1777 /**/ | |
6708 | 1778 678, |
1779 /**/ | |
6706 | 1780 677, |
1781 /**/ | |
6704 | 1782 676, |
1783 /**/ | |
6702 | 1784 675, |
1785 /**/ | |
6700 | 1786 674, |
1787 /**/ | |
6698 | 1788 673, |
1789 /**/ | |
6695 | 1790 672, |
1791 /**/ | |
6693 | 1792 671, |
1793 /**/ | |
6691 | 1794 670, |
1795 /**/ | |
6689 | 1796 669, |
1797 /**/ | |
6687 | 1798 668, |
1799 /**/ | |
6685 | 1800 667, |
1801 /**/ | |
6683 | 1802 666, |
1803 /**/ | |
6681 | 1804 665, |
1805 /**/ | |
6679 | 1806 664, |
1807 /**/ | |
6677 | 1808 663, |
1809 /**/ | |
6675 | 1810 662, |
1811 /**/ | |
6673 | 1812 661, |
1813 /**/ | |
6671 | 1814 660, |
1815 /**/ | |
6669 | 1816 659, |
1817 /**/ | |
6667 | 1818 658, |
1819 /**/ | |
6665 | 1820 657, |
1821 /**/ | |
6663 | 1822 656, |
1823 /**/ | |
6661 | 1824 655, |
1825 /**/ | |
6659 | 1826 654, |
1827 /**/ | |
6657 | 1828 653, |
1829 /**/ | |
6655 | 1830 652, |
1831 /**/ | |
6653 | 1832 651, |
1833 /**/ | |
6651 | 1834 650, |
1835 /**/ | |
6649 | 1836 649, |
1837 /**/ | |
6645 | 1838 648, |
1839 /**/ | |
6643 | 1840 647, |
1841 /**/ | |
6641 | 1842 646, |
1843 /**/ | |
6639 | 1844 645, |
1845 /**/ | |
6637 | 1846 644, |
1847 /**/ | |
6635 | 1848 643, |
1849 /**/ | |
6633 | 1850 642, |
1851 /**/ | |
6631 | 1852 641, |
1853 /**/ | |
6629 | 1854 640, |
1855 /**/ | |
6627 | 1856 639, |
1857 /**/ | |
6625 | 1858 638, |
1859 /**/ | |
6623 | 1860 637, |
1861 /**/ | |
6620 | 1862 636, |
1863 /**/ | |
6618 | 1864 635, |
1865 /**/ | |
6616 | 1866 634, |
1867 /**/ | |
6614 | 1868 633, |
1869 /**/ | |
6612 | 1870 632, |
1871 /**/ | |
6610 | 1872 631, |
1873 /**/ | |
6608 | 1874 630, |
1875 /**/ | |
6606 | 1876 629, |
1877 /**/ | |
6604 | 1878 628, |
1879 /**/ | |
6602 | 1880 627, |
1881 /**/ | |
6600 | 1882 626, |
1883 /**/ | |
6598 | 1884 625, |
1885 /**/ | |
6596 | 1886 624, |
1887 /**/ | |
6594 | 1888 623, |
1889 /**/ | |
6592 | 1890 622, |
1891 /**/ | |
6590 | 1892 621, |
1893 /**/ | |
6588 | 1894 620, |
1895 /**/ | |
6586 | 1896 619, |
1897 /**/ | |
6584 | 1898 618, |
1899 /**/ | |
6581 | 1900 617, |
1901 /**/ | |
6579 | 1902 616, |
1903 /**/ | |
6577 | 1904 615, |
1905 /**/ | |
6575 | 1906 614, |
1907 /**/ | |
6573 | 1908 613, |
1909 /**/ | |
6571 | 1910 612, |
1911 /**/ | |
6569 | 1912 611, |
1913 /**/ | |
6567 | 1914 610, |
1915 /**/ | |
6565 | 1916 609, |
1917 /**/ | |
6563 | 1918 608, |
1919 /**/ | |
6561 | 1920 607, |
1921 /**/ | |
6559 | 1922 606, |
1923 /**/ | |
6557 | 1924 605, |
1925 /**/ | |
6555 | 1926 604, |
1927 /**/ | |
6553 | 1928 603, |
1929 /**/ | |
6551 | 1930 602, |
1931 /**/ | |
6549 | 1932 601, |
1933 /**/ | |
6547 | 1934 600, |
1935 /**/ | |
6545 | 1936 599, |
1937 /**/ | |
6543 | 1938 598, |
1939 /**/ | |
6541 | 1940 597, |
1941 /**/ | |
6539 | 1942 596, |
1943 /**/ | |
6537 | 1944 595, |
1945 /**/ | |
6535 | 1946 594, |
1947 /**/ | |
6533 | 1948 593, |
1949 /**/ | |
6531 | 1950 592, |
1951 /**/ | |
6528 | 1952 591, |
1953 /**/ | |
6526 | 1954 590, |
1955 /**/ | |
6524 | 1956 589, |
1957 /**/ | |
6522 | 1958 588, |
1959 /**/ | |
6520 | 1960 587, |
1961 /**/ | |
6518 | 1962 586, |
1963 /**/ | |
6516 | 1964 585, |
1965 /**/ | |
6514 | 1966 584, |
1967 /**/ | |
6512 | 1968 583, |
1969 /**/ | |
6510 | 1970 582, |
1971 /**/ | |
6508 | 1972 581, |
1973 /**/ | |
6506 | 1974 580, |
1975 /**/ | |
6503 | 1976 579, |
1977 /**/ | |
6501 | 1978 578, |
1979 /**/ | |
6499 | 1980 577, |
1981 /**/ | |
6497 | 1982 576, |
1983 /**/ | |
6495 | 1984 575, |
1985 /**/ | |
6493 | 1986 574, |
1987 /**/ | |
6491 | 1988 573, |
1989 /**/ | |
6489 | 1990 572, |
1991 /**/ | |
6487 | 1992 571, |
1993 /**/ | |
6485 | 1994 570, |
1995 /**/ | |
6482 | 1996 569, |
1997 /**/ | |
6480 | 1998 568, |
1999 /**/ | |
6477 | 2000 567, |
2001 /**/ | |
6474 | 2002 566, |
2003 /**/ | |
6472 | 2004 565, |
2005 /**/ | |
6470 | 2006 564, |
2007 /**/ | |
6468 | 2008 563, |
2009 /**/ | |
6466 | 2010 562, |
2011 /**/ | |
6464 | 2012 561, |
2013 /**/ | |
6462 | 2014 560, |
2015 /**/ | |
6460 | 2016 559, |
2017 /**/ | |
6458 | 2018 558, |
2019 /**/ | |
6456 | 2020 557, |
2021 /**/ | |
6454 | 2022 556, |
2023 /**/ | |
6452 | 2024 555, |
2025 /**/ | |
6450 | 2026 554, |
2027 /**/ | |
6448 | 2028 553, |
2029 /**/ | |
6445 | 2030 552, |
2031 /**/ | |
6443 | 2032 551, |
2033 /**/ | |
6441 | 2034 550, |
2035 /**/ | |
6438 | 2036 549, |
2037 /**/ | |
6436 | 2038 548, |
2039 /**/ | |
6434 | 2040 547, |
2041 /**/ | |
6432 | 2042 546, |
2043 /**/ | |
6430 | 2044 545, |
2045 /**/ | |
6428 | 2046 544, |
2047 /**/ | |
6426 | 2048 543, |
2049 /**/ | |
6424 | 2050 542, |
2051 /**/ | |
6422 | 2052 541, |
2053 /**/ | |
6419 | 2054 540, |
2055 /**/ | |
6417 | 2056 539, |
2057 /**/ | |
6415 | 2058 538, |
2059 /**/ | |
6413 | 2060 537, |
2061 /**/ | |
6411 | 2062 536, |
2063 /**/ | |
6409 | 2064 535, |
2065 /**/ | |
6406 | 2066 534, |
2067 /**/ | |
6404 | 2068 533, |
2069 /**/ | |
6402 | 2070 532, |
2071 /**/ | |
6400 | 2072 531, |
2073 /**/ | |
6398 | 2074 530, |
2075 /**/ | |
6396 | 2076 529, |
2077 /**/ | |
6394 | 2078 528, |
2079 /**/ | |
6392 | 2080 527, |
2081 /**/ | |
6390 | 2082 526, |
2083 /**/ | |
6388 | 2084 525, |
2085 /**/ | |
6386 | 2086 524, |
2087 /**/ | |
6383 | 2088 523, |
2089 /**/ | |
6381 | 2090 522, |
2091 /**/ | |
6379 | 2092 521, |
2093 /**/ | |
6377 | 2094 520, |
2095 /**/ | |
6375 | 2096 519, |
2097 /**/ | |
6373 | 2098 518, |
2099 /**/ | |
6371 | 2100 517, |
2101 /**/ | |
6367 | 2102 516, |
2103 /**/ | |
6365 | 2104 515, |
2105 /**/ | |
6363 | 2106 514, |
2107 /**/ | |
6361 | 2108 513, |
2109 /**/ | |
6359 | 2110 512, |
2111 /**/ | |
6357 | 2112 511, |
2113 /**/ | |
6355 | 2114 510, |
2115 /**/ | |
6353 | 2116 509, |
2117 /**/ | |
6351 | 2118 508, |
2119 /**/ | |
6349 | 2120 507, |
2121 /**/ | |
6347 | 2122 506, |
2123 /**/ | |
6345 | 2124 505, |
2125 /**/ | |
6343 | 2126 504, |
2127 /**/ | |
6341 | 2128 503, |
2129 /**/ | |
6339 | 2130 502, |
2131 /**/ | |
6337 | 2132 501, |
2133 /**/ | |
6334 | 2134 500, |
2135 /**/ | |
6332 | 2136 499, |
2137 /**/ | |
6330 | 2138 498, |
2139 /**/ | |
6328 | 2140 497, |
2141 /**/ | |
6326 | 2142 496, |
2143 /**/ | |
6324 | 2144 495, |
2145 /**/ | |
6322 | 2146 494, |
2147 /**/ | |
6320 | 2148 493, |
2149 /**/ | |
6318 | 2150 492, |
2151 /**/ | |
6316 | 2152 491, |
2153 /**/ | |
6314 | 2154 490, |
2155 /**/ | |
6312 | 2156 489, |
2157 /**/ | |
6310 | 2158 488, |
2159 /**/ | |
6307 | 2160 487, |
2161 /**/ | |
6305 | 2162 486, |
2163 /**/ | |
6303 | 2164 485, |
2165 /**/ | |
6301 | 2166 484, |
2167 /**/ | |
6299 | 2168 483, |
2169 /**/ | |
6297 | 2170 482, |
2171 /**/ | |
6295 | 2172 481, |
2173 /**/ | |
6293 | 2174 480, |
2175 /**/ | |
6290 | 2176 479, |
2177 /**/ | |
6288 | 2178 478, |
2179 /**/ | |
6286 | 2180 477, |
2181 /**/ | |
6284 | 2182 476, |
2183 /**/ | |
6282 | 2184 475, |
2185 /**/ | |
6280 | 2186 474, |
2187 /**/ | |
6278 | 2188 473, |
2189 /**/ | |
6276 | 2190 472, |
2191 /**/ | |
6274 | 2192 471, |
2193 /**/ | |
6272 | 2194 470, |
2195 /**/ | |
6270 | 2196 469, |
2197 /**/ | |
6268 | 2198 468, |
2199 /**/ | |
6266 | 2200 467, |
2201 /**/ | |
6264 | 2202 466, |
2203 /**/ | |
6262 | 2204 465, |
2205 /**/ | |
6260 | 2206 464, |
2207 /**/ | |
6257 | 2208 463, |
2209 /**/ | |
6255 | 2210 462, |
2211 /**/ | |
6253 | 2212 461, |
2213 /**/ | |
6251 | 2214 460, |
2215 /**/ | |
6249 | 2216 459, |
2217 /**/ | |
6247 | 2218 458, |
2219 /**/ | |
6245 | 2220 457, |
2221 /**/ | |
6243 | 2222 456, |
2223 /**/ | |
6241 | 2224 455, |
2225 /**/ | |
6239 | 2226 454, |
2227 /**/ | |
6236 | 2228 453, |
2229 /**/ | |
6234 | 2230 452, |
2231 /**/ | |
6232 | 2232 451, |
2233 /**/ | |
6230 | 2234 450, |
2235 /**/ | |
6228 | 2236 449, |
2237 /**/ | |
6226 | 2238 448, |
2239 /**/ | |
6224 | 2240 447, |
2241 /**/ | |
6222 | 2242 446, |
2243 /**/ | |
6220 | 2244 445, |
2245 /**/ | |
6218 | 2246 444, |
2247 /**/ | |
6216 | 2248 443, |
2249 /**/ | |
6214 | 2250 442, |
2251 /**/ | |
6211 | 2252 441, |
2253 /**/ | |
6209 | 2254 440, |
2255 /**/ | |
6207 | 2256 439, |
2257 /**/ | |
6205 | 2258 438, |
2259 /**/ | |
6203 | 2260 437, |
2261 /**/ | |
6201 | 2262 436, |
2263 /**/ | |
6199 | 2264 435, |
2265 /**/ | |
6197 | 2266 434, |
2267 /**/ | |
6195 | 2268 433, |
2269 /**/ | |
6193 | 2270 432, |
2271 /**/ | |
6191 | 2272 431, |
2273 /**/ | |
6189 | 2274 430, |
2275 /**/ | |
6187 | 2276 429, |
2277 /**/ | |
6185 | 2278 428, |
2279 /**/ | |
6183 | 2280 427, |
2281 /**/ | |
6181 | 2282 426, |
2283 /**/ | |
6178 | 2284 425, |
2285 /**/ | |
6176 | 2286 424, |
2287 /**/ | |
6174 | 2288 423, |
2289 /**/ | |
6172 | 2290 422, |
2291 /**/ | |
6170 | 2292 421, |
2293 /**/ | |
6168 | 2294 420, |
2295 /**/ | |
6166 | 2296 419, |
2297 /**/ | |
6164 | 2298 418, |
2299 /**/ | |
6162 | 2300 417, |
2301 /**/ | |
6160 | 2302 416, |
2303 /**/ | |
6158
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
2304 415, |
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
2305 /**/ |
6154 | 2306 414, |
2307 /**/ | |
6151 | 2308 413, |
2309 /**/ | |
6149 | 2310 412, |
2311 /**/ | |
6147 | 2312 411, |
2313 /**/ | |
6145 | 2314 410, |
2315 /**/ | |
6143 | 2316 409, |
2317 /**/ | |
6140 | 2318 408, |
2319 /**/ | |
6138 | 2320 407, |
2321 /**/ | |
6136 | 2322 406, |
2323 /**/ | |
6134 | 2324 405, |
2325 /**/ | |
6132 | 2326 404, |
2327 /**/ | |
6130 | 2328 403, |
2329 /**/ | |
6128 | 2330 402, |
2331 /**/ | |
6126 | 2332 401, |
2333 /**/ | |
6124 | 2334 400, |
2335 /**/ | |
6122 | 2336 399, |
2337 /**/ | |
6120 | 2338 398, |
2339 /**/ | |
6118 | 2340 397, |
2341 /**/ | |
6116 | 2342 396, |
2343 /**/ | |
6114 | 2344 395, |
2345 /**/ | |
6112 | 2346 394, |
2347 /**/ | |
6110 | 2348 393, |
2349 /**/ | |
6108 | 2350 392, |
2351 /**/ | |
6106 | 2352 391, |
2353 /**/ | |
6104 | 2354 390, |
2355 /**/ | |
6102 | 2356 389, |
2357 /**/ | |
6100 | 2358 388, |
2359 /**/ | |
6098 | 2360 387, |
2361 /**/ | |
6096 | 2362 386, |
2363 /**/ | |
6094 | 2364 385, |
2365 /**/ | |
6092 | 2366 384, |
2367 /**/ | |
6089 | 2368 383, |
2369 /**/ | |
6087 | 2370 382, |
2371 /**/ | |
6085 | 2372 381, |
2373 /**/ | |
6083 | 2374 380, |
2375 /**/ | |
6081 | 2376 379, |
2377 /**/ | |
6079 | 2378 378, |
2379 /**/ | |
6077 | 2380 377, |
2381 /**/ | |
6075 | 2382 376, |
2383 /**/ | |
6073 | 2384 375, |
2385 /**/ | |
6071 | 2386 374, |
2387 /**/ | |
6068 | 2388 373, |
2389 /**/ | |
6066 | 2390 372, |
2391 /**/ | |
6064 | 2392 371, |
2393 /**/ | |
6062 | 2394 370, |
2395 /**/ | |
6060 | 2396 369, |
2397 /**/ | |
6058 | 2398 368, |
2399 /**/ | |
6056 | 2400 367, |
2401 /**/ | |
6054 | 2402 366, |
2403 /**/ | |
6052 | 2404 365, |
2405 /**/ | |
6049 | 2406 364, |
2407 /**/ | |
6047 | 2408 363, |
2409 /**/ | |
6045 | 2410 362, |
2411 /**/ | |
6043 | 2412 361, |
2413 /**/ | |
6041 | 2414 360, |
2415 /**/ | |
6039 | 2416 359, |
2417 /**/ | |
6037 | 2418 358, |
2419 /**/ | |
6035 | 2420 357, |
2421 /**/ | |
6033 | 2422 356, |
2423 /**/ | |
6030 | 2424 355, |
2425 /**/ | |
6028 | 2426 354, |
2427 /**/ | |
6026 | 2428 353, |
2429 /**/ | |
6024 | 2430 352, |
2431 /**/ | |
6022 | 2432 351, |
2433 /**/ | |
6020 | 2434 350, |
2435 /**/ | |
6018 | 2436 349, |
2437 /**/ | |
6016 | 2438 348, |
2439 /**/ | |
6014 | 2440 347, |
2441 /**/ | |
6012 | 2442 346, |
2443 /**/ | |
6010 | 2444 345, |
2445 /**/ | |
6007 | 2446 344, |
2447 /**/ | |
6005 | 2448 343, |
2449 /**/ | |
6003 | 2450 342, |
2451 /**/ | |
6001 | 2452 341, |
2453 /**/ | |
5999 | 2454 340, |
2455 /**/ | |
5997 | 2456 339, |
2457 /**/ | |
5995 | 2458 338, |
2459 /**/ | |
5993 | 2460 337, |
2461 /**/ | |
5991 | 2462 336, |
2463 /**/ | |
5989 | 2464 335, |
2465 /**/ | |
5987 | 2466 334, |
2467 /**/ | |
5985 | 2468 333, |
2469 /**/ | |
5983 | 2470 332, |
2471 /**/ | |
5981 | 2472 331, |
2473 /**/ | |
5979 | 2474 330, |
2475 /**/ | |
5977 | 2476 329, |
2477 /**/ | |
5975 | 2478 328, |
2479 /**/ | |
5973 | 2480 327, |
2481 /**/ | |
5971 | 2482 326, |
2483 /**/ | |
5969 | 2484 325, |
2485 /**/ | |
5966 | 2486 324, |
2487 /**/ | |
5964 | 2488 323, |
2489 /**/ | |
5962 | 2490 322, |
2491 /**/ | |
5960 | 2492 321, |
2493 /**/ | |
5958 | 2494 320, |
2495 /**/ | |
5956 | 2496 319, |
2497 /**/ | |
5954 | 2498 318, |
2499 /**/ | |
5952 | 2500 317, |
2501 /**/ | |
5950 | 2502 316, |
2503 /**/ | |
5948 | 2504 315, |
2505 /**/ | |
5946 | 2506 314, |
2507 /**/ | |
5944 | 2508 313, |
2509 /**/ | |
5942 | 2510 312, |
2511 /**/ | |
5940 | 2512 311, |
2513 /**/ | |
5938 | 2514 310, |
2515 /**/ | |
5936 | 2516 309, |
2517 /**/ | |
5934 | 2518 308, |
2519 /**/ | |
5932 | 2520 307, |
2521 /**/ | |
5930 | 2522 306, |
2523 /**/ | |
5927 | 2524 305, |
2525 /**/ | |
5925 | 2526 304, |
2527 /**/ | |
5923 | 2528 303, |
2529 /**/ | |
5921 | 2530 302, |
2531 /**/ | |
5919 | 2532 301, |
2533 /**/ | |
5917 | 2534 300, |
2535 /**/ | |
5915 | 2536 299, |
2537 /**/ | |
5913 | 2538 298, |
2539 /**/ | |
5911 | 2540 297, |
2541 /**/ | |
5909 | 2542 296, |
2543 /**/ | |
5905 | 2544 295, |
2545 /**/ | |
5903 | 2546 294, |
2547 /**/ | |
5901 | 2548 293, |
2549 /**/ | |
5899 | 2550 292, |
2551 /**/ | |
5897 | 2552 291, |
2553 /**/ | |
5895 | 2554 290, |
2555 /**/ | |
5893 | 2556 289, |
2557 /**/ | |
5891 | 2558 288, |
2559 /**/ | |
5889 | 2560 287, |
2561 /**/ | |
5887 | 2562 286, |
2563 /**/ | |
5885 | 2564 285, |
2565 /**/ | |
5883 | 2566 284, |
2567 /**/ | |
5881 | 2568 283, |
2569 /**/ | |
5879 | 2570 282, |
2571 /**/ | |
5877 | 2572 281, |
2573 /**/ | |
5875 | 2574 280, |
2575 /**/ | |
5873 | 2576 279, |
2577 /**/ | |
5871 | 2578 278, |
2579 /**/ | |
5869 | 2580 277, |
2581 /**/ | |
5867 | 2582 276, |
2583 /**/ | |
5865 | 2584 275, |
2585 /**/ | |
5863 | 2586 274, |
2587 /**/ | |
5860 | 2588 273, |
2589 /**/ | |
5858 | 2590 272, |
2591 /**/ | |
5856 | 2592 271, |
2593 /**/ | |
5854 | 2594 270, |
2595 /**/ | |
5852 | 2596 269, |
2597 /**/ | |
5850 | 2598 268, |
2599 /**/ | |
5848 | 2600 267, |
2601 /**/ | |
5846 | 2602 266, |
2603 /**/ | |
5844 | 2604 265, |
2605 /**/ | |
5842 | 2606 264, |
2607 /**/ | |
5840 | 2608 263, |
2609 /**/ | |
5838 | 2610 262, |
2611 /**/ | |
5836 | 2612 261, |
2613 /**/ | |
5834 | 2614 260, |
2615 /**/ | |
5832 | 2616 259, |
2617 /**/ | |
5830 | 2618 258, |
2619 /**/ | |
5828 | 2620 257, |
2621 /**/ | |
5826 | 2622 256, |
2623 /**/ | |
5824 | 2624 255, |
2625 /**/ | |
5822 | 2626 254, |
2627 /**/ | |
5820 | 2628 253, |
2629 /**/ | |
5818 | 2630 252, |
2631 /**/ | |
5816 | 2632 251, |
2633 /**/ | |
5812 | 2634 250, |
2635 /**/ | |
5810 | 2636 249, |
2637 /**/ | |
5808 | 2638 248, |
2639 /**/ | |
5806 | 2640 247, |
2641 /**/ | |
5804 | 2642 246, |
2643 /**/ | |
5802 | 2644 245, |
2645 /**/ | |
5800 | 2646 244, |
2647 /**/ | |
5798 | 2648 243, |
2649 /**/ | |
5796 | 2650 242, |
2651 /**/ | |
5794 | 2652 241, |
2653 /**/ | |
5792 | 2654 240, |
2655 /**/ | |
5790 | 2656 239, |
2657 /**/ | |
5788 | 2658 238, |
2659 /**/ | |
5786 | 2660 237, |
2661 /**/ | |
5784 | 2662 236, |
2663 /**/ | |
5782 | 2664 235, |
2665 /**/ | |
5780 | 2666 234, |
2667 /**/ | |
5778 | 2668 233, |
2669 /**/ | |
5776 | 2670 232, |
2671 /**/ | |
5774 | 2672 231, |
2673 /**/ | |
5772 | 2674 230, |
2675 /**/ | |
5770 | 2676 229, |
2677 /**/ | |
5768 | 2678 228, |
2679 /**/ | |
5766 | 2680 227, |
2681 /**/ | |
5764 | 2682 226, |
2683 /**/ | |
5761 | 2684 225, |
2685 /**/ | |
5759 | 2686 224, |
2687 /**/ | |
5757 | 2688 223, |
2689 /**/ | |
5755 | 2690 222, |
2691 /**/ | |
5753 | 2692 221, |
2693 /**/ | |
5751 | 2694 220, |
2695 /**/ | |
5749 | 2696 219, |
2697 /**/ | |
5747 | 2698 218, |
2699 /**/ | |
5745 | 2700 217, |
2701 /**/ | |
5743 | 2702 216, |
2703 /**/ | |
5741 | 2704 215, |
2705 /**/ | |
5739 | 2706 214, |
2707 /**/ | |
5737 | 2708 213, |
2709 /**/ | |
5735 | 2710 212, |
2711 /**/ | |
5732 | 2712 211, |
2713 /**/ | |
5730 | 2714 210, |
2715 /**/ | |
5728 | 2716 209, |
2717 /**/ | |
5726 | 2718 208, |
2719 /**/ | |
5724 | 2720 207, |
2721 /**/ | |
5722 | 2722 206, |
2723 /**/ | |
5720 | 2724 205, |
2725 /**/ | |
5718 | 2726 204, |
2727 /**/ | |
5716 | 2728 203, |
2729 /**/ | |
5714 | 2730 202, |
2731 /**/ | |
5712 | 2732 201, |
2733 /**/ | |
5710 | 2734 200, |
2735 /**/ | |
5708 | 2736 199, |
2737 /**/ | |
5706 | 2738 198, |
2739 /**/ | |
5704 | 2740 197, |
2741 /**/ | |
5702 | 2742 196, |
2743 /**/ | |
5700 | 2744 195, |
2745 /**/ | |
5698 | 2746 194, |
2747 /**/ | |
5695 | 2748 193, |
2749 /**/ | |
5693 | 2750 192, |
2751 /**/ | |
5690 | 2752 191, |
2753 /**/ | |
5688 | 2754 190, |
2755 /**/ | |
5686 | 2756 189, |
2757 /**/ | |
5684 | 2758 188, |
2759 /**/ | |
5682 | 2760 187, |
2761 /**/ | |
5680 | 2762 186, |
2763 /**/ | |
5678 | 2764 185, |
2765 /**/ | |
5676 | 2766 184, |
2767 /**/ | |
5674 | 2768 183, |
2769 /**/ | |
5672 | 2770 182, |
2771 /**/ | |
5670 | 2772 181, |
2773 /**/ | |
5668 | 2774 180, |
2775 /**/ | |
5666 | 2776 179, |
2777 /**/ | |
5664 | 2778 178, |
2779 /**/ | |
5661 | 2780 177, |
2781 /**/ | |
5659 | 2782 176, |
2783 /**/ | |
5657 | 2784 175, |
2785 /**/ | |
5655 | 2786 174, |
2787 /**/ | |
5653 | 2788 173, |
2789 /**/ | |
5651 | 2790 172, |
2791 /**/ | |
5649 | 2792 171, |
2793 /**/ | |
5647 | 2794 170, |
2795 /**/ | |
5645 | 2796 169, |
2797 /**/ | |
5643 | 2798 168, |
2799 /**/ | |
5641 | 2800 167, |
2801 /**/ | |
5639 | 2802 166, |
2803 /**/ | |
5637 | 2804 165, |
2805 /**/ | |
5635 | 2806 164, |
2807 /**/ | |
5633 | 2808 163, |
2809 /**/ | |
5631 | 2810 162, |
2811 /**/ | |
5629 | 2812 161, |
2813 /**/ | |
5627 | 2814 160, |
2815 /**/ | |
5625 | 2816 159, |
2817 /**/ | |
5623 | 2818 158, |
2819 /**/ | |
5621 | 2820 157, |
2821 /**/ | |
5619 | 2822 156, |
2823 /**/ | |
5616 | 2824 155, |
2825 /**/ | |
5614 | 2826 154, |
2827 /**/ | |
5612 | 2828 153, |
2829 /**/ | |
5610 | 2830 152, |
2831 /**/ | |
5608 | 2832 151, |
2833 /**/ | |
5606 | 2834 150, |
2835 /**/ | |
5604 | 2836 149, |
2837 /**/ | |
5602 | 2838 148, |
2839 /**/ | |
5600 | 2840 147, |
2841 /**/ | |
5598 | 2842 146, |
2843 /**/ | |
5596 | 2844 145, |
2845 /**/ | |
5594 | 2846 144, |
2847 /**/ | |
5592 | 2848 143, |
2849 /**/ | |
5590 | 2850 142, |
2851 /**/ | |
5588 | 2852 141, |
2853 /**/ | |
5586 | 2854 140, |
2855 /**/ | |
5584 | 2856 139, |
2857 /**/ | |
5582 | 2858 138, |
2859 /**/ | |
5580 | 2860 137, |
2861 /**/ | |
5578 | 2862 136, |
2863 /**/ | |
5575 | 2864 135, |
2865 /**/ | |
5573 | 2866 134, |
2867 /**/ | |
5571 | 2868 133, |
2869 /**/ | |
5569 | 2870 132, |
2871 /**/ | |
5566 | 2872 131, |
2873 /**/ | |
5564 | 2874 130, |
2875 /**/ | |
5562 | 2876 129, |
2877 /**/ | |
5560 | 2878 128, |
2879 /**/ | |
5558 | 2880 127, |
2881 /**/ | |
5556 | 2882 126, |
2883 /**/ | |
5553 | 2884 125, |
2885 /**/ | |
5551 | 2886 124, |
2887 /**/ | |
5549 | 2888 123, |
2889 /**/ | |
5547 | 2890 122, |
2891 /**/ | |
5545 | 2892 121, |
2893 /**/ | |
5543 | 2894 120, |
2895 /**/ | |
5541 | 2896 119, |
2897 /**/ | |
5539 | 2898 118, |
2899 /**/ | |
5537 | 2900 117, |
2901 /**/ | |
5535 | 2902 116, |
2903 /**/ | |
5533 | 2904 115, |
2905 /**/ | |
5531 | 2906 114, |
2907 /**/ | |
5529 | 2908 113, |
2909 /**/ | |
5527 | 2910 112, |
2911 /**/ | |
5525 | 2912 111, |
2913 /**/ | |
5523 | 2914 110, |
2915 /**/ | |
5521 | 2916 109, |
2917 /**/ | |
5519 | 2918 108, |
2919 /**/ | |
5517 | 2920 107, |
2921 /**/ | |
5515 | 2922 106, |
2923 /**/ | |
5513 | 2924 105, |
2925 /**/ | |
5511 | 2926 104, |
2927 /**/ | |
5508 | 2928 103, |
2929 /**/ | |
5506 | 2930 102, |
2931 /**/ | |
5504 | 2932 101, |
2933 /**/ | |
5502 | 2934 100, |
2935 /**/ | |
5500 | 2936 99, |
2937 /**/ | |
5498 | 2938 98, |
2939 /**/ | |
5496 | 2940 97, |
2941 /**/ | |
5494 | 2942 96, |
2943 /**/ | |
5492 | 2944 95, |
2945 /**/ | |
5490 | 2946 94, |
2947 /**/ | |
5488 | 2948 93, |
2949 /**/ | |
5485 | 2950 92, |
2951 /**/ | |
5483 | 2952 91, |
2953 /**/ | |
5481 | 2954 90, |
2955 /**/ | |
5479 | 2956 89, |
2957 /**/ | |
5477 | 2958 88, |
2959 /**/ | |
5475 | 2960 87, |
2961 /**/ | |
5473 | 2962 86, |
2963 /**/ | |
5471 | 2964 85, |
2965 /**/ | |
5469 | 2966 84, |
2967 /**/ | |
5467 | 2968 83, |
2969 /**/ | |
5464 | 2970 82, |
2971 /**/ | |
5462 | 2972 81, |
2973 /**/ | |
5460 | 2974 80, |
2975 /**/ | |
5458 | 2976 79, |
2977 /**/ | |
5456 | 2978 78, |
2979 /**/ | |
5454 | 2980 77, |
2981 /**/ | |
5452 | 2982 76, |
2983 /**/ | |
5450 | 2984 75, |
2985 /**/ | |
5448 | 2986 74, |
2987 /**/ | |
5446 | 2988 73, |
2989 /**/ | |
5444 | 2990 72, |
2991 /**/ | |
5442 | 2992 71, |
2993 /**/ | |
5440 | 2994 70, |
2995 /**/ | |
5438 | 2996 69, |
2997 /**/ | |
5436 | 2998 68, |
2999 /**/ | |
5434 | 3000 67, |
3001 /**/ | |
5432 | 3002 66, |
3003 /**/ | |
5430 | 3004 65, |
3005 /**/ | |
5428 | 3006 64, |
3007 /**/ | |
5426 | 3008 63, |
3009 /**/ | |
5423 | 3010 62, |
3011 /**/ | |
5421 | 3012 61, |
3013 /**/ | |
5419 | 3014 60, |
3015 /**/ | |
5417 | 3016 59, |
3017 /**/ | |
5415 | 3018 58, |
3019 /**/ | |
5413 | 3020 57, |
3021 /**/ | |
5411 | 3022 56, |
3023 /**/ | |
5409 | 3024 55, |
3025 /**/ | |
5407 | 3026 54, |
3027 /**/ | |
5405 | 3028 53, |
3029 /**/ | |
5403 | 3030 52, |
3031 /**/ | |
5401 | 3032 51, |
3033 /**/ | |
5398 | 3034 50, |
3035 /**/ | |
5396 | 3036 49, |
3037 /**/ | |
5394 | 3038 48, |
3039 /**/ | |
5392 | 3040 47, |
3041 /**/ | |
5390 | 3042 46, |
3043 /**/ | |
5388 | 3044 45, |
3045 /**/ | |
5386 | 3046 44, |
3047 /**/ | |
5384 | 3048 43, |
3049 /**/ | |
5382 | 3050 42, |
3051 /**/ | |
5380 | 3052 41, |
3053 /**/ | |
5378 | 3054 40, |
3055 /**/ | |
5376 | 3056 39, |
3057 /**/ | |
5374 | 3058 38, |
3059 /**/ | |
5372 | 3060 37, |
3061 /**/ | |
5370 | 3062 36, |
3063 /**/ | |
5367 | 3064 35, |
3065 /**/ | |
5365 | 3066 34, |
3067 /**/ | |
5363 | 3068 33, |
3069 /**/ | |
5360 | 3070 32, |
3071 /**/ | |
5358 | 3072 31, |
3073 /**/ | |
5356 | 3074 30, |
3075 /**/ | |
5353 | 3076 29, |
3077 /**/ | |
5351 | 3078 28, |
3079 /**/ | |
5349 | 3080 27, |
3081 /**/ | |
5347 | 3082 26, |
3083 /**/ | |
5345 | 3084 25, |
3085 /**/ | |
5343 | 3086 24, |
3087 /**/ | |
5341 | 3088 23, |
3089 /**/ | |
5338 | 3090 22, |
3091 /**/ | |
5336 | 3092 21, |
3093 /**/ | |
5334 | 3094 20, |
3095 /**/ | |
5332 | 3096 19, |
3097 /**/ | |
5330 | 3098 18, |
3099 /**/ | |
5328 | 3100 17, |
3101 /**/ | |
5326 | 3102 16, |
3103 /**/ | |
5324 | 3104 15, |
3105 /**/ | |
5322 | 3106 14, |
3107 /**/ | |
5320 | 3108 13, |
3109 /**/ | |
5318 | 3110 12, |
3111 /**/ | |
5316 | 3112 11, |
3113 /**/ | |
5314 | 3114 10, |
3115 /**/ | |
5312 | 3116 9, |
3117 /**/ | |
5310 | 3118 8, |
3119 /**/ | |
5308 | 3120 7, |
3121 /**/ | |
5306 | 3122 6, |
3123 /**/ | |
5304 | 3124 5, |
3125 /**/ | |
5302 | 3126 4, |
3127 /**/ | |
5300 | 3128 3, |
3129 /**/ | |
5298 | 3130 2, |
3131 /**/ | |
5296 | 3132 1, |
3133 /**/ | |
7 | 3134 0 |
3135 }; | |
3136 | |
1760 | 3137 /* |
3138 * Place to put a short description when adding a feature with a patch. | |
3139 * Keep it short, e.g.,: "relative numbers", "persistent undo". | |
3140 * Also add a comment marker to separate the lines. | |
3141 * See the official Vim patches for the diff format: It must use a context of | |
1777 | 3142 * one line only. Create it by hand or use "diff -C2" and edit the patch. |
1760 | 3143 */ |
3144 static char *(extra_patches[]) = | |
3145 { /* Add your patch description below this line */ | |
3146 /**/ | |
3147 NULL | |
3148 }; | |
3149 | |
7 | 3150 int |
3151 highest_patch() | |
3152 { | |
3153 int i; | |
3154 int h = 0; | |
3155 | |
3156 for (i = 0; included_patches[i] != 0; ++i) | |
3157 if (included_patches[i] > h) | |
3158 h = included_patches[i]; | |
3159 return h; | |
3160 } | |
3161 | |
3162 #if defined(FEAT_EVAL) || defined(PROTO) | |
3163 /* | |
3164 * Return TRUE if patch "n" has been included. | |
3165 */ | |
3166 int | |
3167 has_patch(n) | |
3168 int n; | |
3169 { | |
3170 int i; | |
3171 | |
3172 for (i = 0; included_patches[i] != 0; ++i) | |
3173 if (included_patches[i] == n) | |
3174 return TRUE; | |
3175 return FALSE; | |
3176 } | |
3177 #endif | |
3178 | |
3179 void | |
3180 ex_version(eap) | |
3181 exarg_T *eap; | |
3182 { | |
3183 /* | |
3184 * Ignore a ":version 9.99" command. | |
3185 */ | |
3186 if (*eap->arg == NUL) | |
3187 { | |
3188 msg_putchar('\n'); | |
3189 list_version(); | |
3190 } | |
3191 } | |
3192 | |
4147 | 3193 /* |
3194 * List all features aligned in columns, dictionary style. | |
3195 */ | |
3196 static void | |
3197 list_features() | |
3198 { | |
3199 int i; | |
3200 int ncol; | |
3201 int nrow; | |
3202 int nfeat = 0; | |
3203 int width = 0; | |
3204 | |
3205 /* Find the length of the longest feature name, use that + 1 as the column | |
3206 * width */ | |
3207 for (i = 0; features[i] != NULL; ++i) | |
3208 { | |
4160 | 3209 int l = (int)STRLEN(features[i]); |
4147 | 3210 |
3211 if (l > width) | |
3212 width = l; | |
3213 ++nfeat; | |
3214 } | |
3215 width += 1; | |
3216 | |
3217 if (Columns < width) | |
3218 { | |
3219 /* Not enough screen columns - show one per line */ | |
3220 for (i = 0; features[i] != NULL; ++i) | |
3221 { | |
3222 version_msg(features[i]); | |
3223 if (msg_col > 0) | |
3224 msg_putchar('\n'); | |
3225 } | |
3226 return; | |
3227 } | |
3228 | |
3229 /* The rightmost column doesn't need a separator. | |
3230 * Sacrifice it to fit in one more column if possible. */ | |
4170 | 3231 ncol = (int) (Columns + 1) / width; |
4147 | 3232 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0); |
3233 | |
4170 | 3234 /* i counts columns then rows. idx counts rows then columns. */ |
4147 | 3235 for (i = 0; !got_int && i < nrow * ncol; ++i) |
3236 { | |
3237 int idx = (i / ncol) + (i % ncol) * nrow; | |
3238 | |
3239 if (idx < nfeat) | |
3240 { | |
3241 int last_col = (i + 1) % ncol == 0; | |
3242 | |
3243 msg_puts((char_u *)features[idx]); | |
3244 if (last_col) | |
3245 { | |
3246 if (msg_col > 0) | |
3247 msg_putchar('\n'); | |
3248 } | |
3249 else | |
3250 { | |
3251 while (msg_col % width) | |
3252 msg_putchar(' '); | |
3253 } | |
3254 } | |
3255 else | |
4170 | 3256 { |
3257 if (msg_col > 0) | |
3258 msg_putchar('\n'); | |
3259 } | |
4147 | 3260 } |
3261 } | |
4160 | 3262 |
7 | 3263 void |
3264 list_version() | |
3265 { | |
3266 int i; | |
3267 int first; | |
3268 char *s = ""; | |
3269 | |
3270 /* | |
3271 * When adding features here, don't forget to update the list of | |
3272 * internal variables in eval.c! | |
3273 */ | |
3274 MSG(longVersion); | |
3275 #ifdef WIN3264 | |
3276 # ifdef FEAT_GUI_W32 | |
3277 # if defined(_MSC_VER) && (_MSC_VER <= 1010) | |
3278 /* Only MS VC 4.1 and earlier can do Win32s */ | |
1607 | 3279 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version")); |
7 | 3280 # else |
990 | 3281 # ifdef _WIN64 |
1607 | 3282 MSG_PUTS(_("\nMS-Windows 64-bit GUI version")); |
990 | 3283 # else |
1607 | 3284 MSG_PUTS(_("\nMS-Windows 32-bit GUI version")); |
990 | 3285 # endif |
7 | 3286 # endif |
3287 if (gui_is_win32s()) | |
3288 MSG_PUTS(_(" in Win32s mode")); | |
3289 # ifdef FEAT_OLE | |
3290 MSG_PUTS(_(" with OLE support")); | |
3291 # endif | |
3292 # else | |
1607 | 3293 # ifdef _WIN64 |
3294 MSG_PUTS(_("\nMS-Windows 64-bit console version")); | |
3295 # else | |
3296 MSG_PUTS(_("\nMS-Windows 32-bit console version")); | |
3297 # endif | |
7 | 3298 # endif |
3299 #endif | |
3300 #ifdef WIN16 | |
1607 | 3301 MSG_PUTS(_("\nMS-Windows 16-bit version")); |
7 | 3302 #endif |
3303 #ifdef MSDOS | |
3304 # ifdef DJGPP | |
1607 | 3305 MSG_PUTS(_("\n32-bit MS-DOS version")); |
7 | 3306 # else |
1607 | 3307 MSG_PUTS(_("\n16-bit MS-DOS version")); |
7 | 3308 # endif |
3309 #endif | |
3310 #ifdef MACOS | |
3311 # ifdef MACOS_X | |
3312 # ifdef MACOS_X_UNIX | |
3313 MSG_PUTS(_("\nMacOS X (unix) version")); | |
3314 # else | |
3315 MSG_PUTS(_("\nMacOS X version")); | |
3316 # endif | |
3317 #else | |
3318 MSG_PUTS(_("\nMacOS version")); | |
3319 # endif | |
3320 #endif | |
3321 | |
3322 #ifdef VMS | |
1705 | 3323 MSG_PUTS(_("\nOpenVMS version")); |
1045 | 3324 # ifdef HAVE_PATHDEF |
3325 if (*compiled_arch != NUL) | |
3326 { | |
3327 MSG_PUTS(" - "); | |
3328 MSG_PUTS(compiled_arch); | |
3329 } | |
3330 # endif | |
3331 | |
7 | 3332 #endif |
3333 | |
3334 /* Print the list of patch numbers if there is at least one. */ | |
3335 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */ | |
3336 if (included_patches[0] != 0) | |
3337 { | |
3338 MSG_PUTS(_("\nIncluded patches: ")); | |
3339 first = -1; | |
3340 /* find last one */ | |
3341 for (i = 0; included_patches[i] != 0; ++i) | |
3342 ; | |
3343 while (--i >= 0) | |
3344 { | |
3345 if (first < 0) | |
3346 first = included_patches[i]; | |
3347 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1) | |
3348 { | |
3349 MSG_PUTS(s); | |
3350 s = ", "; | |
3351 msg_outnum((long)first); | |
3352 if (first != included_patches[i]) | |
3353 { | |
3354 MSG_PUTS("-"); | |
3355 msg_outnum((long)included_patches[i]); | |
3356 } | |
3357 first = -1; | |
3358 } | |
3359 } | |
3360 } | |
3361 | |
1760 | 3362 /* Print the list of extra patch descriptions if there is at least one. */ |
3363 if (extra_patches[0] != NULL) | |
3364 { | |
3365 MSG_PUTS(_("\nExtra patches: ")); | |
3366 s = ""; | |
3367 for (i = 0; extra_patches[i] != NULL; ++i) | |
3368 { | |
3369 MSG_PUTS(s); | |
3370 s = ", "; | |
3371 MSG_PUTS(extra_patches[i]); | |
3372 } | |
3373 } | |
3374 | |
7 | 3375 #ifdef MODIFIED_BY |
3376 MSG_PUTS("\n"); | |
3377 MSG_PUTS(_("Modified by ")); | |
3378 MSG_PUTS(MODIFIED_BY); | |
3379 #endif | |
3380 | |
3381 #ifdef HAVE_PATHDEF | |
3382 if (*compiled_user != NUL || *compiled_sys != NUL) | |
3383 { | |
3384 MSG_PUTS(_("\nCompiled ")); | |
3385 if (*compiled_user != NUL) | |
3386 { | |
3387 MSG_PUTS(_("by ")); | |
3388 MSG_PUTS(compiled_user); | |
3389 } | |
3390 if (*compiled_sys != NUL) | |
3391 { | |
3392 MSG_PUTS("@"); | |
3393 MSG_PUTS(compiled_sys); | |
3394 } | |
3395 } | |
3396 #endif | |
3397 | |
3398 #ifdef FEAT_HUGE | |
3399 MSG_PUTS(_("\nHuge version ")); | |
3400 #else | |
3401 # ifdef FEAT_BIG | |
3402 MSG_PUTS(_("\nBig version ")); | |
3403 # else | |
3404 # ifdef FEAT_NORMAL | |
3405 MSG_PUTS(_("\nNormal version ")); | |
3406 # else | |
3407 # ifdef FEAT_SMALL | |
3408 MSG_PUTS(_("\nSmall version ")); | |
3409 # else | |
3410 MSG_PUTS(_("\nTiny version ")); | |
3411 # endif | |
3412 # endif | |
3413 # endif | |
3414 #endif | |
3415 #ifndef FEAT_GUI | |
3416 MSG_PUTS(_("without GUI.")); | |
3417 #else | |
3418 # ifdef FEAT_GUI_GTK | |
3419 # ifdef FEAT_GUI_GNOME | |
3420 MSG_PUTS(_("with GTK2-GNOME GUI.")); | |
3421 # else | |
3422 MSG_PUTS(_("with GTK2 GUI.")); | |
3423 # endif | |
3424 # else | |
3425 # ifdef FEAT_GUI_MOTIF | |
3426 MSG_PUTS(_("with X11-Motif GUI.")); | |
3427 # else | |
3428 # ifdef FEAT_GUI_ATHENA | |
3429 # ifdef FEAT_GUI_NEXTAW | |
3430 MSG_PUTS(_("with X11-neXtaw GUI.")); | |
3431 # else | |
3432 MSG_PUTS(_("with X11-Athena GUI.")); | |
3433 # endif | |
3434 # else | |
3435 # ifdef FEAT_GUI_PHOTON | |
3436 MSG_PUTS(_("with Photon GUI.")); | |
3437 # else | |
3438 # if defined(MSWIN) | |
3439 MSG_PUTS(_("with GUI.")); | |
3440 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
3441 # if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON |
7 | 3442 MSG_PUTS(_("with Carbon GUI.")); |
3443 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
3444 # if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX |
7 | 3445 MSG_PUTS(_("with Cocoa GUI.")); |
3446 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
3447 # if defined(MACOS) |
7 | 3448 MSG_PUTS(_("with (classic) GUI.")); |
3449 # endif | |
3450 # endif | |
3451 # endif | |
3452 # endif | |
3453 # endif | |
3454 # endif | |
3455 # endif | |
3456 # endif | |
3457 #endif | |
3458 version_msg(_(" Features included (+) or not (-):\n")); | |
3459 | |
4147 | 3460 list_features(); |
7 | 3461 |
3462 #ifdef SYS_VIMRC_FILE | |
3463 version_msg(_(" system vimrc file: \"")); | |
3464 version_msg(SYS_VIMRC_FILE); | |
3465 version_msg("\"\n"); | |
3466 #endif | |
3467 #ifdef USR_VIMRC_FILE | |
3468 version_msg(_(" user vimrc file: \"")); | |
3469 version_msg(USR_VIMRC_FILE); | |
3470 version_msg("\"\n"); | |
3471 #endif | |
3472 #ifdef USR_VIMRC_FILE2 | |
3473 version_msg(_(" 2nd user vimrc file: \"")); | |
3474 version_msg(USR_VIMRC_FILE2); | |
3475 version_msg("\"\n"); | |
3476 #endif | |
3477 #ifdef USR_VIMRC_FILE3 | |
3478 version_msg(_(" 3rd user vimrc file: \"")); | |
3479 version_msg(USR_VIMRC_FILE3); | |
3480 version_msg("\"\n"); | |
3481 #endif | |
3482 #ifdef USR_EXRC_FILE | |
3483 version_msg(_(" user exrc file: \"")); | |
3484 version_msg(USR_EXRC_FILE); | |
3485 version_msg("\"\n"); | |
3486 #endif | |
3487 #ifdef USR_EXRC_FILE2 | |
3488 version_msg(_(" 2nd user exrc file: \"")); | |
3489 version_msg(USR_EXRC_FILE2); | |
3490 version_msg("\"\n"); | |
3491 #endif | |
3492 #ifdef FEAT_GUI | |
3493 # ifdef SYS_GVIMRC_FILE | |
3494 version_msg(_(" system gvimrc file: \"")); | |
3495 version_msg(SYS_GVIMRC_FILE); | |
3496 version_msg("\"\n"); | |
3497 # endif | |
3498 version_msg(_(" user gvimrc file: \"")); | |
3499 version_msg(USR_GVIMRC_FILE); | |
3500 version_msg("\"\n"); | |
3501 # ifdef USR_GVIMRC_FILE2 | |
3502 version_msg(_("2nd user gvimrc file: \"")); | |
3503 version_msg(USR_GVIMRC_FILE2); | |
3504 version_msg("\"\n"); | |
3505 # endif | |
3506 # ifdef USR_GVIMRC_FILE3 | |
3507 version_msg(_("3rd user gvimrc file: \"")); | |
3508 version_msg(USR_GVIMRC_FILE3); | |
3509 version_msg("\"\n"); | |
3510 # endif | |
3511 #endif | |
3512 #ifdef FEAT_GUI | |
3513 # ifdef SYS_MENU_FILE | |
3514 version_msg(_(" system menu file: \"")); | |
3515 version_msg(SYS_MENU_FILE); | |
3516 version_msg("\"\n"); | |
3517 # endif | |
3518 #endif | |
3519 #ifdef HAVE_PATHDEF | |
3520 if (*default_vim_dir != NUL) | |
3521 { | |
3522 version_msg(_(" fall-back for $VIM: \"")); | |
3523 version_msg((char *)default_vim_dir); | |
3524 version_msg("\"\n"); | |
3525 } | |
3526 if (*default_vimruntime_dir != NUL) | |
3527 { | |
3528 version_msg(_(" f-b for $VIMRUNTIME: \"")); | |
3529 version_msg((char *)default_vimruntime_dir); | |
3530 version_msg("\"\n"); | |
3531 } | |
3532 version_msg(_("Compilation: ")); | |
3533 version_msg((char *)all_cflags); | |
3534 version_msg("\n"); | |
3535 #ifdef VMS | |
3536 if (*compiler_version != NUL) | |
3537 { | |
3538 version_msg(_("Compiler: ")); | |
3539 version_msg((char *)compiler_version); | |
3540 version_msg("\n"); | |
3541 } | |
3542 #endif | |
3543 version_msg(_("Linking: ")); | |
3544 version_msg((char *)all_lflags); | |
3545 #endif | |
3546 #ifdef DEBUG | |
3547 version_msg("\n"); | |
3548 version_msg(_(" DEBUG BUILD")); | |
3549 #endif | |
3550 } | |
3551 | |
3552 /* | |
3553 * Output a string for the version message. If it's going to wrap, output a | |
3554 * newline, unless the message is too long to fit on the screen anyway. | |
3555 */ | |
3556 static void | |
3557 version_msg(s) | |
3558 char *s; | |
3559 { | |
3560 int len = (int)STRLEN(s); | |
3561 | |
3562 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns | |
3563 && *s != '\n') | |
3564 msg_putchar('\n'); | |
3565 if (!got_int) | |
3566 MSG_PUTS(s); | |
3567 } | |
3568 | |
3569 static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr)); | |
3570 | |
3571 /* | |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3572 * 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
|
3573 */ |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3574 void |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3575 maybe_intro_message() |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3576 { |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3577 if (bufempty() |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3578 && curbuf->b_fname == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3579 #ifdef FEAT_WINDOWS |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3580 && firstwin->w_next == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3581 #endif |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3582 && vim_strchr(p_shm, SHM_INTRO) == NULL) |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3583 intro_message(FALSE); |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3584 } |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3585 |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
3586 /* |
7 | 3587 * Give an introductory message about Vim. |
3588 * Only used when starting Vim on an empty file, without a file name. | |
3589 * Or with the ":intro" command (for Sven :-). | |
3590 */ | |
3591 void | |
3592 intro_message(colon) | |
3593 int colon; /* TRUE for ":intro" */ | |
3594 { | |
3595 int i; | |
3596 int row; | |
3597 int blanklines; | |
3598 int sponsor; | |
3599 char *p; | |
3600 static char *(lines[]) = | |
3601 { | |
3602 N_("VIM - Vi IMproved"), | |
3603 "", | |
3604 N_("version "), | |
3605 N_("by Bram Moolenaar et al."), | |
3606 #ifdef MODIFIED_BY | |
3607 " ", | |
3608 #endif | |
3609 N_("Vim is open source and freely distributable"), | |
3610 "", | |
3611 N_("Help poor children in Uganda!"), | |
3612 N_("type :help iccf<Enter> for information "), | |
3613 "", | |
3614 N_("type :q<Enter> to exit "), | |
3615 N_("type :help<Enter> or <F1> for on-line help"), | |
26 | 3616 N_("type :help version7<Enter> for version info"), |
7 | 3617 NULL, |
3618 "", | |
3619 N_("Running in Vi compatible mode"), | |
3620 N_("type :set nocp<Enter> for Vim defaults"), | |
3621 N_("type :help cp-default<Enter> for info on this"), | |
3622 }; | |
3623 #ifdef FEAT_GUI | |
3624 static char *(gui_lines[]) = | |
3625 { | |
3626 NULL, | |
3627 NULL, | |
3628 NULL, | |
3629 NULL, | |
3630 #ifdef MODIFIED_BY | |
3631 NULL, | |
3632 #endif | |
3633 NULL, | |
3634 NULL, | |
3635 NULL, | |
3636 N_("menu Help->Orphans for information "), | |
3637 NULL, | |
3638 N_("Running modeless, typed text is inserted"), | |
3639 N_("menu Edit->Global Settings->Toggle Insert Mode "), | |
3640 N_(" for two modes "), | |
3641 NULL, | |
3642 NULL, | |
3643 NULL, | |
3644 N_("menu Edit->Global Settings->Toggle Vi Compatible"), | |
3645 N_(" for Vim defaults "), | |
3646 }; | |
3647 #endif | |
3648 | |
3649 /* blanklines = screen height - # message lines */ | |
3650 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1); | |
3651 if (!p_cp) | |
3652 blanklines += 4; /* add 4 for not showing "Vi compatible" message */ | |
3653 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
3654 if (mch_windows95()) | |
3655 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */ | |
3656 #endif | |
3657 | |
3658 #ifdef FEAT_WINDOWS | |
3659 /* Don't overwrite a statusline. Depends on 'cmdheight'. */ | |
3660 if (p_ls > 1) | |
3661 blanklines -= Rows - topframe->fr_height; | |
3662 #endif | |
3663 if (blanklines < 0) | |
3664 blanklines = 0; | |
3665 | |
3666 /* Show the sponsor and register message one out of four times, the Uganda | |
3667 * message two out of four times. */ | |
615 | 3668 sponsor = (int)time(NULL); |
7 | 3669 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); |
3670 | |
3671 /* start displaying the message lines after half of the blank lines */ | |
3672 row = blanklines / 2; | |
3673 if ((row >= 2 && Columns >= 50) || colon) | |
3674 { | |
3675 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i) | |
3676 { | |
3677 p = lines[i]; | |
3678 #ifdef FEAT_GUI | |
3679 if (p_im && gui.in_use && gui_lines[i] != NULL) | |
3680 p = gui_lines[i]; | |
3681 #endif | |
3682 if (p == NULL) | |
3683 { | |
3684 if (!p_cp) | |
3685 break; | |
3686 continue; | |
3687 } | |
3688 if (sponsor != 0) | |
3689 { | |
3690 if (strstr(p, "children") != NULL) | |
3691 p = sponsor < 0 | |
3692 ? N_("Sponsor Vim development!") | |
3693 : N_("Become a registered Vim user!"); | |
3694 else if (strstr(p, "iccf") != NULL) | |
3695 p = sponsor < 0 | |
3696 ? N_("type :help sponsor<Enter> for information ") | |
3697 : N_("type :help register<Enter> for information "); | |
3698 else if (strstr(p, "Orphans") != NULL) | |
3699 p = N_("menu Help->Sponsor/Register for information "); | |
3700 } | |
3701 if (*p != NUL) | |
3702 do_intro_line(row, (char_u *)_(p), i == 2, 0); | |
3703 ++row; | |
3704 } | |
3705 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
3706 if (mch_windows95()) | |
3707 { | |
3708 do_intro_line(++row, | |
3709 (char_u *)_("WARNING: Windows 95/98/ME detected"), | |
3710 FALSE, hl_attr(HLF_E)); | |
3711 do_intro_line(++row, | |
3712 (char_u *)_("type :help windows95<Enter> for info on this"), | |
3713 FALSE, 0); | |
3714 } | |
3715 #endif | |
3716 } | |
3717 | |
3718 /* Make the wait-return message appear just below the text. */ | |
3719 if (colon) | |
3720 msg_row = row; | |
3721 } | |
3722 | |
3723 static void | |
3724 do_intro_line(row, mesg, add_version, attr) | |
3725 int row; | |
3726 char_u *mesg; | |
3727 int add_version; | |
3728 int attr; | |
3729 { | |
3730 char_u vers[20]; | |
3731 int col; | |
3732 char_u *p; | |
3733 int l; | |
3734 int clen; | |
3735 #ifdef MODIFIED_BY | |
3736 # define MODBY_LEN 150 | |
3737 char_u modby[MODBY_LEN]; | |
3738 | |
3739 if (*mesg == ' ') | |
3740 { | |
1491 | 3741 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1); |
7 | 3742 l = STRLEN(modby); |
1491 | 3743 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1); |
7 | 3744 mesg = modby; |
3745 } | |
3746 #endif | |
3747 | |
3748 /* Center the message horizontally. */ | |
3749 col = vim_strsize(mesg); | |
3750 if (add_version) | |
3751 { | |
3752 STRCPY(vers, mediumVersion); | |
3753 if (highest_patch()) | |
3754 { | |
3755 /* Check for 9.9x or 9.9xx, alpha/beta version */ | |
2619 | 3756 if (isalpha((int)vers[3])) |
7 | 3757 { |
3396 | 3758 int len = (isalpha((int)vers[4])) ? 5 : 4; |
3759 sprintf((char *)vers + len, ".%d%s", highest_patch(), | |
3760 mediumVersion + len); | |
7 | 3761 } |
3762 else | |
3763 sprintf((char *)vers + 3, ".%d", highest_patch()); | |
3764 } | |
3765 col += (int)STRLEN(vers); | |
3766 } | |
3767 col = (Columns - col) / 2; | |
3768 if (col < 0) | |
3769 col = 0; | |
3770 | |
3771 /* Split up in parts to highlight <> items differently. */ | |
3772 for (p = mesg; *p != NUL; p += l) | |
3773 { | |
3774 clen = 0; | |
3775 for (l = 0; p[l] != NUL | |
3776 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l) | |
3777 { | |
3778 #ifdef FEAT_MBYTE | |
3779 if (has_mbyte) | |
3780 { | |
3781 clen += ptr2cells(p + l); | |
474 | 3782 l += (*mb_ptr2len)(p + l) - 1; |
7 | 3783 } |
3784 else | |
3785 #endif | |
3786 clen += byte2cells(p[l]); | |
3787 } | |
3788 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr); | |
3789 col += clen; | |
3790 } | |
3791 | |
3792 /* Add the version number to the version line. */ | |
3793 if (add_version) | |
3794 screen_puts(vers, row, col, 0); | |
3795 } | |
3796 | |
3797 /* | |
3798 * ":intro": clear screen, display intro screen and wait for return. | |
3799 */ | |
3800 void | |
3801 ex_intro(eap) | |
1876 | 3802 exarg_T *eap UNUSED; |
7 | 3803 { |
3804 screenclear(); | |
3805 intro_message(TRUE); | |
3806 wait_return(TRUE); | |
3807 } |