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