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