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