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