Mercurial > vim
annotate src/version.c @ 2142:c60d231453cf v7.2.424
updated for version 7.2.424
Problem: ":colorscheme" without an argument doesn't do anything.
Solution: Make it echo the current color scheme name. (partly by Christian
Brabandt)
author | Bram Moolenaar <bram@zimbu.org> |
---|---|
date | Fri, 14 May 2010 15:28:44 +0200 |
parents | e10d3c073449 |
children | 79d111ea8ef6 |
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]; | |
37 void | |
38 make_version() | |
39 { | |
40 /* | |
41 * Construct the long version string. Necessary because | |
42 * VAX C can't catenate strings in the preprocessor. | |
43 */ | |
44 strcpy(longVersion, VIM_VERSION_LONG_DATE); | |
45 strcat(longVersion, __DATE__); | |
46 strcat(longVersion, " "); | |
47 strcat(longVersion, __TIME__); | |
48 strcat(longVersion, ")"); | |
49 } | |
50 # else | |
51 char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")"; | |
52 # endif | |
53 #else | |
54 char *longVersion = VIM_VERSION_LONG; | |
55 #endif | |
56 | |
57 static void version_msg __ARGS((char *s)); | |
58 | |
59 static char *(features[]) = | |
60 { | |
61 #ifdef AMIGA /* only for Amiga systems */ | |
62 # ifdef FEAT_ARP | |
63 "+ARP", | |
64 # else | |
65 "-ARP", | |
66 # endif | |
67 #endif | |
68 #ifdef FEAT_ARABIC | |
69 "+arabic", | |
70 #else | |
71 "-arabic", | |
72 #endif | |
73 #ifdef FEAT_AUTOCMD | |
74 "+autocmd", | |
75 #else | |
76 "-autocmd", | |
77 #endif | |
78 #ifdef FEAT_BEVAL | |
79 "+balloon_eval", | |
80 #else | |
81 "-balloon_eval", | |
82 #endif | |
83 #ifdef FEAT_BROWSE | |
84 "+browse", | |
85 #else | |
86 "-browse", | |
87 #endif | |
88 #ifdef NO_BUILTIN_TCAPS | |
89 "-builtin_terms", | |
90 #endif | |
91 #ifdef SOME_BUILTIN_TCAPS | |
92 "+builtin_terms", | |
93 #endif | |
94 #ifdef ALL_BUILTIN_TCAPS | |
95 "++builtin_terms", | |
96 #endif | |
97 #ifdef FEAT_BYTEOFF | |
98 "+byte_offset", | |
99 #else | |
100 "-byte_offset", | |
101 #endif | |
102 #ifdef FEAT_CINDENT | |
103 "+cindent", | |
104 #else | |
105 "-cindent", | |
106 #endif | |
107 #ifdef FEAT_CLIENTSERVER | |
108 "+clientserver", | |
109 #else | |
110 "-clientserver", | |
111 #endif | |
112 #ifdef FEAT_CLIPBOARD | |
113 "+clipboard", | |
114 #else | |
115 "-clipboard", | |
116 #endif | |
117 #ifdef FEAT_CMDL_COMPL | |
118 "+cmdline_compl", | |
119 #else | |
120 "-cmdline_compl", | |
121 #endif | |
122 #ifdef FEAT_CMDHIST | |
123 "+cmdline_hist", | |
124 #else | |
125 "-cmdline_hist", | |
126 #endif | |
127 #ifdef FEAT_CMDL_INFO | |
128 "+cmdline_info", | |
129 #else | |
130 "-cmdline_info", | |
131 #endif | |
132 #ifdef FEAT_COMMENTS | |
133 "+comments", | |
134 #else | |
135 "-comments", | |
136 #endif | |
137 #ifdef FEAT_CRYPT | |
138 "+cryptv", | |
139 #else | |
140 "-cryptv", | |
141 #endif | |
142 #ifdef FEAT_CSCOPE | |
143 "+cscope", | |
144 #else | |
145 "-cscope", | |
146 #endif | |
647 | 147 #ifdef CURSOR_SHAPE |
148 "+cursorshape", | |
149 #else | |
150 "-cursorshape", | |
151 #endif | |
7 | 152 #if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG) |
153 "+dialog_con_gui", | |
154 #else | |
155 # if defined(FEAT_CON_DIALOG) | |
156 "+dialog_con", | |
157 # else | |
158 # if defined(FEAT_GUI_DIALOG) | |
159 "+dialog_gui", | |
160 # else | |
161 "-dialog", | |
162 # endif | |
163 # endif | |
164 #endif | |
165 #ifdef FEAT_DIFF | |
166 "+diff", | |
167 #else | |
168 "-diff", | |
169 #endif | |
170 #ifdef FEAT_DIGRAPHS | |
171 "+digraphs", | |
172 #else | |
173 "-digraphs", | |
174 #endif | |
175 #ifdef FEAT_DND | |
176 "+dnd", | |
177 #else | |
178 "-dnd", | |
179 #endif | |
180 #ifdef EBCDIC | |
181 "+ebcdic", | |
182 #else | |
183 "-ebcdic", | |
184 #endif | |
185 #ifdef FEAT_EMACS_TAGS | |
186 "+emacs_tags", | |
187 #else | |
188 "-emacs_tags", | |
189 #endif | |
190 #ifdef FEAT_EVAL | |
191 "+eval", | |
192 #else | |
193 "-eval", | |
194 #endif | |
195 #ifdef FEAT_EX_EXTRA | |
196 "+ex_extra", | |
197 #else | |
198 "-ex_extra", | |
199 #endif | |
200 #ifdef FEAT_SEARCH_EXTRA | |
201 "+extra_search", | |
202 #else | |
203 "-extra_search", | |
204 #endif | |
205 #ifdef FEAT_FKMAP | |
206 "+farsi", | |
207 #else | |
208 "-farsi", | |
209 #endif | |
210 #ifdef FEAT_SEARCHPATH | |
211 "+file_in_path", | |
212 #else | |
213 "-file_in_path", | |
214 #endif | |
215 #ifdef FEAT_FIND_ID | |
216 "+find_in_path", | |
217 #else | |
218 "-find_in_path", | |
219 #endif | |
1621 | 220 #ifdef FEAT_FLOAT |
221 "+float", | |
222 #else | |
223 "-float", | |
224 #endif | |
7 | 225 #ifdef FEAT_FOLDING |
226 "+folding", | |
227 #else | |
228 "-folding", | |
229 #endif | |
230 #ifdef FEAT_FOOTER | |
231 "+footer", | |
232 #else | |
233 "-footer", | |
234 #endif | |
235 /* only interesting on Unix systems */ | |
236 #if !defined(USE_SYSTEM) && defined(UNIX) | |
237 "+fork()", | |
238 #endif | |
239 #ifdef FEAT_GETTEXT | |
240 # ifdef DYNAMIC_GETTEXT | |
241 "+gettext/dyn", | |
242 # else | |
243 "+gettext", | |
244 # endif | |
245 #else | |
246 "-gettext", | |
247 #endif | |
248 #ifdef FEAT_HANGULIN | |
249 "+hangul_input", | |
250 #else | |
251 "-hangul_input", | |
252 #endif | |
253 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV) | |
254 # ifdef DYNAMIC_ICONV | |
255 "+iconv/dyn", | |
256 # else | |
257 "+iconv", | |
258 # endif | |
259 #else | |
260 "-iconv", | |
261 #endif | |
262 #ifdef FEAT_INS_EXPAND | |
263 "+insert_expand", | |
264 #else | |
265 "-insert_expand", | |
266 #endif | |
267 #ifdef FEAT_JUMPLIST | |
268 "+jumplist", | |
269 #else | |
270 "-jumplist", | |
271 #endif | |
272 #ifdef FEAT_KEYMAP | |
273 "+keymap", | |
274 #else | |
275 "-keymap", | |
276 #endif | |
277 #ifdef FEAT_LANGMAP | |
278 "+langmap", | |
279 #else | |
280 "-langmap", | |
281 #endif | |
282 #ifdef FEAT_LIBCALL | |
283 "+libcall", | |
284 #else | |
285 "-libcall", | |
286 #endif | |
287 #ifdef FEAT_LINEBREAK | |
288 "+linebreak", | |
289 #else | |
290 "-linebreak", | |
291 #endif | |
292 #ifdef FEAT_LISP | |
293 "+lispindent", | |
294 #else | |
295 "-lispindent", | |
296 #endif | |
297 #ifdef FEAT_LISTCMDS | |
298 "+listcmds", | |
299 #else | |
300 "-listcmds", | |
301 #endif | |
302 #ifdef FEAT_LOCALMAP | |
303 "+localmap", | |
304 #else | |
305 "-localmap", | |
306 #endif | |
307 #ifdef FEAT_MENU | |
308 "+menu", | |
309 #else | |
310 "-menu", | |
311 #endif | |
312 #ifdef FEAT_SESSION | |
313 "+mksession", | |
314 #else | |
315 "-mksession", | |
316 #endif | |
317 #ifdef FEAT_MODIFY_FNAME | |
318 "+modify_fname", | |
319 #else | |
320 "-modify_fname", | |
321 #endif | |
322 #ifdef FEAT_MOUSE | |
323 "+mouse", | |
324 # ifdef FEAT_MOUSESHAPE | |
325 "+mouseshape", | |
326 # else | |
327 "-mouseshape", | |
328 # endif | |
329 # else | |
330 "-mouse", | |
331 #endif | |
332 #if defined(UNIX) || defined(VMS) | |
333 # ifdef FEAT_MOUSE_DEC | |
334 "+mouse_dec", | |
335 # else | |
336 "-mouse_dec", | |
337 # endif | |
338 # ifdef FEAT_MOUSE_GPM | |
339 "+mouse_gpm", | |
340 # else | |
341 "-mouse_gpm", | |
342 # endif | |
343 # ifdef FEAT_MOUSE_JSB | |
344 "+mouse_jsbterm", | |
345 # else | |
346 "-mouse_jsbterm", | |
347 # endif | |
348 # ifdef FEAT_MOUSE_NET | |
349 "+mouse_netterm", | |
350 # else | |
351 "-mouse_netterm", | |
352 # endif | |
1621 | 353 # ifdef FEAT_SYSMOUSE |
354 "+mouse_sysmouse", | |
355 # else | |
356 "-mouse_sysmouse", | |
357 # endif | |
7 | 358 # ifdef FEAT_MOUSE_XTERM |
359 "+mouse_xterm", | |
360 # else | |
361 "-mouse_xterm", | |
362 # endif | |
363 #endif | |
364 #ifdef __QNX__ | |
365 # ifdef FEAT_MOUSE_PTERM | |
366 "+mouse_pterm", | |
367 # else | |
368 "-mouse_pterm", | |
369 # endif | |
370 #endif | |
371 #ifdef FEAT_MBYTE_IME | |
372 # ifdef DYNAMIC_IME | |
373 "+multi_byte_ime/dyn", | |
374 # else | |
375 "+multi_byte_ime", | |
376 # endif | |
377 #else | |
378 # ifdef FEAT_MBYTE | |
379 "+multi_byte", | |
380 # else | |
381 "-multi_byte", | |
382 # endif | |
383 #endif | |
384 #ifdef FEAT_MULTI_LANG | |
385 "+multi_lang", | |
386 #else | |
387 "-multi_lang", | |
388 #endif | |
14 | 389 #ifdef FEAT_MZSCHEME |
132 | 390 # ifdef DYNAMIC_MZSCHEME |
391 "+mzscheme/dyn", | |
392 # else | |
14 | 393 "+mzscheme", |
132 | 394 # endif |
14 | 395 #else |
396 "-mzscheme", | |
397 #endif | |
7 | 398 #ifdef FEAT_NETBEANS_INTG |
399 "+netbeans_intg", | |
400 #else | |
401 "-netbeans_intg", | |
402 #endif | |
403 #ifdef FEAT_GUI_W32 | |
404 # ifdef FEAT_OLE | |
405 "+ole", | |
406 # else | |
407 "-ole", | |
408 # endif | |
409 #endif | |
410 #ifdef FEAT_OSFILETYPE | |
411 "+osfiletype", | |
412 #else | |
413 "-osfiletype", | |
414 #endif | |
415 #ifdef FEAT_PATH_EXTRA | |
416 "+path_extra", | |
417 #else | |
418 "-path_extra", | |
419 #endif | |
420 #ifdef FEAT_PERL | |
421 # ifdef DYNAMIC_PERL | |
422 "+perl/dyn", | |
423 # else | |
424 "+perl", | |
425 # endif | |
426 #else | |
427 "-perl", | |
428 #endif | |
429 #ifdef FEAT_PRINTER | |
430 # ifdef FEAT_POSTSCRIPT | |
431 "+postscript", | |
432 # else | |
433 "-postscript", | |
434 # endif | |
435 "+printer", | |
436 #else | |
437 "-printer", | |
438 #endif | |
170 | 439 #ifdef FEAT_PROFILE |
440 "+profile", | |
441 #else | |
442 "-profile", | |
443 #endif | |
7 | 444 #ifdef FEAT_PYTHON |
445 # ifdef DYNAMIC_PYTHON | |
446 "+python/dyn", | |
447 # else | |
448 "+python", | |
449 # endif | |
450 #else | |
451 "-python", | |
452 #endif | |
453 #ifdef FEAT_QUICKFIX | |
454 "+quickfix", | |
455 #else | |
456 "-quickfix", | |
457 #endif | |
857 | 458 #ifdef FEAT_RELTIME |
459 "+reltime", | |
460 #else | |
461 "-reltime", | |
462 #endif | |
7 | 463 #ifdef FEAT_RIGHTLEFT |
464 "+rightleft", | |
465 #else | |
466 "-rightleft", | |
467 #endif | |
468 #ifdef FEAT_RUBY | |
469 # ifdef DYNAMIC_RUBY | |
470 "+ruby/dyn", | |
471 # else | |
472 "+ruby", | |
473 # endif | |
474 #else | |
475 "-ruby", | |
476 #endif | |
477 #ifdef FEAT_SCROLLBIND | |
478 "+scrollbind", | |
479 #else | |
480 "-scrollbind", | |
481 #endif | |
482 #ifdef FEAT_SIGNS | |
483 "+signs", | |
484 #else | |
485 "-signs", | |
486 #endif | |
487 #ifdef FEAT_SMARTINDENT | |
488 "+smartindent", | |
489 #else | |
490 "-smartindent", | |
491 #endif | |
492 #ifdef FEAT_SNIFF | |
493 "+sniff", | |
494 #else | |
495 "-sniff", | |
496 #endif | |
1989 | 497 #ifdef STARTUPTIME |
498 "+startuptime", | |
499 #else | |
500 "-startuptime", | |
501 #endif | |
7 | 502 #ifdef FEAT_STL_OPT |
503 "+statusline", | |
504 #else | |
505 "-statusline", | |
506 #endif | |
507 #ifdef FEAT_SUN_WORKSHOP | |
508 "+sun_workshop", | |
509 #else | |
510 "-sun_workshop", | |
511 #endif | |
512 #ifdef FEAT_SYN_HL | |
513 "+syntax", | |
514 #else | |
515 "-syntax", | |
516 #endif | |
517 /* only interesting on Unix systems */ | |
518 #if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__)) | |
519 "+system()", | |
520 #endif | |
521 #ifdef FEAT_TAG_BINS | |
522 "+tag_binary", | |
523 #else | |
524 "-tag_binary", | |
525 #endif | |
526 #ifdef FEAT_TAG_OLDSTATIC | |
527 "+tag_old_static", | |
528 #else | |
529 "-tag_old_static", | |
530 #endif | |
531 #ifdef FEAT_TAG_ANYWHITE | |
532 "+tag_any_white", | |
533 #else | |
534 "-tag_any_white", | |
535 #endif | |
536 #ifdef FEAT_TCL | |
537 # ifdef DYNAMIC_TCL | |
538 "+tcl/dyn", | |
539 # else | |
540 "+tcl", | |
541 # endif | |
542 #else | |
543 "-tcl", | |
544 #endif | |
545 #if defined(UNIX) || defined(__EMX__) | |
546 /* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */ | |
547 # ifdef TERMINFO | |
548 "+terminfo", | |
549 # else | |
550 "-terminfo", | |
551 # endif | |
552 #else /* unix always includes termcap support */ | |
553 # ifdef HAVE_TGETENT | |
554 "+tgetent", | |
555 # else | |
556 "-tgetent", | |
557 # endif | |
558 #endif | |
559 #ifdef FEAT_TERMRESPONSE | |
560 "+termresponse", | |
561 #else | |
562 "-termresponse", | |
563 #endif | |
564 #ifdef FEAT_TEXTOBJ | |
565 "+textobjects", | |
566 #else | |
567 "-textobjects", | |
568 #endif | |
569 #ifdef FEAT_TITLE | |
570 "+title", | |
571 #else | |
572 "-title", | |
573 #endif | |
574 #ifdef FEAT_TOOLBAR | |
575 "+toolbar", | |
576 #else | |
577 "-toolbar", | |
578 #endif | |
579 #ifdef FEAT_USR_CMDS | |
580 "+user_commands", | |
581 #else | |
582 "-user_commands", | |
583 #endif | |
584 #ifdef FEAT_VERTSPLIT | |
585 "+vertsplit", | |
586 #else | |
587 "-vertsplit", | |
588 #endif | |
589 #ifdef FEAT_VIRTUALEDIT | |
590 "+virtualedit", | |
591 #else | |
592 "-virtualedit", | |
593 #endif | |
594 #ifdef FEAT_VISUAL | |
595 "+visual", | |
596 # ifdef FEAT_VISUALEXTRA | |
597 "+visualextra", | |
598 # else | |
599 "-visualextra", | |
600 # endif | |
601 #else | |
602 "-visual", | |
603 #endif | |
604 #ifdef FEAT_VIMINFO | |
605 "+viminfo", | |
606 #else | |
607 "-viminfo", | |
608 #endif | |
609 #ifdef FEAT_VREPLACE | |
610 "+vreplace", | |
611 #else | |
612 "-vreplace", | |
613 #endif | |
614 #ifdef FEAT_WILDIGN | |
615 "+wildignore", | |
616 #else | |
617 "-wildignore", | |
618 #endif | |
619 #ifdef FEAT_WILDMENU | |
620 "+wildmenu", | |
621 #else | |
622 "-wildmenu", | |
623 #endif | |
624 #ifdef FEAT_WINDOWS | |
625 "+windows", | |
626 #else | |
627 "-windows", | |
628 #endif | |
629 #ifdef FEAT_WRITEBACKUP | |
630 "+writebackup", | |
631 #else | |
632 "-writebackup", | |
633 #endif | |
634 #if defined(UNIX) || defined(VMS) | |
635 # ifdef FEAT_X11 | |
636 "+X11", | |
637 # else | |
638 "-X11", | |
639 # endif | |
640 #endif | |
641 #ifdef FEAT_XFONTSET | |
642 "+xfontset", | |
643 #else | |
644 "-xfontset", | |
645 #endif | |
646 #ifdef FEAT_XIM | |
647 "+xim", | |
648 #else | |
649 "-xim", | |
650 #endif | |
651 #if defined(UNIX) || defined(VMS) | |
652 # ifdef USE_XSMP_INTERACT | |
653 "+xsmp_interact", | |
654 # else | |
655 # ifdef USE_XSMP | |
656 "+xsmp", | |
657 # else | |
658 "-xsmp", | |
659 # endif | |
660 # endif | |
661 # ifdef FEAT_XCLIPBOARD | |
662 "+xterm_clipboard", | |
663 # else | |
664 "-xterm_clipboard", | |
665 # endif | |
666 #endif | |
667 #ifdef FEAT_XTERM_SAVE | |
668 "+xterm_save", | |
669 #else | |
670 "-xterm_save", | |
671 #endif | |
672 #ifdef WIN3264 | |
673 # ifdef FEAT_XPM_W32 | |
674 "+xpm_w32", | |
675 # else | |
676 "-xpm_w32", | |
677 # endif | |
678 #endif | |
679 NULL | |
680 }; | |
681 | |
682 static int included_patches[] = | |
683 { /* Add new patch number below this line */ | |
684 /**/ | |
2142
c60d231453cf
updated for version 7.2.424
Bram Moolenaar <bram@zimbu.org>
parents:
2141
diff
changeset
|
685 424, |
c60d231453cf
updated for version 7.2.424
Bram Moolenaar <bram@zimbu.org>
parents:
2141
diff
changeset
|
686 /**/ |
2141
e10d3c073449
updated for version 7.2.423
Bram Moolenaar <bram@zimbu.org>
parents:
2140
diff
changeset
|
687 423, |
e10d3c073449
updated for version 7.2.423
Bram Moolenaar <bram@zimbu.org>
parents:
2140
diff
changeset
|
688 /**/ |
2140
12aba62fa7c6
updated for version 7.2.422
Bram Moolenaar <bram@zimbu.org>
parents:
2139
diff
changeset
|
689 422, |
12aba62fa7c6
updated for version 7.2.422
Bram Moolenaar <bram@zimbu.org>
parents:
2139
diff
changeset
|
690 /**/ |
2139
35effbd07a25
updated for version 7.2.421
Bram Moolenaar <bram@zimbu.org>
parents:
2138
diff
changeset
|
691 421, |
35effbd07a25
updated for version 7.2.421
Bram Moolenaar <bram@zimbu.org>
parents:
2138
diff
changeset
|
692 /**/ |
2138
78b9d5dce950
updated for version 7.2.420
Bram Moolenaar <bram@zimbu.org>
parents:
2137
diff
changeset
|
693 420, |
78b9d5dce950
updated for version 7.2.420
Bram Moolenaar <bram@zimbu.org>
parents:
2137
diff
changeset
|
694 /**/ |
2137
dabcabce3f9d
updated for version 7.2.419
Bram Moolenaar <bram@zimbu.org>
parents:
2136
diff
changeset
|
695 419, |
dabcabce3f9d
updated for version 7.2.419
Bram Moolenaar <bram@zimbu.org>
parents:
2136
diff
changeset
|
696 /**/ |
2136
431ebc9412a8
updated for version 7.2.418
Bram Moolenaar <bram@zimbu.org>
parents:
2135
diff
changeset
|
697 418, |
431ebc9412a8
updated for version 7.2.418
Bram Moolenaar <bram@zimbu.org>
parents:
2135
diff
changeset
|
698 /**/ |
2135
7aee5e68548a
updated for version 7.2.417
Bram Moolenaar <bram@zimbu.org>
parents:
2134
diff
changeset
|
699 417, |
7aee5e68548a
updated for version 7.2.417
Bram Moolenaar <bram@zimbu.org>
parents:
2134
diff
changeset
|
700 /**/ |
2134
e9c9f37be306
updated for version 7.2.416
Bram Moolenaar <bram@zimbu.org>
parents:
2133
diff
changeset
|
701 416, |
e9c9f37be306
updated for version 7.2.416
Bram Moolenaar <bram@zimbu.org>
parents:
2133
diff
changeset
|
702 /**/ |
2133
2b273c71a14b
updated for version 7.2.415
Bram Moolenaar <bram@zimbu.org>
parents:
2132
diff
changeset
|
703 415, |
2b273c71a14b
updated for version 7.2.415
Bram Moolenaar <bram@zimbu.org>
parents:
2132
diff
changeset
|
704 /**/ |
2132
89300f5e013c
updated for version 7.2.414
Bram Moolenaar <bram@zimbu.org>
parents:
2131
diff
changeset
|
705 414, |
89300f5e013c
updated for version 7.2.414
Bram Moolenaar <bram@zimbu.org>
parents:
2131
diff
changeset
|
706 /**/ |
2131
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2130
diff
changeset
|
707 413, |
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2130
diff
changeset
|
708 /**/ |
2130
279380a812ad
updated for version 7.2.412
Bram Moolenaar <bram@zimbu.org>
parents:
2129
diff
changeset
|
709 412, |
279380a812ad
updated for version 7.2.412
Bram Moolenaar <bram@zimbu.org>
parents:
2129
diff
changeset
|
710 /**/ |
2129
24100651daa9
updated for version 7.2.411
Bram Moolenaar <bram@zimbu.org>
parents:
2128
diff
changeset
|
711 411, |
24100651daa9
updated for version 7.2.411
Bram Moolenaar <bram@zimbu.org>
parents:
2128
diff
changeset
|
712 /**/ |
2128
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2127
diff
changeset
|
713 410, |
a16af0072ea8
updated for version 7.2.410
Bram Moolenaar <bram@zimbu.org>
parents:
2127
diff
changeset
|
714 /**/ |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
715 409, |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
716 /**/ |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
2125
diff
changeset
|
717 408, |
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
2125
diff
changeset
|
718 /**/ |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2124
diff
changeset
|
719 407, |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2124
diff
changeset
|
720 /**/ |
2124
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2123
diff
changeset
|
721 406, |
dc8a5699253b
updated for version 7.2.406
Bram Moolenaar <bram@zimbu.org>
parents:
2123
diff
changeset
|
722 /**/ |
2123
b1706a94f9f9
updated for version 7.2.405
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
723 405, |
b1706a94f9f9
updated for version 7.2.405
Bram Moolenaar <bram@zimbu.org>
parents:
2122
diff
changeset
|
724 /**/ |
2122
476336a5ae95
updated for version 7.2.404
Bram Moolenaar <bram@zimbu.org>
parents:
2121
diff
changeset
|
725 404, |
476336a5ae95
updated for version 7.2.404
Bram Moolenaar <bram@zimbu.org>
parents:
2121
diff
changeset
|
726 /**/ |
2121
20d9fc2f13a4
updated for version 7.2.403
Bram Moolenaar <bram@zimbu.org>
parents:
2119
diff
changeset
|
727 403, |
20d9fc2f13a4
updated for version 7.2.403
Bram Moolenaar <bram@zimbu.org>
parents:
2119
diff
changeset
|
728 /**/ |
2119
111554354870
updated for version 7.2.402
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
729 402, |
111554354870
updated for version 7.2.402
Bram Moolenaar <bram@zimbu.org>
parents:
2118
diff
changeset
|
730 /**/ |
2118
63bf37c1e7a2
updated for version 7.2.401
Bram Moolenaar <bram@zimbu.org>
parents:
2117
diff
changeset
|
731 401, |
63bf37c1e7a2
updated for version 7.2.401
Bram Moolenaar <bram@zimbu.org>
parents:
2117
diff
changeset
|
732 /**/ |
2117
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2116
diff
changeset
|
733 400, |
4be6da0fa3d9
updated for version 7.2.400
Bram Moolenaar <bram@zimbu.org>
parents:
2116
diff
changeset
|
734 /**/ |
2116
2832243e801e
updated for version 7.2.399
Bram Moolenaar <bram@zimbu.org>
parents:
2115
diff
changeset
|
735 399, |
2832243e801e
updated for version 7.2.399
Bram Moolenaar <bram@zimbu.org>
parents:
2115
diff
changeset
|
736 /**/ |
2115
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2114
diff
changeset
|
737 398, |
5fd44cf99b6d
updated for version 7.2.398
Bram Moolenaar <bram@zimbu.org>
parents:
2114
diff
changeset
|
738 /**/ |
2114
5a97d0c03b59
updated for version 7.2.397
Bram Moolenaar <bram@zimbu.org>
parents:
2113
diff
changeset
|
739 397, |
5a97d0c03b59
updated for version 7.2.397
Bram Moolenaar <bram@zimbu.org>
parents:
2113
diff
changeset
|
740 /**/ |
2113
85ad19790706
updated for version 7.2.396
Bram Moolenaar <bram@zimbu.org>
parents:
2112
diff
changeset
|
741 396, |
85ad19790706
updated for version 7.2.396
Bram Moolenaar <bram@zimbu.org>
parents:
2112
diff
changeset
|
742 /**/ |
2112
6b5d641bcdd4
updated for version 7.2.395
Bram Moolenaar <bram@zimbu.org>
parents:
2111
diff
changeset
|
743 395, |
6b5d641bcdd4
updated for version 7.2.395
Bram Moolenaar <bram@zimbu.org>
parents:
2111
diff
changeset
|
744 /**/ |
2111
aab202d244b6
updated for version 7.2.394
Bram Moolenaar <bram@zimbu.org>
parents:
2110
diff
changeset
|
745 394, |
aab202d244b6
updated for version 7.2.394
Bram Moolenaar <bram@zimbu.org>
parents:
2110
diff
changeset
|
746 /**/ |
2110
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2109
diff
changeset
|
747 393, |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2109
diff
changeset
|
748 /**/ |
2109
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
749 392, |
6c3c2e464a96
updated for version 7.2.392
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
750 /**/ |
2108
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
2107
diff
changeset
|
751 391, |
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
2107
diff
changeset
|
752 /**/ |
2107
4a4287c09953
updated for version 7.2.390
Bram Moolenaar <bram@zimbu.org>
parents:
2106
diff
changeset
|
753 390, |
4a4287c09953
updated for version 7.2.390
Bram Moolenaar <bram@zimbu.org>
parents:
2106
diff
changeset
|
754 /**/ |
2106
15674e198164
updated for version 7.2.389
Bram Moolenaar <bram@zimbu.org>
parents:
2105
diff
changeset
|
755 389, |
15674e198164
updated for version 7.2.389
Bram Moolenaar <bram@zimbu.org>
parents:
2105
diff
changeset
|
756 /**/ |
2105
8562c6804861
updated for version 7.2.388
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
757 388, |
8562c6804861
updated for version 7.2.388
Bram Moolenaar <bram@zimbu.org>
parents:
2104
diff
changeset
|
758 /**/ |
2104
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2103
diff
changeset
|
759 387, |
09cc86b66653
updated for version 7.2.387
Bram Moolenaar <bram@zimbu.org>
parents:
2103
diff
changeset
|
760 /**/ |
2103
89dc68c0ab6f
updated for version 7.2.386
Bram Moolenaar <bram@zimbu.org>
parents:
2102
diff
changeset
|
761 386, |
89dc68c0ab6f
updated for version 7.2.386
Bram Moolenaar <bram@zimbu.org>
parents:
2102
diff
changeset
|
762 /**/ |
2102
907cf09fbb32
updated for version 7.2.385
Bram Moolenaar <bram@zimbu.org>
parents:
2101
diff
changeset
|
763 385, |
907cf09fbb32
updated for version 7.2.385
Bram Moolenaar <bram@zimbu.org>
parents:
2101
diff
changeset
|
764 /**/ |
2101
8ae4de2d02af
updated for version 7.2.384
Bram Moolenaar <bram@zimbu.org>
parents:
2100
diff
changeset
|
765 384, |
8ae4de2d02af
updated for version 7.2.384
Bram Moolenaar <bram@zimbu.org>
parents:
2100
diff
changeset
|
766 /**/ |
2100
7d121c69f540
updated for version 7.2.383
Bram Moolenaar <bram@zimbu.org>
parents:
2099
diff
changeset
|
767 383, |
7d121c69f540
updated for version 7.2.383
Bram Moolenaar <bram@zimbu.org>
parents:
2099
diff
changeset
|
768 /**/ |
2099
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
769 382, |
c1f67ce5740a
updated for version 7.2.382
Bram Moolenaar <bram@zimbu.org>
parents:
2097
diff
changeset
|
770 /**/ |
2097
8f72e3512b43
updated for version 7.2.381
Bram Moolenaar <bram@zimbu.org>
parents:
2096
diff
changeset
|
771 381, |
8f72e3512b43
updated for version 7.2.381
Bram Moolenaar <bram@zimbu.org>
parents:
2096
diff
changeset
|
772 /**/ |
2096
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2095
diff
changeset
|
773 380, |
6510d834609f
updated for version 7.2.380
Bram Moolenaar <bram@zimbu.org>
parents:
2095
diff
changeset
|
774 /**/ |
2095
8aa3cd045aef
updated for version 7.2.379
Bram Moolenaar <bram@zimbu.org>
parents:
2094
diff
changeset
|
775 379, |
8aa3cd045aef
updated for version 7.2.379
Bram Moolenaar <bram@zimbu.org>
parents:
2094
diff
changeset
|
776 /**/ |
2094
e319a4fe6e32
updated for version 7.2.378
Bram Moolenaar <bram@zimbu.org>
parents:
2093
diff
changeset
|
777 378, |
e319a4fe6e32
updated for version 7.2.378
Bram Moolenaar <bram@zimbu.org>
parents:
2093
diff
changeset
|
778 /**/ |
2093
0e4631bf9441
updated for version 7.2.377
Bram Moolenaar <bram@zimbu.org>
parents:
2092
diff
changeset
|
779 377, |
0e4631bf9441
updated for version 7.2.377
Bram Moolenaar <bram@zimbu.org>
parents:
2092
diff
changeset
|
780 /**/ |
2092
98cc757f7e3d
updated for version 7.2.376
Bram Moolenaar <bram@zimbu.org>
parents:
2091
diff
changeset
|
781 376, |
98cc757f7e3d
updated for version 7.2.376
Bram Moolenaar <bram@zimbu.org>
parents:
2091
diff
changeset
|
782 /**/ |
2091
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
783 375, |
95b659982b7c
updated for version 7.2.375
Bram Moolenaar <bram@zimbu.org>
parents:
2090
diff
changeset
|
784 /**/ |
2090
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2089
diff
changeset
|
785 374, |
53d475dff0e3
updated for version 7.2.374
Bram Moolenaar <bram@zimbu.org>
parents:
2089
diff
changeset
|
786 /**/ |
2089
fd8864aeb52a
updated for version 7.2.373
Bram Moolenaar <bram@zimbu.org>
parents:
2088
diff
changeset
|
787 373, |
fd8864aeb52a
updated for version 7.2.373
Bram Moolenaar <bram@zimbu.org>
parents:
2088
diff
changeset
|
788 /**/ |
2088
4ec11bb387a5
updated for version 7.2.372
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
789 372, |
4ec11bb387a5
updated for version 7.2.372
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
790 /**/ |
2087
3112fcc89238
updated for version 7.2.371
Bram Moolenaar <bram@zimbu.org>
parents:
2086
diff
changeset
|
791 371, |
3112fcc89238
updated for version 7.2.371
Bram Moolenaar <bram@zimbu.org>
parents:
2086
diff
changeset
|
792 /**/ |
2086
c11845a465ae
updated for version 7.2.370
Bram Moolenaar <bram@zimbu.org>
parents:
2085
diff
changeset
|
793 370, |
c11845a465ae
updated for version 7.2.370
Bram Moolenaar <bram@zimbu.org>
parents:
2085
diff
changeset
|
794 /**/ |
2085
5a84b6388a55
updated for version 7.2.369
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
795 369, |
5a84b6388a55
updated for version 7.2.369
Bram Moolenaar <bram@zimbu.org>
parents:
2084
diff
changeset
|
796 /**/ |
2084
4bac7ed34007
updated for version 7.2.368
Bram Moolenaar <bram@zimbu.org>
parents:
2083
diff
changeset
|
797 368, |
4bac7ed34007
updated for version 7.2.368
Bram Moolenaar <bram@zimbu.org>
parents:
2083
diff
changeset
|
798 /**/ |
2083
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
2082
diff
changeset
|
799 367, |
24eb7921b8f0
updated for version 7.2.367
Bram Moolenaar <bram@zimbu.org>
parents:
2082
diff
changeset
|
800 /**/ |
2082
8ca3c9ad0bee
updated for version 7.2.366
Bram Moolenaar <bram@zimbu.org>
parents:
2081
diff
changeset
|
801 366, |
8ca3c9ad0bee
updated for version 7.2.366
Bram Moolenaar <bram@zimbu.org>
parents:
2081
diff
changeset
|
802 /**/ |
2081
7b0e89b77216
updated for version 7.2.365
Bram Moolenaar <bram@zimbu.org>
parents:
2080
diff
changeset
|
803 365, |
7b0e89b77216
updated for version 7.2.365
Bram Moolenaar <bram@zimbu.org>
parents:
2080
diff
changeset
|
804 /**/ |
2080
fa7e62dd58d7
updated for version 7.2.364
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
805 364, |
fa7e62dd58d7
updated for version 7.2.364
Bram Moolenaar <bram@zimbu.org>
parents:
2079
diff
changeset
|
806 /**/ |
2079
5abd3e3c0085
updated for version 7.2.363
Bram Moolenaar <bram@zimbu.org>
parents:
2078
diff
changeset
|
807 363, |
5abd3e3c0085
updated for version 7.2.363
Bram Moolenaar <bram@zimbu.org>
parents:
2078
diff
changeset
|
808 /**/ |
2078
d7ce3adb8dda
updated for version 7.2.362
Bram Moolenaar <bram@zimbu.org>
parents:
2077
diff
changeset
|
809 362, |
d7ce3adb8dda
updated for version 7.2.362
Bram Moolenaar <bram@zimbu.org>
parents:
2077
diff
changeset
|
810 /**/ |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
811 361, |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2076
diff
changeset
|
812 /**/ |
2076
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
2075
diff
changeset
|
813 360, |
1c7a66d820e4
updated for version 7.2.360
Bram Moolenaar <bram@zimbu.org>
parents:
2075
diff
changeset
|
814 /**/ |
2075
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2074
diff
changeset
|
815 359, |
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2074
diff
changeset
|
816 /**/ |
2074
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
2073
diff
changeset
|
817 358, |
1bb06e6512a2
updated for version 7.2.358
Bram Moolenaar <bram@zimbu.org>
parents:
2073
diff
changeset
|
818 /**/ |
2073
5bedef935ce3
updated for version 7.2.357
Bram Moolenaar <bram@zimbu.org>
parents:
2071
diff
changeset
|
819 357, |
5bedef935ce3
updated for version 7.2.357
Bram Moolenaar <bram@zimbu.org>
parents:
2071
diff
changeset
|
820 /**/ |
2071
8a0a8f10b43e
updated for version 7.2.356
Bram Moolenaar <bram@zimbu.org>
parents:
2070
diff
changeset
|
821 356, |
8a0a8f10b43e
updated for version 7.2.356
Bram Moolenaar <bram@zimbu.org>
parents:
2070
diff
changeset
|
822 /**/ |
2070
4483ee552619
updated for version 7.2.355
Bram Moolenaar <bram@zimbu.org>
parents:
2069
diff
changeset
|
823 355, |
4483ee552619
updated for version 7.2.355
Bram Moolenaar <bram@zimbu.org>
parents:
2069
diff
changeset
|
824 /**/ |
2069
63613d8d7e4d
updated for version 7.2.354
Bram Moolenaar <bram@zimbu.org>
parents:
2068
diff
changeset
|
825 354, |
63613d8d7e4d
updated for version 7.2.354
Bram Moolenaar <bram@zimbu.org>
parents:
2068
diff
changeset
|
826 /**/ |
2068
98a2a6e6b966
updated for version 7.2.353
Bram Moolenaar <bram@zimbu.org>
parents:
2067
diff
changeset
|
827 353, |
98a2a6e6b966
updated for version 7.2.353
Bram Moolenaar <bram@zimbu.org>
parents:
2067
diff
changeset
|
828 /**/ |
2067
8e2d14a3e7d2
updated for version 7.2.352
Bram Moolenaar <bram@zimbu.org>
parents:
2066
diff
changeset
|
829 352, |
8e2d14a3e7d2
updated for version 7.2.352
Bram Moolenaar <bram@zimbu.org>
parents:
2066
diff
changeset
|
830 /**/ |
2066
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2065
diff
changeset
|
831 351, |
2bd96108392e
updated for version 7.2.351
Bram Moolenaar <bram@zimbu.org>
parents:
2065
diff
changeset
|
832 /**/ |
2065
9b78bb3794ba
updated for version 7.2.350
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
833 350, |
9b78bb3794ba
updated for version 7.2.350
Bram Moolenaar <bram@zimbu.org>
parents:
2064
diff
changeset
|
834 /**/ |
2064
f398e0cc5b7a
updated for version 7.2.349
Bram Moolenaar <bram@zimbu.org>
parents:
2063
diff
changeset
|
835 349, |
f398e0cc5b7a
updated for version 7.2.349
Bram Moolenaar <bram@zimbu.org>
parents:
2063
diff
changeset
|
836 /**/ |
2063
1378bc45ebe5
updated for version 7.2.348
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
837 348, |
1378bc45ebe5
updated for version 7.2.348
Bram Moolenaar <bram@zimbu.org>
parents:
2062
diff
changeset
|
838 /**/ |
2062
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
2061
diff
changeset
|
839 347, |
dae4cd29a0b7
updated for version 7.2.347
Bram Moolenaar <bram@zimbu.org>
parents:
2061
diff
changeset
|
840 /**/ |
2061
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2060
diff
changeset
|
841 346, |
2f6e519726f1
updated for version 7.2.346
Bram Moolenaar <bram@zimbu.org>
parents:
2060
diff
changeset
|
842 /**/ |
2060
1da25369227b
updated for version 7.2.345
Bram Moolenaar <bram@zimbu.org>
parents:
2058
diff
changeset
|
843 345, |
1da25369227b
updated for version 7.2.345
Bram Moolenaar <bram@zimbu.org>
parents:
2058
diff
changeset
|
844 /**/ |
2058
fb1222c880fc
updated for version 7.2.344
Bram Moolenaar <bram@zimbu.org>
parents:
2057
diff
changeset
|
845 344, |
fb1222c880fc
updated for version 7.2.344
Bram Moolenaar <bram@zimbu.org>
parents:
2057
diff
changeset
|
846 /**/ |
2057
f815aad6c055
updated for version 7.2.343
Bram Moolenaar <bram@zimbu.org>
parents:
2056
diff
changeset
|
847 343, |
f815aad6c055
updated for version 7.2.343
Bram Moolenaar <bram@zimbu.org>
parents:
2056
diff
changeset
|
848 /**/ |
2056
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
2055
diff
changeset
|
849 342, |
e9e3355861ba
updated for version 7.2.342
Bram Moolenaar <bram@zimbu.org>
parents:
2055
diff
changeset
|
850 /**/ |
2055
4aa4510d548c
updated for version 7.2.341
Bram Moolenaar <bram@zimbu.org>
parents:
2054
diff
changeset
|
851 341, |
4aa4510d548c
updated for version 7.2.341
Bram Moolenaar <bram@zimbu.org>
parents:
2054
diff
changeset
|
852 /**/ |
2054
79b8d69a4588
updated for version 7.2.340
Bram Moolenaar <bram@zimbu.org>
parents:
2053
diff
changeset
|
853 340, |
79b8d69a4588
updated for version 7.2.340
Bram Moolenaar <bram@zimbu.org>
parents:
2053
diff
changeset
|
854 /**/ |
2053
94f44da44d2e
updated for version 7.2.339
Bram Moolenaar <bram@zimbu.org>
parents:
2052
diff
changeset
|
855 339, |
94f44da44d2e
updated for version 7.2.339
Bram Moolenaar <bram@zimbu.org>
parents:
2052
diff
changeset
|
856 /**/ |
2052
057029bf3470
updated for version 7.2.338
Bram Moolenaar <bram@zimbu.org>
parents:
2051
diff
changeset
|
857 338, |
057029bf3470
updated for version 7.2.338
Bram Moolenaar <bram@zimbu.org>
parents:
2051
diff
changeset
|
858 /**/ |
2051
ef2890033e88
updated for version 7.2.337
Bram Moolenaar <bram@zimbu.org>
parents:
2050
diff
changeset
|
859 337, |
ef2890033e88
updated for version 7.2.337
Bram Moolenaar <bram@zimbu.org>
parents:
2050
diff
changeset
|
860 /**/ |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2049
diff
changeset
|
861 336, |
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2049
diff
changeset
|
862 /**/ |
2049
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
863 335, |
23d366df1938
updated for version 7.2.335
Bram Moolenaar <bram@zimbu.org>
parents:
2048
diff
changeset
|
864 /**/ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
865 334, |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
866 /**/ |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
2046
diff
changeset
|
867 333, |
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
2046
diff
changeset
|
868 /**/ |
2046
d433f43849ba
updated for version 7.2.332
Bram Moolenaar <bram@zimbu.org>
parents:
2045
diff
changeset
|
869 332, |
d433f43849ba
updated for version 7.2.332
Bram Moolenaar <bram@zimbu.org>
parents:
2045
diff
changeset
|
870 /**/ |
2045
e77e3c11f507
updated for version 7.2.331
Bram Moolenaar <bram@zimbu.org>
parents:
2041
diff
changeset
|
871 331, |
e77e3c11f507
updated for version 7.2.331
Bram Moolenaar <bram@zimbu.org>
parents:
2041
diff
changeset
|
872 /**/ |
2041
d5867fd6b2b7
updated for version 7.2.330
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
873 330, |
d5867fd6b2b7
updated for version 7.2.330
Bram Moolenaar <bram@zimbu.org>
parents:
2040
diff
changeset
|
874 /**/ |
2040
70c67b1bb1f1
updated for version 7.2.329
Bram Moolenaar <bram@zimbu.org>
parents:
2039
diff
changeset
|
875 329, |
70c67b1bb1f1
updated for version 7.2.329
Bram Moolenaar <bram@zimbu.org>
parents:
2039
diff
changeset
|
876 /**/ |
2039
5c6fa259c923
updated for version 7.2.328
Bram Moolenaar <bram@zimbu.org>
parents:
2031
diff
changeset
|
877 328, |
5c6fa259c923
updated for version 7.2.328
Bram Moolenaar <bram@zimbu.org>
parents:
2031
diff
changeset
|
878 /**/ |
2031
07de57cbcb25
updated for version 7.2.327
Bram Moolenaar <bram@zimbu.org>
parents:
2030
diff
changeset
|
879 327, |
07de57cbcb25
updated for version 7.2.327
Bram Moolenaar <bram@zimbu.org>
parents:
2030
diff
changeset
|
880 /**/ |
2030
66b1822ba176
updated for version 7.2.326
Bram Moolenaar <bram@zimbu.org>
parents:
2028
diff
changeset
|
881 326, |
66b1822ba176
updated for version 7.2.326
Bram Moolenaar <bram@zimbu.org>
parents:
2028
diff
changeset
|
882 /**/ |
2028 | 883 325, |
884 /**/ | |
2027 | 885 324, |
886 /**/ | |
2026 | 887 323, |
888 /**/ | |
2025 | 889 322, |
890 /**/ | |
2024 | 891 321, |
892 /**/ | |
2023 | 893 320, |
894 /**/ | |
2022 | 895 319, |
896 /**/ | |
2021 | 897 318, |
898 /**/ | |
2020 | 899 317, |
900 /**/ | |
2019 | 901 316, |
902 /**/ | |
2018 | 903 315, |
904 /**/ | |
2017 | 905 314, |
906 /**/ | |
2016 | 907 313, |
908 /**/ | |
2015 | 909 312, |
910 /**/ | |
2014 | 911 311, |
912 /**/ | |
2013 | 913 310, |
914 /**/ | |
2012 | 915 309, |
916 /**/ | |
2011 | 917 308, |
918 /**/ | |
2010 | 919 307, |
920 /**/ | |
2009 | 921 306, |
922 /**/ | |
2008 | 923 305, |
924 /**/ | |
2007 | 925 304, |
926 /**/ | |
2006 | 927 303, |
928 /**/ | |
2005 | 929 302, |
930 /**/ | |
2004 | 931 301, |
932 /**/ | |
2003 | 933 300, |
934 /**/ | |
2002 | 935 299, |
936 /**/ | |
2001 | 937 298, |
938 /**/ | |
2000 | 939 297, |
940 /**/ | |
1999 | 941 296, |
942 /**/ | |
1998 | 943 295, |
944 /**/ | |
1997 | 945 294, |
946 /**/ | |
1996 | 947 293, |
948 /**/ | |
1995 | 949 292, |
950 /**/ | |
1994 | 951 291, |
952 /**/ | |
1993 | 953 290, |
954 /**/ | |
1992 | 955 289, |
956 /**/ | |
1991 | 957 288, |
958 /**/ | |
1990 | 959 287, |
960 /**/ | |
1989 | 961 286, |
962 /**/ | |
1988 | 963 285, |
964 /**/ | |
1987 | 965 284, |
966 /**/ | |
1986 | 967 283, |
968 /**/ | |
1985 | 969 282, |
970 /**/ | |
1984 | 971 281, |
972 /**/ | |
1983 | 973 280, |
974 /**/ | |
1982 | 975 279, |
976 /**/ | |
1981 | 977 278, |
978 /**/ | |
1980 | 979 277, |
980 /**/ | |
1979 | 981 276, |
982 /**/ | |
1978 | 983 275, |
984 /**/ | |
1977 | 985 274, |
986 /**/ | |
1976 | 987 273, |
988 /**/ | |
1975 | 989 272, |
990 /**/ | |
1974 | 991 271, |
992 /**/ | |
1973 | 993 270, |
994 /**/ | |
1972 | 995 269, |
996 /**/ | |
1971 | 997 268, |
998 /**/ | |
1970 | 999 267, |
1000 /**/ | |
1969 | 1001 266, |
1002 /**/ | |
1968 | 1003 265, |
1004 /**/ | |
1967 | 1005 264, |
1006 /**/ | |
1966 | 1007 263, |
1008 /**/ | |
1965 | 1009 262, |
1010 /**/ | |
1964 | 1011 261, |
1012 /**/ | |
1963 | 1013 260, |
1014 /**/ | |
1962 | 1015 259, |
1016 /**/ | |
1961 | 1017 258, |
1018 /**/ | |
1960 | 1019 257, |
1020 /**/ | |
1959 | 1021 256, |
1022 /**/ | |
1958 | 1023 255, |
1024 /**/ | |
1957 | 1025 254, |
1026 /**/ | |
1956 | 1027 253, |
1028 /**/ | |
1955 | 1029 252, |
1030 /**/ | |
1954 | 1031 251, |
1032 /**/ | |
1953 | 1033 250, |
1034 /**/ | |
1952 | 1035 249, |
1036 /**/ | |
1951 | 1037 248, |
1038 /**/ | |
1950 | 1039 247, |
1040 /**/ | |
1949 | 1041 246, |
1042 /**/ | |
1948 | 1043 245, |
1044 /**/ | |
1947 | 1045 244, |
1046 /**/ | |
1946 | 1047 243, |
1048 /**/ | |
1945 | 1049 242, |
1050 /**/ | |
1944 | 1051 241, |
1052 /**/ | |
1943 | 1053 240, |
1054 /**/ | |
1942 | 1055 239, |
1056 /**/ | |
1941 | 1057 238, |
1058 /**/ | |
1940 | 1059 237, |
1060 /**/ | |
1939 | 1061 236, |
1062 /**/ | |
1938 | 1063 235, |
1064 /**/ | |
1937 | 1065 234, |
1066 /**/ | |
1936 | 1067 233, |
1068 /**/ | |
1935 | 1069 232, |
1070 /**/ | |
1934 | 1071 231, |
1072 /**/ | |
1933 | 1073 230, |
1074 /**/ | |
1932 | 1075 229, |
1076 /**/ | |
1931 | 1077 228, |
1078 /**/ | |
1930 | 1079 227, |
1080 /**/ | |
1929 | 1081 226, |
1082 /**/ | |
1928 | 1083 225, |
1084 /**/ | |
1927 | 1085 224, |
1086 /**/ | |
1926 | 1087 223, |
1088 /**/ | |
1925 | 1089 222, |
1090 /**/ | |
1924 | 1091 221, |
1092 /**/ | |
1923 | 1093 220, |
1094 /**/ | |
1922 | 1095 219, |
1096 /**/ | |
1921 | 1097 218, |
1098 /**/ | |
1920 | 1099 217, |
1100 /**/ | |
1919 | 1101 216, |
1102 /**/ | |
1918 | 1103 215, |
1104 /**/ | |
1917 | 1105 214, |
1106 /**/ | |
1916 | 1107 213, |
1108 /**/ | |
1915 | 1109 212, |
1110 /**/ | |
1914 | 1111 211, |
1112 /**/ | |
1913 | 1113 210, |
1114 /**/ | |
1912 | 1115 209, |
1116 /**/ | |
1911 | 1117 208, |
1118 /**/ | |
1910 | 1119 207, |
1120 /**/ | |
1909 | 1121 206, |
1122 /**/ | |
1908 | 1123 205, |
1124 /**/ | |
1907 | 1125 204, |
1126 /**/ | |
1906 | 1127 203, |
1128 /**/ | |
1905 | 1129 202, |
1130 /**/ | |
1904 | 1131 201, |
1132 /**/ | |
1903 | 1133 200, |
1134 /**/ | |
1902 | 1135 199, |
1136 /**/ | |
1901 | 1137 198, |
1138 /**/ | |
1900 | 1139 197, |
1140 /**/ | |
1899 | 1141 196, |
1142 /**/ | |
1898 | 1143 195, |
1144 /**/ | |
1897 | 1145 194, |
1146 /**/ | |
1896 | 1147 193, |
1148 /**/ | |
1895 | 1149 192, |
1150 /**/ | |
1894 | 1151 191, |
1152 /**/ | |
1893 | 1153 190, |
1154 /**/ | |
1892 | 1155 189, |
1156 /**/ | |
1891 | 1157 188, |
1158 /**/ | |
1890 | 1159 187, |
1160 /**/ | |
1889 | 1161 186, |
1162 /**/ | |
1888 | 1163 185, |
1164 /**/ | |
1887 | 1165 184, |
1166 /**/ | |
1886 | 1167 183, |
1168 /**/ | |
1885 | 1169 182, |
1170 /**/ | |
1884 | 1171 181, |
1172 /**/ | |
1883 | 1173 180, |
1174 /**/ | |
1882 | 1175 179, |
1176 /**/ | |
1881 | 1177 178, |
1178 /**/ | |
1880 | 1179 177, |
1180 /**/ | |
1879 | 1181 176, |
1182 /**/ | |
1878 | 1183 175, |
1184 /**/ | |
1877 | 1185 174, |
1186 /**/ | |
1876 | 1187 173, |
1188 /**/ | |
1875 | 1189 172, |
1190 /**/ | |
1874 | 1191 171, |
1192 /**/ | |
1873 | 1193 170, |
1194 /**/ | |
1872 | 1195 169, |
1196 /**/ | |
1871 | 1197 168, |
1198 /**/ | |
1869 | 1199 167, |
1200 /**/ | |
1868 | 1201 166, |
1202 /**/ | |
1867 | 1203 165, |
1204 /**/ | |
1866 | 1205 164, |
1206 /**/ | |
1865 | 1207 163, |
1208 /**/ | |
1864 | 1209 162, |
1210 /**/ | |
1863 | 1211 161, |
1212 /**/ | |
1862 | 1213 160, |
1214 /**/ | |
1861 | 1215 159, |
1216 /**/ | |
1860 | 1217 158, |
1218 /**/ | |
1859 | 1219 157, |
1220 /**/ | |
1858 | 1221 156, |
1222 /**/ | |
1857 | 1223 155, |
1224 /**/ | |
1856 | 1225 154, |
1226 /**/ | |
1855 | 1227 153, |
1228 /**/ | |
1854 | 1229 152, |
1230 /**/ | |
1853 | 1231 151, |
1232 /**/ | |
1852 | 1233 150, |
1234 /**/ | |
1851 | 1235 149, |
1236 /**/ | |
1850 | 1237 148, |
1238 /**/ | |
1849 | 1239 147, |
1240 /**/ | |
1848 | 1241 146, |
1242 /**/ | |
1847 | 1243 145, |
1244 /**/ | |
1846 | 1245 144, |
1246 /**/ | |
1845 | 1247 143, |
1248 /**/ | |
1844 | 1249 142, |
1250 /**/ | |
1843 | 1251 141, |
1252 /**/ | |
1842 | 1253 140, |
1254 /**/ | |
1841 | 1255 139, |
1256 /**/ | |
1840 | 1257 138, |
1258 /**/ | |
1839 | 1259 137, |
1260 /**/ | |
1838 | 1261 136, |
1262 /**/ | |
1837 | 1263 135, |
1264 /**/ | |
1836 | 1265 134, |
1266 /**/ | |
1835 | 1267 133, |
1268 /**/ | |
1834 | 1269 132, |
1270 /**/ | |
1833 | 1271 131, |
1272 /**/ | |
1832 | 1273 130, |
1274 /**/ | |
1831 | 1275 129, |
1276 /**/ | |
1830 | 1277 128, |
1278 /**/ | |
1829 | 1279 127, |
1280 /**/ | |
1828 | 1281 126, |
1282 /**/ | |
1827 | 1283 125, |
1284 /**/ | |
1826 | 1285 124, |
1286 /**/ | |
1825 | 1287 123, |
1288 /**/ | |
1824 | 1289 122, |
1290 /**/ | |
1823 | 1291 121, |
1292 /**/ | |
1822 | 1293 120, |
1294 /**/ | |
1821 | 1295 119, |
1296 /**/ | |
1820 | 1297 118, |
1298 /**/ | |
1819 | 1299 117, |
1300 /**/ | |
1818 | 1301 116, |
1302 /**/ | |
1817 | 1303 115, |
1304 /**/ | |
1816 | 1305 114, |
1306 /**/ | |
1815 | 1307 113, |
1308 /**/ | |
1814 | 1309 112, |
1310 /**/ | |
1813 | 1311 111, |
1312 /**/ | |
1812 | 1313 110, |
1314 /**/ | |
1811 | 1315 109, |
1316 /**/ | |
1810 | 1317 108, |
1318 /**/ | |
1809 | 1319 107, |
1320 /**/ | |
1808 | 1321 106, |
1322 /**/ | |
1807 | 1323 105, |
1324 /**/ | |
1806 | 1325 104, |
1326 /**/ | |
1805 | 1327 103, |
1328 /**/ | |
1804 | 1329 102, |
1330 /**/ | |
1803 | 1331 101, |
1332 /**/ | |
1802 | 1333 100, |
1334 /**/ | |
1801 | 1335 99, |
1336 /**/ | |
1800 | 1337 98, |
1338 /**/ | |
1799 | 1339 97, |
1340 /**/ | |
1798 | 1341 96, |
1342 /**/ | |
1797 | 1343 95, |
1344 /**/ | |
1796 | 1345 94, |
1346 /**/ | |
1795 | 1347 93, |
1348 /**/ | |
1794 | 1349 92, |
1350 /**/ | |
1793 | 1351 91, |
1352 /**/ | |
1792 | 1353 90, |
1354 /**/ | |
1791 | 1355 89, |
1356 /**/ | |
1790 | 1357 88, |
1358 /**/ | |
1789 | 1359 87, |
1360 /**/ | |
1788 | 1361 86, |
1362 /**/ | |
1787 | 1363 85, |
1364 /**/ | |
1786 | 1365 84, |
1366 /**/ | |
1785 | 1367 83, |
1368 /**/ | |
1784 | 1369 82, |
1370 /**/ | |
1783 | 1371 81, |
1372 /**/ | |
1782 | 1373 80, |
1374 /**/ | |
1781 | 1375 79, |
1376 /**/ | |
1780 | 1377 78, |
1378 /**/ | |
1779 | 1379 77, |
1380 /**/ | |
1778 | 1381 76, |
1382 /**/ | |
1777 | 1383 75, |
1384 /**/ | |
1776 | 1385 74, |
1386 /**/ | |
1775 | 1387 73, |
1388 /**/ | |
1774 | 1389 72, |
1390 /**/ | |
1773 | 1391 71, |
1392 /**/ | |
1772 | 1393 70, |
1394 /**/ | |
1771 | 1395 69, |
1396 /**/ | |
1770 | 1397 68, |
1398 /**/ | |
1769 | 1399 67, |
1400 /**/ | |
1768 | 1401 66, |
1402 /**/ | |
1767 | 1403 65, |
1404 /**/ | |
1766 | 1405 64, |
1406 /**/ | |
1765 | 1407 63, |
1408 /**/ | |
1764 | 1409 62, |
1410 /**/ | |
1763 | 1411 61, |
1412 /**/ | |
1762 | 1413 60, |
1414 /**/ | |
1761 | 1415 59, |
1416 /**/ | |
1760 | 1417 58, |
1418 /**/ | |
1759 | 1419 57, |
1420 /**/ | |
1758 | 1421 56, |
1422 /**/ | |
1757 | 1423 55, |
1424 /**/ | |
1425 54, | |
1426 /**/ | |
1756 | 1427 53, |
1428 /**/ | |
1755 | 1429 52, |
1430 /**/ | |
1754 | 1431 51, |
1432 /**/ | |
1753 | 1433 50, |
1434 /**/ | |
1752 | 1435 49, |
1436 /**/ | |
1751 | 1437 48, |
1438 /**/ | |
1750 | 1439 47, |
1440 /**/ | |
1749 | 1441 46, |
1442 /**/ | |
1748 | 1443 45, |
1444 /**/ | |
1747 | 1445 44, |
1446 /**/ | |
1746 | 1447 43, |
1448 /**/ | |
1744 | 1449 42, |
1450 /**/ | |
1743 | 1451 41, |
1452 /**/ | |
1742 | 1453 40, |
1454 /**/ | |
1741 | 1455 39, |
1456 /**/ | |
1740 | 1457 38, |
1458 /**/ | |
1739 | 1459 37, |
1460 /**/ | |
1738 | 1461 36, |
1462 /**/ | |
1737 | 1463 35, |
1464 /**/ | |
1736 | 1465 34, |
1466 /**/ | |
1735 | 1467 33, |
1468 /**/ | |
1734 | 1469 32, |
1470 /**/ | |
1733 | 1471 31, |
1472 /**/ | |
1732 | 1473 30, |
1474 /**/ | |
1731 | 1475 29, |
1476 /**/ | |
1730 | 1477 28, |
1478 /**/ | |
1729 | 1479 27, |
1480 /**/ | |
1728 | 1481 26, |
1482 /**/ | |
1727 | 1483 25, |
1484 /**/ | |
1726 | 1485 24, |
1486 /**/ | |
1725 | 1487 23, |
1488 /**/ | |
1724 | 1489 22, |
1490 /**/ | |
1723 | 1491 21, |
1492 /**/ | |
1722 | 1493 20, |
1494 /**/ | |
1721 | 1495 19, |
1496 /**/ | |
1720 | 1497 18, |
1498 /**/ | |
1719 | 1499 17, |
1500 /**/ | |
1718 | 1501 16, |
1502 /**/ | |
1717 | 1503 15, |
1504 /**/ | |
1716 | 1505 14, |
1506 /**/ | |
1715 | 1507 13, |
1508 /**/ | |
1714 | 1509 12, |
1510 /**/ | |
1713 | 1511 11, |
1512 /**/ | |
1712 | 1513 10, |
1514 /**/ | |
1711 | 1515 9, |
1516 /**/ | |
1710 | 1517 8, |
1518 /**/ | |
1709 | 1519 7, |
1520 /**/ | |
1708 | 1521 6, |
1522 /**/ | |
1707 | 1523 5, |
1524 /**/ | |
1706 | 1525 4, |
1526 /**/ | |
1705 | 1527 3, |
1528 /**/ | |
1704 | 1529 2, |
1530 /**/ | |
1703 | 1531 1, |
1532 /**/ | |
7 | 1533 0 |
1534 }; | |
1535 | |
1760 | 1536 /* |
1537 * Place to put a short description when adding a feature with a patch. | |
1538 * Keep it short, e.g.,: "relative numbers", "persistent undo". | |
1539 * Also add a comment marker to separate the lines. | |
1540 * See the official Vim patches for the diff format: It must use a context of | |
1777 | 1541 * one line only. Create it by hand or use "diff -C2" and edit the patch. |
1760 | 1542 */ |
1543 static char *(extra_patches[]) = | |
1544 { /* Add your patch description below this line */ | |
1545 /**/ | |
1546 NULL | |
1547 }; | |
1548 | |
7 | 1549 int |
1550 highest_patch() | |
1551 { | |
1552 int i; | |
1553 int h = 0; | |
1554 | |
1555 for (i = 0; included_patches[i] != 0; ++i) | |
1556 if (included_patches[i] > h) | |
1557 h = included_patches[i]; | |
1558 return h; | |
1559 } | |
1560 | |
1561 #if defined(FEAT_EVAL) || defined(PROTO) | |
1562 /* | |
1563 * Return TRUE if patch "n" has been included. | |
1564 */ | |
1565 int | |
1566 has_patch(n) | |
1567 int n; | |
1568 { | |
1569 int i; | |
1570 | |
1571 for (i = 0; included_patches[i] != 0; ++i) | |
1572 if (included_patches[i] == n) | |
1573 return TRUE; | |
1574 return FALSE; | |
1575 } | |
1576 #endif | |
1577 | |
1578 void | |
1579 ex_version(eap) | |
1580 exarg_T *eap; | |
1581 { | |
1582 /* | |
1583 * Ignore a ":version 9.99" command. | |
1584 */ | |
1585 if (*eap->arg == NUL) | |
1586 { | |
1587 msg_putchar('\n'); | |
1588 list_version(); | |
1589 } | |
1590 } | |
1591 | |
1592 void | |
1593 list_version() | |
1594 { | |
1595 int i; | |
1596 int first; | |
1597 char *s = ""; | |
1598 | |
1599 /* | |
1600 * When adding features here, don't forget to update the list of | |
1601 * internal variables in eval.c! | |
1602 */ | |
1603 MSG(longVersion); | |
1604 #ifdef WIN3264 | |
1605 # ifdef FEAT_GUI_W32 | |
1606 # if defined(_MSC_VER) && (_MSC_VER <= 1010) | |
1607 /* Only MS VC 4.1 and earlier can do Win32s */ | |
1607 | 1608 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version")); |
7 | 1609 # else |
990 | 1610 # ifdef _WIN64 |
1607 | 1611 MSG_PUTS(_("\nMS-Windows 64-bit GUI version")); |
990 | 1612 # else |
1607 | 1613 MSG_PUTS(_("\nMS-Windows 32-bit GUI version")); |
990 | 1614 # endif |
7 | 1615 # endif |
1616 if (gui_is_win32s()) | |
1617 MSG_PUTS(_(" in Win32s mode")); | |
1618 # ifdef FEAT_OLE | |
1619 MSG_PUTS(_(" with OLE support")); | |
1620 # endif | |
1621 # else | |
1607 | 1622 # ifdef _WIN64 |
1623 MSG_PUTS(_("\nMS-Windows 64-bit console version")); | |
1624 # else | |
1625 MSG_PUTS(_("\nMS-Windows 32-bit console version")); | |
1626 # endif | |
7 | 1627 # endif |
1628 #endif | |
1629 #ifdef WIN16 | |
1607 | 1630 MSG_PUTS(_("\nMS-Windows 16-bit version")); |
7 | 1631 #endif |
1632 #ifdef MSDOS | |
1633 # ifdef DJGPP | |
1607 | 1634 MSG_PUTS(_("\n32-bit MS-DOS version")); |
7 | 1635 # else |
1607 | 1636 MSG_PUTS(_("\n16-bit MS-DOS version")); |
7 | 1637 # endif |
1638 #endif | |
1639 #ifdef MACOS | |
1640 # ifdef MACOS_X | |
1641 # ifdef MACOS_X_UNIX | |
1642 MSG_PUTS(_("\nMacOS X (unix) version")); | |
1643 # else | |
1644 MSG_PUTS(_("\nMacOS X version")); | |
1645 # endif | |
1646 #else | |
1647 MSG_PUTS(_("\nMacOS version")); | |
1648 # endif | |
1649 #endif | |
1650 | |
1651 #ifdef RISCOS | |
1652 MSG_PUTS(_("\nRISC OS version")); | |
1653 #endif | |
1654 #ifdef VMS | |
1705 | 1655 MSG_PUTS(_("\nOpenVMS version")); |
1045 | 1656 # ifdef HAVE_PATHDEF |
1657 if (*compiled_arch != NUL) | |
1658 { | |
1659 MSG_PUTS(" - "); | |
1660 MSG_PUTS(compiled_arch); | |
1661 } | |
1662 # endif | |
1663 | |
7 | 1664 #endif |
1665 | |
1666 /* Print the list of patch numbers if there is at least one. */ | |
1667 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */ | |
1668 if (included_patches[0] != 0) | |
1669 { | |
1670 MSG_PUTS(_("\nIncluded patches: ")); | |
1671 first = -1; | |
1672 /* find last one */ | |
1673 for (i = 0; included_patches[i] != 0; ++i) | |
1674 ; | |
1675 while (--i >= 0) | |
1676 { | |
1677 if (first < 0) | |
1678 first = included_patches[i]; | |
1679 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1) | |
1680 { | |
1681 MSG_PUTS(s); | |
1682 s = ", "; | |
1683 msg_outnum((long)first); | |
1684 if (first != included_patches[i]) | |
1685 { | |
1686 MSG_PUTS("-"); | |
1687 msg_outnum((long)included_patches[i]); | |
1688 } | |
1689 first = -1; | |
1690 } | |
1691 } | |
1692 } | |
1693 | |
1760 | 1694 /* Print the list of extra patch descriptions if there is at least one. */ |
1695 if (extra_patches[0] != NULL) | |
1696 { | |
1697 MSG_PUTS(_("\nExtra patches: ")); | |
1698 s = ""; | |
1699 for (i = 0; extra_patches[i] != NULL; ++i) | |
1700 { | |
1701 MSG_PUTS(s); | |
1702 s = ", "; | |
1703 MSG_PUTS(extra_patches[i]); | |
1704 } | |
1705 } | |
1706 | |
7 | 1707 #ifdef MODIFIED_BY |
1708 MSG_PUTS("\n"); | |
1709 MSG_PUTS(_("Modified by ")); | |
1710 MSG_PUTS(MODIFIED_BY); | |
1711 #endif | |
1712 | |
1713 #ifdef HAVE_PATHDEF | |
1714 if (*compiled_user != NUL || *compiled_sys != NUL) | |
1715 { | |
1716 MSG_PUTS(_("\nCompiled ")); | |
1717 if (*compiled_user != NUL) | |
1718 { | |
1719 MSG_PUTS(_("by ")); | |
1720 MSG_PUTS(compiled_user); | |
1721 } | |
1722 if (*compiled_sys != NUL) | |
1723 { | |
1724 MSG_PUTS("@"); | |
1725 MSG_PUTS(compiled_sys); | |
1726 } | |
1727 } | |
1728 #endif | |
1729 | |
1730 #ifdef FEAT_HUGE | |
1731 MSG_PUTS(_("\nHuge version ")); | |
1732 #else | |
1733 # ifdef FEAT_BIG | |
1734 MSG_PUTS(_("\nBig version ")); | |
1735 # else | |
1736 # ifdef FEAT_NORMAL | |
1737 MSG_PUTS(_("\nNormal version ")); | |
1738 # else | |
1739 # ifdef FEAT_SMALL | |
1740 MSG_PUTS(_("\nSmall version ")); | |
1741 # else | |
1742 MSG_PUTS(_("\nTiny version ")); | |
1743 # endif | |
1744 # endif | |
1745 # endif | |
1746 #endif | |
1747 #ifndef FEAT_GUI | |
1748 MSG_PUTS(_("without GUI.")); | |
1749 #else | |
1750 # ifdef FEAT_GUI_GTK | |
1751 # ifdef FEAT_GUI_GNOME | |
1752 # ifdef HAVE_GTK2 | |
1753 MSG_PUTS(_("with GTK2-GNOME GUI.")); | |
1754 # else | |
1755 MSG_PUTS(_("with GTK-GNOME GUI.")); | |
1756 # endif | |
1757 # else | |
1758 # ifdef HAVE_GTK2 | |
1759 MSG_PUTS(_("with GTK2 GUI.")); | |
1760 # else | |
1761 MSG_PUTS(_("with GTK GUI.")); | |
1762 # endif | |
1763 # endif | |
1764 # else | |
1765 # ifdef FEAT_GUI_MOTIF | |
1766 MSG_PUTS(_("with X11-Motif GUI.")); | |
1767 # else | |
1768 # ifdef FEAT_GUI_ATHENA | |
1769 # ifdef FEAT_GUI_NEXTAW | |
1770 MSG_PUTS(_("with X11-neXtaw GUI.")); | |
1771 # else | |
1772 MSG_PUTS(_("with X11-Athena GUI.")); | |
1773 # endif | |
1774 # else | |
1775 # ifdef FEAT_GUI_PHOTON | |
1776 MSG_PUTS(_("with Photon GUI.")); | |
1777 # else | |
1778 # if defined(MSWIN) | |
1779 MSG_PUTS(_("with GUI.")); | |
1780 # else | |
1781 # if defined (TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON | |
1782 MSG_PUTS(_("with Carbon GUI.")); | |
1783 # else | |
1784 # if defined (TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX | |
1785 MSG_PUTS(_("with Cocoa GUI.")); | |
1786 # else | |
1787 # if defined (MACOS) | |
1788 MSG_PUTS(_("with (classic) GUI.")); | |
1789 # endif | |
1790 # endif | |
1791 # endif | |
1792 # endif | |
1793 # endif | |
1794 # endif | |
1795 # endif | |
1796 # endif | |
1797 #endif | |
1798 version_msg(_(" Features included (+) or not (-):\n")); | |
1799 | |
1800 /* print all the features */ | |
1801 for (i = 0; features[i] != NULL; ++i) | |
1802 { | |
1803 version_msg(features[i]); | |
1804 if (msg_col > 0) | |
1805 version_msg(" "); | |
1806 } | |
1807 | |
1808 version_msg("\n"); | |
1809 #ifdef SYS_VIMRC_FILE | |
1810 version_msg(_(" system vimrc file: \"")); | |
1811 version_msg(SYS_VIMRC_FILE); | |
1812 version_msg("\"\n"); | |
1813 #endif | |
1814 #ifdef USR_VIMRC_FILE | |
1815 version_msg(_(" user vimrc file: \"")); | |
1816 version_msg(USR_VIMRC_FILE); | |
1817 version_msg("\"\n"); | |
1818 #endif | |
1819 #ifdef USR_VIMRC_FILE2 | |
1820 version_msg(_(" 2nd user vimrc file: \"")); | |
1821 version_msg(USR_VIMRC_FILE2); | |
1822 version_msg("\"\n"); | |
1823 #endif | |
1824 #ifdef USR_VIMRC_FILE3 | |
1825 version_msg(_(" 3rd user vimrc file: \"")); | |
1826 version_msg(USR_VIMRC_FILE3); | |
1827 version_msg("\"\n"); | |
1828 #endif | |
1829 #ifdef USR_EXRC_FILE | |
1830 version_msg(_(" user exrc file: \"")); | |
1831 version_msg(USR_EXRC_FILE); | |
1832 version_msg("\"\n"); | |
1833 #endif | |
1834 #ifdef USR_EXRC_FILE2 | |
1835 version_msg(_(" 2nd user exrc file: \"")); | |
1836 version_msg(USR_EXRC_FILE2); | |
1837 version_msg("\"\n"); | |
1838 #endif | |
1839 #ifdef FEAT_GUI | |
1840 # ifdef SYS_GVIMRC_FILE | |
1841 version_msg(_(" system gvimrc file: \"")); | |
1842 version_msg(SYS_GVIMRC_FILE); | |
1843 version_msg("\"\n"); | |
1844 # endif | |
1845 version_msg(_(" user gvimrc file: \"")); | |
1846 version_msg(USR_GVIMRC_FILE); | |
1847 version_msg("\"\n"); | |
1848 # ifdef USR_GVIMRC_FILE2 | |
1849 version_msg(_("2nd user gvimrc file: \"")); | |
1850 version_msg(USR_GVIMRC_FILE2); | |
1851 version_msg("\"\n"); | |
1852 # endif | |
1853 # ifdef USR_GVIMRC_FILE3 | |
1854 version_msg(_("3rd user gvimrc file: \"")); | |
1855 version_msg(USR_GVIMRC_FILE3); | |
1856 version_msg("\"\n"); | |
1857 # endif | |
1858 #endif | |
1859 #ifdef FEAT_GUI | |
1860 # ifdef SYS_MENU_FILE | |
1861 version_msg(_(" system menu file: \"")); | |
1862 version_msg(SYS_MENU_FILE); | |
1863 version_msg("\"\n"); | |
1864 # endif | |
1865 #endif | |
1866 #ifdef HAVE_PATHDEF | |
1867 if (*default_vim_dir != NUL) | |
1868 { | |
1869 version_msg(_(" fall-back for $VIM: \"")); | |
1870 version_msg((char *)default_vim_dir); | |
1871 version_msg("\"\n"); | |
1872 } | |
1873 if (*default_vimruntime_dir != NUL) | |
1874 { | |
1875 version_msg(_(" f-b for $VIMRUNTIME: \"")); | |
1876 version_msg((char *)default_vimruntime_dir); | |
1877 version_msg("\"\n"); | |
1878 } | |
1879 version_msg(_("Compilation: ")); | |
1880 version_msg((char *)all_cflags); | |
1881 version_msg("\n"); | |
1882 #ifdef VMS | |
1883 if (*compiler_version != NUL) | |
1884 { | |
1885 version_msg(_("Compiler: ")); | |
1886 version_msg((char *)compiler_version); | |
1887 version_msg("\n"); | |
1888 } | |
1889 #endif | |
1890 version_msg(_("Linking: ")); | |
1891 version_msg((char *)all_lflags); | |
1892 #endif | |
1893 #ifdef DEBUG | |
1894 version_msg("\n"); | |
1895 version_msg(_(" DEBUG BUILD")); | |
1896 #endif | |
1897 } | |
1898 | |
1899 /* | |
1900 * Output a string for the version message. If it's going to wrap, output a | |
1901 * newline, unless the message is too long to fit on the screen anyway. | |
1902 */ | |
1903 static void | |
1904 version_msg(s) | |
1905 char *s; | |
1906 { | |
1907 int len = (int)STRLEN(s); | |
1908 | |
1909 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns | |
1910 && *s != '\n') | |
1911 msg_putchar('\n'); | |
1912 if (!got_int) | |
1913 MSG_PUTS(s); | |
1914 } | |
1915 | |
1916 static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr)); | |
1917 | |
1918 /* | |
1919 * Give an introductory message about Vim. | |
1920 * Only used when starting Vim on an empty file, without a file name. | |
1921 * Or with the ":intro" command (for Sven :-). | |
1922 */ | |
1923 void | |
1924 intro_message(colon) | |
1925 int colon; /* TRUE for ":intro" */ | |
1926 { | |
1927 int i; | |
1928 int row; | |
1929 int blanklines; | |
1930 int sponsor; | |
1931 char *p; | |
1932 static char *(lines[]) = | |
1933 { | |
1934 N_("VIM - Vi IMproved"), | |
1935 "", | |
1936 N_("version "), | |
1937 N_("by Bram Moolenaar et al."), | |
1938 #ifdef MODIFIED_BY | |
1939 " ", | |
1940 #endif | |
1941 N_("Vim is open source and freely distributable"), | |
1942 "", | |
1943 N_("Help poor children in Uganda!"), | |
1944 N_("type :help iccf<Enter> for information "), | |
1945 "", | |
1946 N_("type :q<Enter> to exit "), | |
1947 N_("type :help<Enter> or <F1> for on-line help"), | |
26 | 1948 N_("type :help version7<Enter> for version info"), |
7 | 1949 NULL, |
1950 "", | |
1951 N_("Running in Vi compatible mode"), | |
1952 N_("type :set nocp<Enter> for Vim defaults"), | |
1953 N_("type :help cp-default<Enter> for info on this"), | |
1954 }; | |
1955 #ifdef FEAT_GUI | |
1956 static char *(gui_lines[]) = | |
1957 { | |
1958 NULL, | |
1959 NULL, | |
1960 NULL, | |
1961 NULL, | |
1962 #ifdef MODIFIED_BY | |
1963 NULL, | |
1964 #endif | |
1965 NULL, | |
1966 NULL, | |
1967 NULL, | |
1968 N_("menu Help->Orphans for information "), | |
1969 NULL, | |
1970 N_("Running modeless, typed text is inserted"), | |
1971 N_("menu Edit->Global Settings->Toggle Insert Mode "), | |
1972 N_(" for two modes "), | |
1973 NULL, | |
1974 NULL, | |
1975 NULL, | |
1976 N_("menu Edit->Global Settings->Toggle Vi Compatible"), | |
1977 N_(" for Vim defaults "), | |
1978 }; | |
1979 #endif | |
1980 | |
1981 /* blanklines = screen height - # message lines */ | |
1982 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1); | |
1983 if (!p_cp) | |
1984 blanklines += 4; /* add 4 for not showing "Vi compatible" message */ | |
1985 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
1986 if (mch_windows95()) | |
1987 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */ | |
1988 #endif | |
1989 | |
1990 #ifdef FEAT_WINDOWS | |
1991 /* Don't overwrite a statusline. Depends on 'cmdheight'. */ | |
1992 if (p_ls > 1) | |
1993 blanklines -= Rows - topframe->fr_height; | |
1994 #endif | |
1995 if (blanklines < 0) | |
1996 blanklines = 0; | |
1997 | |
1998 /* Show the sponsor and register message one out of four times, the Uganda | |
1999 * message two out of four times. */ | |
615 | 2000 sponsor = (int)time(NULL); |
7 | 2001 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); |
2002 | |
2003 /* start displaying the message lines after half of the blank lines */ | |
2004 row = blanklines / 2; | |
2005 if ((row >= 2 && Columns >= 50) || colon) | |
2006 { | |
2007 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i) | |
2008 { | |
2009 p = lines[i]; | |
2010 #ifdef FEAT_GUI | |
2011 if (p_im && gui.in_use && gui_lines[i] != NULL) | |
2012 p = gui_lines[i]; | |
2013 #endif | |
2014 if (p == NULL) | |
2015 { | |
2016 if (!p_cp) | |
2017 break; | |
2018 continue; | |
2019 } | |
2020 if (sponsor != 0) | |
2021 { | |
2022 if (strstr(p, "children") != NULL) | |
2023 p = sponsor < 0 | |
2024 ? N_("Sponsor Vim development!") | |
2025 : N_("Become a registered Vim user!"); | |
2026 else if (strstr(p, "iccf") != NULL) | |
2027 p = sponsor < 0 | |
2028 ? N_("type :help sponsor<Enter> for information ") | |
2029 : N_("type :help register<Enter> for information "); | |
2030 else if (strstr(p, "Orphans") != NULL) | |
2031 p = N_("menu Help->Sponsor/Register for information "); | |
2032 } | |
2033 if (*p != NUL) | |
2034 do_intro_line(row, (char_u *)_(p), i == 2, 0); | |
2035 ++row; | |
2036 } | |
2037 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
2038 if (mch_windows95()) | |
2039 { | |
2040 do_intro_line(++row, | |
2041 (char_u *)_("WARNING: Windows 95/98/ME detected"), | |
2042 FALSE, hl_attr(HLF_E)); | |
2043 do_intro_line(++row, | |
2044 (char_u *)_("type :help windows95<Enter> for info on this"), | |
2045 FALSE, 0); | |
2046 } | |
2047 #endif | |
2048 } | |
2049 | |
2050 /* Make the wait-return message appear just below the text. */ | |
2051 if (colon) | |
2052 msg_row = row; | |
2053 } | |
2054 | |
2055 static void | |
2056 do_intro_line(row, mesg, add_version, attr) | |
2057 int row; | |
2058 char_u *mesg; | |
2059 int add_version; | |
2060 int attr; | |
2061 { | |
2062 char_u vers[20]; | |
2063 int col; | |
2064 char_u *p; | |
2065 int l; | |
2066 int clen; | |
2067 #ifdef MODIFIED_BY | |
2068 # define MODBY_LEN 150 | |
2069 char_u modby[MODBY_LEN]; | |
2070 | |
2071 if (*mesg == ' ') | |
2072 { | |
1491 | 2073 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1); |
7 | 2074 l = STRLEN(modby); |
1491 | 2075 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1); |
7 | 2076 mesg = modby; |
2077 } | |
2078 #endif | |
2079 | |
2080 /* Center the message horizontally. */ | |
2081 col = vim_strsize(mesg); | |
2082 if (add_version) | |
2083 { | |
2084 STRCPY(vers, mediumVersion); | |
2085 if (highest_patch()) | |
2086 { | |
2087 /* Check for 9.9x or 9.9xx, alpha/beta version */ | |
2088 if (isalpha((int)mediumVersion[3])) | |
2089 { | |
2090 if (isalpha((int)mediumVersion[4])) | |
2091 sprintf((char *)vers + 5, ".%d%s", highest_patch(), | |
2092 mediumVersion + 5); | |
2093 else | |
2094 sprintf((char *)vers + 4, ".%d%s", highest_patch(), | |
2095 mediumVersion + 4); | |
2096 } | |
2097 else | |
2098 sprintf((char *)vers + 3, ".%d", highest_patch()); | |
2099 } | |
2100 col += (int)STRLEN(vers); | |
2101 } | |
2102 col = (Columns - col) / 2; | |
2103 if (col < 0) | |
2104 col = 0; | |
2105 | |
2106 /* Split up in parts to highlight <> items differently. */ | |
2107 for (p = mesg; *p != NUL; p += l) | |
2108 { | |
2109 clen = 0; | |
2110 for (l = 0; p[l] != NUL | |
2111 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l) | |
2112 { | |
2113 #ifdef FEAT_MBYTE | |
2114 if (has_mbyte) | |
2115 { | |
2116 clen += ptr2cells(p + l); | |
474 | 2117 l += (*mb_ptr2len)(p + l) - 1; |
7 | 2118 } |
2119 else | |
2120 #endif | |
2121 clen += byte2cells(p[l]); | |
2122 } | |
2123 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr); | |
2124 col += clen; | |
2125 } | |
2126 | |
2127 /* Add the version number to the version line. */ | |
2128 if (add_version) | |
2129 screen_puts(vers, row, col, 0); | |
2130 } | |
2131 | |
2132 /* | |
2133 * ":intro": clear screen, display intro screen and wait for return. | |
2134 */ | |
2135 void | |
2136 ex_intro(eap) | |
1876 | 2137 exarg_T *eap UNUSED; |
7 | 2138 { |
2139 screenclear(); | |
2140 intro_message(TRUE); | |
2141 wait_return(TRUE); | |
2142 } |