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