Merge branch 'vim' into feat/emb-common-lisp
[vim_extended.git] / src / version.c
bloba1004024a0f136d32fb467ab154257a3c2de8034
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
10 #include "vim.h"
12 #ifdef AMIGA
13 # include <time.h> /* for time() */
14 #endif
17 * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred)
18 * It has been changed beyond recognition since then.
20 * Differences between version 6.x and 7.x can be found with ":help version7".
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.
28 #include "version.h"
30 char *Version = VIM_VERSION_SHORT;
31 static char *mediumVersion = VIM_VERSION_MEDIUM;
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()
41 * Construct the long version string. Necessary because
42 * VAX C can't catenate strings in the preprocessor.
44 strcpy(longVersion, VIM_VERSION_LONG_DATE);
45 strcat(longVersion, __DATE__);
46 strcat(longVersion, " ");
47 strcat(longVersion, __TIME__);
48 strcat(longVersion, ")");
50 # else
51 char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
52 # endif
53 #else
54 char *longVersion = VIM_VERSION_LONG;
55 #endif
57 static void version_msg __ARGS((char *s));
59 static char *(features[]) =
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
147 #ifdef CURSOR_SHAPE
148 "+cursorshape",
149 #else
150 "-cursorshape",
151 #endif
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_ECL
186 "+ecl",
187 #else
188 "-ecl",
189 #endif
190 #ifdef FEAT_EMACS_TAGS
191 "+emacs_tags",
192 #else
193 "-emacs_tags",
194 #endif
195 #ifdef FEAT_EVAL
196 "+eval",
197 #else
198 "-eval",
199 #endif
200 #ifdef FEAT_EX_EXTRA
201 "+ex_extra",
202 #else
203 "-ex_extra",
204 #endif
205 #ifdef FEAT_SEARCH_EXTRA
206 "+extra_search",
207 #else
208 "-extra_search",
209 #endif
210 #ifdef FEAT_FKMAP
211 "+farsi",
212 #else
213 "-farsi",
214 #endif
215 #ifdef FEAT_SEARCHPATH
216 "+file_in_path",
217 #else
218 "-file_in_path",
219 #endif
220 #ifdef FEAT_FIND_ID
221 "+find_in_path",
222 #else
223 "-find_in_path",
224 #endif
225 #ifdef FEAT_FLOAT
226 "+float",
227 #else
228 "-float",
229 #endif
230 #ifdef FEAT_FOLDING
231 "+folding",
232 #else
233 "-folding",
234 #endif
235 #ifdef FEAT_FOOTER
236 "+footer",
237 #else
238 "-footer",
239 #endif
240 /* only interesting on Unix systems */
241 #if !defined(USE_SYSTEM) && defined(UNIX)
242 "+fork()",
243 #endif
244 #ifdef FEAT_GETTEXT
245 # ifdef DYNAMIC_GETTEXT
246 "+gettext/dyn",
247 # else
248 "+gettext",
249 # endif
250 #else
251 "-gettext",
252 #endif
253 #ifdef FEAT_HANGULIN
254 "+hangul_input",
255 #else
256 "-hangul_input",
257 #endif
258 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
259 # ifdef DYNAMIC_ICONV
260 "+iconv/dyn",
261 # else
262 "+iconv",
263 # endif
264 #else
265 "-iconv",
266 #endif
267 #ifdef FEAT_INS_EXPAND
268 "+insert_expand",
269 #else
270 "-insert_expand",
271 #endif
272 #ifdef FEAT_JUMPLIST
273 "+jumplist",
274 #else
275 "-jumplist",
276 #endif
277 #ifdef FEAT_KEYMAP
278 "+keymap",
279 #else
280 "-keymap",
281 #endif
282 #ifdef FEAT_LANGMAP
283 "+langmap",
284 #else
285 "-langmap",
286 #endif
287 #ifdef FEAT_LIBCALL
288 "+libcall",
289 #else
290 "-libcall",
291 #endif
292 #ifdef FEAT_LINEBREAK
293 "+linebreak",
294 #else
295 "-linebreak",
296 #endif
297 #ifdef FEAT_LISP
298 "+lispindent",
299 #else
300 "-lispindent",
301 #endif
302 #ifdef FEAT_LISTCMDS
303 "+listcmds",
304 #else
305 "-listcmds",
306 #endif
307 #ifdef FEAT_LOCALMAP
308 "+localmap",
309 #else
310 "-localmap",
311 #endif
312 #ifdef FEAT_MENU
313 "+menu",
314 #else
315 "-menu",
316 #endif
317 #ifdef FEAT_SESSION
318 "+mksession",
319 #else
320 "-mksession",
321 #endif
322 #ifdef FEAT_MODIFY_FNAME
323 "+modify_fname",
324 #else
325 "-modify_fname",
326 #endif
327 #ifdef FEAT_MOUSE
328 "+mouse",
329 # ifdef FEAT_MOUSESHAPE
330 "+mouseshape",
331 # else
332 "-mouseshape",
333 # endif
334 # else
335 "-mouse",
336 #endif
337 #if defined(UNIX) || defined(VMS)
338 # ifdef FEAT_MOUSE_DEC
339 "+mouse_dec",
340 # else
341 "-mouse_dec",
342 # endif
343 # ifdef FEAT_MOUSE_GPM
344 "+mouse_gpm",
345 # else
346 "-mouse_gpm",
347 # endif
348 # ifdef FEAT_MOUSE_JSB
349 "+mouse_jsbterm",
350 # else
351 "-mouse_jsbterm",
352 # endif
353 # ifdef FEAT_MOUSE_NET
354 "+mouse_netterm",
355 # else
356 "-mouse_netterm",
357 # endif
358 # ifdef FEAT_SYSMOUSE
359 "+mouse_sysmouse",
360 # else
361 "-mouse_sysmouse",
362 # endif
363 # ifdef FEAT_MOUSE_XTERM
364 "+mouse_xterm",
365 # else
366 "-mouse_xterm",
367 # endif
368 #endif
369 #ifdef __QNX__
370 # ifdef FEAT_MOUSE_PTERM
371 "+mouse_pterm",
372 # else
373 "-mouse_pterm",
374 # endif
375 #endif
376 #ifdef FEAT_MBYTE_IME
377 # ifdef DYNAMIC_IME
378 "+multi_byte_ime/dyn",
379 # else
380 "+multi_byte_ime",
381 # endif
382 #else
383 # ifdef FEAT_MBYTE
384 "+multi_byte",
385 # else
386 "-multi_byte",
387 # endif
388 #endif
389 #ifdef FEAT_MULTI_LANG
390 "+multi_lang",
391 #else
392 "-multi_lang",
393 #endif
394 #ifdef FEAT_MZSCHEME
395 # ifdef DYNAMIC_MZSCHEME
396 "+mzscheme/dyn",
397 # else
398 "+mzscheme",
399 # endif
400 #else
401 "-mzscheme",
402 #endif
403 #ifdef FEAT_NETBEANS_INTG
404 "+netbeans_intg",
405 #else
406 "-netbeans_intg",
407 #endif
408 #ifdef FEAT_GUI_W32
409 # ifdef FEAT_OLE
410 "+ole",
411 # else
412 "-ole",
413 # endif
414 #endif
415 #ifdef FEAT_OSFILETYPE
416 "+osfiletype",
417 #else
418 "-osfiletype",
419 #endif
420 #ifdef FEAT_PATH_EXTRA
421 "+path_extra",
422 #else
423 "-path_extra",
424 #endif
425 #ifdef FEAT_PERL
426 # ifdef DYNAMIC_PERL
427 "+perl/dyn",
428 # else
429 "+perl",
430 # endif
431 #else
432 "-perl",
433 #endif
434 #ifdef FEAT_PRINTER
435 # ifdef FEAT_POSTSCRIPT
436 "+postscript",
437 # else
438 "-postscript",
439 # endif
440 "+printer",
441 #else
442 "-printer",
443 #endif
444 #ifdef FEAT_PROFILE
445 "+profile",
446 #else
447 "-profile",
448 #endif
449 #ifdef FEAT_PYTHON
450 # ifdef DYNAMIC_PYTHON
451 "+python/dyn",
452 # else
453 "+python",
454 # endif
455 #else
456 "-python",
457 #endif
458 #ifdef FEAT_QUICKFIX
459 "+quickfix",
460 #else
461 "-quickfix",
462 #endif
463 #ifdef FEAT_RELTIME
464 "+reltime",
465 #else
466 "-reltime",
467 #endif
468 #ifdef FEAT_RIGHTLEFT
469 "+rightleft",
470 #else
471 "-rightleft",
472 #endif
473 #ifdef FEAT_RUBY
474 # ifdef DYNAMIC_RUBY
475 "+ruby/dyn",
476 # else
477 "+ruby",
478 # endif
479 #else
480 "-ruby",
481 #endif
482 #ifdef FEAT_SCROLLBIND
483 "+scrollbind",
484 #else
485 "-scrollbind",
486 #endif
487 #ifdef FEAT_SIGNS
488 "+signs",
489 #else
490 "-signs",
491 #endif
492 #ifdef FEAT_SMARTINDENT
493 "+smartindent",
494 #else
495 "-smartindent",
496 #endif
497 #ifdef FEAT_SNIFF
498 "+sniff",
499 #else
500 "-sniff",
501 #endif
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
682 static int included_patches[] =
683 { /* Add new patch number below this line */
684 /**/
685 182,
686 /**/
687 181,
688 /**/
689 180,
690 /**/
691 179,
692 /**/
693 178,
694 /**/
695 177,
696 /**/
697 176,
698 /**/
699 175,
700 /**/
701 174,
702 /**/
703 173,
704 /**/
705 172,
706 /**/
707 171,
708 /**/
709 170,
710 /**/
711 169,
712 /**/
713 168,
714 /**/
715 167,
716 /**/
717 166,
718 /**/
719 165,
720 /**/
721 164,
722 /**/
723 163,
724 /**/
725 162,
726 /**/
727 161,
728 /**/
729 160,
730 /**/
731 159,
732 /**/
733 158,
734 /**/
735 157,
736 /**/
737 156,
738 /**/
739 155,
740 /**/
741 154,
742 /**/
743 153,
744 /**/
745 152,
746 /**/
747 151,
748 /**/
749 150,
750 /**/
751 149,
752 /**/
753 148,
754 /**/
755 147,
756 /**/
757 146,
758 /**/
759 145,
760 /**/
761 144,
762 /**/
763 143,
764 /**/
765 142,
766 /**/
767 141,
768 /**/
769 140,
770 /**/
771 139,
772 /**/
773 138,
774 /**/
775 137,
776 /**/
777 136,
778 /**/
779 135,
780 /**/
781 134,
782 /**/
783 133,
784 /**/
785 132,
786 /**/
787 131,
788 /**/
789 130,
790 /**/
791 129,
792 /**/
793 128,
794 /**/
795 127,
796 /**/
797 126,
798 /**/
799 125,
800 /**/
801 124,
802 /**/
803 123,
804 /**/
805 122,
806 /**/
807 121,
808 /**/
809 120,
810 /**/
811 119,
812 /**/
813 118,
814 /**/
815 117,
816 /**/
817 116,
818 /**/
819 115,
820 /**/
821 114,
822 /**/
823 113,
824 /**/
825 112,
826 /**/
827 111,
828 /**/
829 110,
830 /**/
831 109,
832 /**/
833 108,
834 /**/
835 107,
836 /**/
837 106,
838 /**/
839 105,
840 /**/
841 104,
842 /**/
843 103,
844 /**/
845 102,
846 /**/
847 101,
848 /**/
849 100,
850 /**/
852 /**/
854 /**/
856 /**/
858 /**/
860 /**/
862 /**/
864 /**/
866 /**/
868 /**/
870 /**/
872 /**/
874 /**/
876 /**/
878 /**/
880 /**/
882 /**/
884 /**/
886 /**/
888 /**/
890 /**/
892 /**/
894 /**/
896 /**/
898 /**/
900 /**/
902 /**/
904 /**/
906 /**/
908 /**/
910 /**/
912 /**/
914 /**/
916 /**/
918 /**/
920 /**/
922 /**/
924 /**/
926 /**/
928 /**/
930 /**/
932 /**/
934 /**/
936 /**/
938 /**/
940 /**/
942 /**/
944 /**/
946 /**/
948 /**/
950 /**/
952 /**/
954 /**/
956 /**/
958 /**/
960 /**/
962 /**/
964 /**/
966 /**/
968 /**/
970 /**/
972 /**/
974 /**/
976 /**/
978 /**/
980 /**/
982 /**/
984 /**/
986 /**/
988 /**/
990 /**/
992 /**/
994 /**/
996 /**/
998 /**/
1000 /**/
1002 /**/
1004 /**/
1006 /**/
1008 /**/
1010 /**/
1012 /**/
1014 /**/
1016 /**/
1018 /**/
1020 /**/
1022 /**/
1024 /**/
1026 /**/
1028 /**/
1030 /**/
1032 /**/
1034 /**/
1036 /**/
1038 /**/
1040 /**/
1042 /**/
1044 /**/
1046 /**/
1048 /**/
1053 * Place to put a short description when adding a feature with a patch.
1054 * Keep it short, e.g.,: "relative numbers", "persistent undo".
1055 * Also add a comment marker to separate the lines.
1056 * See the official Vim patches for the diff format: It must use a context of
1057 * one line only. Create it by hand or use "diff -C2" and edit the patch.
1059 static char *(extra_patches[]) =
1060 { /* Add your patch description below this line */
1061 /**/
1062 NULL
1066 highest_patch()
1068 int i;
1069 int h = 0;
1071 for (i = 0; included_patches[i] != 0; ++i)
1072 if (included_patches[i] > h)
1073 h = included_patches[i];
1074 return h;
1077 #if defined(FEAT_EVAL) || defined(PROTO)
1079 * Return TRUE if patch "n" has been included.
1082 has_patch(n)
1083 int n;
1085 int i;
1087 for (i = 0; included_patches[i] != 0; ++i)
1088 if (included_patches[i] == n)
1089 return TRUE;
1090 return FALSE;
1092 #endif
1094 void
1095 ex_version(eap)
1096 exarg_T *eap;
1099 * Ignore a ":version 9.99" command.
1101 if (*eap->arg == NUL)
1103 msg_putchar('\n');
1104 list_version();
1108 void
1109 list_version()
1111 int i;
1112 int first;
1113 char *s = "";
1116 * When adding features here, don't forget to update the list of
1117 * internal variables in eval.c!
1119 MSG(longVersion);
1120 #ifdef WIN3264
1121 # ifdef FEAT_GUI_W32
1122 # if defined(_MSC_VER) && (_MSC_VER <= 1010)
1123 /* Only MS VC 4.1 and earlier can do Win32s */
1124 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version"));
1125 # else
1126 # ifdef _WIN64
1127 MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
1128 # else
1129 MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
1130 # endif
1131 # endif
1132 if (gui_is_win32s())
1133 MSG_PUTS(_(" in Win32s mode"));
1134 # ifdef FEAT_OLE
1135 MSG_PUTS(_(" with OLE support"));
1136 # endif
1137 # else
1138 # ifdef _WIN64
1139 MSG_PUTS(_("\nMS-Windows 64-bit console version"));
1140 # else
1141 MSG_PUTS(_("\nMS-Windows 32-bit console version"));
1142 # endif
1143 # endif
1144 #endif
1145 #ifdef WIN16
1146 MSG_PUTS(_("\nMS-Windows 16-bit version"));
1147 #endif
1148 #ifdef MSDOS
1149 # ifdef DJGPP
1150 MSG_PUTS(_("\n32-bit MS-DOS version"));
1151 # else
1152 MSG_PUTS(_("\n16-bit MS-DOS version"));
1153 # endif
1154 #endif
1155 #ifdef MACOS
1156 # ifdef MACOS_X
1157 # ifdef MACOS_X_UNIX
1158 MSG_PUTS(_("\nMacOS X (unix) version"));
1159 # else
1160 MSG_PUTS(_("\nMacOS X version"));
1161 # endif
1162 #else
1163 MSG_PUTS(_("\nMacOS version"));
1164 # endif
1165 #endif
1167 #ifdef RISCOS
1168 MSG_PUTS(_("\nRISC OS version"));
1169 #endif
1170 #ifdef VMS
1171 MSG_PUTS(_("\nOpenVMS version"));
1172 # ifdef HAVE_PATHDEF
1173 if (*compiled_arch != NUL)
1175 MSG_PUTS(" - ");
1176 MSG_PUTS(compiled_arch);
1178 # endif
1180 #endif
1182 /* Print the list of patch numbers if there is at least one. */
1183 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */
1184 if (included_patches[0] != 0)
1186 MSG_PUTS(_("\nIncluded patches: "));
1187 first = -1;
1188 /* find last one */
1189 for (i = 0; included_patches[i] != 0; ++i)
1191 while (--i >= 0)
1193 if (first < 0)
1194 first = included_patches[i];
1195 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
1197 MSG_PUTS(s);
1198 s = ", ";
1199 msg_outnum((long)first);
1200 if (first != included_patches[i])
1202 MSG_PUTS("-");
1203 msg_outnum((long)included_patches[i]);
1205 first = -1;
1210 /* Print the list of extra patch descriptions if there is at least one. */
1211 if (extra_patches[0] != NULL)
1213 MSG_PUTS(_("\nExtra patches: "));
1214 s = "";
1215 for (i = 0; extra_patches[i] != NULL; ++i)
1217 MSG_PUTS(s);
1218 s = ", ";
1219 MSG_PUTS(extra_patches[i]);
1223 #ifdef MODIFIED_BY
1224 MSG_PUTS("\n");
1225 MSG_PUTS(_("Modified by "));
1226 MSG_PUTS(MODIFIED_BY);
1227 #endif
1229 #ifdef HAVE_PATHDEF
1230 if (*compiled_user != NUL || *compiled_sys != NUL)
1232 MSG_PUTS(_("\nCompiled "));
1233 if (*compiled_user != NUL)
1235 MSG_PUTS(_("by "));
1236 MSG_PUTS(compiled_user);
1238 if (*compiled_sys != NUL)
1240 MSG_PUTS("@");
1241 MSG_PUTS(compiled_sys);
1244 #endif
1246 #ifdef FEAT_HUGE
1247 MSG_PUTS(_("\nHuge version "));
1248 #else
1249 # ifdef FEAT_BIG
1250 MSG_PUTS(_("\nBig version "));
1251 # else
1252 # ifdef FEAT_NORMAL
1253 MSG_PUTS(_("\nNormal version "));
1254 # else
1255 # ifdef FEAT_SMALL
1256 MSG_PUTS(_("\nSmall version "));
1257 # else
1258 MSG_PUTS(_("\nTiny version "));
1259 # endif
1260 # endif
1261 # endif
1262 #endif
1263 #ifndef FEAT_GUI
1264 MSG_PUTS(_("without GUI."));
1265 #else
1266 # ifdef FEAT_GUI_GTK
1267 # ifdef FEAT_GUI_GNOME
1268 # ifdef HAVE_GTK2
1269 MSG_PUTS(_("with GTK2-GNOME GUI."));
1270 # else
1271 MSG_PUTS(_("with GTK-GNOME GUI."));
1272 # endif
1273 # else
1274 # ifdef HAVE_GTK2
1275 MSG_PUTS(_("with GTK2 GUI."));
1276 # else
1277 MSG_PUTS(_("with GTK GUI."));
1278 # endif
1279 # endif
1280 # else
1281 # ifdef FEAT_GUI_MOTIF
1282 MSG_PUTS(_("with X11-Motif GUI."));
1283 # else
1284 # ifdef FEAT_GUI_ATHENA
1285 # ifdef FEAT_GUI_NEXTAW
1286 MSG_PUTS(_("with X11-neXtaw GUI."));
1287 # else
1288 MSG_PUTS(_("with X11-Athena GUI."));
1289 # endif
1290 # else
1291 # ifdef FEAT_GUI_PHOTON
1292 MSG_PUTS(_("with Photon GUI."));
1293 # else
1294 # if defined(MSWIN)
1295 MSG_PUTS(_("with GUI."));
1296 # else
1297 # if defined (TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
1298 MSG_PUTS(_("with Carbon GUI."));
1299 # else
1300 # if defined (TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
1301 MSG_PUTS(_("with Cocoa GUI."));
1302 # else
1303 # if defined (MACOS)
1304 MSG_PUTS(_("with (classic) GUI."));
1305 # endif
1306 # endif
1307 # endif
1308 # endif
1309 # endif
1310 # endif
1311 # endif
1312 # endif
1313 #endif
1314 version_msg(_(" Features included (+) or not (-):\n"));
1316 /* print all the features */
1317 for (i = 0; features[i] != NULL; ++i)
1319 version_msg(features[i]);
1320 if (msg_col > 0)
1321 version_msg(" ");
1324 version_msg("\n");
1325 #ifdef SYS_VIMRC_FILE
1326 version_msg(_(" system vimrc file: \""));
1327 version_msg(SYS_VIMRC_FILE);
1328 version_msg("\"\n");
1329 #endif
1330 #ifdef USR_VIMRC_FILE
1331 version_msg(_(" user vimrc file: \""));
1332 version_msg(USR_VIMRC_FILE);
1333 version_msg("\"\n");
1334 #endif
1335 #ifdef USR_VIMRC_FILE2
1336 version_msg(_(" 2nd user vimrc file: \""));
1337 version_msg(USR_VIMRC_FILE2);
1338 version_msg("\"\n");
1339 #endif
1340 #ifdef USR_VIMRC_FILE3
1341 version_msg(_(" 3rd user vimrc file: \""));
1342 version_msg(USR_VIMRC_FILE3);
1343 version_msg("\"\n");
1344 #endif
1345 #ifdef USR_EXRC_FILE
1346 version_msg(_(" user exrc file: \""));
1347 version_msg(USR_EXRC_FILE);
1348 version_msg("\"\n");
1349 #endif
1350 #ifdef USR_EXRC_FILE2
1351 version_msg(_(" 2nd user exrc file: \""));
1352 version_msg(USR_EXRC_FILE2);
1353 version_msg("\"\n");
1354 #endif
1355 #ifdef FEAT_GUI
1356 # ifdef SYS_GVIMRC_FILE
1357 version_msg(_(" system gvimrc file: \""));
1358 version_msg(SYS_GVIMRC_FILE);
1359 version_msg("\"\n");
1360 # endif
1361 version_msg(_(" user gvimrc file: \""));
1362 version_msg(USR_GVIMRC_FILE);
1363 version_msg("\"\n");
1364 # ifdef USR_GVIMRC_FILE2
1365 version_msg(_("2nd user gvimrc file: \""));
1366 version_msg(USR_GVIMRC_FILE2);
1367 version_msg("\"\n");
1368 # endif
1369 # ifdef USR_GVIMRC_FILE3
1370 version_msg(_("3rd user gvimrc file: \""));
1371 version_msg(USR_GVIMRC_FILE3);
1372 version_msg("\"\n");
1373 # endif
1374 #endif
1375 #ifdef FEAT_GUI
1376 # ifdef SYS_MENU_FILE
1377 version_msg(_(" system menu file: \""));
1378 version_msg(SYS_MENU_FILE);
1379 version_msg("\"\n");
1380 # endif
1381 #endif
1382 #ifdef HAVE_PATHDEF
1383 if (*default_vim_dir != NUL)
1385 version_msg(_(" fall-back for $VIM: \""));
1386 version_msg((char *)default_vim_dir);
1387 version_msg("\"\n");
1389 if (*default_vimruntime_dir != NUL)
1391 version_msg(_(" f-b for $VIMRUNTIME: \""));
1392 version_msg((char *)default_vimruntime_dir);
1393 version_msg("\"\n");
1395 version_msg(_("Compilation: "));
1396 version_msg((char *)all_cflags);
1397 version_msg("\n");
1398 #ifdef VMS
1399 if (*compiler_version != NUL)
1401 version_msg(_("Compiler: "));
1402 version_msg((char *)compiler_version);
1403 version_msg("\n");
1405 #endif
1406 version_msg(_("Linking: "));
1407 version_msg((char *)all_lflags);
1408 #endif
1409 #ifdef DEBUG
1410 version_msg("\n");
1411 version_msg(_(" DEBUG BUILD"));
1412 #endif
1416 * Output a string for the version message. If it's going to wrap, output a
1417 * newline, unless the message is too long to fit on the screen anyway.
1419 static void
1420 version_msg(s)
1421 char *s;
1423 int len = (int)STRLEN(s);
1425 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
1426 && *s != '\n')
1427 msg_putchar('\n');
1428 if (!got_int)
1429 MSG_PUTS(s);
1432 static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr));
1435 * Give an introductory message about Vim.
1436 * Only used when starting Vim on an empty file, without a file name.
1437 * Or with the ":intro" command (for Sven :-).
1439 void
1440 intro_message(colon)
1441 int colon; /* TRUE for ":intro" */
1443 int i;
1444 int row;
1445 int blanklines;
1446 int sponsor;
1447 char *p;
1448 static char *(lines[]) =
1450 N_("VIM - Vi IMproved"),
1452 N_("version "),
1453 N_("by Bram Moolenaar et al."),
1454 #ifdef MODIFIED_BY
1455 " ",
1456 #endif
1457 N_("Vim is open source and freely distributable"),
1459 N_("Help poor children in Uganda!"),
1460 N_("type :help iccf<Enter> for information "),
1462 N_("type :q<Enter> to exit "),
1463 N_("type :help<Enter> or <F1> for on-line help"),
1464 N_("type :help version7<Enter> for version info"),
1465 NULL,
1467 N_("Running in Vi compatible mode"),
1468 N_("type :set nocp<Enter> for Vim defaults"),
1469 N_("type :help cp-default<Enter> for info on this"),
1471 #ifdef FEAT_GUI
1472 static char *(gui_lines[]) =
1474 NULL,
1475 NULL,
1476 NULL,
1477 NULL,
1478 #ifdef MODIFIED_BY
1479 NULL,
1480 #endif
1481 NULL,
1482 NULL,
1483 NULL,
1484 N_("menu Help->Orphans for information "),
1485 NULL,
1486 N_("Running modeless, typed text is inserted"),
1487 N_("menu Edit->Global Settings->Toggle Insert Mode "),
1488 N_(" for two modes "),
1489 NULL,
1490 NULL,
1491 NULL,
1492 N_("menu Edit->Global Settings->Toggle Vi Compatible"),
1493 N_(" for Vim defaults "),
1495 #endif
1497 /* blanklines = screen height - # message lines */
1498 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
1499 if (!p_cp)
1500 blanklines += 4; /* add 4 for not showing "Vi compatible" message */
1501 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
1502 if (mch_windows95())
1503 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */
1504 #endif
1506 #ifdef FEAT_WINDOWS
1507 /* Don't overwrite a statusline. Depends on 'cmdheight'. */
1508 if (p_ls > 1)
1509 blanklines -= Rows - topframe->fr_height;
1510 #endif
1511 if (blanklines < 0)
1512 blanklines = 0;
1514 /* Show the sponsor and register message one out of four times, the Uganda
1515 * message two out of four times. */
1516 sponsor = (int)time(NULL);
1517 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
1519 /* start displaying the message lines after half of the blank lines */
1520 row = blanklines / 2;
1521 if ((row >= 2 && Columns >= 50) || colon)
1523 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i)
1525 p = lines[i];
1526 #ifdef FEAT_GUI
1527 if (p_im && gui.in_use && gui_lines[i] != NULL)
1528 p = gui_lines[i];
1529 #endif
1530 if (p == NULL)
1532 if (!p_cp)
1533 break;
1534 continue;
1536 if (sponsor != 0)
1538 if (strstr(p, "children") != NULL)
1539 p = sponsor < 0
1540 ? N_("Sponsor Vim development!")
1541 : N_("Become a registered Vim user!");
1542 else if (strstr(p, "iccf") != NULL)
1543 p = sponsor < 0
1544 ? N_("type :help sponsor<Enter> for information ")
1545 : N_("type :help register<Enter> for information ");
1546 else if (strstr(p, "Orphans") != NULL)
1547 p = N_("menu Help->Sponsor/Register for information ");
1549 if (*p != NUL)
1550 do_intro_line(row, (char_u *)_(p), i == 2, 0);
1551 ++row;
1553 #if defined(WIN3264) && !defined(FEAT_GUI_W32)
1554 if (mch_windows95())
1556 do_intro_line(++row,
1557 (char_u *)_("WARNING: Windows 95/98/ME detected"),
1558 FALSE, hl_attr(HLF_E));
1559 do_intro_line(++row,
1560 (char_u *)_("type :help windows95<Enter> for info on this"),
1561 FALSE, 0);
1563 #endif
1566 /* Make the wait-return message appear just below the text. */
1567 if (colon)
1568 msg_row = row;
1571 static void
1572 do_intro_line(row, mesg, add_version, attr)
1573 int row;
1574 char_u *mesg;
1575 int add_version;
1576 int attr;
1578 char_u vers[20];
1579 int col;
1580 char_u *p;
1581 int l;
1582 int clen;
1583 #ifdef MODIFIED_BY
1584 # define MODBY_LEN 150
1585 char_u modby[MODBY_LEN];
1587 if (*mesg == ' ')
1589 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
1590 l = STRLEN(modby);
1591 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
1592 mesg = modby;
1594 #endif
1596 /* Center the message horizontally. */
1597 col = vim_strsize(mesg);
1598 if (add_version)
1600 STRCPY(vers, mediumVersion);
1601 if (highest_patch())
1603 /* Check for 9.9x or 9.9xx, alpha/beta version */
1604 if (isalpha((int)mediumVersion[3]))
1606 if (isalpha((int)mediumVersion[4]))
1607 sprintf((char *)vers + 5, ".%d%s", highest_patch(),
1608 mediumVersion + 5);
1609 else
1610 sprintf((char *)vers + 4, ".%d%s", highest_patch(),
1611 mediumVersion + 4);
1613 else
1614 sprintf((char *)vers + 3, ".%d", highest_patch());
1616 col += (int)STRLEN(vers);
1618 col = (Columns - col) / 2;
1619 if (col < 0)
1620 col = 0;
1622 /* Split up in parts to highlight <> items differently. */
1623 for (p = mesg; *p != NUL; p += l)
1625 clen = 0;
1626 for (l = 0; p[l] != NUL
1627 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
1629 #ifdef FEAT_MBYTE
1630 if (has_mbyte)
1632 clen += ptr2cells(p + l);
1633 l += (*mb_ptr2len)(p + l) - 1;
1635 else
1636 #endif
1637 clen += byte2cells(p[l]);
1639 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr);
1640 col += clen;
1643 /* Add the version number to the version line. */
1644 if (add_version)
1645 screen_puts(vers, row, col, 0);
1649 * ":intro": clear screen, display intro screen and wait for return.
1651 void
1652 ex_intro(eap)
1653 exarg_T *eap UNUSED;
1655 screenclear();
1656 intro_message(TRUE);
1657 wait_return(TRUE);