Mercurial > vim
annotate src/version.c @ 7076:6ad58a7e995b v7.4.850
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 1 19:50:09 2015 +0200
patch 7.4.850
Problem: <Esc> does not show up.
Solution: Use > and <. (Kazunobu Kuriyama)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 01 Sep 2015 20:00:04 +0200 |
parents | c8efa41dd451 |
children | 383d6f39669b |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 #include "vim.h" | |
11 | |
12 #ifdef AMIGA | |
13 # include <time.h> /* for time() */ | |
14 #endif | |
15 | |
16 /* | |
17 * Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred) | |
18 * It has been changed beyond recognition since then. | |
19 * | |
26 | 20 * Differences between version 6.x and 7.x can be found with ":help version7". |
7 | 21 * Differences between version 5.x and 6.x can be found with ":help version6". |
22 * Differences between version 4.x and 5.x can be found with ":help version5". | |
23 * Differences between version 3.0 and 4.x can be found with ":help version4". | |
24 * All the remarks about older versions have been removed, they are not very | |
25 * interesting. | |
26 */ | |
27 | |
28 #include "version.h" | |
29 | |
378 | 30 char *Version = VIM_VERSION_SHORT; |
31 static char *mediumVersion = VIM_VERSION_MEDIUM; | |
7 | 32 |
33 #if defined(HAVE_DATE_TIME) || defined(PROTO) | |
34 # if (defined(VMS) && defined(VAXC)) || defined(PROTO) | |
35 char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__) | |
36 + sizeof(__TIME__) + 3]; | |
4147 | 37 |
7 | 38 void |
39 make_version() | |
40 { | |
41 /* | |
42 * Construct the long version string. Necessary because | |
43 * VAX C can't catenate strings in the preprocessor. | |
44 */ | |
45 strcpy(longVersion, VIM_VERSION_LONG_DATE); | |
46 strcat(longVersion, __DATE__); | |
47 strcat(longVersion, " "); | |
48 strcat(longVersion, __TIME__); | |
49 strcat(longVersion, ")"); | |
50 } | |
51 # else | |
52 char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")"; | |
53 # endif | |
54 #else | |
55 char *longVersion = VIM_VERSION_LONG; | |
56 #endif | |
57 | |
5166
467efeee8f9e
updated for version 7.4a.009
Bram Moolenaar <bram@vim.org>
parents:
5164
diff
changeset
|
58 static void list_features __ARGS((void)); |
7 | 59 static void version_msg __ARGS((char *s)); |
60 | |
61 static char *(features[]) = | |
62 { | |
5316 | 63 #ifdef HAVE_ACL |
64 "+acl", | |
65 #else | |
66 "-acl", | |
67 #endif | |
7 | 68 #ifdef AMIGA /* only for Amiga systems */ |
69 # ifdef FEAT_ARP | |
70 "+ARP", | |
71 # else | |
72 "-ARP", | |
73 # endif | |
74 #endif | |
75 #ifdef FEAT_ARABIC | |
76 "+arabic", | |
77 #else | |
78 "-arabic", | |
79 #endif | |
80 #ifdef FEAT_AUTOCMD | |
81 "+autocmd", | |
82 #else | |
83 "-autocmd", | |
84 #endif | |
85 #ifdef FEAT_BEVAL | |
86 "+balloon_eval", | |
87 #else | |
88 "-balloon_eval", | |
89 #endif | |
90 #ifdef FEAT_BROWSE | |
91 "+browse", | |
92 #else | |
93 "-browse", | |
94 #endif | |
95 #ifdef NO_BUILTIN_TCAPS | |
96 "-builtin_terms", | |
97 #endif | |
98 #ifdef SOME_BUILTIN_TCAPS | |
99 "+builtin_terms", | |
100 #endif | |
101 #ifdef ALL_BUILTIN_TCAPS | |
102 "++builtin_terms", | |
103 #endif | |
104 #ifdef FEAT_BYTEOFF | |
105 "+byte_offset", | |
106 #else | |
107 "-byte_offset", | |
108 #endif | |
109 #ifdef FEAT_CINDENT | |
110 "+cindent", | |
111 #else | |
112 "-cindent", | |
113 #endif | |
114 #ifdef FEAT_CLIENTSERVER | |
115 "+clientserver", | |
116 #else | |
117 "-clientserver", | |
118 #endif | |
119 #ifdef FEAT_CLIPBOARD | |
120 "+clipboard", | |
121 #else | |
122 "-clipboard", | |
123 #endif | |
124 #ifdef FEAT_CMDL_COMPL | |
125 "+cmdline_compl", | |
126 #else | |
127 "-cmdline_compl", | |
128 #endif | |
129 #ifdef FEAT_CMDHIST | |
130 "+cmdline_hist", | |
131 #else | |
132 "-cmdline_hist", | |
133 #endif | |
134 #ifdef FEAT_CMDL_INFO | |
135 "+cmdline_info", | |
136 #else | |
137 "-cmdline_info", | |
138 #endif | |
139 #ifdef FEAT_COMMENTS | |
140 "+comments", | |
141 #else | |
142 "-comments", | |
143 #endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
144 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
145 "+conceal", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
146 #else |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
147 "-conceal", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
148 #endif |
7 | 149 #ifdef FEAT_CRYPT |
150 "+cryptv", | |
151 #else | |
152 "-cryptv", | |
153 #endif | |
154 #ifdef FEAT_CSCOPE | |
155 "+cscope", | |
156 #else | |
157 "-cscope", | |
158 #endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
159 #ifdef FEAT_CURSORBIND |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
160 "+cursorbind", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
161 #else |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
162 "-cursorbind", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
163 #endif |
647 | 164 #ifdef CURSOR_SHAPE |
165 "+cursorshape", | |
166 #else | |
167 "-cursorshape", | |
168 #endif | |
7 | 169 #if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG) |
170 "+dialog_con_gui", | |
171 #else | |
172 # if defined(FEAT_CON_DIALOG) | |
173 "+dialog_con", | |
174 # else | |
175 # if defined(FEAT_GUI_DIALOG) | |
176 "+dialog_gui", | |
177 # else | |
178 "-dialog", | |
179 # endif | |
180 # endif | |
181 #endif | |
182 #ifdef FEAT_DIFF | |
183 "+diff", | |
184 #else | |
185 "-diff", | |
186 #endif | |
187 #ifdef FEAT_DIGRAPHS | |
188 "+digraphs", | |
189 #else | |
190 "-digraphs", | |
191 #endif | |
6110 | 192 #ifdef FEAT_GUI_W32 |
193 # ifdef FEAT_DIRECTX | |
194 "+directx", | |
195 # else | |
196 "-directx", | |
197 # endif | |
198 #endif | |
7 | 199 #ifdef FEAT_DND |
200 "+dnd", | |
201 #else | |
202 "-dnd", | |
203 #endif | |
204 #ifdef EBCDIC | |
205 "+ebcdic", | |
206 #else | |
207 "-ebcdic", | |
208 #endif | |
209 #ifdef FEAT_EMACS_TAGS | |
210 "+emacs_tags", | |
211 #else | |
212 "-emacs_tags", | |
213 #endif | |
214 #ifdef FEAT_EVAL | |
215 "+eval", | |
216 #else | |
217 "-eval", | |
218 #endif | |
219 #ifdef FEAT_EX_EXTRA | |
220 "+ex_extra", | |
221 #else | |
222 "-ex_extra", | |
223 #endif | |
224 #ifdef FEAT_SEARCH_EXTRA | |
225 "+extra_search", | |
226 #else | |
227 "-extra_search", | |
228 #endif | |
229 #ifdef FEAT_FKMAP | |
230 "+farsi", | |
231 #else | |
232 "-farsi", | |
233 #endif | |
234 #ifdef FEAT_SEARCHPATH | |
235 "+file_in_path", | |
236 #else | |
237 "-file_in_path", | |
238 #endif | |
239 #ifdef FEAT_FIND_ID | |
240 "+find_in_path", | |
241 #else | |
242 "-find_in_path", | |
243 #endif | |
1621 | 244 #ifdef FEAT_FLOAT |
245 "+float", | |
246 #else | |
247 "-float", | |
248 #endif | |
7 | 249 #ifdef FEAT_FOLDING |
250 "+folding", | |
251 #else | |
252 "-folding", | |
253 #endif | |
254 #ifdef FEAT_FOOTER | |
255 "+footer", | |
256 #else | |
257 "-footer", | |
258 #endif | |
259 /* only interesting on Unix systems */ | |
260 #if !defined(USE_SYSTEM) && defined(UNIX) | |
261 "+fork()", | |
262 #endif | |
263 #ifdef FEAT_GETTEXT | |
264 # ifdef DYNAMIC_GETTEXT | |
265 "+gettext/dyn", | |
266 # else | |
267 "+gettext", | |
268 # endif | |
269 #else | |
270 "-gettext", | |
271 #endif | |
272 #ifdef FEAT_HANGULIN | |
273 "+hangul_input", | |
274 #else | |
275 "-hangul_input", | |
276 #endif | |
277 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV) | |
278 # ifdef DYNAMIC_ICONV | |
279 "+iconv/dyn", | |
280 # else | |
281 "+iconv", | |
282 # endif | |
283 #else | |
284 "-iconv", | |
285 #endif | |
286 #ifdef FEAT_INS_EXPAND | |
287 "+insert_expand", | |
288 #else | |
289 "-insert_expand", | |
290 #endif | |
291 #ifdef FEAT_JUMPLIST | |
292 "+jumplist", | |
293 #else | |
294 "-jumplist", | |
295 #endif | |
296 #ifdef FEAT_KEYMAP | |
297 "+keymap", | |
298 #else | |
299 "-keymap", | |
300 #endif | |
301 #ifdef FEAT_LANGMAP | |
302 "+langmap", | |
303 #else | |
304 "-langmap", | |
305 #endif | |
306 #ifdef FEAT_LIBCALL | |
307 "+libcall", | |
308 #else | |
309 "-libcall", | |
310 #endif | |
311 #ifdef FEAT_LINEBREAK | |
312 "+linebreak", | |
313 #else | |
314 "-linebreak", | |
315 #endif | |
316 #ifdef FEAT_LISP | |
317 "+lispindent", | |
318 #else | |
319 "-lispindent", | |
320 #endif | |
321 #ifdef FEAT_LISTCMDS | |
322 "+listcmds", | |
323 #else | |
324 "-listcmds", | |
325 #endif | |
326 #ifdef FEAT_LOCALMAP | |
327 "+localmap", | |
328 #else | |
329 "-localmap", | |
330 #endif | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
331 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
332 # ifdef DYNAMIC_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
333 "+lua/dyn", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
334 # else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
335 "+lua", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
336 # endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
337 #else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
338 "-lua", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
339 #endif |
7 | 340 #ifdef FEAT_MENU |
341 "+menu", | |
342 #else | |
343 "-menu", | |
344 #endif | |
345 #ifdef FEAT_SESSION | |
346 "+mksession", | |
347 #else | |
348 "-mksession", | |
349 #endif | |
350 #ifdef FEAT_MODIFY_FNAME | |
351 "+modify_fname", | |
352 #else | |
353 "-modify_fname", | |
354 #endif | |
355 #ifdef FEAT_MOUSE | |
356 "+mouse", | |
357 # ifdef FEAT_MOUSESHAPE | |
358 "+mouseshape", | |
359 # else | |
360 "-mouseshape", | |
361 # endif | |
362 # else | |
363 "-mouse", | |
364 #endif | |
3898 | 365 |
7 | 366 #if defined(UNIX) || defined(VMS) |
367 # ifdef FEAT_MOUSE_DEC | |
368 "+mouse_dec", | |
369 # else | |
370 "-mouse_dec", | |
371 # endif | |
372 # ifdef FEAT_MOUSE_GPM | |
373 "+mouse_gpm", | |
374 # else | |
375 "-mouse_gpm", | |
376 # endif | |
377 # ifdef FEAT_MOUSE_JSB | |
378 "+mouse_jsbterm", | |
379 # else | |
380 "-mouse_jsbterm", | |
381 # endif | |
382 # ifdef FEAT_MOUSE_NET | |
383 "+mouse_netterm", | |
384 # else | |
385 "-mouse_netterm", | |
386 # endif | |
387 #endif | |
3898 | 388 |
7 | 389 #ifdef __QNX__ |
390 # ifdef FEAT_MOUSE_PTERM | |
391 "+mouse_pterm", | |
392 # else | |
393 "-mouse_pterm", | |
394 # endif | |
395 #endif | |
3898 | 396 |
397 #if defined(UNIX) || defined(VMS) | |
398 # ifdef FEAT_MOUSE_SGR | |
399 "+mouse_sgr", | |
400 # else | |
401 "-mouse_sgr", | |
402 # endif | |
403 # ifdef FEAT_SYSMOUSE | |
404 "+mouse_sysmouse", | |
405 # else | |
406 "-mouse_sysmouse", | |
407 # endif | |
408 # ifdef FEAT_MOUSE_URXVT | |
409 "+mouse_urxvt", | |
410 # else | |
411 "-mouse_urxvt", | |
412 # endif | |
413 # ifdef FEAT_MOUSE_XTERM | |
414 "+mouse_xterm", | |
415 # else | |
416 "-mouse_xterm", | |
417 # endif | |
418 #endif | |
419 | |
7 | 420 #ifdef FEAT_MBYTE_IME |
421 # ifdef DYNAMIC_IME | |
422 "+multi_byte_ime/dyn", | |
423 # else | |
424 "+multi_byte_ime", | |
425 # endif | |
426 #else | |
427 # ifdef FEAT_MBYTE | |
428 "+multi_byte", | |
429 # else | |
430 "-multi_byte", | |
431 # endif | |
432 #endif | |
433 #ifdef FEAT_MULTI_LANG | |
434 "+multi_lang", | |
435 #else | |
436 "-multi_lang", | |
437 #endif | |
14 | 438 #ifdef FEAT_MZSCHEME |
132 | 439 # ifdef DYNAMIC_MZSCHEME |
440 "+mzscheme/dyn", | |
441 # else | |
14 | 442 "+mzscheme", |
132 | 443 # endif |
14 | 444 #else |
445 "-mzscheme", | |
446 #endif | |
7 | 447 #ifdef FEAT_NETBEANS_INTG |
448 "+netbeans_intg", | |
449 #else | |
450 "-netbeans_intg", | |
451 #endif | |
452 #ifdef FEAT_GUI_W32 | |
453 # ifdef FEAT_OLE | |
454 "+ole", | |
455 # else | |
456 "-ole", | |
457 # endif | |
458 #endif | |
459 #ifdef FEAT_PATH_EXTRA | |
460 "+path_extra", | |
461 #else | |
462 "-path_extra", | |
463 #endif | |
464 #ifdef FEAT_PERL | |
465 # ifdef DYNAMIC_PERL | |
466 "+perl/dyn", | |
467 # else | |
468 "+perl", | |
469 # endif | |
470 #else | |
471 "-perl", | |
472 #endif | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
473 #ifdef FEAT_PERSISTENT_UNDO |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
474 "+persistent_undo", |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
475 #else |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
476 "-persistent_undo", |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
477 #endif |
7 | 478 #ifdef FEAT_PRINTER |
479 # ifdef FEAT_POSTSCRIPT | |
480 "+postscript", | |
481 # else | |
482 "-postscript", | |
483 # endif | |
484 "+printer", | |
485 #else | |
486 "-printer", | |
487 #endif | |
170 | 488 #ifdef FEAT_PROFILE |
489 "+profile", | |
490 #else | |
491 "-profile", | |
492 #endif | |
7 | 493 #ifdef FEAT_PYTHON |
494 # ifdef DYNAMIC_PYTHON | |
495 "+python/dyn", | |
496 # else | |
497 "+python", | |
498 # endif | |
499 #else | |
500 "-python", | |
501 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
502 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
503 # ifdef DYNAMIC_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
504 "+python3/dyn", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
505 # else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
506 "+python3", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
507 # endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
508 #else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
509 "-python3", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
510 #endif |
7 | 511 #ifdef FEAT_QUICKFIX |
512 "+quickfix", | |
513 #else | |
514 "-quickfix", | |
515 #endif | |
857 | 516 #ifdef FEAT_RELTIME |
517 "+reltime", | |
518 #else | |
519 "-reltime", | |
520 #endif | |
7 | 521 #ifdef FEAT_RIGHTLEFT |
522 "+rightleft", | |
523 #else | |
524 "-rightleft", | |
525 #endif | |
526 #ifdef FEAT_RUBY | |
527 # ifdef DYNAMIC_RUBY | |
528 "+ruby/dyn", | |
529 # else | |
530 "+ruby", | |
531 # endif | |
532 #else | |
533 "-ruby", | |
534 #endif | |
535 #ifdef FEAT_SCROLLBIND | |
536 "+scrollbind", | |
537 #else | |
538 "-scrollbind", | |
539 #endif | |
540 #ifdef FEAT_SIGNS | |
541 "+signs", | |
542 #else | |
543 "-signs", | |
544 #endif | |
545 #ifdef FEAT_SMARTINDENT | |
546 "+smartindent", | |
547 #else | |
548 "-smartindent", | |
549 #endif | |
550 #ifdef FEAT_SNIFF | |
551 "+sniff", | |
552 #else | |
553 "-sniff", | |
554 #endif | |
1989 | 555 #ifdef STARTUPTIME |
556 "+startuptime", | |
557 #else | |
558 "-startuptime", | |
559 #endif | |
7 | 560 #ifdef FEAT_STL_OPT |
561 "+statusline", | |
562 #else | |
563 "-statusline", | |
564 #endif | |
565 #ifdef FEAT_SUN_WORKSHOP | |
566 "+sun_workshop", | |
567 #else | |
568 "-sun_workshop", | |
569 #endif | |
570 #ifdef FEAT_SYN_HL | |
571 "+syntax", | |
572 #else | |
573 "-syntax", | |
574 #endif | |
575 /* only interesting on Unix systems */ | |
576 #if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__)) | |
577 "+system()", | |
578 #endif | |
579 #ifdef FEAT_TAG_BINS | |
580 "+tag_binary", | |
581 #else | |
582 "-tag_binary", | |
583 #endif | |
584 #ifdef FEAT_TAG_OLDSTATIC | |
585 "+tag_old_static", | |
586 #else | |
587 "-tag_old_static", | |
588 #endif | |
589 #ifdef FEAT_TAG_ANYWHITE | |
590 "+tag_any_white", | |
591 #else | |
592 "-tag_any_white", | |
593 #endif | |
594 #ifdef FEAT_TCL | |
595 # ifdef DYNAMIC_TCL | |
596 "+tcl/dyn", | |
597 # else | |
598 "+tcl", | |
599 # endif | |
600 #else | |
601 "-tcl", | |
602 #endif | |
603 #if defined(UNIX) || defined(__EMX__) | |
604 /* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */ | |
605 # ifdef TERMINFO | |
606 "+terminfo", | |
607 # else | |
608 "-terminfo", | |
609 # endif | |
610 #else /* unix always includes termcap support */ | |
611 # ifdef HAVE_TGETENT | |
612 "+tgetent", | |
613 # else | |
614 "-tgetent", | |
615 # endif | |
616 #endif | |
617 #ifdef FEAT_TERMRESPONSE | |
618 "+termresponse", | |
619 #else | |
620 "-termresponse", | |
621 #endif | |
622 #ifdef FEAT_TEXTOBJ | |
623 "+textobjects", | |
624 #else | |
625 "-textobjects", | |
626 #endif | |
627 #ifdef FEAT_TITLE | |
628 "+title", | |
629 #else | |
630 "-title", | |
631 #endif | |
632 #ifdef FEAT_TOOLBAR | |
633 "+toolbar", | |
634 #else | |
635 "-toolbar", | |
636 #endif | |
637 #ifdef FEAT_USR_CMDS | |
638 "+user_commands", | |
639 #else | |
640 "-user_commands", | |
641 #endif | |
642 #ifdef FEAT_VERTSPLIT | |
643 "+vertsplit", | |
644 #else | |
645 "-vertsplit", | |
646 #endif | |
647 #ifdef FEAT_VIRTUALEDIT | |
648 "+virtualedit", | |
649 #else | |
650 "-virtualedit", | |
651 #endif | |
652 "+visual", | |
5735 | 653 #ifdef FEAT_VISUALEXTRA |
7 | 654 "+visualextra", |
5735 | 655 #else |
7 | 656 "-visualextra", |
657 #endif | |
658 #ifdef FEAT_VIMINFO | |
659 "+viminfo", | |
660 #else | |
661 "-viminfo", | |
662 #endif | |
663 #ifdef FEAT_VREPLACE | |
664 "+vreplace", | |
665 #else | |
666 "-vreplace", | |
667 #endif | |
668 #ifdef FEAT_WILDIGN | |
669 "+wildignore", | |
670 #else | |
671 "-wildignore", | |
672 #endif | |
673 #ifdef FEAT_WILDMENU | |
674 "+wildmenu", | |
675 #else | |
676 "-wildmenu", | |
677 #endif | |
678 #ifdef FEAT_WINDOWS | |
679 "+windows", | |
680 #else | |
681 "-windows", | |
682 #endif | |
683 #ifdef FEAT_WRITEBACKUP | |
684 "+writebackup", | |
685 #else | |
686 "-writebackup", | |
687 #endif | |
688 #if defined(UNIX) || defined(VMS) | |
689 # ifdef FEAT_X11 | |
690 "+X11", | |
691 # else | |
692 "-X11", | |
693 # endif | |
694 #endif | |
695 #ifdef FEAT_XFONTSET | |
696 "+xfontset", | |
697 #else | |
698 "-xfontset", | |
699 #endif | |
700 #ifdef FEAT_XIM | |
701 "+xim", | |
702 #else | |
703 "-xim", | |
704 #endif | |
705 #if defined(UNIX) || defined(VMS) | |
706 # ifdef USE_XSMP_INTERACT | |
707 "+xsmp_interact", | |
708 # else | |
709 # ifdef USE_XSMP | |
710 "+xsmp", | |
711 # else | |
712 "-xsmp", | |
713 # endif | |
714 # endif | |
715 # ifdef FEAT_XCLIPBOARD | |
716 "+xterm_clipboard", | |
717 # else | |
718 "-xterm_clipboard", | |
719 # endif | |
720 #endif | |
721 #ifdef FEAT_XTERM_SAVE | |
722 "+xterm_save", | |
723 #else | |
724 "-xterm_save", | |
725 #endif | |
726 #ifdef WIN3264 | |
727 # ifdef FEAT_XPM_W32 | |
728 "+xpm_w32", | |
729 # else | |
730 "-xpm_w32", | |
731 # endif | |
5316 | 732 #else |
733 # ifdef HAVE_XPM | |
734 "+xpm", | |
735 # else | |
736 "-xpm", | |
737 # endif | |
7 | 738 #endif |
739 NULL | |
740 }; | |
741 | |
742 static int included_patches[] = | |
743 { /* Add new patch number below this line */ | |
744 /**/ | |
7076
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
745 850, |
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
746 /**/ |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
747 849, |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
748 /**/ |
7072
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
749 848, |
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
750 /**/ |
7070
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
751 847, |
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
752 /**/ |
7068
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
753 846, |
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
754 /**/ |
7066
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
755 845, |
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
756 /**/ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
757 844, |
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
758 /**/ |
7062
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
759 843, |
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
760 /**/ |
7060
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
761 842, |
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
762 /**/ |
7058
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
763 841, |
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
764 /**/ |
7056
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
765 840, |
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
766 /**/ |
7054
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
767 839, |
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
768 /**/ |
7052
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
769 838, |
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
770 /**/ |
7049
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
771 837, |
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
772 /**/ |
7046
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
773 836, |
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
774 /**/ |
7044
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
775 835, |
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
776 /**/ |
7042
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
777 834, |
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
778 /**/ |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
779 833, |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
780 /**/ |
7038
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
781 832, |
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
782 /**/ |
7036
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
783 831, |
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
784 /**/ |
7034
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
785 830, |
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
786 /**/ |
7032
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
787 829, |
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
788 /**/ |
7030
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
789 828, |
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
790 /**/ |
7021 | 791 827, |
792 /**/ | |
7019 | 793 826, |
794 /**/ | |
7017 | 795 825, |
796 /**/ | |
7014 | 797 824, |
798 /**/ | |
7011 | 799 823, |
800 /**/ | |
7009 | 801 822, |
802 /**/ | |
7007 | 803 821, |
804 /**/ | |
7005 | 805 820, |
806 /**/ | |
7003 | 807 819, |
808 /**/ | |
7001 | 809 818, |
810 /**/ | |
6999 | 811 817, |
812 /**/ | |
6997 | 813 816, |
814 /**/ | |
6995 | 815 815, |
816 /**/ | |
6993 | 817 814, |
818 /**/ | |
6991 | 819 813, |
820 /**/ | |
6989 | 821 812, |
822 /**/ | |
6987 | 823 811, |
824 /**/ | |
6985 | 825 810, |
826 /**/ | |
6983 | 827 809, |
828 /**/ | |
6981 | 829 808, |
830 /**/ | |
6979 | 831 807, |
832 /**/ | |
6977 | 833 806, |
834 /**/ | |
6975 | 835 805, |
836 /**/ | |
6973 | 837 804, |
838 /**/ | |
6971 | 839 803, |
840 /**/ | |
6969 | 841 802, |
842 /**/ | |
6967 | 843 801, |
844 /**/ | |
6965 | 845 800, |
846 /**/ | |
6963 | 847 799, |
848 /**/ | |
6961 | 849 798, |
850 /**/ | |
6959 | 851 797, |
852 /**/ | |
6957 | 853 796, |
854 /**/ | |
6954 | 855 795, |
856 /**/ | |
6952 | 857 794, |
858 /**/ | |
6949 | 859 793, |
860 /**/ | |
6947 | 861 792, |
862 /**/ | |
6945 | 863 791, |
864 /**/ | |
6943 | 865 790, |
866 /**/ | |
6941 | 867 789, |
868 /**/ | |
6939 | 869 788, |
870 /**/ | |
6937 | 871 787, |
872 /**/ | |
6935 | 873 786, |
874 /**/ | |
6933 | 875 785, |
876 /**/ | |
6931 | 877 784, |
878 /**/ | |
6929 | 879 783, |
880 /**/ | |
6927 | 881 782, |
882 /**/ | |
6925 | 883 781, |
884 /**/ | |
6923 | 885 780, |
886 /**/ | |
6921 | 887 779, |
888 /**/ | |
6919 | 889 778, |
890 /**/ | |
6916 | 891 777, |
892 /**/ | |
6914 | 893 776, |
894 /**/ | |
6911 | 895 775, |
896 /**/ | |
6909 | 897 774, |
898 /**/ | |
6907 | 899 773, |
900 /**/ | |
6905 | 901 772, |
902 /**/ | |
6903 | 903 771, |
904 /**/ | |
6901 | 905 770, |
906 /**/ | |
6899 | 907 769, |
908 /**/ | |
6897 | 909 768, |
910 /**/ | |
6895 | 911 767, |
912 /**/ | |
6893 | 913 766, |
914 /**/ | |
6891 | 915 765, |
916 /**/ | |
6889 | 917 764, |
918 /**/ | |
6887 | 919 763, |
920 /**/ | |
6885 | 921 762, |
922 /**/ | |
6882 | 923 761, |
924 /**/ | |
6880 | 925 760, |
926 /**/ | |
6878 | 927 759, |
928 /**/ | |
6876 | 929 758, |
930 /**/ | |
6874 | 931 757, |
932 /**/ | |
6872 | 933 756, |
934 /**/ | |
6870 | 935 755, |
936 /**/ | |
6868 | 937 754, |
938 /**/ | |
6866 | 939 753, |
940 /**/ | |
6864 | 941 752, |
942 /**/ | |
6862 | 943 751, |
944 /**/ | |
6860 | 945 750, |
946 /**/ | |
6858 | 947 749, |
948 /**/ | |
6856 | 949 748, |
950 /**/ | |
6853 | 951 747, |
952 /**/ | |
6851 | 953 746, |
954 /**/ | |
6849 | 955 745, |
956 /**/ | |
6847 | 957 744, |
958 /**/ | |
6845 | 959 743, |
960 /**/ | |
6843 | 961 742, |
962 /**/ | |
6841 | 963 741, |
964 /**/ | |
6838 | 965 740, |
966 /**/ | |
6836 | 967 739, |
968 /**/ | |
6834 | 969 738, |
970 /**/ | |
6832 | 971 737, |
972 /**/ | |
6830 | 973 736, |
974 /**/ | |
6828 | 975 735, |
976 /**/ | |
6826 | 977 734, |
978 /**/ | |
6824 | 979 733, |
980 /**/ | |
6821 | 981 732, |
982 /**/ | |
6819 | 983 731, |
984 /**/ | |
6817 | 985 730, |
986 /**/ | |
6815 | 987 729, |
988 /**/ | |
6813 | 989 728, |
990 /**/ | |
6811 | 991 727, |
992 /**/ | |
6809 | 993 726, |
994 /**/ | |
6807 | 995 725, |
996 /**/ | |
6805 | 997 724, |
998 /**/ | |
6803 | 999 723, |
1000 /**/ | |
6801 | 1001 722, |
1002 /**/ | |
6799 | 1003 721, |
1004 /**/ | |
6797 | 1005 720, |
1006 /**/ | |
6795 | 1007 719, |
1008 /**/ | |
6793 | 1009 718, |
1010 /**/ | |
6791 | 1011 717, |
1012 /**/ | |
6789 | 1013 716, |
1014 /**/ | |
6787 | 1015 715, |
1016 /**/ | |
6785 | 1017 714, |
1018 /**/ | |
6783 | 1019 713, |
1020 /**/ | |
6781 | 1021 712, |
1022 /**/ | |
6779 | 1023 711, |
1024 /**/ | |
6777 | 1025 710, |
1026 /**/ | |
6775 | 1027 709, |
1028 /**/ | |
6773 | 1029 708, |
1030 /**/ | |
6771 | 1031 707, |
1032 /**/ | |
6769 | 1033 706, |
1034 /**/ | |
6767 | 1035 705, |
1036 /**/ | |
6765 | 1037 704, |
1038 /**/ | |
6763 | 1039 703, |
1040 /**/ | |
6761 | 1041 702, |
1042 /**/ | |
6759 | 1043 701, |
1044 /**/ | |
6755 | 1045 700, |
1046 /**/ | |
6753 | 1047 699, |
1048 /**/ | |
6751 | 1049 698, |
1050 /**/ | |
6749 | 1051 697, |
1052 /**/ | |
6747 | 1053 696, |
1054 /**/ | |
6745 | 1055 695, |
1056 /**/ | |
6742 | 1057 694, |
1058 /**/ | |
6739 | 1059 693, |
1060 /**/ | |
6737
9a07975061ed
patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)
Bram Moolenaar <bram@vim.org>
parents:
6735
diff
changeset
|
1061 692, |
9a07975061ed
patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)
Bram Moolenaar <bram@vim.org>
parents:
6735
diff
changeset
|
1062 /**/ |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
1063 691, |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
1064 /**/ |
6733
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
1065 690, |
5f6077b10738
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
Bram Moolenaar <bram@vim.org>
parents:
6731
diff
changeset
|
1066 /**/ |
6731 | 1067 689, |
1068 /**/ | |
6729 | 1069 688, |
1070 /**/ | |
6727 | 1071 687, |
1072 /**/ | |
6725 | 1073 686, |
1074 /**/ | |
6723 | 1075 685, |
1076 /**/ | |
6721 | 1077 684, |
1078 /**/ | |
6719 | 1079 683, |
1080 /**/ | |
6717 | 1081 682, |
1082 /**/ | |
6714 | 1083 681, |
1084 /**/ | |
6712 | 1085 680, |
1086 /**/ | |
6710 | 1087 679, |
1088 /**/ | |
6708 | 1089 678, |
1090 /**/ | |
6706 | 1091 677, |
1092 /**/ | |
6704 | 1093 676, |
1094 /**/ | |
6702 | 1095 675, |
1096 /**/ | |
6700 | 1097 674, |
1098 /**/ | |
6698 | 1099 673, |
1100 /**/ | |
6695 | 1101 672, |
1102 /**/ | |
6693 | 1103 671, |
1104 /**/ | |
6691 | 1105 670, |
1106 /**/ | |
6689 | 1107 669, |
1108 /**/ | |
6687 | 1109 668, |
1110 /**/ | |
6685 | 1111 667, |
1112 /**/ | |
6683 | 1113 666, |
1114 /**/ | |
6681 | 1115 665, |
1116 /**/ | |
6679 | 1117 664, |
1118 /**/ | |
6677 | 1119 663, |
1120 /**/ | |
6675 | 1121 662, |
1122 /**/ | |
6673 | 1123 661, |
1124 /**/ | |
6671 | 1125 660, |
1126 /**/ | |
6669 | 1127 659, |
1128 /**/ | |
6667 | 1129 658, |
1130 /**/ | |
6665 | 1131 657, |
1132 /**/ | |
6663 | 1133 656, |
1134 /**/ | |
6661 | 1135 655, |
1136 /**/ | |
6659 | 1137 654, |
1138 /**/ | |
6657 | 1139 653, |
1140 /**/ | |
6655 | 1141 652, |
1142 /**/ | |
6653 | 1143 651, |
1144 /**/ | |
6651 | 1145 650, |
1146 /**/ | |
6649 | 1147 649, |
1148 /**/ | |
6645 | 1149 648, |
1150 /**/ | |
6643 | 1151 647, |
1152 /**/ | |
6641 | 1153 646, |
1154 /**/ | |
6639 | 1155 645, |
1156 /**/ | |
6637 | 1157 644, |
1158 /**/ | |
6635 | 1159 643, |
1160 /**/ | |
6633 | 1161 642, |
1162 /**/ | |
6631 | 1163 641, |
1164 /**/ | |
6629 | 1165 640, |
1166 /**/ | |
6627 | 1167 639, |
1168 /**/ | |
6625 | 1169 638, |
1170 /**/ | |
6623 | 1171 637, |
1172 /**/ | |
6620 | 1173 636, |
1174 /**/ | |
6618 | 1175 635, |
1176 /**/ | |
6616 | 1177 634, |
1178 /**/ | |
6614 | 1179 633, |
1180 /**/ | |
6612 | 1181 632, |
1182 /**/ | |
6610 | 1183 631, |
1184 /**/ | |
6608 | 1185 630, |
1186 /**/ | |
6606 | 1187 629, |
1188 /**/ | |
6604 | 1189 628, |
1190 /**/ | |
6602 | 1191 627, |
1192 /**/ | |
6600 | 1193 626, |
1194 /**/ | |
6598 | 1195 625, |
1196 /**/ | |
6596 | 1197 624, |
1198 /**/ | |
6594 | 1199 623, |
1200 /**/ | |
6592 | 1201 622, |
1202 /**/ | |
6590 | 1203 621, |
1204 /**/ | |
6588 | 1205 620, |
1206 /**/ | |
6586 | 1207 619, |
1208 /**/ | |
6584 | 1209 618, |
1210 /**/ | |
6581 | 1211 617, |
1212 /**/ | |
6579 | 1213 616, |
1214 /**/ | |
6577 | 1215 615, |
1216 /**/ | |
6575 | 1217 614, |
1218 /**/ | |
6573 | 1219 613, |
1220 /**/ | |
6571 | 1221 612, |
1222 /**/ | |
6569 | 1223 611, |
1224 /**/ | |
6567 | 1225 610, |
1226 /**/ | |
6565 | 1227 609, |
1228 /**/ | |
6563 | 1229 608, |
1230 /**/ | |
6561 | 1231 607, |
1232 /**/ | |
6559 | 1233 606, |
1234 /**/ | |
6557 | 1235 605, |
1236 /**/ | |
6555 | 1237 604, |
1238 /**/ | |
6553 | 1239 603, |
1240 /**/ | |
6551 | 1241 602, |
1242 /**/ | |
6549 | 1243 601, |
1244 /**/ | |
6547 | 1245 600, |
1246 /**/ | |
6545 | 1247 599, |
1248 /**/ | |
6543 | 1249 598, |
1250 /**/ | |
6541 | 1251 597, |
1252 /**/ | |
6539 | 1253 596, |
1254 /**/ | |
6537 | 1255 595, |
1256 /**/ | |
6535 | 1257 594, |
1258 /**/ | |
6533 | 1259 593, |
1260 /**/ | |
6531 | 1261 592, |
1262 /**/ | |
6528 | 1263 591, |
1264 /**/ | |
6526 | 1265 590, |
1266 /**/ | |
6524 | 1267 589, |
1268 /**/ | |
6522 | 1269 588, |
1270 /**/ | |
6520 | 1271 587, |
1272 /**/ | |
6518 | 1273 586, |
1274 /**/ | |
6516 | 1275 585, |
1276 /**/ | |
6514 | 1277 584, |
1278 /**/ | |
6512 | 1279 583, |
1280 /**/ | |
6510 | 1281 582, |
1282 /**/ | |
6508 | 1283 581, |
1284 /**/ | |
6506 | 1285 580, |
1286 /**/ | |
6503 | 1287 579, |
1288 /**/ | |
6501 | 1289 578, |
1290 /**/ | |
6499 | 1291 577, |
1292 /**/ | |
6497 | 1293 576, |
1294 /**/ | |
6495 | 1295 575, |
1296 /**/ | |
6493 | 1297 574, |
1298 /**/ | |
6491 | 1299 573, |
1300 /**/ | |
6489 | 1301 572, |
1302 /**/ | |
6487 | 1303 571, |
1304 /**/ | |
6485 | 1305 570, |
1306 /**/ | |
6482 | 1307 569, |
1308 /**/ | |
6480 | 1309 568, |
1310 /**/ | |
6477 | 1311 567, |
1312 /**/ | |
6474 | 1313 566, |
1314 /**/ | |
6472 | 1315 565, |
1316 /**/ | |
6470 | 1317 564, |
1318 /**/ | |
6468 | 1319 563, |
1320 /**/ | |
6466 | 1321 562, |
1322 /**/ | |
6464 | 1323 561, |
1324 /**/ | |
6462 | 1325 560, |
1326 /**/ | |
6460 | 1327 559, |
1328 /**/ | |
6458 | 1329 558, |
1330 /**/ | |
6456 | 1331 557, |
1332 /**/ | |
6454 | 1333 556, |
1334 /**/ | |
6452 | 1335 555, |
1336 /**/ | |
6450 | 1337 554, |
1338 /**/ | |
6448 | 1339 553, |
1340 /**/ | |
6445 | 1341 552, |
1342 /**/ | |
6443 | 1343 551, |
1344 /**/ | |
6441 | 1345 550, |
1346 /**/ | |
6438 | 1347 549, |
1348 /**/ | |
6436 | 1349 548, |
1350 /**/ | |
6434 | 1351 547, |
1352 /**/ | |
6432 | 1353 546, |
1354 /**/ | |
6430 | 1355 545, |
1356 /**/ | |
6428 | 1357 544, |
1358 /**/ | |
6426 | 1359 543, |
1360 /**/ | |
6424 | 1361 542, |
1362 /**/ | |
6422 | 1363 541, |
1364 /**/ | |
6419 | 1365 540, |
1366 /**/ | |
6417 | 1367 539, |
1368 /**/ | |
6415 | 1369 538, |
1370 /**/ | |
6413 | 1371 537, |
1372 /**/ | |
6411 | 1373 536, |
1374 /**/ | |
6409 | 1375 535, |
1376 /**/ | |
6406 | 1377 534, |
1378 /**/ | |
6404 | 1379 533, |
1380 /**/ | |
6402 | 1381 532, |
1382 /**/ | |
6400 | 1383 531, |
1384 /**/ | |
6398 | 1385 530, |
1386 /**/ | |
6396 | 1387 529, |
1388 /**/ | |
6394 | 1389 528, |
1390 /**/ | |
6392 | 1391 527, |
1392 /**/ | |
6390 | 1393 526, |
1394 /**/ | |
6388 | 1395 525, |
1396 /**/ | |
6386 | 1397 524, |
1398 /**/ | |
6383 | 1399 523, |
1400 /**/ | |
6381 | 1401 522, |
1402 /**/ | |
6379 | 1403 521, |
1404 /**/ | |
6377 | 1405 520, |
1406 /**/ | |
6375 | 1407 519, |
1408 /**/ | |
6373 | 1409 518, |
1410 /**/ | |
6371 | 1411 517, |
1412 /**/ | |
6367 | 1413 516, |
1414 /**/ | |
6365 | 1415 515, |
1416 /**/ | |
6363 | 1417 514, |
1418 /**/ | |
6361 | 1419 513, |
1420 /**/ | |
6359 | 1421 512, |
1422 /**/ | |
6357 | 1423 511, |
1424 /**/ | |
6355 | 1425 510, |
1426 /**/ | |
6353 | 1427 509, |
1428 /**/ | |
6351 | 1429 508, |
1430 /**/ | |
6349 | 1431 507, |
1432 /**/ | |
6347 | 1433 506, |
1434 /**/ | |
6345 | 1435 505, |
1436 /**/ | |
6343 | 1437 504, |
1438 /**/ | |
6341 | 1439 503, |
1440 /**/ | |
6339 | 1441 502, |
1442 /**/ | |
6337 | 1443 501, |
1444 /**/ | |
6334 | 1445 500, |
1446 /**/ | |
6332 | 1447 499, |
1448 /**/ | |
6330 | 1449 498, |
1450 /**/ | |
6328 | 1451 497, |
1452 /**/ | |
6326 | 1453 496, |
1454 /**/ | |
6324 | 1455 495, |
1456 /**/ | |
6322 | 1457 494, |
1458 /**/ | |
6320 | 1459 493, |
1460 /**/ | |
6318 | 1461 492, |
1462 /**/ | |
6316 | 1463 491, |
1464 /**/ | |
6314 | 1465 490, |
1466 /**/ | |
6312 | 1467 489, |
1468 /**/ | |
6310 | 1469 488, |
1470 /**/ | |
6307 | 1471 487, |
1472 /**/ | |
6305 | 1473 486, |
1474 /**/ | |
6303 | 1475 485, |
1476 /**/ | |
6301 | 1477 484, |
1478 /**/ | |
6299 | 1479 483, |
1480 /**/ | |
6297 | 1481 482, |
1482 /**/ | |
6295 | 1483 481, |
1484 /**/ | |
6293 | 1485 480, |
1486 /**/ | |
6290 | 1487 479, |
1488 /**/ | |
6288 | 1489 478, |
1490 /**/ | |
6286 | 1491 477, |
1492 /**/ | |
6284 | 1493 476, |
1494 /**/ | |
6282 | 1495 475, |
1496 /**/ | |
6280 | 1497 474, |
1498 /**/ | |
6278 | 1499 473, |
1500 /**/ | |
6276 | 1501 472, |
1502 /**/ | |
6274 | 1503 471, |
1504 /**/ | |
6272 | 1505 470, |
1506 /**/ | |
6270 | 1507 469, |
1508 /**/ | |
6268 | 1509 468, |
1510 /**/ | |
6266 | 1511 467, |
1512 /**/ | |
6264 | 1513 466, |
1514 /**/ | |
6262 | 1515 465, |
1516 /**/ | |
6260 | 1517 464, |
1518 /**/ | |
6257 | 1519 463, |
1520 /**/ | |
6255 | 1521 462, |
1522 /**/ | |
6253 | 1523 461, |
1524 /**/ | |
6251 | 1525 460, |
1526 /**/ | |
6249 | 1527 459, |
1528 /**/ | |
6247 | 1529 458, |
1530 /**/ | |
6245 | 1531 457, |
1532 /**/ | |
6243 | 1533 456, |
1534 /**/ | |
6241 | 1535 455, |
1536 /**/ | |
6239 | 1537 454, |
1538 /**/ | |
6236 | 1539 453, |
1540 /**/ | |
6234 | 1541 452, |
1542 /**/ | |
6232 | 1543 451, |
1544 /**/ | |
6230 | 1545 450, |
1546 /**/ | |
6228 | 1547 449, |
1548 /**/ | |
6226 | 1549 448, |
1550 /**/ | |
6224 | 1551 447, |
1552 /**/ | |
6222 | 1553 446, |
1554 /**/ | |
6220 | 1555 445, |
1556 /**/ | |
6218 | 1557 444, |
1558 /**/ | |
6216 | 1559 443, |
1560 /**/ | |
6214 | 1561 442, |
1562 /**/ | |
6211 | 1563 441, |
1564 /**/ | |
6209 | 1565 440, |
1566 /**/ | |
6207 | 1567 439, |
1568 /**/ | |
6205 | 1569 438, |
1570 /**/ | |
6203 | 1571 437, |
1572 /**/ | |
6201 | 1573 436, |
1574 /**/ | |
6199 | 1575 435, |
1576 /**/ | |
6197 | 1577 434, |
1578 /**/ | |
6195 | 1579 433, |
1580 /**/ | |
6193 | 1581 432, |
1582 /**/ | |
6191 | 1583 431, |
1584 /**/ | |
6189 | 1585 430, |
1586 /**/ | |
6187 | 1587 429, |
1588 /**/ | |
6185 | 1589 428, |
1590 /**/ | |
6183 | 1591 427, |
1592 /**/ | |
6181 | 1593 426, |
1594 /**/ | |
6178 | 1595 425, |
1596 /**/ | |
6176 | 1597 424, |
1598 /**/ | |
6174 | 1599 423, |
1600 /**/ | |
6172 | 1601 422, |
1602 /**/ | |
6170 | 1603 421, |
1604 /**/ | |
6168 | 1605 420, |
1606 /**/ | |
6166 | 1607 419, |
1608 /**/ | |
6164 | 1609 418, |
1610 /**/ | |
6162 | 1611 417, |
1612 /**/ | |
6160 | 1613 416, |
1614 /**/ | |
6158
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
1615 415, |
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
1616 /**/ |
6154 | 1617 414, |
1618 /**/ | |
6151 | 1619 413, |
1620 /**/ | |
6149 | 1621 412, |
1622 /**/ | |
6147 | 1623 411, |
1624 /**/ | |
6145 | 1625 410, |
1626 /**/ | |
6143 | 1627 409, |
1628 /**/ | |
6140 | 1629 408, |
1630 /**/ | |
6138 | 1631 407, |
1632 /**/ | |
6136 | 1633 406, |
1634 /**/ | |
6134 | 1635 405, |
1636 /**/ | |
6132 | 1637 404, |
1638 /**/ | |
6130 | 1639 403, |
1640 /**/ | |
6128 | 1641 402, |
1642 /**/ | |
6126 | 1643 401, |
1644 /**/ | |
6124 | 1645 400, |
1646 /**/ | |
6122 | 1647 399, |
1648 /**/ | |
6120 | 1649 398, |
1650 /**/ | |
6118 | 1651 397, |
1652 /**/ | |
6116 | 1653 396, |
1654 /**/ | |
6114 | 1655 395, |
1656 /**/ | |
6112 | 1657 394, |
1658 /**/ | |
6110 | 1659 393, |
1660 /**/ | |
6108 | 1661 392, |
1662 /**/ | |
6106 | 1663 391, |
1664 /**/ | |
6104 | 1665 390, |
1666 /**/ | |
6102 | 1667 389, |
1668 /**/ | |
6100 | 1669 388, |
1670 /**/ | |
6098 | 1671 387, |
1672 /**/ | |
6096 | 1673 386, |
1674 /**/ | |
6094 | 1675 385, |
1676 /**/ | |
6092 | 1677 384, |
1678 /**/ | |
6089 | 1679 383, |
1680 /**/ | |
6087 | 1681 382, |
1682 /**/ | |
6085 | 1683 381, |
1684 /**/ | |
6083 | 1685 380, |
1686 /**/ | |
6081 | 1687 379, |
1688 /**/ | |
6079 | 1689 378, |
1690 /**/ | |
6077 | 1691 377, |
1692 /**/ | |
6075 | 1693 376, |
1694 /**/ | |
6073 | 1695 375, |
1696 /**/ | |
6071 | 1697 374, |
1698 /**/ | |
6068 | 1699 373, |
1700 /**/ | |
6066 | 1701 372, |
1702 /**/ | |
6064 | 1703 371, |
1704 /**/ | |
6062 | 1705 370, |
1706 /**/ | |
6060 | 1707 369, |
1708 /**/ | |
6058 | 1709 368, |
1710 /**/ | |
6056 | 1711 367, |
1712 /**/ | |
6054 | 1713 366, |
1714 /**/ | |
6052 | 1715 365, |
1716 /**/ | |
6049 | 1717 364, |
1718 /**/ | |
6047 | 1719 363, |
1720 /**/ | |
6045 | 1721 362, |
1722 /**/ | |
6043 | 1723 361, |
1724 /**/ | |
6041 | 1725 360, |
1726 /**/ | |
6039 | 1727 359, |
1728 /**/ | |
6037 | 1729 358, |
1730 /**/ | |
6035 | 1731 357, |
1732 /**/ | |
6033 | 1733 356, |
1734 /**/ | |
6030 | 1735 355, |
1736 /**/ | |
6028 | 1737 354, |
1738 /**/ | |
6026 | 1739 353, |
1740 /**/ | |
6024 | 1741 352, |
1742 /**/ | |
6022 | 1743 351, |
1744 /**/ | |
6020 | 1745 350, |
1746 /**/ | |
6018 | 1747 349, |
1748 /**/ | |
6016 | 1749 348, |
1750 /**/ | |
6014 | 1751 347, |
1752 /**/ | |
6012 | 1753 346, |
1754 /**/ | |
6010 | 1755 345, |
1756 /**/ | |
6007 | 1757 344, |
1758 /**/ | |
6005 | 1759 343, |
1760 /**/ | |
6003 | 1761 342, |
1762 /**/ | |
6001 | 1763 341, |
1764 /**/ | |
5999 | 1765 340, |
1766 /**/ | |
5997 | 1767 339, |
1768 /**/ | |
5995 | 1769 338, |
1770 /**/ | |
5993 | 1771 337, |
1772 /**/ | |
5991 | 1773 336, |
1774 /**/ | |
5989 | 1775 335, |
1776 /**/ | |
5987 | 1777 334, |
1778 /**/ | |
5985 | 1779 333, |
1780 /**/ | |
5983 | 1781 332, |
1782 /**/ | |
5981 | 1783 331, |
1784 /**/ | |
5979 | 1785 330, |
1786 /**/ | |
5977 | 1787 329, |
1788 /**/ | |
5975 | 1789 328, |
1790 /**/ | |
5973 | 1791 327, |
1792 /**/ | |
5971 | 1793 326, |
1794 /**/ | |
5969 | 1795 325, |
1796 /**/ | |
5966 | 1797 324, |
1798 /**/ | |
5964 | 1799 323, |
1800 /**/ | |
5962 | 1801 322, |
1802 /**/ | |
5960 | 1803 321, |
1804 /**/ | |
5958 | 1805 320, |
1806 /**/ | |
5956 | 1807 319, |
1808 /**/ | |
5954 | 1809 318, |
1810 /**/ | |
5952 | 1811 317, |
1812 /**/ | |
5950 | 1813 316, |
1814 /**/ | |
5948 | 1815 315, |
1816 /**/ | |
5946 | 1817 314, |
1818 /**/ | |
5944 | 1819 313, |
1820 /**/ | |
5942 | 1821 312, |
1822 /**/ | |
5940 | 1823 311, |
1824 /**/ | |
5938 | 1825 310, |
1826 /**/ | |
5936 | 1827 309, |
1828 /**/ | |
5934 | 1829 308, |
1830 /**/ | |
5932 | 1831 307, |
1832 /**/ | |
5930 | 1833 306, |
1834 /**/ | |
5927 | 1835 305, |
1836 /**/ | |
5925 | 1837 304, |
1838 /**/ | |
5923 | 1839 303, |
1840 /**/ | |
5921 | 1841 302, |
1842 /**/ | |
5919 | 1843 301, |
1844 /**/ | |
5917 | 1845 300, |
1846 /**/ | |
5915 | 1847 299, |
1848 /**/ | |
5913 | 1849 298, |
1850 /**/ | |
5911 | 1851 297, |
1852 /**/ | |
5909 | 1853 296, |
1854 /**/ | |
5905 | 1855 295, |
1856 /**/ | |
5903 | 1857 294, |
1858 /**/ | |
5901 | 1859 293, |
1860 /**/ | |
5899 | 1861 292, |
1862 /**/ | |
5897 | 1863 291, |
1864 /**/ | |
5895 | 1865 290, |
1866 /**/ | |
5893 | 1867 289, |
1868 /**/ | |
5891 | 1869 288, |
1870 /**/ | |
5889 | 1871 287, |
1872 /**/ | |
5887 | 1873 286, |
1874 /**/ | |
5885 | 1875 285, |
1876 /**/ | |
5883 | 1877 284, |
1878 /**/ | |
5881 | 1879 283, |
1880 /**/ | |
5879 | 1881 282, |
1882 /**/ | |
5877 | 1883 281, |
1884 /**/ | |
5875 | 1885 280, |
1886 /**/ | |
5873 | 1887 279, |
1888 /**/ | |
5871 | 1889 278, |
1890 /**/ | |
5869 | 1891 277, |
1892 /**/ | |
5867 | 1893 276, |
1894 /**/ | |
5865 | 1895 275, |
1896 /**/ | |
5863 | 1897 274, |
1898 /**/ | |
5860 | 1899 273, |
1900 /**/ | |
5858 | 1901 272, |
1902 /**/ | |
5856 | 1903 271, |
1904 /**/ | |
5854 | 1905 270, |
1906 /**/ | |
5852 | 1907 269, |
1908 /**/ | |
5850 | 1909 268, |
1910 /**/ | |
5848 | 1911 267, |
1912 /**/ | |
5846 | 1913 266, |
1914 /**/ | |
5844 | 1915 265, |
1916 /**/ | |
5842 | 1917 264, |
1918 /**/ | |
5840 | 1919 263, |
1920 /**/ | |
5838 | 1921 262, |
1922 /**/ | |
5836 | 1923 261, |
1924 /**/ | |
5834 | 1925 260, |
1926 /**/ | |
5832 | 1927 259, |
1928 /**/ | |
5830 | 1929 258, |
1930 /**/ | |
5828 | 1931 257, |
1932 /**/ | |
5826 | 1933 256, |
1934 /**/ | |
5824 | 1935 255, |
1936 /**/ | |
5822 | 1937 254, |
1938 /**/ | |
5820 | 1939 253, |
1940 /**/ | |
5818 | 1941 252, |
1942 /**/ | |
5816 | 1943 251, |
1944 /**/ | |
5812 | 1945 250, |
1946 /**/ | |
5810 | 1947 249, |
1948 /**/ | |
5808 | 1949 248, |
1950 /**/ | |
5806 | 1951 247, |
1952 /**/ | |
5804 | 1953 246, |
1954 /**/ | |
5802 | 1955 245, |
1956 /**/ | |
5800 | 1957 244, |
1958 /**/ | |
5798 | 1959 243, |
1960 /**/ | |
5796 | 1961 242, |
1962 /**/ | |
5794 | 1963 241, |
1964 /**/ | |
5792 | 1965 240, |
1966 /**/ | |
5790 | 1967 239, |
1968 /**/ | |
5788 | 1969 238, |
1970 /**/ | |
5786 | 1971 237, |
1972 /**/ | |
5784 | 1973 236, |
1974 /**/ | |
5782 | 1975 235, |
1976 /**/ | |
5780 | 1977 234, |
1978 /**/ | |
5778 | 1979 233, |
1980 /**/ | |
5776 | 1981 232, |
1982 /**/ | |
5774 | 1983 231, |
1984 /**/ | |
5772 | 1985 230, |
1986 /**/ | |
5770 | 1987 229, |
1988 /**/ | |
5768 | 1989 228, |
1990 /**/ | |
5766 | 1991 227, |
1992 /**/ | |
5764 | 1993 226, |
1994 /**/ | |
5761 | 1995 225, |
1996 /**/ | |
5759 | 1997 224, |
1998 /**/ | |
5757 | 1999 223, |
2000 /**/ | |
5755 | 2001 222, |
2002 /**/ | |
5753 | 2003 221, |
2004 /**/ | |
5751 | 2005 220, |
2006 /**/ | |
5749 | 2007 219, |
2008 /**/ | |
5747 | 2009 218, |
2010 /**/ | |
5745 | 2011 217, |
2012 /**/ | |
5743 | 2013 216, |
2014 /**/ | |
5741 | 2015 215, |
2016 /**/ | |
5739 | 2017 214, |
2018 /**/ | |
5737 | 2019 213, |
2020 /**/ | |
5735 | 2021 212, |
2022 /**/ | |
5732 | 2023 211, |
2024 /**/ | |
5730 | 2025 210, |
2026 /**/ | |
5728 | 2027 209, |
2028 /**/ | |
5726 | 2029 208, |
2030 /**/ | |
5724 | 2031 207, |
2032 /**/ | |
5722 | 2033 206, |
2034 /**/ | |
5720 | 2035 205, |
2036 /**/ | |
5718 | 2037 204, |
2038 /**/ | |
5716 | 2039 203, |
2040 /**/ | |
5714 | 2041 202, |
2042 /**/ | |
5712 | 2043 201, |
2044 /**/ | |
5710 | 2045 200, |
2046 /**/ | |
5708 | 2047 199, |
2048 /**/ | |
5706 | 2049 198, |
2050 /**/ | |
5704 | 2051 197, |
2052 /**/ | |
5702 | 2053 196, |
2054 /**/ | |
5700 | 2055 195, |
2056 /**/ | |
5698 | 2057 194, |
2058 /**/ | |
5695 | 2059 193, |
2060 /**/ | |
5693 | 2061 192, |
2062 /**/ | |
5690 | 2063 191, |
2064 /**/ | |
5688 | 2065 190, |
2066 /**/ | |
5686 | 2067 189, |
2068 /**/ | |
5684 | 2069 188, |
2070 /**/ | |
5682 | 2071 187, |
2072 /**/ | |
5680 | 2073 186, |
2074 /**/ | |
5678 | 2075 185, |
2076 /**/ | |
5676 | 2077 184, |
2078 /**/ | |
5674 | 2079 183, |
2080 /**/ | |
5672 | 2081 182, |
2082 /**/ | |
5670 | 2083 181, |
2084 /**/ | |
5668 | 2085 180, |
2086 /**/ | |
5666 | 2087 179, |
2088 /**/ | |
5664 | 2089 178, |
2090 /**/ | |
5661 | 2091 177, |
2092 /**/ | |
5659 | 2093 176, |
2094 /**/ | |
5657 | 2095 175, |
2096 /**/ | |
5655 | 2097 174, |
2098 /**/ | |
5653 | 2099 173, |
2100 /**/ | |
5651 | 2101 172, |
2102 /**/ | |
5649 | 2103 171, |
2104 /**/ | |
5647 | 2105 170, |
2106 /**/ | |
5645 | 2107 169, |
2108 /**/ | |
5643 | 2109 168, |
2110 /**/ | |
5641 | 2111 167, |
2112 /**/ | |
5639 | 2113 166, |
2114 /**/ | |
5637 | 2115 165, |
2116 /**/ | |
5635 | 2117 164, |
2118 /**/ | |
5633 | 2119 163, |
2120 /**/ | |
5631 | 2121 162, |
2122 /**/ | |
5629 | 2123 161, |
2124 /**/ | |
5627 | 2125 160, |
2126 /**/ | |
5625 | 2127 159, |
2128 /**/ | |
5623 | 2129 158, |
2130 /**/ | |
5621 | 2131 157, |
2132 /**/ | |
5619 | 2133 156, |
2134 /**/ | |
5616 | 2135 155, |
2136 /**/ | |
5614 | 2137 154, |
2138 /**/ | |
5612 | 2139 153, |
2140 /**/ | |
5610 | 2141 152, |
2142 /**/ | |
5608 | 2143 151, |
2144 /**/ | |
5606 | 2145 150, |
2146 /**/ | |
5604 | 2147 149, |
2148 /**/ | |
5602 | 2149 148, |
2150 /**/ | |
5600 | 2151 147, |
2152 /**/ | |
5598 | 2153 146, |
2154 /**/ | |
5596 | 2155 145, |
2156 /**/ | |
5594 | 2157 144, |
2158 /**/ | |
5592 | 2159 143, |
2160 /**/ | |
5590 | 2161 142, |
2162 /**/ | |
5588 | 2163 141, |
2164 /**/ | |
5586 | 2165 140, |
2166 /**/ | |
5584 | 2167 139, |
2168 /**/ | |
5582 | 2169 138, |
2170 /**/ | |
5580 | 2171 137, |
2172 /**/ | |
5578 | 2173 136, |
2174 /**/ | |
5575 | 2175 135, |
2176 /**/ | |
5573 | 2177 134, |
2178 /**/ | |
5571 | 2179 133, |
2180 /**/ | |
5569 | 2181 132, |
2182 /**/ | |
5566 | 2183 131, |
2184 /**/ | |
5564 | 2185 130, |
2186 /**/ | |
5562 | 2187 129, |
2188 /**/ | |
5560 | 2189 128, |
2190 /**/ | |
5558 | 2191 127, |
2192 /**/ | |
5556 | 2193 126, |
2194 /**/ | |
5553 | 2195 125, |
2196 /**/ | |
5551 | 2197 124, |
2198 /**/ | |
5549 | 2199 123, |
2200 /**/ | |
5547 | 2201 122, |
2202 /**/ | |
5545 | 2203 121, |
2204 /**/ | |
5543 | 2205 120, |
2206 /**/ | |
5541 | 2207 119, |
2208 /**/ | |
5539 | 2209 118, |
2210 /**/ | |
5537 | 2211 117, |
2212 /**/ | |
5535 | 2213 116, |
2214 /**/ | |
5533 | 2215 115, |
2216 /**/ | |
5531 | 2217 114, |
2218 /**/ | |
5529 | 2219 113, |
2220 /**/ | |
5527 | 2221 112, |
2222 /**/ | |
5525 | 2223 111, |
2224 /**/ | |
5523 | 2225 110, |
2226 /**/ | |
5521 | 2227 109, |
2228 /**/ | |
5519 | 2229 108, |
2230 /**/ | |
5517 | 2231 107, |
2232 /**/ | |
5515 | 2233 106, |
2234 /**/ | |
5513 | 2235 105, |
2236 /**/ | |
5511 | 2237 104, |
2238 /**/ | |
5508 | 2239 103, |
2240 /**/ | |
5506 | 2241 102, |
2242 /**/ | |
5504 | 2243 101, |
2244 /**/ | |
5502 | 2245 100, |
2246 /**/ | |
5500 | 2247 99, |
2248 /**/ | |
5498 | 2249 98, |
2250 /**/ | |
5496 | 2251 97, |
2252 /**/ | |
5494 | 2253 96, |
2254 /**/ | |
5492 | 2255 95, |
2256 /**/ | |
5490 | 2257 94, |
2258 /**/ | |
5488 | 2259 93, |
2260 /**/ | |
5485 | 2261 92, |
2262 /**/ | |
5483 | 2263 91, |
2264 /**/ | |
5481 | 2265 90, |
2266 /**/ | |
5479 | 2267 89, |
2268 /**/ | |
5477 | 2269 88, |
2270 /**/ | |
5475 | 2271 87, |
2272 /**/ | |
5473 | 2273 86, |
2274 /**/ | |
5471 | 2275 85, |
2276 /**/ | |
5469 | 2277 84, |
2278 /**/ | |
5467 | 2279 83, |
2280 /**/ | |
5464 | 2281 82, |
2282 /**/ | |
5462 | 2283 81, |
2284 /**/ | |
5460 | 2285 80, |
2286 /**/ | |
5458 | 2287 79, |
2288 /**/ | |
5456 | 2289 78, |
2290 /**/ | |
5454 | 2291 77, |
2292 /**/ | |
5452 | 2293 76, |
2294 /**/ | |
5450 | 2295 75, |
2296 /**/ | |
5448 | 2297 74, |
2298 /**/ | |
5446 | 2299 73, |
2300 /**/ | |
5444 | 2301 72, |
2302 /**/ | |
5442 | 2303 71, |
2304 /**/ | |
5440 | 2305 70, |
2306 /**/ | |
5438 | 2307 69, |
2308 /**/ | |
5436 | 2309 68, |
2310 /**/ | |
5434 | 2311 67, |
2312 /**/ | |
5432 | 2313 66, |
2314 /**/ | |
5430 | 2315 65, |
2316 /**/ | |
5428 | 2317 64, |
2318 /**/ | |
5426 | 2319 63, |
2320 /**/ | |
5423 | 2321 62, |
2322 /**/ | |
5421 | 2323 61, |
2324 /**/ | |
5419 | 2325 60, |
2326 /**/ | |
5417 | 2327 59, |
2328 /**/ | |
5415 | 2329 58, |
2330 /**/ | |
5413 | 2331 57, |
2332 /**/ | |
5411 | 2333 56, |
2334 /**/ | |
5409 | 2335 55, |
2336 /**/ | |
5407 | 2337 54, |
2338 /**/ | |
5405 | 2339 53, |
2340 /**/ | |
5403 | 2341 52, |
2342 /**/ | |
5401 | 2343 51, |
2344 /**/ | |
5398 | 2345 50, |
2346 /**/ | |
5396 | 2347 49, |
2348 /**/ | |
5394 | 2349 48, |
2350 /**/ | |
5392 | 2351 47, |
2352 /**/ | |
5390 | 2353 46, |
2354 /**/ | |
5388 | 2355 45, |
2356 /**/ | |
5386 | 2357 44, |
2358 /**/ | |
5384 | 2359 43, |
2360 /**/ | |
5382 | 2361 42, |
2362 /**/ | |
5380 | 2363 41, |
2364 /**/ | |
5378 | 2365 40, |
2366 /**/ | |
5376 | 2367 39, |
2368 /**/ | |
5374 | 2369 38, |
2370 /**/ | |
5372 | 2371 37, |
2372 /**/ | |
5370 | 2373 36, |
2374 /**/ | |
5367 | 2375 35, |
2376 /**/ | |
5365 | 2377 34, |
2378 /**/ | |
5363 | 2379 33, |
2380 /**/ | |
5360 | 2381 32, |
2382 /**/ | |
5358 | 2383 31, |
2384 /**/ | |
5356 | 2385 30, |
2386 /**/ | |
5353 | 2387 29, |
2388 /**/ | |
5351 | 2389 28, |
2390 /**/ | |
5349 | 2391 27, |
2392 /**/ | |
5347 | 2393 26, |
2394 /**/ | |
5345 | 2395 25, |
2396 /**/ | |
5343 | 2397 24, |
2398 /**/ | |
5341 | 2399 23, |
2400 /**/ | |
5338 | 2401 22, |
2402 /**/ | |
5336 | 2403 21, |
2404 /**/ | |
5334 | 2405 20, |
2406 /**/ | |
5332 | 2407 19, |
2408 /**/ | |
5330 | 2409 18, |
2410 /**/ | |
5328 | 2411 17, |
2412 /**/ | |
5326 | 2413 16, |
2414 /**/ | |
5324 | 2415 15, |
2416 /**/ | |
5322 | 2417 14, |
2418 /**/ | |
5320 | 2419 13, |
2420 /**/ | |
5318 | 2421 12, |
2422 /**/ | |
5316 | 2423 11, |
2424 /**/ | |
5314 | 2425 10, |
2426 /**/ | |
5312 | 2427 9, |
2428 /**/ | |
5310 | 2429 8, |
2430 /**/ | |
5308 | 2431 7, |
2432 /**/ | |
5306 | 2433 6, |
2434 /**/ | |
5304 | 2435 5, |
2436 /**/ | |
5302 | 2437 4, |
2438 /**/ | |
5300 | 2439 3, |
2440 /**/ | |
5298 | 2441 2, |
2442 /**/ | |
5296 | 2443 1, |
2444 /**/ | |
7 | 2445 0 |
2446 }; | |
2447 | |
1760 | 2448 /* |
2449 * Place to put a short description when adding a feature with a patch. | |
2450 * Keep it short, e.g.,: "relative numbers", "persistent undo". | |
2451 * Also add a comment marker to separate the lines. | |
2452 * See the official Vim patches for the diff format: It must use a context of | |
1777 | 2453 * one line only. Create it by hand or use "diff -C2" and edit the patch. |
1760 | 2454 */ |
2455 static char *(extra_patches[]) = | |
2456 { /* Add your patch description below this line */ | |
2457 /**/ | |
2458 NULL | |
2459 }; | |
2460 | |
7 | 2461 int |
2462 highest_patch() | |
2463 { | |
2464 int i; | |
2465 int h = 0; | |
2466 | |
2467 for (i = 0; included_patches[i] != 0; ++i) | |
2468 if (included_patches[i] > h) | |
2469 h = included_patches[i]; | |
2470 return h; | |
2471 } | |
2472 | |
2473 #if defined(FEAT_EVAL) || defined(PROTO) | |
2474 /* | |
2475 * Return TRUE if patch "n" has been included. | |
2476 */ | |
2477 int | |
2478 has_patch(n) | |
2479 int n; | |
2480 { | |
2481 int i; | |
2482 | |
2483 for (i = 0; included_patches[i] != 0; ++i) | |
2484 if (included_patches[i] == n) | |
2485 return TRUE; | |
2486 return FALSE; | |
2487 } | |
2488 #endif | |
2489 | |
2490 void | |
2491 ex_version(eap) | |
2492 exarg_T *eap; | |
2493 { | |
2494 /* | |
2495 * Ignore a ":version 9.99" command. | |
2496 */ | |
2497 if (*eap->arg == NUL) | |
2498 { | |
2499 msg_putchar('\n'); | |
2500 list_version(); | |
2501 } | |
2502 } | |
2503 | |
4147 | 2504 /* |
2505 * List all features aligned in columns, dictionary style. | |
2506 */ | |
2507 static void | |
2508 list_features() | |
2509 { | |
2510 int i; | |
2511 int ncol; | |
2512 int nrow; | |
2513 int nfeat = 0; | |
2514 int width = 0; | |
2515 | |
2516 /* Find the length of the longest feature name, use that + 1 as the column | |
2517 * width */ | |
2518 for (i = 0; features[i] != NULL; ++i) | |
2519 { | |
4160 | 2520 int l = (int)STRLEN(features[i]); |
4147 | 2521 |
2522 if (l > width) | |
2523 width = l; | |
2524 ++nfeat; | |
2525 } | |
2526 width += 1; | |
2527 | |
2528 if (Columns < width) | |
2529 { | |
2530 /* Not enough screen columns - show one per line */ | |
2531 for (i = 0; features[i] != NULL; ++i) | |
2532 { | |
2533 version_msg(features[i]); | |
2534 if (msg_col > 0) | |
2535 msg_putchar('\n'); | |
2536 } | |
2537 return; | |
2538 } | |
2539 | |
2540 /* The rightmost column doesn't need a separator. | |
2541 * Sacrifice it to fit in one more column if possible. */ | |
4170 | 2542 ncol = (int) (Columns + 1) / width; |
4147 | 2543 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0); |
2544 | |
4170 | 2545 /* i counts columns then rows. idx counts rows then columns. */ |
4147 | 2546 for (i = 0; !got_int && i < nrow * ncol; ++i) |
2547 { | |
2548 int idx = (i / ncol) + (i % ncol) * nrow; | |
2549 | |
2550 if (idx < nfeat) | |
2551 { | |
2552 int last_col = (i + 1) % ncol == 0; | |
2553 | |
2554 msg_puts((char_u *)features[idx]); | |
2555 if (last_col) | |
2556 { | |
2557 if (msg_col > 0) | |
2558 msg_putchar('\n'); | |
2559 } | |
2560 else | |
2561 { | |
2562 while (msg_col % width) | |
2563 msg_putchar(' '); | |
2564 } | |
2565 } | |
2566 else | |
4170 | 2567 { |
2568 if (msg_col > 0) | |
2569 msg_putchar('\n'); | |
2570 } | |
4147 | 2571 } |
2572 } | |
4160 | 2573 |
7 | 2574 void |
2575 list_version() | |
2576 { | |
2577 int i; | |
2578 int first; | |
2579 char *s = ""; | |
2580 | |
2581 /* | |
2582 * When adding features here, don't forget to update the list of | |
2583 * internal variables in eval.c! | |
2584 */ | |
2585 MSG(longVersion); | |
2586 #ifdef WIN3264 | |
2587 # ifdef FEAT_GUI_W32 | |
2588 # if defined(_MSC_VER) && (_MSC_VER <= 1010) | |
2589 /* Only MS VC 4.1 and earlier can do Win32s */ | |
1607 | 2590 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version")); |
7 | 2591 # else |
990 | 2592 # ifdef _WIN64 |
1607 | 2593 MSG_PUTS(_("\nMS-Windows 64-bit GUI version")); |
990 | 2594 # else |
1607 | 2595 MSG_PUTS(_("\nMS-Windows 32-bit GUI version")); |
990 | 2596 # endif |
7 | 2597 # endif |
2598 if (gui_is_win32s()) | |
2599 MSG_PUTS(_(" in Win32s mode")); | |
2600 # ifdef FEAT_OLE | |
2601 MSG_PUTS(_(" with OLE support")); | |
2602 # endif | |
2603 # else | |
1607 | 2604 # ifdef _WIN64 |
2605 MSG_PUTS(_("\nMS-Windows 64-bit console version")); | |
2606 # else | |
2607 MSG_PUTS(_("\nMS-Windows 32-bit console version")); | |
2608 # endif | |
7 | 2609 # endif |
2610 #endif | |
2611 #ifdef WIN16 | |
1607 | 2612 MSG_PUTS(_("\nMS-Windows 16-bit version")); |
7 | 2613 #endif |
2614 #ifdef MSDOS | |
2615 # ifdef DJGPP | |
1607 | 2616 MSG_PUTS(_("\n32-bit MS-DOS version")); |
7 | 2617 # else |
1607 | 2618 MSG_PUTS(_("\n16-bit MS-DOS version")); |
7 | 2619 # endif |
2620 #endif | |
2621 #ifdef MACOS | |
2622 # ifdef MACOS_X | |
2623 # ifdef MACOS_X_UNIX | |
2624 MSG_PUTS(_("\nMacOS X (unix) version")); | |
2625 # else | |
2626 MSG_PUTS(_("\nMacOS X version")); | |
2627 # endif | |
2628 #else | |
2629 MSG_PUTS(_("\nMacOS version")); | |
2630 # endif | |
2631 #endif | |
2632 | |
2633 #ifdef VMS | |
1705 | 2634 MSG_PUTS(_("\nOpenVMS version")); |
1045 | 2635 # ifdef HAVE_PATHDEF |
2636 if (*compiled_arch != NUL) | |
2637 { | |
2638 MSG_PUTS(" - "); | |
2639 MSG_PUTS(compiled_arch); | |
2640 } | |
2641 # endif | |
2642 | |
7 | 2643 #endif |
2644 | |
2645 /* Print the list of patch numbers if there is at least one. */ | |
2646 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */ | |
2647 if (included_patches[0] != 0) | |
2648 { | |
2649 MSG_PUTS(_("\nIncluded patches: ")); | |
2650 first = -1; | |
2651 /* find last one */ | |
2652 for (i = 0; included_patches[i] != 0; ++i) | |
2653 ; | |
2654 while (--i >= 0) | |
2655 { | |
2656 if (first < 0) | |
2657 first = included_patches[i]; | |
2658 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1) | |
2659 { | |
2660 MSG_PUTS(s); | |
2661 s = ", "; | |
2662 msg_outnum((long)first); | |
2663 if (first != included_patches[i]) | |
2664 { | |
2665 MSG_PUTS("-"); | |
2666 msg_outnum((long)included_patches[i]); | |
2667 } | |
2668 first = -1; | |
2669 } | |
2670 } | |
2671 } | |
2672 | |
1760 | 2673 /* Print the list of extra patch descriptions if there is at least one. */ |
2674 if (extra_patches[0] != NULL) | |
2675 { | |
2676 MSG_PUTS(_("\nExtra patches: ")); | |
2677 s = ""; | |
2678 for (i = 0; extra_patches[i] != NULL; ++i) | |
2679 { | |
2680 MSG_PUTS(s); | |
2681 s = ", "; | |
2682 MSG_PUTS(extra_patches[i]); | |
2683 } | |
2684 } | |
2685 | |
7 | 2686 #ifdef MODIFIED_BY |
2687 MSG_PUTS("\n"); | |
2688 MSG_PUTS(_("Modified by ")); | |
2689 MSG_PUTS(MODIFIED_BY); | |
2690 #endif | |
2691 | |
2692 #ifdef HAVE_PATHDEF | |
2693 if (*compiled_user != NUL || *compiled_sys != NUL) | |
2694 { | |
2695 MSG_PUTS(_("\nCompiled ")); | |
2696 if (*compiled_user != NUL) | |
2697 { | |
2698 MSG_PUTS(_("by ")); | |
2699 MSG_PUTS(compiled_user); | |
2700 } | |
2701 if (*compiled_sys != NUL) | |
2702 { | |
2703 MSG_PUTS("@"); | |
2704 MSG_PUTS(compiled_sys); | |
2705 } | |
2706 } | |
2707 #endif | |
2708 | |
2709 #ifdef FEAT_HUGE | |
2710 MSG_PUTS(_("\nHuge version ")); | |
2711 #else | |
2712 # ifdef FEAT_BIG | |
2713 MSG_PUTS(_("\nBig version ")); | |
2714 # else | |
2715 # ifdef FEAT_NORMAL | |
2716 MSG_PUTS(_("\nNormal version ")); | |
2717 # else | |
2718 # ifdef FEAT_SMALL | |
2719 MSG_PUTS(_("\nSmall version ")); | |
2720 # else | |
2721 MSG_PUTS(_("\nTiny version ")); | |
2722 # endif | |
2723 # endif | |
2724 # endif | |
2725 #endif | |
2726 #ifndef FEAT_GUI | |
2727 MSG_PUTS(_("without GUI.")); | |
2728 #else | |
2729 # ifdef FEAT_GUI_GTK | |
2730 # ifdef FEAT_GUI_GNOME | |
2731 MSG_PUTS(_("with GTK2-GNOME GUI.")); | |
2732 # else | |
2733 MSG_PUTS(_("with GTK2 GUI.")); | |
2734 # endif | |
2735 # else | |
2736 # ifdef FEAT_GUI_MOTIF | |
2737 MSG_PUTS(_("with X11-Motif GUI.")); | |
2738 # else | |
2739 # ifdef FEAT_GUI_ATHENA | |
2740 # ifdef FEAT_GUI_NEXTAW | |
2741 MSG_PUTS(_("with X11-neXtaw GUI.")); | |
2742 # else | |
2743 MSG_PUTS(_("with X11-Athena GUI.")); | |
2744 # endif | |
2745 # else | |
2746 # ifdef FEAT_GUI_PHOTON | |
2747 MSG_PUTS(_("with Photon GUI.")); | |
2748 # else | |
2749 # if defined(MSWIN) | |
2750 MSG_PUTS(_("with GUI.")); | |
2751 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2752 # if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON |
7 | 2753 MSG_PUTS(_("with Carbon GUI.")); |
2754 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2755 # if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX |
7 | 2756 MSG_PUTS(_("with Cocoa GUI.")); |
2757 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
2758 # if defined(MACOS) |
7 | 2759 MSG_PUTS(_("with (classic) GUI.")); |
2760 # endif | |
2761 # endif | |
2762 # endif | |
2763 # endif | |
2764 # endif | |
2765 # endif | |
2766 # endif | |
2767 # endif | |
2768 #endif | |
2769 version_msg(_(" Features included (+) or not (-):\n")); | |
2770 | |
4147 | 2771 list_features(); |
7 | 2772 |
2773 #ifdef SYS_VIMRC_FILE | |
2774 version_msg(_(" system vimrc file: \"")); | |
2775 version_msg(SYS_VIMRC_FILE); | |
2776 version_msg("\"\n"); | |
2777 #endif | |
2778 #ifdef USR_VIMRC_FILE | |
2779 version_msg(_(" user vimrc file: \"")); | |
2780 version_msg(USR_VIMRC_FILE); | |
2781 version_msg("\"\n"); | |
2782 #endif | |
2783 #ifdef USR_VIMRC_FILE2 | |
2784 version_msg(_(" 2nd user vimrc file: \"")); | |
2785 version_msg(USR_VIMRC_FILE2); | |
2786 version_msg("\"\n"); | |
2787 #endif | |
2788 #ifdef USR_VIMRC_FILE3 | |
2789 version_msg(_(" 3rd user vimrc file: \"")); | |
2790 version_msg(USR_VIMRC_FILE3); | |
2791 version_msg("\"\n"); | |
2792 #endif | |
2793 #ifdef USR_EXRC_FILE | |
2794 version_msg(_(" user exrc file: \"")); | |
2795 version_msg(USR_EXRC_FILE); | |
2796 version_msg("\"\n"); | |
2797 #endif | |
2798 #ifdef USR_EXRC_FILE2 | |
2799 version_msg(_(" 2nd user exrc file: \"")); | |
2800 version_msg(USR_EXRC_FILE2); | |
2801 version_msg("\"\n"); | |
2802 #endif | |
2803 #ifdef FEAT_GUI | |
2804 # ifdef SYS_GVIMRC_FILE | |
2805 version_msg(_(" system gvimrc file: \"")); | |
2806 version_msg(SYS_GVIMRC_FILE); | |
2807 version_msg("\"\n"); | |
2808 # endif | |
2809 version_msg(_(" user gvimrc file: \"")); | |
2810 version_msg(USR_GVIMRC_FILE); | |
2811 version_msg("\"\n"); | |
2812 # ifdef USR_GVIMRC_FILE2 | |
2813 version_msg(_("2nd user gvimrc file: \"")); | |
2814 version_msg(USR_GVIMRC_FILE2); | |
2815 version_msg("\"\n"); | |
2816 # endif | |
2817 # ifdef USR_GVIMRC_FILE3 | |
2818 version_msg(_("3rd user gvimrc file: \"")); | |
2819 version_msg(USR_GVIMRC_FILE3); | |
2820 version_msg("\"\n"); | |
2821 # endif | |
2822 #endif | |
2823 #ifdef FEAT_GUI | |
2824 # ifdef SYS_MENU_FILE | |
2825 version_msg(_(" system menu file: \"")); | |
2826 version_msg(SYS_MENU_FILE); | |
2827 version_msg("\"\n"); | |
2828 # endif | |
2829 #endif | |
2830 #ifdef HAVE_PATHDEF | |
2831 if (*default_vim_dir != NUL) | |
2832 { | |
2833 version_msg(_(" fall-back for $VIM: \"")); | |
2834 version_msg((char *)default_vim_dir); | |
2835 version_msg("\"\n"); | |
2836 } | |
2837 if (*default_vimruntime_dir != NUL) | |
2838 { | |
2839 version_msg(_(" f-b for $VIMRUNTIME: \"")); | |
2840 version_msg((char *)default_vimruntime_dir); | |
2841 version_msg("\"\n"); | |
2842 } | |
2843 version_msg(_("Compilation: ")); | |
2844 version_msg((char *)all_cflags); | |
2845 version_msg("\n"); | |
2846 #ifdef VMS | |
2847 if (*compiler_version != NUL) | |
2848 { | |
2849 version_msg(_("Compiler: ")); | |
2850 version_msg((char *)compiler_version); | |
2851 version_msg("\n"); | |
2852 } | |
2853 #endif | |
2854 version_msg(_("Linking: ")); | |
2855 version_msg((char *)all_lflags); | |
2856 #endif | |
2857 #ifdef DEBUG | |
2858 version_msg("\n"); | |
2859 version_msg(_(" DEBUG BUILD")); | |
2860 #endif | |
2861 } | |
2862 | |
2863 /* | |
2864 * Output a string for the version message. If it's going to wrap, output a | |
2865 * newline, unless the message is too long to fit on the screen anyway. | |
2866 */ | |
2867 static void | |
2868 version_msg(s) | |
2869 char *s; | |
2870 { | |
2871 int len = (int)STRLEN(s); | |
2872 | |
2873 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns | |
2874 && *s != '\n') | |
2875 msg_putchar('\n'); | |
2876 if (!got_int) | |
2877 MSG_PUTS(s); | |
2878 } | |
2879 | |
2880 static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr)); | |
2881 | |
2882 /* | |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2883 * Show the intro message when not editing a file. |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2884 */ |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2885 void |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2886 maybe_intro_message() |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2887 { |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2888 if (bufempty() |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2889 && curbuf->b_fname == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2890 #ifdef FEAT_WINDOWS |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2891 && firstwin->w_next == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2892 #endif |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2893 && vim_strchr(p_shm, SHM_INTRO) == NULL) |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2894 intro_message(FALSE); |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2895 } |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2896 |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
2897 /* |
7 | 2898 * Give an introductory message about Vim. |
2899 * Only used when starting Vim on an empty file, without a file name. | |
2900 * Or with the ":intro" command (for Sven :-). | |
2901 */ | |
2902 void | |
2903 intro_message(colon) | |
2904 int colon; /* TRUE for ":intro" */ | |
2905 { | |
2906 int i; | |
2907 int row; | |
2908 int blanklines; | |
2909 int sponsor; | |
2910 char *p; | |
2911 static char *(lines[]) = | |
2912 { | |
2913 N_("VIM - Vi IMproved"), | |
2914 "", | |
2915 N_("version "), | |
2916 N_("by Bram Moolenaar et al."), | |
2917 #ifdef MODIFIED_BY | |
2918 " ", | |
2919 #endif | |
2920 N_("Vim is open source and freely distributable"), | |
2921 "", | |
2922 N_("Help poor children in Uganda!"), | |
2923 N_("type :help iccf<Enter> for information "), | |
2924 "", | |
2925 N_("type :q<Enter> to exit "), | |
2926 N_("type :help<Enter> or <F1> for on-line help"), | |
26 | 2927 N_("type :help version7<Enter> for version info"), |
7 | 2928 NULL, |
2929 "", | |
2930 N_("Running in Vi compatible mode"), | |
2931 N_("type :set nocp<Enter> for Vim defaults"), | |
2932 N_("type :help cp-default<Enter> for info on this"), | |
2933 }; | |
2934 #ifdef FEAT_GUI | |
2935 static char *(gui_lines[]) = | |
2936 { | |
2937 NULL, | |
2938 NULL, | |
2939 NULL, | |
2940 NULL, | |
2941 #ifdef MODIFIED_BY | |
2942 NULL, | |
2943 #endif | |
2944 NULL, | |
2945 NULL, | |
2946 NULL, | |
2947 N_("menu Help->Orphans for information "), | |
2948 NULL, | |
2949 N_("Running modeless, typed text is inserted"), | |
2950 N_("menu Edit->Global Settings->Toggle Insert Mode "), | |
2951 N_(" for two modes "), | |
2952 NULL, | |
2953 NULL, | |
2954 NULL, | |
2955 N_("menu Edit->Global Settings->Toggle Vi Compatible"), | |
2956 N_(" for Vim defaults "), | |
2957 }; | |
2958 #endif | |
2959 | |
2960 /* blanklines = screen height - # message lines */ | |
2961 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1); | |
2962 if (!p_cp) | |
2963 blanklines += 4; /* add 4 for not showing "Vi compatible" message */ | |
2964 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
2965 if (mch_windows95()) | |
2966 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */ | |
2967 #endif | |
2968 | |
2969 #ifdef FEAT_WINDOWS | |
2970 /* Don't overwrite a statusline. Depends on 'cmdheight'. */ | |
2971 if (p_ls > 1) | |
2972 blanklines -= Rows - topframe->fr_height; | |
2973 #endif | |
2974 if (blanklines < 0) | |
2975 blanklines = 0; | |
2976 | |
2977 /* Show the sponsor and register message one out of four times, the Uganda | |
2978 * message two out of four times. */ | |
615 | 2979 sponsor = (int)time(NULL); |
7 | 2980 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); |
2981 | |
2982 /* start displaying the message lines after half of the blank lines */ | |
2983 row = blanklines / 2; | |
2984 if ((row >= 2 && Columns >= 50) || colon) | |
2985 { | |
2986 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i) | |
2987 { | |
2988 p = lines[i]; | |
2989 #ifdef FEAT_GUI | |
2990 if (p_im && gui.in_use && gui_lines[i] != NULL) | |
2991 p = gui_lines[i]; | |
2992 #endif | |
2993 if (p == NULL) | |
2994 { | |
2995 if (!p_cp) | |
2996 break; | |
2997 continue; | |
2998 } | |
2999 if (sponsor != 0) | |
3000 { | |
3001 if (strstr(p, "children") != NULL) | |
3002 p = sponsor < 0 | |
3003 ? N_("Sponsor Vim development!") | |
3004 : N_("Become a registered Vim user!"); | |
3005 else if (strstr(p, "iccf") != NULL) | |
3006 p = sponsor < 0 | |
3007 ? N_("type :help sponsor<Enter> for information ") | |
3008 : N_("type :help register<Enter> for information "); | |
3009 else if (strstr(p, "Orphans") != NULL) | |
3010 p = N_("menu Help->Sponsor/Register for information "); | |
3011 } | |
3012 if (*p != NUL) | |
3013 do_intro_line(row, (char_u *)_(p), i == 2, 0); | |
3014 ++row; | |
3015 } | |
3016 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
3017 if (mch_windows95()) | |
3018 { | |
3019 do_intro_line(++row, | |
3020 (char_u *)_("WARNING: Windows 95/98/ME detected"), | |
3021 FALSE, hl_attr(HLF_E)); | |
3022 do_intro_line(++row, | |
3023 (char_u *)_("type :help windows95<Enter> for info on this"), | |
3024 FALSE, 0); | |
3025 } | |
3026 #endif | |
3027 } | |
3028 | |
3029 /* Make the wait-return message appear just below the text. */ | |
3030 if (colon) | |
3031 msg_row = row; | |
3032 } | |
3033 | |
3034 static void | |
3035 do_intro_line(row, mesg, add_version, attr) | |
3036 int row; | |
3037 char_u *mesg; | |
3038 int add_version; | |
3039 int attr; | |
3040 { | |
3041 char_u vers[20]; | |
3042 int col; | |
3043 char_u *p; | |
3044 int l; | |
3045 int clen; | |
3046 #ifdef MODIFIED_BY | |
3047 # define MODBY_LEN 150 | |
3048 char_u modby[MODBY_LEN]; | |
3049 | |
3050 if (*mesg == ' ') | |
3051 { | |
1491 | 3052 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1); |
7 | 3053 l = STRLEN(modby); |
1491 | 3054 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1); |
7 | 3055 mesg = modby; |
3056 } | |
3057 #endif | |
3058 | |
3059 /* Center the message horizontally. */ | |
3060 col = vim_strsize(mesg); | |
3061 if (add_version) | |
3062 { | |
3063 STRCPY(vers, mediumVersion); | |
3064 if (highest_patch()) | |
3065 { | |
3066 /* Check for 9.9x or 9.9xx, alpha/beta version */ | |
2619 | 3067 if (isalpha((int)vers[3])) |
7 | 3068 { |
3396 | 3069 int len = (isalpha((int)vers[4])) ? 5 : 4; |
3070 sprintf((char *)vers + len, ".%d%s", highest_patch(), | |
3071 mediumVersion + len); | |
7 | 3072 } |
3073 else | |
3074 sprintf((char *)vers + 3, ".%d", highest_patch()); | |
3075 } | |
3076 col += (int)STRLEN(vers); | |
3077 } | |
3078 col = (Columns - col) / 2; | |
3079 if (col < 0) | |
3080 col = 0; | |
3081 | |
3082 /* Split up in parts to highlight <> items differently. */ | |
3083 for (p = mesg; *p != NUL; p += l) | |
3084 { | |
3085 clen = 0; | |
3086 for (l = 0; p[l] != NUL | |
3087 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l) | |
3088 { | |
3089 #ifdef FEAT_MBYTE | |
3090 if (has_mbyte) | |
3091 { | |
3092 clen += ptr2cells(p + l); | |
474 | 3093 l += (*mb_ptr2len)(p + l) - 1; |
7 | 3094 } |
3095 else | |
3096 #endif | |
3097 clen += byte2cells(p[l]); | |
3098 } | |
3099 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr); | |
3100 col += clen; | |
3101 } | |
3102 | |
3103 /* Add the version number to the version line. */ | |
3104 if (add_version) | |
3105 screen_puts(vers, row, col, 0); | |
3106 } | |
3107 | |
3108 /* | |
3109 * ":intro": clear screen, display intro screen and wait for return. | |
3110 */ | |
3111 void | |
3112 ex_intro(eap) | |
1876 | 3113 exarg_T *eap UNUSED; |
7 | 3114 { |
3115 screenclear(); | |
3116 intro_message(TRUE); | |
3117 wait_return(TRUE); | |
3118 } |