Mercurial > vim
annotate src/version.c @ 8316:058b9e4a291b v7.4.1450
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 28 18:04:00 2016 +0100
patch 7.4.1450
Problem: Json encoding still fails when encoding is not utf-8.
Solution: Set 'encoding' before :scriptencoding. Run the json test
separately to avoid affecting other tests.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 28 Feb 2016 18:15:04 +0100 |
parents | 4e057409f1d7 |
children | 190d8084cb3a |
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 |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
39 make_version(void) |
7 | 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 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
58 static void list_features(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
59 static void version_msg(char *s); |
7 | 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 | |
7759
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
109 #ifdef FEAT_CHANNEL |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
110 "+channel", |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
111 #else |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
112 "-channel", |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
113 #endif |
7 | 114 #ifdef FEAT_CINDENT |
115 "+cindent", | |
116 #else | |
117 "-cindent", | |
118 #endif | |
119 #ifdef FEAT_CLIENTSERVER | |
120 "+clientserver", | |
121 #else | |
122 "-clientserver", | |
123 #endif | |
124 #ifdef FEAT_CLIPBOARD | |
125 "+clipboard", | |
126 #else | |
127 "-clipboard", | |
128 #endif | |
129 #ifdef FEAT_CMDL_COMPL | |
130 "+cmdline_compl", | |
131 #else | |
132 "-cmdline_compl", | |
133 #endif | |
134 #ifdef FEAT_CMDHIST | |
135 "+cmdline_hist", | |
136 #else | |
137 "-cmdline_hist", | |
138 #endif | |
139 #ifdef FEAT_CMDL_INFO | |
140 "+cmdline_info", | |
141 #else | |
142 "-cmdline_info", | |
143 #endif | |
144 #ifdef FEAT_COMMENTS | |
145 "+comments", | |
146 #else | |
147 "-comments", | |
148 #endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
149 #ifdef FEAT_CONCEAL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
150 "+conceal", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
151 #else |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
152 "-conceal", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
153 #endif |
7 | 154 #ifdef FEAT_CRYPT |
155 "+cryptv", | |
156 #else | |
157 "-cryptv", | |
158 #endif | |
159 #ifdef FEAT_CSCOPE | |
160 "+cscope", | |
161 #else | |
162 "-cscope", | |
163 #endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
164 #ifdef FEAT_CURSORBIND |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
165 "+cursorbind", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
166 #else |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
167 "-cursorbind", |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
168 #endif |
647 | 169 #ifdef CURSOR_SHAPE |
170 "+cursorshape", | |
171 #else | |
172 "-cursorshape", | |
173 #endif | |
7 | 174 #if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG) |
175 "+dialog_con_gui", | |
176 #else | |
177 # if defined(FEAT_CON_DIALOG) | |
178 "+dialog_con", | |
179 # else | |
180 # if defined(FEAT_GUI_DIALOG) | |
181 "+dialog_gui", | |
182 # else | |
183 "-dialog", | |
184 # endif | |
185 # endif | |
186 #endif | |
187 #ifdef FEAT_DIFF | |
188 "+diff", | |
189 #else | |
190 "-diff", | |
191 #endif | |
192 #ifdef FEAT_DIGRAPHS | |
193 "+digraphs", | |
194 #else | |
195 "-digraphs", | |
196 #endif | |
6110 | 197 #ifdef FEAT_GUI_W32 |
198 # ifdef FEAT_DIRECTX | |
199 "+directx", | |
200 # else | |
201 "-directx", | |
202 # endif | |
203 #endif | |
7 | 204 #ifdef FEAT_DND |
205 "+dnd", | |
206 #else | |
207 "-dnd", | |
208 #endif | |
209 #ifdef EBCDIC | |
210 "+ebcdic", | |
211 #else | |
212 "-ebcdic", | |
213 #endif | |
214 #ifdef FEAT_EMACS_TAGS | |
215 "+emacs_tags", | |
216 #else | |
217 "-emacs_tags", | |
218 #endif | |
219 #ifdef FEAT_EVAL | |
220 "+eval", | |
221 #else | |
222 "-eval", | |
223 #endif | |
224 "+ex_extra", | |
225 #ifdef FEAT_SEARCH_EXTRA | |
226 "+extra_search", | |
227 #else | |
228 "-extra_search", | |
229 #endif | |
230 #ifdef FEAT_FKMAP | |
231 "+farsi", | |
232 #else | |
233 "-farsi", | |
234 #endif | |
235 #ifdef FEAT_SEARCHPATH | |
236 "+file_in_path", | |
237 #else | |
238 "-file_in_path", | |
239 #endif | |
240 #ifdef FEAT_FIND_ID | |
241 "+find_in_path", | |
242 #else | |
243 "-find_in_path", | |
244 #endif | |
1621 | 245 #ifdef FEAT_FLOAT |
246 "+float", | |
247 #else | |
248 "-float", | |
249 #endif | |
7 | 250 #ifdef FEAT_FOLDING |
251 "+folding", | |
252 #else | |
253 "-folding", | |
254 #endif | |
255 #ifdef FEAT_FOOTER | |
256 "+footer", | |
257 #else | |
258 "-footer", | |
259 #endif | |
260 /* only interesting on Unix systems */ | |
261 #if !defined(USE_SYSTEM) && defined(UNIX) | |
262 "+fork()", | |
263 #endif | |
264 #ifdef FEAT_GETTEXT | |
265 # ifdef DYNAMIC_GETTEXT | |
266 "+gettext/dyn", | |
267 # else | |
268 "+gettext", | |
269 # endif | |
270 #else | |
271 "-gettext", | |
272 #endif | |
273 #ifdef FEAT_HANGULIN | |
274 "+hangul_input", | |
275 #else | |
276 "-hangul_input", | |
277 #endif | |
278 #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV) | |
279 # ifdef DYNAMIC_ICONV | |
280 "+iconv/dyn", | |
281 # else | |
282 "+iconv", | |
283 # endif | |
284 #else | |
285 "-iconv", | |
286 #endif | |
287 #ifdef FEAT_INS_EXPAND | |
288 "+insert_expand", | |
289 #else | |
290 "-insert_expand", | |
291 #endif | |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
292 #ifdef FEAT_JOB |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
293 "+job", |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
294 #else |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
295 "-job", |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
296 #endif |
7 | 297 #ifdef FEAT_JUMPLIST |
298 "+jumplist", | |
299 #else | |
300 "-jumplist", | |
301 #endif | |
302 #ifdef FEAT_KEYMAP | |
303 "+keymap", | |
304 #else | |
305 "-keymap", | |
306 #endif | |
307 #ifdef FEAT_LANGMAP | |
308 "+langmap", | |
309 #else | |
310 "-langmap", | |
311 #endif | |
312 #ifdef FEAT_LIBCALL | |
313 "+libcall", | |
314 #else | |
315 "-libcall", | |
316 #endif | |
317 #ifdef FEAT_LINEBREAK | |
318 "+linebreak", | |
319 #else | |
320 "-linebreak", | |
321 #endif | |
322 #ifdef FEAT_LISP | |
323 "+lispindent", | |
324 #else | |
325 "-lispindent", | |
326 #endif | |
327 #ifdef FEAT_LISTCMDS | |
328 "+listcmds", | |
329 #else | |
330 "-listcmds", | |
331 #endif | |
332 #ifdef FEAT_LOCALMAP | |
333 "+localmap", | |
334 #else | |
335 "-localmap", | |
336 #endif | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
337 #ifdef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
338 # ifdef DYNAMIC_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
339 "+lua/dyn", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
340 # else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
341 "+lua", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
342 # endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
343 #else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
344 "-lua", |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2275
diff
changeset
|
345 #endif |
7 | 346 #ifdef FEAT_MENU |
347 "+menu", | |
348 #else | |
349 "-menu", | |
350 #endif | |
351 #ifdef FEAT_SESSION | |
352 "+mksession", | |
353 #else | |
354 "-mksession", | |
355 #endif | |
356 #ifdef FEAT_MODIFY_FNAME | |
357 "+modify_fname", | |
358 #else | |
359 "-modify_fname", | |
360 #endif | |
361 #ifdef FEAT_MOUSE | |
362 "+mouse", | |
363 # ifdef FEAT_MOUSESHAPE | |
364 "+mouseshape", | |
365 # else | |
366 "-mouseshape", | |
367 # endif | |
368 # else | |
369 "-mouse", | |
370 #endif | |
3898 | 371 |
7 | 372 #if defined(UNIX) || defined(VMS) |
373 # ifdef FEAT_MOUSE_DEC | |
374 "+mouse_dec", | |
375 # else | |
376 "-mouse_dec", | |
377 # endif | |
378 # ifdef FEAT_MOUSE_GPM | |
379 "+mouse_gpm", | |
380 # else | |
381 "-mouse_gpm", | |
382 # endif | |
383 # ifdef FEAT_MOUSE_JSB | |
384 "+mouse_jsbterm", | |
385 # else | |
386 "-mouse_jsbterm", | |
387 # endif | |
388 # ifdef FEAT_MOUSE_NET | |
389 "+mouse_netterm", | |
390 # else | |
391 "-mouse_netterm", | |
392 # endif | |
393 #endif | |
3898 | 394 |
7 | 395 #ifdef __QNX__ |
396 # ifdef FEAT_MOUSE_PTERM | |
397 "+mouse_pterm", | |
398 # else | |
399 "-mouse_pterm", | |
400 # endif | |
401 #endif | |
3898 | 402 |
403 #if defined(UNIX) || defined(VMS) | |
404 # ifdef FEAT_MOUSE_SGR | |
405 "+mouse_sgr", | |
406 # else | |
407 "-mouse_sgr", | |
408 # endif | |
409 # ifdef FEAT_SYSMOUSE | |
410 "+mouse_sysmouse", | |
411 # else | |
412 "-mouse_sysmouse", | |
413 # endif | |
414 # ifdef FEAT_MOUSE_URXVT | |
415 "+mouse_urxvt", | |
416 # else | |
417 "-mouse_urxvt", | |
418 # endif | |
419 # ifdef FEAT_MOUSE_XTERM | |
420 "+mouse_xterm", | |
421 # else | |
422 "-mouse_xterm", | |
423 # endif | |
424 #endif | |
425 | |
7 | 426 #ifdef FEAT_MBYTE_IME |
427 # ifdef DYNAMIC_IME | |
428 "+multi_byte_ime/dyn", | |
429 # else | |
430 "+multi_byte_ime", | |
431 # endif | |
432 #else | |
433 # ifdef FEAT_MBYTE | |
434 "+multi_byte", | |
435 # else | |
436 "-multi_byte", | |
437 # endif | |
438 #endif | |
439 #ifdef FEAT_MULTI_LANG | |
440 "+multi_lang", | |
441 #else | |
442 "-multi_lang", | |
443 #endif | |
14 | 444 #ifdef FEAT_MZSCHEME |
132 | 445 # ifdef DYNAMIC_MZSCHEME |
446 "+mzscheme/dyn", | |
447 # else | |
14 | 448 "+mzscheme", |
132 | 449 # endif |
14 | 450 #else |
451 "-mzscheme", | |
452 #endif | |
7 | 453 #ifdef FEAT_NETBEANS_INTG |
454 "+netbeans_intg", | |
455 #else | |
456 "-netbeans_intg", | |
457 #endif | |
458 #ifdef FEAT_GUI_W32 | |
459 # ifdef FEAT_OLE | |
460 "+ole", | |
461 # else | |
462 "-ole", | |
463 # endif | |
464 #endif | |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
465 "+packages", |
7 | 466 #ifdef FEAT_PATH_EXTRA |
467 "+path_extra", | |
468 #else | |
469 "-path_extra", | |
470 #endif | |
471 #ifdef FEAT_PERL | |
472 # ifdef DYNAMIC_PERL | |
473 "+perl/dyn", | |
474 # else | |
475 "+perl", | |
476 # endif | |
477 #else | |
478 "-perl", | |
479 #endif | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
480 #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
|
481 "+persistent_undo", |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
482 #else |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
483 "-persistent_undo", |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
484 #endif |
7 | 485 #ifdef FEAT_PRINTER |
486 # ifdef FEAT_POSTSCRIPT | |
487 "+postscript", | |
488 # else | |
489 "-postscript", | |
490 # endif | |
491 "+printer", | |
492 #else | |
493 "-printer", | |
494 #endif | |
170 | 495 #ifdef FEAT_PROFILE |
496 "+profile", | |
497 #else | |
498 "-profile", | |
499 #endif | |
7 | 500 #ifdef FEAT_PYTHON |
501 # ifdef DYNAMIC_PYTHON | |
502 "+python/dyn", | |
503 # else | |
504 "+python", | |
505 # endif | |
506 #else | |
507 "-python", | |
508 #endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
509 #ifdef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
510 # ifdef DYNAMIC_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
511 "+python3/dyn", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
512 # else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
513 "+python3", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
514 # endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
515 #else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
516 "-python3", |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
517 #endif |
7 | 518 #ifdef FEAT_QUICKFIX |
519 "+quickfix", | |
520 #else | |
521 "-quickfix", | |
522 #endif | |
857 | 523 #ifdef FEAT_RELTIME |
524 "+reltime", | |
525 #else | |
526 "-reltime", | |
527 #endif | |
7 | 528 #ifdef FEAT_RIGHTLEFT |
529 "+rightleft", | |
530 #else | |
531 "-rightleft", | |
532 #endif | |
533 #ifdef FEAT_RUBY | |
534 # ifdef DYNAMIC_RUBY | |
535 "+ruby/dyn", | |
536 # else | |
537 "+ruby", | |
538 # endif | |
539 #else | |
540 "-ruby", | |
541 #endif | |
542 #ifdef FEAT_SCROLLBIND | |
543 "+scrollbind", | |
544 #else | |
545 "-scrollbind", | |
546 #endif | |
547 #ifdef FEAT_SIGNS | |
548 "+signs", | |
549 #else | |
550 "-signs", | |
551 #endif | |
552 #ifdef FEAT_SMARTINDENT | |
553 "+smartindent", | |
554 #else | |
555 "-smartindent", | |
556 #endif | |
1989 | 557 #ifdef STARTUPTIME |
558 "+startuptime", | |
559 #else | |
560 "-startuptime", | |
561 #endif | |
7 | 562 #ifdef FEAT_STL_OPT |
563 "+statusline", | |
564 #else | |
565 "-statusline", | |
566 #endif | |
567 #ifdef FEAT_SUN_WORKSHOP | |
568 "+sun_workshop", | |
569 #else | |
570 "-sun_workshop", | |
571 #endif | |
572 #ifdef FEAT_SYN_HL | |
573 "+syntax", | |
574 #else | |
575 "-syntax", | |
576 #endif | |
577 /* only interesting on Unix systems */ | |
578 #if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__)) | |
579 "+system()", | |
580 #endif | |
581 #ifdef FEAT_TAG_BINS | |
582 "+tag_binary", | |
583 #else | |
584 "-tag_binary", | |
585 #endif | |
586 #ifdef FEAT_TAG_OLDSTATIC | |
587 "+tag_old_static", | |
588 #else | |
589 "-tag_old_static", | |
590 #endif | |
591 #ifdef FEAT_TAG_ANYWHITE | |
592 "+tag_any_white", | |
593 #else | |
594 "-tag_any_white", | |
595 #endif | |
596 #ifdef FEAT_TCL | |
597 # ifdef DYNAMIC_TCL | |
598 "+tcl/dyn", | |
599 # else | |
600 "+tcl", | |
601 # endif | |
602 #else | |
603 "-tcl", | |
604 #endif | |
605 #if defined(UNIX) || defined(__EMX__) | |
606 /* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */ | |
607 # ifdef TERMINFO | |
608 "+terminfo", | |
609 # else | |
610 "-terminfo", | |
611 # endif | |
612 #else /* unix always includes termcap support */ | |
613 # ifdef HAVE_TGETENT | |
614 "+tgetent", | |
615 # else | |
616 "-tgetent", | |
617 # endif | |
618 #endif | |
619 #ifdef FEAT_TERMRESPONSE | |
620 "+termresponse", | |
621 #else | |
622 "-termresponse", | |
623 #endif | |
624 #ifdef FEAT_TEXTOBJ | |
625 "+textobjects", | |
626 #else | |
627 "-textobjects", | |
628 #endif | |
629 #ifdef FEAT_TITLE | |
630 "+title", | |
631 #else | |
632 "-title", | |
633 #endif | |
634 #ifdef FEAT_TOOLBAR | |
635 "+toolbar", | |
636 #else | |
637 "-toolbar", | |
638 #endif | |
639 #ifdef FEAT_USR_CMDS | |
640 "+user_commands", | |
641 #else | |
642 "-user_commands", | |
643 #endif | |
644 #ifdef FEAT_VERTSPLIT | |
645 "+vertsplit", | |
646 #else | |
647 "-vertsplit", | |
648 #endif | |
649 #ifdef FEAT_VIRTUALEDIT | |
650 "+virtualedit", | |
651 #else | |
652 "-virtualedit", | |
653 #endif | |
654 "+visual", | |
5735 | 655 #ifdef FEAT_VISUALEXTRA |
7 | 656 "+visualextra", |
5735 | 657 #else |
7 | 658 "-visualextra", |
659 #endif | |
660 #ifdef FEAT_VIMINFO | |
661 "+viminfo", | |
662 #else | |
663 "-viminfo", | |
664 #endif | |
665 #ifdef FEAT_VREPLACE | |
666 "+vreplace", | |
667 #else | |
668 "-vreplace", | |
669 #endif | |
670 #ifdef FEAT_WILDIGN | |
671 "+wildignore", | |
672 #else | |
673 "-wildignore", | |
674 #endif | |
675 #ifdef FEAT_WILDMENU | |
676 "+wildmenu", | |
677 #else | |
678 "-wildmenu", | |
679 #endif | |
680 #ifdef FEAT_WINDOWS | |
681 "+windows", | |
682 #else | |
683 "-windows", | |
684 #endif | |
685 #ifdef FEAT_WRITEBACKUP | |
686 "+writebackup", | |
687 #else | |
688 "-writebackup", | |
689 #endif | |
690 #if defined(UNIX) || defined(VMS) | |
691 # ifdef FEAT_X11 | |
692 "+X11", | |
693 # else | |
694 "-X11", | |
695 # endif | |
696 #endif | |
697 #ifdef FEAT_XFONTSET | |
698 "+xfontset", | |
699 #else | |
700 "-xfontset", | |
701 #endif | |
702 #ifdef FEAT_XIM | |
703 "+xim", | |
704 #else | |
705 "-xim", | |
706 #endif | |
707 #if defined(UNIX) || defined(VMS) | |
708 # ifdef USE_XSMP_INTERACT | |
709 "+xsmp_interact", | |
710 # else | |
711 # ifdef USE_XSMP | |
712 "+xsmp", | |
713 # else | |
714 "-xsmp", | |
715 # endif | |
716 # endif | |
717 # ifdef FEAT_XCLIPBOARD | |
718 "+xterm_clipboard", | |
719 # else | |
720 "-xterm_clipboard", | |
721 # endif | |
722 #endif | |
723 #ifdef FEAT_XTERM_SAVE | |
724 "+xterm_save", | |
725 #else | |
726 "-xterm_save", | |
727 #endif | |
728 #ifdef WIN3264 | |
729 # ifdef FEAT_XPM_W32 | |
730 "+xpm_w32", | |
731 # else | |
732 "-xpm_w32", | |
733 # endif | |
5316 | 734 #else |
735 # ifdef HAVE_XPM | |
736 "+xpm", | |
737 # else | |
738 "-xpm", | |
739 # endif | |
7 | 740 #endif |
741 NULL | |
742 }; | |
743 | |
744 static int included_patches[] = | |
745 { /* Add new patch number below this line */ | |
746 /**/ | |
8316
058b9e4a291b
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents:
8314
diff
changeset
|
747 1450, |
058b9e4a291b
commit https://github.com/vim/vim/commit/1c39102666d2ccb998059bd7ada2d2efa31a11bc
Christian Brabandt <cb@256bit.org>
parents:
8314
diff
changeset
|
748 /**/ |
8314
4e057409f1d7
commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents:
8312
diff
changeset
|
749 1449, |
4e057409f1d7
commit https://github.com/vim/vim/commit/8cc6977a9655603bfc4aab64edddafef147da65e
Christian Brabandt <cb@256bit.org>
parents:
8312
diff
changeset
|
750 /**/ |
8312
1001ec135d6e
commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents:
8310
diff
changeset
|
751 1448, |
1001ec135d6e
commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6
Christian Brabandt <cb@256bit.org>
parents:
8310
diff
changeset
|
752 /**/ |
8310
aec8f8ce8e4c
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents:
8308
diff
changeset
|
753 1447, |
aec8f8ce8e4c
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Christian Brabandt <cb@256bit.org>
parents:
8308
diff
changeset
|
754 /**/ |
8308
c1f29c1a968a
commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents:
8306
diff
changeset
|
755 1446, |
c1f29c1a968a
commit https://github.com/vim/vim/commit/80e78847395b5c8ada7861674774d81bd0a42789
Christian Brabandt <cb@256bit.org>
parents:
8306
diff
changeset
|
756 /**/ |
8306
7fcf3f6020c1
commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents:
8304
diff
changeset
|
757 1445, |
7fcf3f6020c1
commit https://github.com/vim/vim/commit/b36287283781e09d8874157b9d9bdc5243a2f319
Christian Brabandt <cb@256bit.org>
parents:
8304
diff
changeset
|
758 /**/ |
8304
097886a3379b
commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
759 1444, |
097886a3379b
commit https://github.com/vim/vim/commit/0f526f5652e0a5432493b3f2a1cb34ab99a9da0a
Christian Brabandt <cb@256bit.org>
parents:
8301
diff
changeset
|
760 /**/ |
8301
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8299
diff
changeset
|
761 1443, |
6a4c11fa1aa3
commit https://github.com/vim/vim/commit/3f2a5d8dfbe2998b4d3d369c0275e2366c92666b
Christian Brabandt <cb@256bit.org>
parents:
8299
diff
changeset
|
762 /**/ |
8299
d2a215e8d5b4
commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents:
8297
diff
changeset
|
763 1442, |
d2a215e8d5b4
commit https://github.com/vim/vim/commit/e0fd2aa8f6544f9cf8286c707be3fb1c66c609e6
Christian Brabandt <cb@256bit.org>
parents:
8297
diff
changeset
|
764 /**/ |
8297
4929eca308b7
commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents:
8295
diff
changeset
|
765 1441, |
4929eca308b7
commit https://github.com/vim/vim/commit/e26643e6bcd6c6c42f5eae78cee2e7950cd3f629
Christian Brabandt <cb@256bit.org>
parents:
8295
diff
changeset
|
766 /**/ |
8295
18fd94bd4eb8
commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents:
8293
diff
changeset
|
767 1440, |
18fd94bd4eb8
commit https://github.com/vim/vim/commit/fefecb0fbe14c44d46f91036d76bbb6c28162da8
Christian Brabandt <cb@256bit.org>
parents:
8293
diff
changeset
|
768 /**/ |
8293
367a7fed630b
commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents:
8291
diff
changeset
|
769 1439, |
367a7fed630b
commit https://github.com/vim/vim/commit/f97ddbeb255c64a2b3d9db4b049278cd286070a6
Christian Brabandt <cb@256bit.org>
parents:
8291
diff
changeset
|
770 /**/ |
8291
ac0c43e7af20
commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
771 1438, |
ac0c43e7af20
commit https://github.com/vim/vim/commit/c7f0ebc6d1e1cdaed816b88a0d6092c5ace615eb
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
772 /**/ |
8289
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8287
diff
changeset
|
773 1437, |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8287
diff
changeset
|
774 /**/ |
8287
56dbae4b73c6
commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents:
8285
diff
changeset
|
775 1436, |
56dbae4b73c6
commit https://github.com/vim/vim/commit/e98991b8cfaf29016d14b8ec437d3dedfc0a5eb7
Christian Brabandt <cb@256bit.org>
parents:
8285
diff
changeset
|
776 /**/ |
8285
e05e28dcb590
commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents:
8283
diff
changeset
|
777 1435, |
e05e28dcb590
commit https://github.com/vim/vim/commit/8b1862a31639becadcbbca5dc2eaa92db73e8e5f
Christian Brabandt <cb@256bit.org>
parents:
8283
diff
changeset
|
778 /**/ |
8283
b8a56d4d83e0
commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
779 1434, |
b8a56d4d83e0
commit https://github.com/vim/vim/commit/b6ff81188d27fae774d9ad2dfb498f596d697d4b
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
780 /**/ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8279
diff
changeset
|
781 1433, |
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8279
diff
changeset
|
782 /**/ |
8279
738c2929d6ad
commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents:
8277
diff
changeset
|
783 1432, |
738c2929d6ad
commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09
Christian Brabandt <cb@256bit.org>
parents:
8277
diff
changeset
|
784 /**/ |
8277
fa1e3fa56104
commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents:
8275
diff
changeset
|
785 1431, |
fa1e3fa56104
commit https://github.com/vim/vim/commit/9e24f0c5c1b1097295d0619d95da66e6b2d83ac9
Christian Brabandt <cb@256bit.org>
parents:
8275
diff
changeset
|
786 /**/ |
8275
ff900e499f79
commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents:
8273
diff
changeset
|
787 1430, |
ff900e499f79
commit https://github.com/vim/vim/commit/7ce686c990ea8c490d16be7f1c6bd95eb48816f9
Christian Brabandt <cb@256bit.org>
parents:
8273
diff
changeset
|
788 /**/ |
8273
0c3210caefa6
commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents:
8271
diff
changeset
|
789 1429, |
0c3210caefa6
commit https://github.com/vim/vim/commit/d804fdf4c25435284333258856bc265f1ff10b09
Christian Brabandt <cb@256bit.org>
parents:
8271
diff
changeset
|
790 /**/ |
8271
770774e66011
commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents:
8269
diff
changeset
|
791 1428, |
770774e66011
commit https://github.com/vim/vim/commit/edb4f2b3601b0abd47091606269c0ac3244a805b
Christian Brabandt <cb@256bit.org>
parents:
8269
diff
changeset
|
792 /**/ |
8269
553a4c8dd796
commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
793 1427, |
553a4c8dd796
commit https://github.com/vim/vim/commit/43acbce1bb0a33edc67496b220cae629ad95d2d8
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
794 /**/ |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8265
diff
changeset
|
795 1426, |
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8265
diff
changeset
|
796 /**/ |
8265
792bc43e69a7
commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents:
8263
diff
changeset
|
797 1425, |
792bc43e69a7
commit https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
Christian Brabandt <cb@256bit.org>
parents:
8263
diff
changeset
|
798 /**/ |
8263
96c0100f22f1
commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents:
8261
diff
changeset
|
799 1424, |
96c0100f22f1
commit https://github.com/vim/vim/commit/0c0dac1fb134309462b263fd5347d9232bfe36ed
Christian Brabandt <cb@256bit.org>
parents:
8261
diff
changeset
|
800 /**/ |
8261
a412b466bedc
commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents:
8259
diff
changeset
|
801 1423, |
a412b466bedc
commit https://github.com/vim/vim/commit/4cafa6dc7f0728b018979aff0ca039908ecf2ae1
Christian Brabandt <cb@256bit.org>
parents:
8259
diff
changeset
|
802 /**/ |
8259
99a70c3b902f
commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents:
8257
diff
changeset
|
803 1422, |
99a70c3b902f
commit https://github.com/vim/vim/commit/46c85439c966d7ed39fb3d711d4d6c61ac964647
Christian Brabandt <cb@256bit.org>
parents:
8257
diff
changeset
|
804 /**/ |
8257
c4ffdda8cdfd
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents:
8255
diff
changeset
|
805 1421, |
c4ffdda8cdfd
commit https://github.com/vim/vim/commit/c8dcbb12c5d7f3eb0c334daebb4475bb015b91e7
Christian Brabandt <cb@256bit.org>
parents:
8255
diff
changeset
|
806 /**/ |
8255
355652348057
commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents:
8253
diff
changeset
|
807 1420, |
355652348057
commit https://github.com/vim/vim/commit/d2227a02b03708eb0579e17612d5a96262f3d463
Christian Brabandt <cb@256bit.org>
parents:
8253
diff
changeset
|
808 /**/ |
8253
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8251
diff
changeset
|
809 1419, |
1b6a589a0efc
commit https://github.com/vim/vim/commit/49c39ff678e2ba9f7dc280b25368e12084a610cf
Christian Brabandt <cb@256bit.org>
parents:
8251
diff
changeset
|
810 /**/ |
8251
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8249
diff
changeset
|
811 1418, |
989ac3aed1ef
commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents:
8249
diff
changeset
|
812 /**/ |
8249
8dd8d96278a4
commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents:
8247
diff
changeset
|
813 1417, |
8dd8d96278a4
commit https://github.com/vim/vim/commit/265f64efcf8df61cfbc93bbe103018dcfc5836e4
Christian Brabandt <cb@256bit.org>
parents:
8247
diff
changeset
|
814 /**/ |
8247
6ee794dc950e
commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents:
8244
diff
changeset
|
815 1416, |
6ee794dc950e
commit https://github.com/vim/vim/commit/669cac0a805333e69b9e1176425083914eada659
Christian Brabandt <cb@256bit.org>
parents:
8244
diff
changeset
|
816 /**/ |
8244
acc8029e530f
commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents:
8242
diff
changeset
|
817 1415, |
acc8029e530f
commit https://github.com/vim/vim/commit/84f4996d2ab2982006d79ee69df4688c966bf8e8
Christian Brabandt <cb@256bit.org>
parents:
8242
diff
changeset
|
818 /**/ |
8242
1313d2e282dc
commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
819 1414, |
1313d2e282dc
commit https://github.com/vim/vim/commit/81275ca9ce3059148fdb65dff29f7ecdbca446fb
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
820 /**/ |
8240
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8238
diff
changeset
|
821 1413, |
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8238
diff
changeset
|
822 /**/ |
8238
d7e1526ae1b9
commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents:
8236
diff
changeset
|
823 1412, |
d7e1526ae1b9
commit https://github.com/vim/vim/commit/68c85fcdf31c104db21c96cd5871724e458c95ff
Christian Brabandt <cb@256bit.org>
parents:
8236
diff
changeset
|
824 /**/ |
8236
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
8234
diff
changeset
|
825 1411, |
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
8234
diff
changeset
|
826 /**/ |
8234
dc72f4a463e4
commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents:
8232
diff
changeset
|
827 1410, |
dc72f4a463e4
commit https://github.com/vim/vim/commit/42dd7aee41ffcc5afdbf9bb83d70e7123261cada
Christian Brabandt <cb@256bit.org>
parents:
8232
diff
changeset
|
828 /**/ |
8232
a777ff826523
commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents:
8230
diff
changeset
|
829 1409, |
a777ff826523
commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6
Christian Brabandt <cb@256bit.org>
parents:
8230
diff
changeset
|
830 /**/ |
8230
51ca0cee512e
commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents:
8228
diff
changeset
|
831 1408, |
51ca0cee512e
commit https://github.com/vim/vim/commit/3ea0f1ae318db6cd9413914bb2ff824d71cefc6e
Christian Brabandt <cb@256bit.org>
parents:
8228
diff
changeset
|
832 /**/ |
8228
a0e552c51c34
commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents:
8226
diff
changeset
|
833 1407, |
a0e552c51c34
commit https://github.com/vim/vim/commit/f1b6ac72293e658bb6e68c5cfd926c405b1b6f34
Christian Brabandt <cb@256bit.org>
parents:
8226
diff
changeset
|
834 /**/ |
8226
cb0edf7bd0a4
commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents:
8224
diff
changeset
|
835 1406, |
cb0edf7bd0a4
commit https://github.com/vim/vim/commit/e16e5a9d8d6d3159107541a259c6823ade18fd08
Christian Brabandt <cb@256bit.org>
parents:
8224
diff
changeset
|
836 /**/ |
8224
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
837 1405, |
2baf64fead5e
commit https://github.com/vim/vim/commit/8aefbe0ad5d05ee7225b20024b0f3023286ebd0f
Christian Brabandt <cb@256bit.org>
parents:
8222
diff
changeset
|
838 /**/ |
8222
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
839 1404, |
4f0677020a43
commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents:
8220
diff
changeset
|
840 /**/ |
8220
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
841 1403, |
ad9edad64d22
commit https://github.com/vim/vim/commit/0106e3d0bf8a38351af45331cbf3b9172a6bb90b
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
842 /**/ |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
843 1402, |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
844 /**/ |
8216
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
845 1401, |
03af9acbefb0
commit https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Christian Brabandt <cb@256bit.org>
parents:
8214
diff
changeset
|
846 /**/ |
8214
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
847 1400, |
51b4fba718bf
commit https://github.com/vim/vim/commit/254ebaf068919407de6bd83ac905bd2f36ad944e
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
848 /**/ |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8210
diff
changeset
|
849 1399, |
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8210
diff
changeset
|
850 /**/ |
8210
b717dae2f26d
commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents:
8208
diff
changeset
|
851 1398, |
b717dae2f26d
commit https://github.com/vim/vim/commit/4e221c99e85ed40c98892068a01270b9e7492d98
Christian Brabandt <cb@256bit.org>
parents:
8208
diff
changeset
|
852 /**/ |
8208
c11aaa31a0ed
commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents:
8206
diff
changeset
|
853 1397, |
c11aaa31a0ed
commit https://github.com/vim/vim/commit/0bb6108eb4e1ecaed437bc507f514f5da7816d9e
Christian Brabandt <cb@256bit.org>
parents:
8206
diff
changeset
|
854 /**/ |
8206
78f2e8c07973
commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
855 1396, |
78f2e8c07973
commit https://github.com/vim/vim/commit/1daae446e58fd90f98c51ff3af8f54bfa5197751
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
856 /**/ |
8204
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8202
diff
changeset
|
857 1395, |
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8202
diff
changeset
|
858 /**/ |
8202
c16aa03d8db5
commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents:
8200
diff
changeset
|
859 1394, |
c16aa03d8db5
commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9
Christian Brabandt <cb@256bit.org>
parents:
8200
diff
changeset
|
860 /**/ |
8200
ee84450e604e
commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents:
8198
diff
changeset
|
861 1393, |
ee84450e604e
commit https://github.com/vim/vim/commit/bd73ae1bc63a3b0187ffe7fc8f0caee5a4eb66fa
Christian Brabandt <cb@256bit.org>
parents:
8198
diff
changeset
|
862 /**/ |
8198
7c21dd028e0f
commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents:
8196
diff
changeset
|
863 1392, |
7c21dd028e0f
commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895
Christian Brabandt <cb@256bit.org>
parents:
8196
diff
changeset
|
864 /**/ |
8196
cbb2f84da063
commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents:
8194
diff
changeset
|
865 1391, |
cbb2f84da063
commit https://github.com/vim/vim/commit/4db20ab091330e460f08651d6052afd0536c507a
Christian Brabandt <cb@256bit.org>
parents:
8194
diff
changeset
|
866 /**/ |
8194
265bcedffc15
commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents:
8192
diff
changeset
|
867 1390, |
265bcedffc15
commit https://github.com/vim/vim/commit/33c31d5abf122806a4a1b4353e5bdc1dbb9468c0
Christian Brabandt <cb@256bit.org>
parents:
8192
diff
changeset
|
868 /**/ |
8192
fa2668601c7a
commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents:
8190
diff
changeset
|
869 1389, |
fa2668601c7a
commit https://github.com/vim/vim/commit/b2bd6a087d0598f6934bba825bed7535f42efc91
Christian Brabandt <cb@256bit.org>
parents:
8190
diff
changeset
|
870 /**/ |
8190
a8e7b8328cb4
commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents:
8188
diff
changeset
|
871 1388, |
a8e7b8328cb4
commit https://github.com/vim/vim/commit/bdcd75275002c3b74015bb9bc0a01b13bb6107d4
Christian Brabandt <cb@256bit.org>
parents:
8188
diff
changeset
|
872 /**/ |
8188
9531717f0694
commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents:
8186
diff
changeset
|
873 1387, |
9531717f0694
commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d
Christian Brabandt <cb@256bit.org>
parents:
8186
diff
changeset
|
874 /**/ |
8186
5fed86dac210
commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents:
8184
diff
changeset
|
875 1386, |
5fed86dac210
commit https://github.com/vim/vim/commit/23c463a157b4f5585ad85efc9f453ffc09c245c3
Christian Brabandt <cb@256bit.org>
parents:
8184
diff
changeset
|
876 /**/ |
8184
1f81c571d0e7
commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
877 1385, |
1f81c571d0e7
commit https://github.com/vim/vim/commit/5e83840756f6bb446d5cd8d026c1430b203645f1
Christian Brabandt <cb@256bit.org>
parents:
8182
diff
changeset
|
878 /**/ |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
879 1384, |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
8180
diff
changeset
|
880 /**/ |
8180
1e48ffa2d697
commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents:
8178
diff
changeset
|
881 1383, |
1e48ffa2d697
commit https://github.com/vim/vim/commit/271273c39f2150ecdaa67fe1a2a8e9cdc63db545
Christian Brabandt <cb@256bit.org>
parents:
8178
diff
changeset
|
882 /**/ |
8178
e77efd7a7dad
commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
883 1382, |
e77efd7a7dad
commit https://github.com/vim/vim/commit/02e83b438ea7071fdb176dabbaefea319ab2d686
Christian Brabandt <cb@256bit.org>
parents:
8176
diff
changeset
|
884 /**/ |
8176
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
885 1381, |
477c1d855698
commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents:
8174
diff
changeset
|
886 /**/ |
8174
f2286ff0c102
commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
887 1380, |
f2286ff0c102
commit https://github.com/vim/vim/commit/ee1cffc07a42441924c5353af7fd7ab6e97e5aae
Christian Brabandt <cb@256bit.org>
parents:
8172
diff
changeset
|
888 /**/ |
8172
db5c79d93eee
commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
889 1379, |
db5c79d93eee
commit https://github.com/vim/vim/commit/b7522a2f0ca6c970df37241c9e70024465d8596b
Christian Brabandt <cb@256bit.org>
parents:
8170
diff
changeset
|
890 /**/ |
8170
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8168
diff
changeset
|
891 1378, |
a0ffb1f3dedc
commit https://github.com/vim/vim/commit/65edff8f51e9e54f85407bdb9156ae8e3e1b76a1
Christian Brabandt <cb@256bit.org>
parents:
8168
diff
changeset
|
892 /**/ |
8168
454a30a7590e
commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents:
8165
diff
changeset
|
893 1377, |
454a30a7590e
commit https://github.com/vim/vim/commit/08298fa1d3e32c2af476582792fc4f70cd57a59a
Christian Brabandt <cb@256bit.org>
parents:
8165
diff
changeset
|
894 /**/ |
8165
973686665238
commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
895 1376, |
973686665238
commit https://github.com/vim/vim/commit/b6b5252bcde68b296858bc090cb424493635dfec
Christian Brabandt <cb@256bit.org>
parents:
8163
diff
changeset
|
896 /**/ |
8163
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
8161
diff
changeset
|
897 1375, |
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
8161
diff
changeset
|
898 /**/ |
8161
e9caba58213b
commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents:
8159
diff
changeset
|
899 1374, |
e9caba58213b
commit https://github.com/vim/vim/commit/af7559f66603075e9b4d39d873b2161ea3ec8492
Christian Brabandt <cb@256bit.org>
parents:
8159
diff
changeset
|
900 /**/ |
8159
d0958e22d9ff
commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents:
8157
diff
changeset
|
901 1373, |
d0958e22d9ff
commit https://github.com/vim/vim/commit/ece61b06ef4726515177c9b293e1c20d2122a73f
Christian Brabandt <cb@256bit.org>
parents:
8157
diff
changeset
|
902 /**/ |
8157
74b44d06d3c7
commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents:
8155
diff
changeset
|
903 1372, |
74b44d06d3c7
commit https://github.com/vim/vim/commit/6f3a544228c1faf92211cbaf8bbedb1dff883f90
Christian Brabandt <cb@256bit.org>
parents:
8155
diff
changeset
|
904 /**/ |
8155
6ee6fb27dcea
commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents:
8153
diff
changeset
|
905 1371, |
6ee6fb27dcea
commit https://github.com/vim/vim/commit/fffd5560c6c8840be3233ef1c8da3c9e5dd424ea
Christian Brabandt <cb@256bit.org>
parents:
8153
diff
changeset
|
906 /**/ |
8153
240deebfadde
commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
907 1370, |
240deebfadde
commit https://github.com/vim/vim/commit/ddbe7d26b10c4374f406b807ae161826cf2096e1
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
908 /**/ |
8151
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8149
diff
changeset
|
909 1369, |
aa845d10c6fb
commit https://github.com/vim/vim/commit/42d38a2db17e70312d073095257555c27a5f9443
Christian Brabandt <cb@256bit.org>
parents:
8149
diff
changeset
|
910 /**/ |
8149
028e24e4c0f4
commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents:
8146
diff
changeset
|
911 1368, |
028e24e4c0f4
commit https://github.com/vim/vim/commit/914331648dc3609ca9f6954f4019497e5fb3274e
Christian Brabandt <cb@256bit.org>
parents:
8146
diff
changeset
|
912 /**/ |
8146
5dacbd22fefd
commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents:
8144
diff
changeset
|
913 1367, |
5dacbd22fefd
commit https://github.com/vim/vim/commit/c6b14f0a8346ec7ddd86f3349d0b861a1b500147
Christian Brabandt <cb@256bit.org>
parents:
8144
diff
changeset
|
914 /**/ |
8144
efbb9916290c
commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents:
8142
diff
changeset
|
915 1366, |
efbb9916290c
commit https://github.com/vim/vim/commit/663128270e6ea6b529c45ceee4b369734b8b2fdb
Christian Brabandt <cb@256bit.org>
parents:
8142
diff
changeset
|
916 /**/ |
8142
71aabce3142e
commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
917 1365, |
71aabce3142e
commit https://github.com/vim/vim/commit/befb366affa6309c6b4a469ec7f729821e3a36fa
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
918 /**/ |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8138
diff
changeset
|
919 1364, |
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8138
diff
changeset
|
920 /**/ |
8138
f52504c10387
commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents:
8136
diff
changeset
|
921 1363, |
f52504c10387
commit https://github.com/vim/vim/commit/065bbac8adfe29a09958570237d223457f235c6c
Christian Brabandt <cb@256bit.org>
parents:
8136
diff
changeset
|
922 /**/ |
8136
9b2d25319c48
commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents:
8134
diff
changeset
|
923 1362, |
9b2d25319c48
commit https://github.com/vim/vim/commit/8600ace87618d33ad3182124be447f0b2c9728f4
Christian Brabandt <cb@256bit.org>
parents:
8134
diff
changeset
|
924 /**/ |
8134
8abef552ece7
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents:
8132
diff
changeset
|
925 1361, |
8abef552ece7
commit https://github.com/vim/vim/commit/254e00d71429aa4e71b93d3e8c6bb93bfebe4f26
Christian Brabandt <cb@256bit.org>
parents:
8132
diff
changeset
|
926 /**/ |
8132
f96536c291d8
commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents:
8130
diff
changeset
|
927 1360, |
f96536c291d8
commit https://github.com/vim/vim/commit/0ba75a9714884895b2ac09733158c47544a8dfb9
Christian Brabandt <cb@256bit.org>
parents:
8130
diff
changeset
|
928 /**/ |
8130
3462f9cfedf8
commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents:
8128
diff
changeset
|
929 1359, |
3462f9cfedf8
commit https://github.com/vim/vim/commit/1f6ef66254c1e25ef1c7972aa9a0ba119ebc17e4
Christian Brabandt <cb@256bit.org>
parents:
8128
diff
changeset
|
930 /**/ |
8128
985cd5917560
commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents:
8126
diff
changeset
|
931 1358, |
985cd5917560
commit https://github.com/vim/vim/commit/1d6fbe654066845ff2a182ed258e6e9d3408fa90
Christian Brabandt <cb@256bit.org>
parents:
8126
diff
changeset
|
932 /**/ |
8126
0aa9cb77a8dd
commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents:
8124
diff
changeset
|
933 1357, |
0aa9cb77a8dd
commit https://github.com/vim/vim/commit/132006c3d0f87dbda5f4d5410fcce312e4716f72
Christian Brabandt <cb@256bit.org>
parents:
8124
diff
changeset
|
934 /**/ |
8124
310dd635e8c9
commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents:
8122
diff
changeset
|
935 1356, |
310dd635e8c9
commit https://github.com/vim/vim/commit/40ea1da14ba196a23309789852e1b663fd92e3a8
Christian Brabandt <cb@256bit.org>
parents:
8122
diff
changeset
|
936 /**/ |
8122
39532ee7dd43
commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
937 1355, |
39532ee7dd43
commit https://github.com/vim/vim/commit/ed5a78e11c80c7b13b233149fd4273b71fc96262
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
938 /**/ |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8118
diff
changeset
|
939 1354, |
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8118
diff
changeset
|
940 /**/ |
8118
1f28be191fab
commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents:
8116
diff
changeset
|
941 1353, |
1f28be191fab
commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc
Christian Brabandt <cb@256bit.org>
parents:
8116
diff
changeset
|
942 /**/ |
8116
3c1bdf20c8b9
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
943 1352, |
3c1bdf20c8b9
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Christian Brabandt <cb@256bit.org>
parents:
8114
diff
changeset
|
944 /**/ |
8114
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
945 1351, |
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8112
diff
changeset
|
946 /**/ |
8112
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
947 1350, |
a62ff5ff60c1
commit https://github.com/vim/vim/commit/ec70bdd68a531762a62728747ab529d7a6dfc842
Christian Brabandt <cb@256bit.org>
parents:
8110
diff
changeset
|
948 /**/ |
8110
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
8108
diff
changeset
|
949 1349, |
d1974721ddc5
commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151
Christian Brabandt <cb@256bit.org>
parents:
8108
diff
changeset
|
950 /**/ |
8108
50515f2e81d1
commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents:
8106
diff
changeset
|
951 1348, |
50515f2e81d1
commit https://github.com/vim/vim/commit/7f0608fb5219645d776fadfe13efb867c2460698
Christian Brabandt <cb@256bit.org>
parents:
8106
diff
changeset
|
952 /**/ |
8106
58505cbea7e5
commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents:
8104
diff
changeset
|
953 1347, |
58505cbea7e5
commit https://github.com/vim/vim/commit/8b778d55993d951a65f8a59843cecd177c707676
Christian Brabandt <cb@256bit.org>
parents:
8104
diff
changeset
|
954 /**/ |
8104
1a03abdc4234
commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents:
8102
diff
changeset
|
955 1346, |
1a03abdc4234
commit https://github.com/vim/vim/commit/a1e24b9bc9123ff6dd23e3cac2287a4411ef5572
Christian Brabandt <cb@256bit.org>
parents:
8102
diff
changeset
|
956 /**/ |
8102
441298d72f3c
commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents:
8100
diff
changeset
|
957 1345, |
441298d72f3c
commit https://github.com/vim/vim/commit/a87e2c277eabf0134925c340e9dc4fe9446f3636
Christian Brabandt <cb@256bit.org>
parents:
8100
diff
changeset
|
958 /**/ |
8100
ae50910ce279
commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents:
8098
diff
changeset
|
959 1344, |
ae50910ce279
commit https://github.com/vim/vim/commit/203219048fa007b5042d9b893fd647aef44722a0
Christian Brabandt <cb@256bit.org>
parents:
8098
diff
changeset
|
960 /**/ |
8098
7bc924a34288
commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents:
8096
diff
changeset
|
961 1343, |
7bc924a34288
commit https://github.com/vim/vim/commit/cd39bbcd1dd5bdc280f0fa5833b1107853f1227f
Christian Brabandt <cb@256bit.org>
parents:
8096
diff
changeset
|
962 /**/ |
8096
882ba5080c5c
commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
963 1342, |
882ba5080c5c
commit https://github.com/vim/vim/commit/e74e8e7d758e9312165a931f176185f07a64231a
Christian Brabandt <cb@256bit.org>
parents:
8094
diff
changeset
|
964 /**/ |
8094
18a3f0f05244
commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents:
8092
diff
changeset
|
965 1341, |
18a3f0f05244
commit https://github.com/vim/vim/commit/910b8aac5dc4693c4508b7acd2cef0bbfac04242
Christian Brabandt <cb@256bit.org>
parents:
8092
diff
changeset
|
966 /**/ |
8092
d82fb42b611b
commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
967 1340, |
d82fb42b611b
commit https://github.com/vim/vim/commit/7d63f624603ebeae336d4c504f82ab3da3481f46
Christian Brabandt <cb@256bit.org>
parents:
8090
diff
changeset
|
968 /**/ |
8090
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8088
diff
changeset
|
969 1339, |
54cfe888c627
commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents:
8088
diff
changeset
|
970 /**/ |
8088
1b70dae3e79a
commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents:
8086
diff
changeset
|
971 1338, |
1b70dae3e79a
commit https://github.com/vim/vim/commit/0c2c96e47c8b44f7d69da2add906224a89318ff7
Christian Brabandt <cb@256bit.org>
parents:
8086
diff
changeset
|
972 /**/ |
8086
04ed31f9ef70
commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
973 1337, |
04ed31f9ef70
commit https://github.com/vim/vim/commit/ba093bc0002ac60aebd0f2d8a458e2fdac38f1ed
Christian Brabandt <cb@256bit.org>
parents:
8084
diff
changeset
|
974 /**/ |
8084
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
975 1336, |
3ea56a74077f
commit https://github.com/vim/vim/commit/9a6e33a19b18f20c25b73392cd2faa3ec4890c8c
Christian Brabandt <cb@256bit.org>
parents:
8082
diff
changeset
|
976 /**/ |
8082
0c7f5abe84b8
commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
977 1335, |
0c7f5abe84b8
commit https://github.com/vim/vim/commit/5d54a045989599468b7a971fc354b0cba4e2b09d
Christian Brabandt <cb@256bit.org>
parents:
8080
diff
changeset
|
978 /**/ |
8080
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8078
diff
changeset
|
979 1334, |
b6cb94ad97a4
commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents:
8078
diff
changeset
|
980 /**/ |
8078
7676818d486b
commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
981 1333, |
7676818d486b
commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
982 /**/ |
8076
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8074
diff
changeset
|
983 1332, |
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8074
diff
changeset
|
984 /**/ |
8074
dc32c8026899
commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents:
8072
diff
changeset
|
985 1331, |
dc32c8026899
commit https://github.com/vim/vim/commit/d46ae142aa9452e99576b5e923de974704e3c896
Christian Brabandt <cb@256bit.org>
parents:
8072
diff
changeset
|
986 /**/ |
8072
38887bf423ba
commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents:
8070
diff
changeset
|
987 1330, |
38887bf423ba
commit https://github.com/vim/vim/commit/0943a09db84b036ec550d7f2e5b832f621b400ca
Christian Brabandt <cb@256bit.org>
parents:
8070
diff
changeset
|
988 /**/ |
8070
e4c3f6720b03
commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents:
8068
diff
changeset
|
989 1329, |
e4c3f6720b03
commit https://github.com/vim/vim/commit/5cefd4098204b4677387511b586673649f2fab48
Christian Brabandt <cb@256bit.org>
parents:
8068
diff
changeset
|
990 /**/ |
8068
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8066
diff
changeset
|
991 1328, |
9c6740f2204f
commit https://github.com/vim/vim/commit/12dcf024e90ab511f04a08b20fe7eedbe92096d2
Christian Brabandt <cb@256bit.org>
parents:
8066
diff
changeset
|
992 /**/ |
8066
1aa8ed4ee48b
commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
993 1327, |
1aa8ed4ee48b
commit https://github.com/vim/vim/commit/b6a7737938e7e7b34f862f58aa5498e6f652e33d
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
994 /**/ |
8064
1e853c5273d0
commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents:
8062
diff
changeset
|
995 1326, |
1e853c5273d0
commit https://github.com/vim/vim/commit/97eba78f69ba68ce8e1fc72bbe762fc321e0a4b1
Christian Brabandt <cb@256bit.org>
parents:
8062
diff
changeset
|
996 /**/ |
8062
7fe3b9dc132b
commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
997 1325, |
7fe3b9dc132b
commit https://github.com/vim/vim/commit/2368917d8f0c0a997eac7a51ddfaa748dc528392
Christian Brabandt <cb@256bit.org>
parents:
8059
diff
changeset
|
998 /**/ |
8059
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8057
diff
changeset
|
999 1324, |
19304db153bc
commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents:
8057
diff
changeset
|
1000 /**/ |
8057
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8055
diff
changeset
|
1001 1323, |
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8055
diff
changeset
|
1002 /**/ |
8055
6db4b1c863ec
commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
1003 1322, |
6db4b1c863ec
commit https://github.com/vim/vim/commit/3bece9fee9c02934d3e295b29d253e13d4ef26a7
Christian Brabandt <cb@256bit.org>
parents:
8053
diff
changeset
|
1004 /**/ |
8053
774d53057a23
commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
1005 1321, |
774d53057a23
commit https://github.com/vim/vim/commit/71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
1006 /**/ |
8051
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
1007 1320, |
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
8049
diff
changeset
|
1008 /**/ |
8049
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
1009 1319, |
15253130abd8
commit https://github.com/vim/vim/commit/16eb4f88000cfdba68df6c421fe44e7e029ba53e
Christian Brabandt <cb@256bit.org>
parents:
8047
diff
changeset
|
1010 /**/ |
8047
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8045
diff
changeset
|
1011 1318, |
7c74cafac0a1
commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents:
8045
diff
changeset
|
1012 /**/ |
8045
9f9b74579bdc
commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents:
8043
diff
changeset
|
1013 1317, |
9f9b74579bdc
commit https://github.com/vim/vim/commit/0727d362b4dad83d9fdf1caba074213e77e0aa49
Christian Brabandt <cb@256bit.org>
parents:
8043
diff
changeset
|
1014 /**/ |
8043
167e22951df4
commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
1015 1316, |
167e22951df4
commit https://github.com/vim/vim/commit/fa4bce7dd23e62d5a2fd79c7719969e11d5597aa
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
1016 /**/ |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8039
diff
changeset
|
1017 1315, |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
8039
diff
changeset
|
1018 /**/ |
8039
72324c2e890a
commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1019 1314, |
72324c2e890a
commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9
Christian Brabandt <cb@256bit.org>
parents:
8037
diff
changeset
|
1020 /**/ |
8037
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8035
diff
changeset
|
1021 1313, |
9dea1571b352
commit https://github.com/vim/vim/commit/bfa1ffca8bcce92c030d8366036a316954f1ee69
Christian Brabandt <cb@256bit.org>
parents:
8035
diff
changeset
|
1022 /**/ |
8035
f48041801aac
commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents:
8033
diff
changeset
|
1023 1312, |
f48041801aac
commit https://github.com/vim/vim/commit/f8b7d890f1d62f3ab101d2b02dd7716cb7f053cb
Christian Brabandt <cb@256bit.org>
parents:
8033
diff
changeset
|
1024 /**/ |
8033
a1b10634a28a
commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1025 1311, |
a1b10634a28a
commit https://github.com/vim/vim/commit/d090d7bab5a0d96559579e078dfdcc6d7d4f4713
Christian Brabandt <cb@256bit.org>
parents:
8031
diff
changeset
|
1026 /**/ |
8031
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8029
diff
changeset
|
1027 1310, |
ece323e2b57f
commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab
Christian Brabandt <cb@256bit.org>
parents:
8029
diff
changeset
|
1028 /**/ |
8029
770dd91ad9f7
commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents:
8027
diff
changeset
|
1029 1309, |
770dd91ad9f7
commit https://github.com/vim/vim/commit/00af60bbb6cc7e8ccafddb30a1964f891b800bce
Christian Brabandt <cb@256bit.org>
parents:
8027
diff
changeset
|
1030 /**/ |
8027
4fd171e5cedc
commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents:
8025
diff
changeset
|
1031 1308, |
4fd171e5cedc
commit https://github.com/vim/vim/commit/45c7f054730da5c88e1e5c7de290d25c450578a0
Christian Brabandt <cb@256bit.org>
parents:
8025
diff
changeset
|
1032 /**/ |
8025
1f0f08c601b7
commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
1033 1307, |
1f0f08c601b7
commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
1034 /**/ |
8023
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8021
diff
changeset
|
1035 1306, |
75e0831549f1
commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents:
8021
diff
changeset
|
1036 /**/ |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
8019
diff
changeset
|
1037 1305, |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
8019
diff
changeset
|
1038 /**/ |
8019
d685893d852e
commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents:
8017
diff
changeset
|
1039 1304, |
d685893d852e
commit https://github.com/vim/vim/commit/7823a3bd2eed6ff9e544d201de96710bd5344aaf
Christian Brabandt <cb@256bit.org>
parents:
8017
diff
changeset
|
1040 /**/ |
8017
c59a65524084
commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
1041 1303, |
c59a65524084
commit https://github.com/vim/vim/commit/b6a4fee37ebbb0c76f2fbda7d06cbf48a3a07e8d
Christian Brabandt <cb@256bit.org>
parents:
8015
diff
changeset
|
1042 /**/ |
8015
b421c7f2f172
commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents:
8013
diff
changeset
|
1043 1302, |
b421c7f2f172
commit https://github.com/vim/vim/commit/6119e6156e024d9047bbfeb7cdfdae259f9e1b92
Christian Brabandt <cb@256bit.org>
parents:
8013
diff
changeset
|
1044 /**/ |
8013
dfae8bce5920
commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents:
8011
diff
changeset
|
1045 1301, |
dfae8bce5920
commit https://github.com/vim/vim/commit/39b21272d521512b6ecac6cc0f310944f21b7443
Christian Brabandt <cb@256bit.org>
parents:
8011
diff
changeset
|
1046 /**/ |
8011
26f555e9aab1
commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents:
8009
diff
changeset
|
1047 1300, |
26f555e9aab1
commit https://github.com/vim/vim/commit/2ab375e54ef4eac438d1aef8b99d9e71f2fa0c63
Christian Brabandt <cb@256bit.org>
parents:
8009
diff
changeset
|
1048 /**/ |
8009
b2cfa3416ba0
commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents:
8007
diff
changeset
|
1049 1299, |
b2cfa3416ba0
commit https://github.com/vim/vim/commit/f6157284de71d8881f3b89fbd79d1ecbf842929f
Christian Brabandt <cb@256bit.org>
parents:
8007
diff
changeset
|
1050 /**/ |
8007
ac78cba9e72b
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents:
8005
diff
changeset
|
1051 1298, |
ac78cba9e72b
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Christian Brabandt <cb@256bit.org>
parents:
8005
diff
changeset
|
1052 /**/ |
8005
d65aa95725d3
commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
1053 1297, |
d65aa95725d3
commit https://github.com/vim/vim/commit/a483326e3b04215b86fe9c582ac96bb9679f0812
Christian Brabandt <cb@256bit.org>
parents:
8003
diff
changeset
|
1054 /**/ |
8003
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
8001
diff
changeset
|
1055 1296, |
94798af62c56
commit https://github.com/vim/vim/commit/f068dcafcfe0c8018e5a559c50769ca1364bd9a5
Christian Brabandt <cb@256bit.org>
parents:
8001
diff
changeset
|
1056 /**/ |
8001
e5dbeb923ce6
commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
1057 1295, |
e5dbeb923ce6
commit https://github.com/vim/vim/commit/4d8747cdfc13843a5680dc8340fbeb6d32e7b626
Christian Brabandt <cb@256bit.org>
parents:
7999
diff
changeset
|
1058 /**/ |
7999
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7997
diff
changeset
|
1059 1294, |
92ad477c6ab3
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Christian Brabandt <cb@256bit.org>
parents:
7997
diff
changeset
|
1060 /**/ |
7997
c1c9ab17e197
commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents:
7995
diff
changeset
|
1061 1293, |
c1c9ab17e197
commit https://github.com/vim/vim/commit/e56bf15c163a921ce9e1c09c0d5b3a03efc63324
Christian Brabandt <cb@256bit.org>
parents:
7995
diff
changeset
|
1062 /**/ |
7995
d244f2e46d69
commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents:
7993
diff
changeset
|
1063 1292, |
d244f2e46d69
commit https://github.com/vim/vim/commit/2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0
Christian Brabandt <cb@256bit.org>
parents:
7993
diff
changeset
|
1064 /**/ |
7993
0756eab66b71
commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents:
7990
diff
changeset
|
1065 1291, |
0756eab66b71
commit https://github.com/vim/vim/commit/b92abad0c58de36d0b0afdcd4ec05261fa1fa84c
Christian Brabandt <cb@256bit.org>
parents:
7990
diff
changeset
|
1066 /**/ |
7990
75de22db840d
commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents:
7988
diff
changeset
|
1067 1290, |
75de22db840d
commit https://github.com/vim/vim/commit/ee5aeae22b8029fdb5ae97bb6ed8114a81e34c22
Christian Brabandt <cb@256bit.org>
parents:
7988
diff
changeset
|
1068 /**/ |
7988
d3fed9a639db
commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents:
7986
diff
changeset
|
1069 1289, |
d3fed9a639db
commit https://github.com/vim/vim/commit/0fa98e7b85b52c63611b2fe8e370f0aa1c8f6dc9
Christian Brabandt <cb@256bit.org>
parents:
7986
diff
changeset
|
1070 /**/ |
7986
8e0d4cd8157a
commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents:
7984
diff
changeset
|
1071 1288, |
8e0d4cd8157a
commit https://github.com/vim/vim/commit/ae8eb3ca927f1b0ac2a6643da8699538cdc380f6
Christian Brabandt <cb@256bit.org>
parents:
7984
diff
changeset
|
1072 /**/ |
7984
c166ff6797cb
commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents:
7982
diff
changeset
|
1073 1287, |
c166ff6797cb
commit https://github.com/vim/vim/commit/74f5e65bcc3d77ab879f56eb977f5038edccbcf8
Christian Brabandt <cb@256bit.org>
parents:
7982
diff
changeset
|
1074 /**/ |
7982
5c30ba57aaea
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents:
7979
diff
changeset
|
1075 1286, |
5c30ba57aaea
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Christian Brabandt <cb@256bit.org>
parents:
7979
diff
changeset
|
1076 /**/ |
7979
22367b9f528a
commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents:
7977
diff
changeset
|
1077 1285, |
22367b9f528a
commit https://github.com/vim/vim/commit/79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06
Christian Brabandt <cb@256bit.org>
parents:
7977
diff
changeset
|
1078 /**/ |
7977
96fe78b32ad5
commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents:
7975
diff
changeset
|
1079 1284, |
96fe78b32ad5
commit https://github.com/vim/vim/commit/dc94a26a641914df5f1ba1ab47a5752e1137287e
Christian Brabandt <cb@256bit.org>
parents:
7975
diff
changeset
|
1080 /**/ |
7975
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7973
diff
changeset
|
1081 1283, |
7224f5e9c36a
commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents:
7973
diff
changeset
|
1082 /**/ |
7973
00344cd730f6
commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents:
7971
diff
changeset
|
1083 1282, |
00344cd730f6
commit https://github.com/vim/vim/commit/768ce2435ae956041579ef2d26e3e9d3a2444e1e
Christian Brabandt <cb@256bit.org>
parents:
7971
diff
changeset
|
1084 /**/ |
7971
f91a24e33475
commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents:
7969
diff
changeset
|
1085 1281, |
f91a24e33475
commit https://github.com/vim/vim/commit/ea8c219ca852cc8eaf603b1bf475edf95e2850cf
Christian Brabandt <cb@256bit.org>
parents:
7969
diff
changeset
|
1086 /**/ |
7969
0de25de30ba3
commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents:
7967
diff
changeset
|
1087 1280, |
0de25de30ba3
commit https://github.com/vim/vim/commit/eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad
Christian Brabandt <cb@256bit.org>
parents:
7967
diff
changeset
|
1088 /**/ |
7967
45ea5ebf3a98
commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents:
7965
diff
changeset
|
1089 1279, |
45ea5ebf3a98
commit https://github.com/vim/vim/commit/595e64e259faefb330866852e1b9f6168544572a
Christian Brabandt <cb@256bit.org>
parents:
7965
diff
changeset
|
1090 /**/ |
7965
646d5148fee2
commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents:
7963
diff
changeset
|
1091 1278, |
646d5148fee2
commit https://github.com/vim/vim/commit/55fab439a6f3bba6dbe780ac034b84d5822a1a96
Christian Brabandt <cb@256bit.org>
parents:
7963
diff
changeset
|
1092 /**/ |
7963
d96e38f35e2d
commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1093 1277, |
d96e38f35e2d
commit https://github.com/vim/vim/commit/a6f72ba7c6cadd37be38d92008d10a3025fdc5ec
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1094 /**/ |
7961
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7959
diff
changeset
|
1095 1276, |
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7959
diff
changeset
|
1096 /**/ |
7959
fc9ba91a6533
commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
1097 1275, |
fc9ba91a6533
commit https://github.com/vim/vim/commit/cb4b01230be26ada92a1622c2278277d59ef2ec1
Christian Brabandt <cb@256bit.org>
parents:
7957
diff
changeset
|
1098 /**/ |
7957
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
1099 1274, |
b74549818500
commit https://github.com/vim/vim/commit/835dc636a5350f610b62f110227d2363b5b2880a
Christian Brabandt <cb@256bit.org>
parents:
7955
diff
changeset
|
1100 /**/ |
7955
a4de8e834b8f
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents:
7953
diff
changeset
|
1101 1273, |
a4de8e834b8f
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Christian Brabandt <cb@256bit.org>
parents:
7953
diff
changeset
|
1102 /**/ |
7953
a028a16110e2
commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents:
7951
diff
changeset
|
1103 1272, |
a028a16110e2
commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65
Christian Brabandt <cb@256bit.org>
parents:
7951
diff
changeset
|
1104 /**/ |
7951
03e716299680
commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents:
7949
diff
changeset
|
1105 1271, |
03e716299680
commit https://github.com/vim/vim/commit/3712792637516aea7acf76a11533be1066952820
Christian Brabandt <cb@256bit.org>
parents:
7949
diff
changeset
|
1106 /**/ |
7949
3f7382858d4d
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents:
7947
diff
changeset
|
1107 1270, |
3f7382858d4d
commit https://github.com/vim/vim/commit/81e7a9c3fb37cad46c8f04a5ce871fb06819a371
Christian Brabandt <cb@256bit.org>
parents:
7947
diff
changeset
|
1108 /**/ |
7947
b2922673917a
commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents:
7945
diff
changeset
|
1109 1269, |
b2922673917a
commit https://github.com/vim/vim/commit/4f8b8faec31a934920a723053e8dcf47b6fac08c
Christian Brabandt <cb@256bit.org>
parents:
7945
diff
changeset
|
1110 /**/ |
7945
e72438a11172
commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents:
7943
diff
changeset
|
1111 1268, |
e72438a11172
commit https://github.com/vim/vim/commit/26dfc41335ef47fe765643148ae980be388084ec
Christian Brabandt <cb@256bit.org>
parents:
7943
diff
changeset
|
1112 /**/ |
7943
e875f0fbd9c0
commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
1113 1267, |
e875f0fbd9c0
commit https://github.com/vim/vim/commit/a03f23351588f04276469cd7742b7ec655bb604b
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
1114 /**/ |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7939
diff
changeset
|
1115 1266, |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7939
diff
changeset
|
1116 /**/ |
7939
dcc0bd6b1574
commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents:
7937
diff
changeset
|
1117 1265, |
dcc0bd6b1574
commit https://github.com/vim/vim/commit/f416086f264c1d998863b2e600f4c14f799d0d99
Christian Brabandt <cb@256bit.org>
parents:
7937
diff
changeset
|
1118 /**/ |
7937
2e905dfc6999
commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
1119 1264, |
2e905dfc6999
commit https://github.com/vim/vim/commit/6076fe1986255d32b7a078a28bf9e7bea19d6f30
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
1120 /**/ |
7935
3f2e0b62003d
commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents:
7933
diff
changeset
|
1121 1263, |
3f2e0b62003d
commit https://github.com/vim/vim/commit/4d919d748e4e435edb135aa5ccf6ee7de9212023
Christian Brabandt <cb@256bit.org>
parents:
7933
diff
changeset
|
1122 /**/ |
7933
1f0743f4f88f
commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents:
7931
diff
changeset
|
1123 1262, |
1f0743f4f88f
commit https://github.com/vim/vim/commit/a07fec9c85d062acd9dd433a2e681770f459ba47
Christian Brabandt <cb@256bit.org>
parents:
7931
diff
changeset
|
1124 /**/ |
7931
2679e636e862
commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents:
7929
diff
changeset
|
1125 1261, |
2679e636e862
commit https://github.com/vim/vim/commit/4b6a6dcbe7bd13170c4884cc17acb1eac2c633d1
Christian Brabandt <cb@256bit.org>
parents:
7929
diff
changeset
|
1126 /**/ |
7929
e44240b5a6da
commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents:
7927
diff
changeset
|
1127 1260, |
e44240b5a6da
commit https://github.com/vim/vim/commit/a8343c1808f2f268282f3030ce4adaf22e8ade54
Christian Brabandt <cb@256bit.org>
parents:
7927
diff
changeset
|
1128 /**/ |
7927
2a34dd90beba
commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents:
7925
diff
changeset
|
1129 1259, |
2a34dd90beba
commit https://github.com/vim/vim/commit/3fc3e14282c182c046d1335f3d576bc0eeb605c5
Christian Brabandt <cb@256bit.org>
parents:
7925
diff
changeset
|
1130 /**/ |
7925
b724dbb299d5
commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents:
7922
diff
changeset
|
1131 1258, |
b724dbb299d5
commit https://github.com/vim/vim/commit/a02b321686d9827ac806353ea8af780676da340d
Christian Brabandt <cb@256bit.org>
parents:
7922
diff
changeset
|
1132 /**/ |
7922
14540239601d
commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents:
7920
diff
changeset
|
1133 1257, |
14540239601d
commit https://github.com/vim/vim/commit/e24692573a266f5060c06dd80bde264092c90dd5
Christian Brabandt <cb@256bit.org>
parents:
7920
diff
changeset
|
1134 /**/ |
7920
1ebc7be4dbbf
commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents:
7918
diff
changeset
|
1135 1256, |
1ebc7be4dbbf
commit https://github.com/vim/vim/commit/b3e2f00f39d6edafda6e5508a926ebd244997a0f
Christian Brabandt <cb@256bit.org>
parents:
7918
diff
changeset
|
1136 /**/ |
7918
ce5a7a613867
commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents:
7916
diff
changeset
|
1137 1255, |
ce5a7a613867
commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138
Christian Brabandt <cb@256bit.org>
parents:
7916
diff
changeset
|
1138 /**/ |
7916
54602dcac207
commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents:
7914
diff
changeset
|
1139 1254, |
54602dcac207
commit https://github.com/vim/vim/commit/3b05b135e3ee4cfd59983fd63461e8f7642c1713
Christian Brabandt <cb@256bit.org>
parents:
7914
diff
changeset
|
1140 /**/ |
7914
35973ce58c84
commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents:
7912
diff
changeset
|
1141 1253, |
35973ce58c84
commit https://github.com/vim/vim/commit/608a8919cae982cb38e38725a843df47b234dae6
Christian Brabandt <cb@256bit.org>
parents:
7912
diff
changeset
|
1142 /**/ |
7912
1c6ef9113556
commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents:
7910
diff
changeset
|
1143 1252, |
1c6ef9113556
commit https://github.com/vim/vim/commit/e7bed627c89ed80bc4b2d96f542819029adf6e76
Christian Brabandt <cb@256bit.org>
parents:
7910
diff
changeset
|
1144 /**/ |
7910
e873010fb658
commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents:
7908
diff
changeset
|
1145 1251, |
e873010fb658
commit https://github.com/vim/vim/commit/bf087cead956513bcd8d40d70322875c479a1984
Christian Brabandt <cb@256bit.org>
parents:
7908
diff
changeset
|
1146 /**/ |
7908
a343a738010e
commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents:
7906
diff
changeset
|
1147 1250, |
a343a738010e
commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35
Christian Brabandt <cb@256bit.org>
parents:
7906
diff
changeset
|
1148 /**/ |
7906
ea1fd8d750a6
commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents:
7904
diff
changeset
|
1149 1249, |
ea1fd8d750a6
commit https://github.com/vim/vim/commit/fcb1e3d16832ce06da0dc38ecb7ab9aaa3ee4383
Christian Brabandt <cb@256bit.org>
parents:
7904
diff
changeset
|
1150 /**/ |
7904
14a5de0990a5
commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents:
7902
diff
changeset
|
1151 1248, |
14a5de0990a5
commit https://github.com/vim/vim/commit/f92591f7f9fc78d2aced99befe444cb423b26df8
Christian Brabandt <cb@256bit.org>
parents:
7902
diff
changeset
|
1152 /**/ |
7902
f12d6235a753
commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents:
7899
diff
changeset
|
1153 1247, |
f12d6235a753
commit https://github.com/vim/vim/commit/a0f9cd148eaab23b2037d2f543f3b8f5a3a7ad3c
Christian Brabandt <cb@256bit.org>
parents:
7899
diff
changeset
|
1154 /**/ |
7899
93c61501c2cf
commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents:
7897
diff
changeset
|
1155 1246, |
93c61501c2cf
commit https://github.com/vim/vim/commit/d7ece1008ee6173afda6d173bed486ae79c1c38a
Christian Brabandt <cb@256bit.org>
parents:
7897
diff
changeset
|
1156 /**/ |
7897
43071dab7621
commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents:
7895
diff
changeset
|
1157 1245, |
43071dab7621
commit https://github.com/vim/vim/commit/d087566a419cc107adab77db997b184ea0e433ad
Christian Brabandt <cb@256bit.org>
parents:
7895
diff
changeset
|
1158 /**/ |
7895
bff95e0d8885
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents:
7893
diff
changeset
|
1159 1244, |
bff95e0d8885
commit https://github.com/vim/vim/commit/f57969a20a4398f56e3028a6cc1102f9f9286ccf
Christian Brabandt <cb@256bit.org>
parents:
7893
diff
changeset
|
1160 /**/ |
7893
df2b8af14072
commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents:
7891
diff
changeset
|
1161 1243, |
df2b8af14072
commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2
Christian Brabandt <cb@256bit.org>
parents:
7891
diff
changeset
|
1162 /**/ |
7891
d14cf20b44dc
commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents:
7889
diff
changeset
|
1163 1242, |
d14cf20b44dc
commit https://github.com/vim/vim/commit/8d8c509ac8dea59ad07712971d74afae08521f79
Christian Brabandt <cb@256bit.org>
parents:
7889
diff
changeset
|
1164 /**/ |
7889
8e84273089d0
commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents:
7887
diff
changeset
|
1165 1241, |
8e84273089d0
commit https://github.com/vim/vim/commit/04b08c3de68534adff95c8823787299e07ed3b49
Christian Brabandt <cb@256bit.org>
parents:
7887
diff
changeset
|
1166 /**/ |
7887
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7885
diff
changeset
|
1167 1240, |
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7885
diff
changeset
|
1168 /**/ |
7885
6e6f829af138
commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents:
7883
diff
changeset
|
1169 1239, |
6e6f829af138
commit https://github.com/vim/vim/commit/df5b27b20ec023274fb0f5347973d5abcde7ddd6
Christian Brabandt <cb@256bit.org>
parents:
7883
diff
changeset
|
1170 /**/ |
7883
98a96e0ca73b
commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
1171 1238, |
98a96e0ca73b
commit https://github.com/vim/vim/commit/56ead341a75e1a0395eee94a3280c67e2278a57e
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
1172 /**/ |
7881
e7afe45a202a
commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
1173 1237, |
e7afe45a202a
commit https://github.com/vim/vim/commit/d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
1174 /**/ |
7879
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
7877
diff
changeset
|
1175 1236, |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
7877
diff
changeset
|
1176 /**/ |
7877
7fbd2de703a9
commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents:
7874
diff
changeset
|
1177 1235, |
7fbd2de703a9
commit https://github.com/vim/vim/commit/11e0afa00a8e6c0aa1d50f760b5d5cb62dade038
Christian Brabandt <cb@256bit.org>
parents:
7874
diff
changeset
|
1178 /**/ |
7874
2313f1a94153
commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents:
7872
diff
changeset
|
1179 1234, |
2313f1a94153
commit https://github.com/vim/vim/commit/488a130ea261f02317adc2c2ca93cc6e68cf2c23
Christian Brabandt <cb@256bit.org>
parents:
7872
diff
changeset
|
1180 /**/ |
7872
4b9d4600166f
commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1181 1233, |
4b9d4600166f
commit https://github.com/vim/vim/commit/14ad611ca435d97e8fd0d9ab03ddc982843298ac
Christian Brabandt <cb@256bit.org>
parents:
7870
diff
changeset
|
1182 /**/ |
7870
fb5ba6fbc843
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents:
7868
diff
changeset
|
1183 1232, |
fb5ba6fbc843
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Christian Brabandt <cb@256bit.org>
parents:
7868
diff
changeset
|
1184 /**/ |
7868
17e6ff1a74f1
commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents:
7866
diff
changeset
|
1185 1231, |
17e6ff1a74f1
commit https://github.com/vim/vim/commit/19d2f1589850d7db1ce77efec052929246f156e2
Christian Brabandt <cb@256bit.org>
parents:
7866
diff
changeset
|
1186 /**/ |
7866
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7864
diff
changeset
|
1187 1230, |
30a9f5fc3508
commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents:
7864
diff
changeset
|
1188 /**/ |
7864
6b0891de44a9
commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents:
7862
diff
changeset
|
1189 1229, |
6b0891de44a9
commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Christian Brabandt <cb@256bit.org>
parents:
7862
diff
changeset
|
1190 /**/ |
7862
d4fec9208e7e
commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents:
7860
diff
changeset
|
1191 1228, |
d4fec9208e7e
commit https://github.com/vim/vim/commit/155500077c80cdb5d9c63996000c011b66a676bf
Christian Brabandt <cb@256bit.org>
parents:
7860
diff
changeset
|
1192 /**/ |
7860
150576e6b984
commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents:
7858
diff
changeset
|
1193 1227, |
150576e6b984
commit https://github.com/vim/vim/commit/448a22549b4528fd81d520497f30672567199c96
Christian Brabandt <cb@256bit.org>
parents:
7858
diff
changeset
|
1194 /**/ |
7858
e90a16795c74
commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1195 1226, |
e90a16795c74
commit https://github.com/vim/vim/commit/3803bad99de92f4c5ebd6f40b757bc7ade47619e
Christian Brabandt <cb@256bit.org>
parents:
7856
diff
changeset
|
1196 /**/ |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7854
diff
changeset
|
1197 1225, |
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7854
diff
changeset
|
1198 /**/ |
7854
b512d9cce151
commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents:
7852
diff
changeset
|
1199 1224, |
b512d9cce151
commit https://github.com/vim/vim/commit/bbb3339dbfa2067fab616698739097df06aa5e6c
Christian Brabandt <cb@256bit.org>
parents:
7852
diff
changeset
|
1200 /**/ |
7852
8818755d8326
commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
1201 1223, |
8818755d8326
commit https://github.com/vim/vim/commit/a542c680a8b42cb766e64d4ee7374ef4dacb7832
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
1202 /**/ |
7850
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7848
diff
changeset
|
1203 1222, |
10f17a228661
commit https://github.com/vim/vim/commit/e2c3810c2ae290bbc2cba18eb47cc2d44e4b9797
Christian Brabandt <cb@256bit.org>
parents:
7848
diff
changeset
|
1204 /**/ |
7848
798673834bab
commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents:
7846
diff
changeset
|
1205 1221, |
798673834bab
commit https://github.com/vim/vim/commit/3c124e3ac81521ae1e7e4a9cb9597ab754b92429
Christian Brabandt <cb@256bit.org>
parents:
7846
diff
changeset
|
1206 /**/ |
7846
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
1207 1220, |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
1208 /**/ |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
1209 1219, |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
1210 /**/ |
7842
cf744110897d
commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents:
7840
diff
changeset
|
1211 1218, |
cf744110897d
commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a
Christian Brabandt <cb@256bit.org>
parents:
7840
diff
changeset
|
1212 /**/ |
7840
28f569c7dab9
commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
1213 1217, |
28f569c7dab9
commit https://github.com/vim/vim/commit/20fb9f346497daca4d19402fdfa5de7958642477
Christian Brabandt <cb@256bit.org>
parents:
7838
diff
changeset
|
1214 /**/ |
7838
cfed0e9f0ca2
commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
1215 1216, |
cfed0e9f0ca2
commit https://github.com/vim/vim/commit/ba4ef2757cfc126f342b710f1ad9ea39e6b56cec
Christian Brabandt <cb@256bit.org>
parents:
7837
diff
changeset
|
1216 /**/ |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
1217 1215, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
1218 /**/ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1219 1214, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1220 /**/ |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7831
diff
changeset
|
1221 1213, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7831
diff
changeset
|
1222 /**/ |
7831
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
1223 1212, |
d621ab23fd19
commit https://github.com/vim/vim/commit/c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c
Christian Brabandt <cb@256bit.org>
parents:
7829
diff
changeset
|
1224 /**/ |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
1225 1211, |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7827
diff
changeset
|
1226 /**/ |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7825
diff
changeset
|
1227 1210, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7825
diff
changeset
|
1228 /**/ |
7825
7898da204b98
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
1229 1209, |
7898da204b98
commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f
Christian Brabandt <cb@256bit.org>
parents:
7823
diff
changeset
|
1230 /**/ |
7823
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
1231 1208, |
bcef391c101c
commit https://github.com/vim/vim/commit/68c2f638e65d914dc6e84eb7ce2624f08af525c0
Christian Brabandt <cb@256bit.org>
parents:
7821
diff
changeset
|
1232 /**/ |
7821
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
1233 1207, |
81794242a275
commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
1234 /**/ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
1235 1206, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7817
diff
changeset
|
1236 /**/ |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1237 1205, |
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7815
diff
changeset
|
1238 /**/ |
7815
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
1239 1204, |
3a96dfb42c55
commit https://github.com/vim/vim/commit/305598b71261265994e2846b4ff4a4d8efade280
Christian Brabandt <cb@256bit.org>
parents:
7813
diff
changeset
|
1240 /**/ |
7813
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7811
diff
changeset
|
1241 1203, |
744c66477ba9
commit https://github.com/vim/vim/commit/4349c57543a98dc417b74da5a08c326337aa0bd3
Christian Brabandt <cb@256bit.org>
parents:
7811
diff
changeset
|
1242 /**/ |
7811
7fda54504fee
commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents:
7809
diff
changeset
|
1243 1202, |
7fda54504fee
commit https://github.com/vim/vim/commit/3e96c3d241ab657cf4df0913ea8de50a6cb90730
Christian Brabandt <cb@256bit.org>
parents:
7809
diff
changeset
|
1244 /**/ |
7809
4635a259ecc0
commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1245 1201, |
4635a259ecc0
commit https://github.com/vim/vim/commit/569850724ef37061bfd4cb6423f04c8b8c690515
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1246 /**/ |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1247 1200, |
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1248 /**/ |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1249 1199, |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1250 /**/ |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1251 1198, |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7801
diff
changeset
|
1252 /**/ |
7801
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1253 1197, |
a1e71a01dbd6
commit https://github.com/vim/vim/commit/d25c16e2f2776d50245bf31d6e4d5364f12d188e
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1254 /**/ |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
1255 1196, |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7797
diff
changeset
|
1256 /**/ |
7797
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7795
diff
changeset
|
1257 1195, |
0d46cea25641
commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents:
7795
diff
changeset
|
1258 /**/ |
7795
4f23088b47ea
commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents:
7793
diff
changeset
|
1259 1194, |
4f23088b47ea
commit https://github.com/vim/vim/commit/83162468b3c8722fffea033d3de144cd4191472a
Christian Brabandt <cb@256bit.org>
parents:
7793
diff
changeset
|
1260 /**/ |
7793
2981a37cec61
commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents:
7791
diff
changeset
|
1261 1193, |
2981a37cec61
commit https://github.com/vim/vim/commit/b8b6511fc1f8422a17778d710ed11538174a7f33
Christian Brabandt <cb@256bit.org>
parents:
7791
diff
changeset
|
1262 /**/ |
7791
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
1263 1192, |
6f81cf49da14
commit https://github.com/vim/vim/commit/fa06a517b5d5e37f40ab7c884bd334f089988fac
Christian Brabandt <cb@256bit.org>
parents:
7788
diff
changeset
|
1264 /**/ |
7788
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
1265 1191, |
192ae655ac91
commit https://github.com/vim/vim/commit/3b5f929b18492fec291d1ec95a91f54e5912c03b
Christian Brabandt <cb@256bit.org>
parents:
7786
diff
changeset
|
1266 /**/ |
7786
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
1267 1190, |
0ee0c7729f28
commit https://github.com/vim/vim/commit/ba59ddbd3642d02614acbe52694e3e8a78c0e9d3
Christian Brabandt <cb@256bit.org>
parents:
7784
diff
changeset
|
1268 /**/ |
7784
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
1269 1189, |
29d4ee3f009a
commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents:
7782
diff
changeset
|
1270 /**/ |
7782
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
1271 1188, |
3a99194bd187
commit https://github.com/vim/vim/commit/009d84a34f3678ec93921bee3bc05be2fd606264
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
1272 /**/ |
7780
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1273 1187, |
e09af43f98f7
commit https://github.com/vim/vim/commit/85be35f33ea848b50e84d57321a45ebfedfad669
Christian Brabandt <cb@256bit.org>
parents:
7778
diff
changeset
|
1274 /**/ |
7778
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1275 1186, |
4e09a38129a3
commit https://github.com/vim/vim/commit/4a1314cb9c1847dc32ceeb3eebeae123ef10b16e
Christian Brabandt <cb@256bit.org>
parents:
7776
diff
changeset
|
1276 /**/ |
7776
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
1277 1185, |
d30f4f9b1024
commit https://github.com/vim/vim/commit/0d6f835683bede8bfa171c2518dce10832eb8226
Christian Brabandt <cb@256bit.org>
parents:
7774
diff
changeset
|
1278 /**/ |
7774
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
1279 1184, |
656db98806b3
commit https://github.com/vim/vim/commit/54e09e71984af6db92f3ad37ce390630a23407af
Christian Brabandt <cb@256bit.org>
parents:
7772
diff
changeset
|
1280 /**/ |
7772
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
1281 1183, |
0677c5b880d1
commit https://github.com/vim/vim/commit/fb4194e4e0d6bd2df43c3e75a969866fcb103f6b
Christian Brabandt <cb@256bit.org>
parents:
7770
diff
changeset
|
1282 /**/ |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
1283 1182, |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7768
diff
changeset
|
1284 /**/ |
7768
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
1285 1181, |
3d8e4e0d7127
commit https://github.com/vim/vim/commit/6650a694547eb744afa060ec62dd8270e99db9f2
Christian Brabandt <cb@256bit.org>
parents:
7765
diff
changeset
|
1286 /**/ |
7765
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
1287 1180, |
9c0d554a497e
commit https://github.com/vim/vim/commit/7465c6375fd60eab603681bcad8a8744ddc31614
Christian Brabandt <cb@256bit.org>
parents:
7763
diff
changeset
|
1288 /**/ |
7763
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
1289 1179, |
26bb1a6abe25
commit https://github.com/vim/vim/commit/f4f79b84a5595c511f6fdbe4e3e1d188d97879a0
Christian Brabandt <cb@256bit.org>
parents:
7761
diff
changeset
|
1290 /**/ |
7761
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
1291 1178, |
db5864658024
commit https://github.com/vim/vim/commit/767d8c1a1ae762ecf47297c168b8c23caf05d30a
Christian Brabandt <cb@256bit.org>
parents:
7759
diff
changeset
|
1292 /**/ |
7759
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
1293 1177, |
39be49fd70d9
commit https://github.com/vim/vim/commit/5aec481097278d7d4e6559d9db2b9c3b8aa0dd5d
Christian Brabandt <cb@256bit.org>
parents:
7757
diff
changeset
|
1294 /**/ |
7757
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
1295 1176, |
34bfc3456830
commit https://github.com/vim/vim/commit/1d63539cc72c5be7ad875d2d48a34c4f74c096ab
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
1296 /**/ |
7755
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
1297 1175, |
b21c2a9dcd7d
commit https://github.com/vim/vim/commit/f75612fd9912205870bf024e4fb20af62b096c1d
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
1298 /**/ |
7753
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
1299 1174, |
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7751
diff
changeset
|
1300 /**/ |
7751
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
1301 1173, |
d6e62c739839
commit https://github.com/vim/vim/commit/65591001e405cbaaf9772c9375d0bb6049cf9a3a
Christian Brabandt <cb@256bit.org>
parents:
7749
diff
changeset
|
1302 /**/ |
7749
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
1303 1172, |
3a1b60f5e89b
commit https://github.com/vim/vim/commit/16435480f0f41372585b3d305a29b5fda8271fbc
Christian Brabandt <cb@256bit.org>
parents:
7747
diff
changeset
|
1304 /**/ |
7747
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
1305 1171, |
e086f4ca4617
commit https://github.com/vim/vim/commit/2e2301437cb5cd4782fa031ea36dea086b9bd804
Christian Brabandt <cb@256bit.org>
parents:
7745
diff
changeset
|
1306 /**/ |
7745
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
1307 1170, |
555da309a7de
commit https://github.com/vim/vim/commit/0e7f88e73ee6a47a9c2933b7fdbfc4d83476f67f
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
1308 /**/ |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
1309 1169, |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7740
diff
changeset
|
1310 /**/ |
7740
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
1311 1168, |
00fc76e6bd99
commit https://github.com/vim/vim/commit/f48aa160fdd7b8caa7678e1a2139244dd2bdc547
Christian Brabandt <cb@256bit.org>
parents:
7738
diff
changeset
|
1312 /**/ |
7738
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
1313 1167, |
598a96d35a0e
commit https://github.com/vim/vim/commit/04369229657f182d35b471eb8b38f273a4d9ef65
Christian Brabandt <cb@256bit.org>
parents:
7736
diff
changeset
|
1314 /**/ |
7736
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
1315 1166, |
f2ddad8cbce7
commit https://github.com/vim/vim/commit/fcaaae6b3fdbf3421a1ff95a25ae16d82381c39a
Christian Brabandt <cb@256bit.org>
parents:
7734
diff
changeset
|
1316 /**/ |
7734
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
1317 1165, |
616769d423fc
commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents:
7732
diff
changeset
|
1318 /**/ |
7732
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
1319 1164, |
4a4f1dd1abe8
commit https://github.com/vim/vim/commit/6039c7f05376f0e470cf62bf2757e653aea357f3
Christian Brabandt <cb@256bit.org>
parents:
7730
diff
changeset
|
1320 /**/ |
7730
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
1321 1163, |
80ce794827c4
commit https://github.com/vim/vim/commit/17a13437c9414a8693369a97f3be2fc8ad48c12e
Christian Brabandt <cb@256bit.org>
parents:
7728
diff
changeset
|
1322 /**/ |
7728
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
1323 1162, |
e493c5dd85b3
commit https://github.com/vim/vim/commit/9e3be26872307f9c53a9f37647a659091bdffb1f
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
1324 /**/ |
7726
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
1325 1161, |
f6311c321411
commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8
Christian Brabandt <cb@256bit.org>
parents:
7724
diff
changeset
|
1326 /**/ |
7724
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
1327 1160, |
87f3f9536ecf
commit https://github.com/vim/vim/commit/bd4593ffb170230504500ddedabad3fad1f31291
Christian Brabandt <cb@256bit.org>
parents:
7722
diff
changeset
|
1328 /**/ |
7722
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
1329 1159, |
c4f8b1d48f20
commit https://github.com/vim/vim/commit/e240c2da796531e807ea9df78bdbcc7b1012870c
Christian Brabandt <cb@256bit.org>
parents:
7720
diff
changeset
|
1330 /**/ |
7720
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
1331 1158, |
7c52f11e6df3
commit https://github.com/vim/vim/commit/48e697e4b6b6b490c58ec9393da9b2d2ea47c6d8
Christian Brabandt <cb@256bit.org>
parents:
7718
diff
changeset
|
1332 /**/ |
7718
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
1333 1157, |
6ebd8bdf41bc
commit https://github.com/vim/vim/commit/f95534c3d411084d1b6112fe64f6108bf7acbb92
Christian Brabandt <cb@256bit.org>
parents:
7716
diff
changeset
|
1334 /**/ |
7716
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
1335 1156, |
9d79943791ea
commit https://github.com/vim/vim/commit/2dedb45260604911035cff2364aca90a69156ed9
Christian Brabandt <cb@256bit.org>
parents:
7714
diff
changeset
|
1336 /**/ |
7714
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1337 1155, |
c29a7e38b8ac
commit https://github.com/vim/vim/commit/64922b9014765a41bb09e8612433a2a61918af6e
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1338 /**/ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1339 1154, |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
1340 /**/ |
7710
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
1341 1153, |
bf58e9f8d52a
commit https://github.com/vim/vim/commit/6920c72d4d62c8dc5596e9f392e38204f561d7af
Christian Brabandt <cb@256bit.org>
parents:
7708
diff
changeset
|
1342 /**/ |
7708
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
1343 1152, |
1a595b2a4d5e
commit https://github.com/vim/vim/commit/09e786e7a7fc952f43e3f88ba49ab1ac6ef3b3a3
Christian Brabandt <cb@256bit.org>
parents:
7705
diff
changeset
|
1344 /**/ |
7705
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
1345 1151, |
1b9a1c10806b
commit https://github.com/vim/vim/commit/5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01
Christian Brabandt <cb@256bit.org>
parents:
7703
diff
changeset
|
1346 /**/ |
7703
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
1347 1150, |
39251e981d1f
commit https://github.com/vim/vim/commit/25281634cda03ce302aaf9f906a9520b5f81f91e
Christian Brabandt <cb@256bit.org>
parents:
7701
diff
changeset
|
1348 /**/ |
7701
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
1349 1149, |
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
1350 /**/ |
7699
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
1351 1148, |
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7697
diff
changeset
|
1352 /**/ |
7697
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
1353 1147, |
f04e2b6feea2
commit https://github.com/vim/vim/commit/88e8f9f14434a7cd538d0c159dc432bea869a5bd
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
1354 /**/ |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
1355 1146, |
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7693
diff
changeset
|
1356 /**/ |
7693
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
1357 1145, |
6157052a0e58
commit https://github.com/vim/vim/commit/23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
1358 /**/ |
7691
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
1359 1144, |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
1360 /**/ |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
1361 1143, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7687
diff
changeset
|
1362 /**/ |
7687
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
1363 1142, |
61354fabf8a2
commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
7685
diff
changeset
|
1364 /**/ |
7685
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
1365 1141, |
616460b73ee3
commit https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
Christian Brabandt <cb@256bit.org>
parents:
7683
diff
changeset
|
1366 /**/ |
7683
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
1367 1140, |
ec434c82f72c
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Christian Brabandt <cb@256bit.org>
parents:
7681
diff
changeset
|
1368 /**/ |
7681
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
1369 1139, |
07cfa8fea697
commit https://github.com/vim/vim/commit/fce7b3d24fd18b1486e474e933a95f9090df9973
Christian Brabandt <cb@256bit.org>
parents:
7679
diff
changeset
|
1370 /**/ |
7679
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
1371 1138, |
c80284cfe1b8
commit https://github.com/vim/vim/commit/3a466a87180d677b898687ef72d09f14a397794e
Christian Brabandt <cb@256bit.org>
parents:
7677
diff
changeset
|
1372 /**/ |
7677
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
1373 1137, |
85a7a945fb87
commit https://github.com/vim/vim/commit/62ef797496c6243d111c596a592a8ef8c1d1e710
Christian Brabandt <cb@256bit.org>
parents:
7675
diff
changeset
|
1374 /**/ |
7675
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
1375 1136, |
eb9cc96138a3
commit https://github.com/vim/vim/commit/da5dcd936656f524dd0ae7cb2685245f07f5720f
Christian Brabandt <cb@256bit.org>
parents:
7672
diff
changeset
|
1376 /**/ |
7672
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
1377 1135, |
da2eb24b83d2
commit https://github.com/vim/vim/commit/301417041bdb15264a9c8ff20e4fea4dcc12c478
Christian Brabandt <cb@256bit.org>
parents:
7670
diff
changeset
|
1378 /**/ |
7670
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1379 1134, |
fd31843c7b58
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
1380 /**/ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
1381 1133, |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7666
diff
changeset
|
1382 /**/ |
7666
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
1383 1132, |
8edd1afaf6b7
commit https://github.com/vim/vim/commit/99dbe291f55022bd5166c9c3c7967b8693cd9d1b
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
1384 /**/ |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
1385 1131, |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
1386 /**/ |
7662
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
1387 1130, |
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7660
diff
changeset
|
1388 /**/ |
7660
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
1389 1129, |
066ef357ea91
commit https://github.com/vim/vim/commit/77324fc9d3206a12f5ae39da1574be3ee1273591
Christian Brabandt <cb@256bit.org>
parents:
7657
diff
changeset
|
1390 /**/ |
7657
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
1391 1128, |
9c5e8254ea6b
commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents:
7655
diff
changeset
|
1392 /**/ |
7655
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
1393 1127, |
94f34dc2f254
commit https://github.com/vim/vim/commit/021b593e7ed6c7111cbf189744ad1e5d6c4a7d79
Christian Brabandt <cb@256bit.org>
parents:
7653
diff
changeset
|
1394 /**/ |
7653
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
1395 1126, |
d4370fef0175
commit https://github.com/vim/vim/commit/c970330676eaae7ba7cd05cfa46df5a413853ef9
Christian Brabandt <cb@256bit.org>
parents:
7651
diff
changeset
|
1396 /**/ |
7651
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
1397 1125, |
c7575b07de98
commit https://github.com/vim/vim/commit/e9b892ebcd8596bf813793a1eed5a460a9495a28
Christian Brabandt <cb@256bit.org>
parents:
7649
diff
changeset
|
1398 /**/ |
7649
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
1399 1124, |
4d97a97495bb
commit https://github.com/vim/vim/commit/25b2b94ea73eff2aeef624d2ba7f59a1a265a0c1
Christian Brabandt <cb@256bit.org>
parents:
7647
diff
changeset
|
1400 /**/ |
7647
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
1401 1123, |
65b2d593c203
commit https://github.com/vim/vim/commit/a24f0a550fed3d9773800cf6be4efd072fff20ec
Christian Brabandt <cb@256bit.org>
parents:
7645
diff
changeset
|
1402 /**/ |
7645
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
1403 1122, |
1529ae1c456a
commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5
Christian Brabandt <cb@256bit.org>
parents:
7643
diff
changeset
|
1404 /**/ |
7643
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
1405 1121, |
2b2e90fcd72b
commit https://github.com/vim/vim/commit/08b270a8a4544be9a7fecce311834fde2b457634
Christian Brabandt <cb@256bit.org>
parents:
7641
diff
changeset
|
1406 /**/ |
7641
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
1407 1120, |
b44fc33ef92a
commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
Christian Brabandt <cb@256bit.org>
parents:
7639
diff
changeset
|
1408 /**/ |
7639
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
1409 1119, |
0ecb62a66a7a
commit https://github.com/vim/vim/commit/72defda84eb26be9e2ade56c7877b912f818026e
Christian Brabandt <cb@256bit.org>
parents:
7637
diff
changeset
|
1410 /**/ |
7637
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
1411 1118, |
81f94c1e2e4d
commit https://github.com/vim/vim/commit/a99b90437af730dcafd9143c0942c87777a00d52
Christian Brabandt <cb@256bit.org>
parents:
7635
diff
changeset
|
1412 /**/ |
7635
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
1413 1117, |
1506f86b120f
commit https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
Christian Brabandt <cb@256bit.org>
parents:
7633
diff
changeset
|
1414 /**/ |
7633
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
1415 1116, |
2a280b8e7040
commit https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
Christian Brabandt <cb@256bit.org>
parents:
7631
diff
changeset
|
1416 /**/ |
7631
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
1417 1115, |
ad3e9ea845e7
commit https://github.com/vim/vim/commit/d0232917ced39ff4838665fbcf379d5116a91aa3
Christian Brabandt <cb@256bit.org>
parents:
7629
diff
changeset
|
1418 /**/ |
7629
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
1419 1114, |
befbed72da87
commit https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
Christian Brabandt <cb@256bit.org>
parents:
7627
diff
changeset
|
1420 /**/ |
7627
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
1421 1113, |
d9ec7d22494d
commit https://github.com/vim/vim/commit/4119cf80e1e534057680f9543e73edf7967c2440
Christian Brabandt <cb@256bit.org>
parents:
7625
diff
changeset
|
1422 /**/ |
7625
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
1423 1112, |
b4384c581806
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
1424 /**/ |
7623
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
1425 1111, |
2720952e9acb
commit https://github.com/vim/vim/commit/f60b796fa9870bdfc4cdeb91653bac041916077d
Christian Brabandt <cb@256bit.org>
parents:
7621
diff
changeset
|
1426 /**/ |
7621
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
1427 1110, |
503534e56ce1
commit https://github.com/vim/vim/commit/8c600052fabe4859470d9d0ba2ddd74a52ea9745
Christian Brabandt <cb@256bit.org>
parents:
7619
diff
changeset
|
1428 /**/ |
7619
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
1429 1109, |
6fed43c541c8
commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents:
7617
diff
changeset
|
1430 /**/ |
7617
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
1431 1108, |
80bc36419c21
commit https://github.com/vim/vim/commit/58adb14739fa240ca6020cede9ab1f1cb07bd90a
Christian Brabandt <cb@256bit.org>
parents:
7615
diff
changeset
|
1432 /**/ |
7615
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
1433 1107, |
228ff048db20
commit https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
1434 /**/ |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
1435 1106, |
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7611
diff
changeset
|
1436 /**/ |
7611
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
1437 1105, |
9c420b8db435
commit https://github.com/vim/vim/commit/9bbf63dbf8286fadc0cd6b3428010abb67b1b64d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
1438 /**/ |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
1439 1104, |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7607
diff
changeset
|
1440 /**/ |
7607
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
1441 1103, |
33b43ec0a005
commit https://github.com/vim/vim/commit/d125001297ac76e0ed4759a9320ffb7872cf6242
Christian Brabandt <cb@256bit.org>
parents:
7605
diff
changeset
|
1442 /**/ |
7605
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
1443 1102, |
8fc60af6dbf5
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Christian Brabandt <cb@256bit.org>
parents:
7603
diff
changeset
|
1444 /**/ |
7603
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
1445 1101, |
d3892f6c917e
commit https://github.com/vim/vim/commit/e39b3d9fb4e4006684c33847d1ef6a0d742699dd
Christian Brabandt <cb@256bit.org>
parents:
7602
diff
changeset
|
1446 /**/ |
7602
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
1447 1100, |
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
7600
diff
changeset
|
1448 /**/ |
7600
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
1449 1099, |
fa59fafb6a94
commit https://github.com/vim/vim/commit/36d7cd8965bc4027d420c7d70c56ac95d83d3bfa
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
1450 /**/ |
7598
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
1451 1098, |
1a528724f9d6
commit https://github.com/vim/vim/commit/b7604cc19fa1db6a8182546bf662aa13d4574d7a
Christian Brabandt <cb@256bit.org>
parents:
7595
diff
changeset
|
1452 /**/ |
7595
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
1453 1097, |
99e93f72ff91
commit https://github.com/vim/vim/commit/065ee9aebf9abe08ae8c0dba7d05cbdcc423c8e0
Christian Brabandt <cb@256bit.org>
parents:
7593
diff
changeset
|
1454 /**/ |
7593
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
1455 1096, |
87e607fb6853
commit https://github.com/vim/vim/commit/a260b87d9da17f605666630f18c1ed909c2b8bae
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
1456 /**/ |
7591
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
1457 1095, |
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7588
diff
changeset
|
1458 /**/ |
7588
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
1459 1094, |
0738fa9c4971
commit https://github.com/vim/vim/commit/ccb80989f2779c8441f7f15d160fb2141bd1676d
Christian Brabandt <cb@256bit.org>
parents:
7586
diff
changeset
|
1460 /**/ |
7586
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
1461 1093, |
9fc996244059
commit https://github.com/vim/vim/commit/24c4d539eed33e8073f8f9fe2bee497bbba935a4
Christian Brabandt <cb@256bit.org>
parents:
7584
diff
changeset
|
1462 /**/ |
7584
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
1463 1092, |
9b7de205336d
commit https://github.com/vim/vim/commit/a803c7f94070f94b831fdfd1984f288c8b825b5d
Christian Brabandt <cb@256bit.org>
parents:
7582
diff
changeset
|
1464 /**/ |
7582
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
1465 1091, |
e0acbccdf1fc
commit https://github.com/vim/vim/commit/b01f357791f88c7083e58cf2b36509dd83f21ea2
Christian Brabandt <cb@256bit.org>
parents:
7580
diff
changeset
|
1466 /**/ |
7580
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
1467 1090, |
e9c8eacb6760
commit https://github.com/vim/vim/commit/b5690794cf081773628fa0f1f2b948fd129d5b39
Christian Brabandt <cb@256bit.org>
parents:
7578
diff
changeset
|
1468 /**/ |
7578
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
1469 1089, |
fdae4c496775
commit https://github.com/vim/vim/commit/ef2b5036b3005f1ce15d146dce72379a9834c56d
Christian Brabandt <cb@256bit.org>
parents:
7576
diff
changeset
|
1470 /**/ |
7576
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
1471 1088, |
e008ca0e2af2
commit https://github.com/vim/vim/commit/7ae4fbca552c972eb3645ece02a2807e517610d7
Christian Brabandt <cb@256bit.org>
parents:
7574
diff
changeset
|
1472 /**/ |
7574
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
1473 1087, |
b872724c37db
commit https://github.com/vim/vim/commit/d79e55016cf8268cee935f1ac3b5b28712d1399e
Christian Brabandt <cb@256bit.org>
parents:
7572
diff
changeset
|
1474 /**/ |
7572
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
1475 1086, |
992fe73d4ee6
commit https://github.com/vim/vim/commit/507edf63df75fe228e0f76b845b58d60266e65d8
Christian Brabandt <cb@256bit.org>
parents:
7570
diff
changeset
|
1476 /**/ |
7570
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
1477 1085, |
4250ecde6009
commit https://github.com/vim/vim/commit/a52dfaed104183c1fa2a3b6e4430b23d86bcbece
Christian Brabandt <cb@256bit.org>
parents:
7568
diff
changeset
|
1478 /**/ |
7568
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
1479 1084, |
5274513d3f54
commit https://github.com/vim/vim/commit/e1edc1caba05c553fa60b1cf45a7670b1cfd63fe
Christian Brabandt <cb@256bit.org>
parents:
7566
diff
changeset
|
1480 /**/ |
7566
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1481 1083, |
1dd5b27a79b1
commit https://github.com/vim/vim/commit/4514d2769b05faf6edcca42c3ab3d42da84270f1
Christian Brabandt <cb@256bit.org>
parents:
7564
diff
changeset
|
1482 /**/ |
7564
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
1483 1082, |
aee06f1762e0
commit https://github.com/vim/vim/commit/858b96f382eeb8f1eab5100639e7b09523a6a2a1
Christian Brabandt <cb@256bit.org>
parents:
7562
diff
changeset
|
1484 /**/ |
7562
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
1485 1081, |
f73876aa9a13
commit https://github.com/vim/vim/commit/254b105b755d9736ece5f7f28db92acaf3e7bf76
Christian Brabandt <cb@256bit.org>
parents:
7560
diff
changeset
|
1486 /**/ |
7560
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
1487 1080, |
fb84355cd972
commit https://github.com/vim/vim/commit/f32c5cd6e0e6aa6d4aeacb6bf52e3d3ba21e5201
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
1488 /**/ |
7558
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
1489 1079, |
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
1490 /**/ |
7555
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
1491 1078, |
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7553
diff
changeset
|
1492 /**/ |
7553
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
1493 1077, |
f0205ac9818f
commit https://github.com/vim/vim/commit/30a89473ee64a276215a55e7fa99e008945022df
Christian Brabandt <cb@256bit.org>
parents:
7551
diff
changeset
|
1494 /**/ |
7551
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
1495 1076, |
f624d7671e0c
commit https://github.com/vim/vim/commit/6a3c8aff0439c8406082760c54b26e00ff19a90c
Christian Brabandt <cb@256bit.org>
parents:
7549
diff
changeset
|
1496 /**/ |
7549
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
1497 1075, |
b80fb2cfd62b
commit https://github.com/vim/vim/commit/05fe017c1ac0503b706dad695097572fde01ab0b
Christian Brabandt <cb@256bit.org>
parents:
7547
diff
changeset
|
1498 /**/ |
7547
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
1499 1074, |
567e027a3ea1
commit https://github.com/vim/vim/commit/5fa4d448fb717874b6619bcda62e42190702997c
Christian Brabandt <cb@256bit.org>
parents:
7545
diff
changeset
|
1500 /**/ |
7545
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
1501 1073, |
4c922651fd78
commit https://github.com/vim/vim/commit/28fb79db6b52d1154e8dc63d227673648c2fce15
Christian Brabandt <cb@256bit.org>
parents:
7542
diff
changeset
|
1502 /**/ |
7542
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
1503 1072, |
7df80e470272
commit https://github.com/vim/vim/commit/450919587d4566ce3d17e685e183d5c17d9c2a11
Christian Brabandt <cb@256bit.org>
parents:
7540
diff
changeset
|
1504 /**/ |
7540
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
1505 1071, |
b910bb01832a
commit https://github.com/vim/vim/commit/cfc0a350a9fa04f1b0cfa1ba31fbd2847376513f
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
1506 /**/ |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
1507 1070, |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7536
diff
changeset
|
1508 /**/ |
7536
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
1509 1069, |
30b74472ff81
commit https://github.com/vim/vim/commit/5f24542e5eda590acdbee89b120fa2e19ec7596e
Christian Brabandt <cb@256bit.org>
parents:
7534
diff
changeset
|
1510 /**/ |
7534
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
1511 1068, |
0765665083be
commit https://github.com/vim/vim/commit/71bcfdf30109c3d6e40d143adcaf33964b18a70b
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
1512 /**/ |
7532
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
1513 1067, |
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7530
diff
changeset
|
1514 /**/ |
7530
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1515 1066, |
5d1b5fd708c6
commit https://github.com/vim/vim/commit/64496ffc9cfb0eb6f2074f22809de2b420b5f300
Christian Brabandt <cb@256bit.org>
parents:
7528
diff
changeset
|
1516 /**/ |
7528
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
1517 1065, |
53163e4d9e4f
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Christian Brabandt <cb@256bit.org>
parents:
7526
diff
changeset
|
1518 /**/ |
7526
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
1519 1064, |
08c1f73efcde
commit https://github.com/vim/vim/commit/7b877b360532713dc21a0ff3d55a76ac02eaf573
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
1520 /**/ |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
1521 1063, |
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
1522 /**/ |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
1523 1062, |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7519
diff
changeset
|
1524 /**/ |
7519
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
1525 1061, |
98fede2c9574
commit https://github.com/vim/vim/commit/285bf84b4b9aca828828a8729b04cd59ab333dac
Christian Brabandt <cb@256bit.org>
parents:
7517
diff
changeset
|
1526 /**/ |
7517
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
1527 1060, |
9d67399f49c6
commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
1528 /**/ |
7515
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
1529 1059, |
cc0398578d2f
commit https://github.com/vim/vim/commit/fd39d08fb6f61bc6c1366de8a7af19a42dc1b377
Christian Brabandt <cb@256bit.org>
parents:
7513
diff
changeset
|
1530 /**/ |
7513
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1531 1058, |
37e061ec063c
commit https://github.com/vim/vim/commit/75bdf6aa30a5c99d67c42886cf7a4a000bbaa422
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1532 /**/ |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
1533 1057, |
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7509
diff
changeset
|
1534 /**/ |
7509
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
1535 1056, |
a64793340689
commit https://github.com/vim/vim/commit/ca1fe985175385c609f8e06672a1014729aba05c
Christian Brabandt <cb@256bit.org>
parents:
7506
diff
changeset
|
1536 /**/ |
7506
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
1537 1055, |
cfc0d60f6233
commit https://github.com/vim/vim/commit/e7893a4088d6ea796bcab6195d232cb26c12c317
Christian Brabandt <cb@256bit.org>
parents:
7504
diff
changeset
|
1538 /**/ |
7504
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
1539 1054, |
013f285f31a6
commit https://github.com/vim/vim/commit/2795e21eaafaeaf95a91667fd411023280d0f902
Christian Brabandt <cb@256bit.org>
parents:
7502
diff
changeset
|
1540 /**/ |
7502
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
1541 1053, |
3e306ae760d0
commit https://github.com/vim/vim/commit/da59dd5da6440c3410866ed61ce169a2012ba5bd
Christian Brabandt <cb@256bit.org>
parents:
7500
diff
changeset
|
1542 /**/ |
7500
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
1543 1052, |
ef568437e49a
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Christian Brabandt <cb@256bit.org>
parents:
7498
diff
changeset
|
1544 /**/ |
7498
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
1545 1051, |
3fcd3d235f7b
commit https://github.com/vim/vim/commit/af8af8bfac5792fa64efbc524032d568cc7754f7
Christian Brabandt <cb@256bit.org>
parents:
7496
diff
changeset
|
1546 /**/ |
7496
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
1547 1050, |
6d969668bfc8
commit https://github.com/vim/vim/commit/c71982b23978ef61d0a2f0fe5535e782e1c561ed
Christian Brabandt <cb@256bit.org>
parents:
7494
diff
changeset
|
1548 /**/ |
7494
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
1549 1049, |
b4419a42ac32
commit https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93
Christian Brabandt <cb@256bit.org>
parents:
7492
diff
changeset
|
1550 /**/ |
7492
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
1551 1048, |
26d13d73837f
commit https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Christian Brabandt <cb@256bit.org>
parents:
7490
diff
changeset
|
1552 /**/ |
7490
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
1553 1047, |
4a81ecde8701
commit https://github.com/vim/vim/commit/7f68203168aeb22fcf8a5a9680503fe16759ebd4
Christian Brabandt <cb@256bit.org>
parents:
7488
diff
changeset
|
1554 /**/ |
7488
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
1555 1046, |
6f14d7da2d8a
commit https://github.com/vim/vim/commit/2d6c8002729821acc54a4de41d5c5f3d50594973
Christian Brabandt <cb@256bit.org>
parents:
7486
diff
changeset
|
1556 /**/ |
7486
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
1557 1045, |
8d09c2ce1825
commit https://github.com/vim/vim/commit/47707f6f34007dd803c75addbbd578fd37a74a92
Christian Brabandt <cb@256bit.org>
parents:
7484
diff
changeset
|
1558 /**/ |
7484
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
1559 1044, |
1fe988587423
commit https://github.com/vim/vim/commit/718272a7e13c71095ce07eb3b3d5e1f9790a6991
Christian Brabandt <cb@256bit.org>
parents:
7482
diff
changeset
|
1560 /**/ |
7482
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
1561 1043, |
52d76b2f56c7
commit https://github.com/vim/vim/commit/d7a08a23bf210147e846c74af570bd219e4903da
Christian Brabandt <cb@256bit.org>
parents:
7480
diff
changeset
|
1562 /**/ |
7480
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
1563 1042, |
a49163681559
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Christian Brabandt <cb@256bit.org>
parents:
7478
diff
changeset
|
1564 /**/ |
7478
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
1565 1041, |
dbfa0f9ab289
commit https://github.com/vim/vim/commit/022b896592721838e387e99fd785d3ded7b68be7
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
1566 /**/ |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
1567 1040, |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7473
diff
changeset
|
1568 /**/ |
7473
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
1569 1039, |
ef60fac8f3eb
commit https://github.com/vim/vim/commit/d798af8c77cf47dba74b6b69ae4eba904023981c
Christian Brabandt <cb@256bit.org>
parents:
7471
diff
changeset
|
1570 /**/ |
7471
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1571 1038, |
c79a52efcf2f
commit https://github.com/vim/vim/commit/d2e03f02c4a69d13bd90b5d084990bca95d0b0af
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
1572 /**/ |
7469
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
1573 1037, |
15eefe1b0dad
commit https://github.com/vim/vim/commit/027387f70c671f62e3e08e0bdd09ec05b0232735
Christian Brabandt <cb@256bit.org>
parents:
7467
diff
changeset
|
1574 /**/ |
7467
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
1575 1036, |
765110dd332c
commit https://github.com/vim/vim/commit/fa03fd6c4a9fe05274d62ddefd645cb5801d2023
Christian Brabandt <cb@256bit.org>
parents:
7465
diff
changeset
|
1576 /**/ |
7465
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
1577 1035, |
71e2aca45b81
commit https://github.com/vim/vim/commit/a3306958dcb9aadff1e1e8521d908d86b10ac99a
Christian Brabandt <cb@256bit.org>
parents:
7462
diff
changeset
|
1578 /**/ |
7462
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
1579 1034, |
eb7b199f3d01
commit https://github.com/vim/vim/commit/aac624bacd4be0c5a8e603dac9020f4a754c9c9c
Christian Brabandt <cb@256bit.org>
parents:
7460
diff
changeset
|
1580 /**/ |
7460
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
1581 1033, |
1420ccc9f610
commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents:
7458
diff
changeset
|
1582 /**/ |
7458
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
1583 1032, |
e583db6c4fd4
commit https://github.com/vim/vim/commit/cbfe32953aea09d35d9ac7e5865c915b14e310c1
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
1584 /**/ |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
1585 1031, |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
7454
diff
changeset
|
1586 /**/ |
7454
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
1587 1030, |
4ff843da79fd
commit https://github.com/vim/vim/commit/a2cce8630756769b2cefdc28c7290ae9262cddb1
Christian Brabandt <cb@256bit.org>
parents:
7452
diff
changeset
|
1588 /**/ |
7452
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
1589 1029, |
b3eb1dfbc1fa
commit https://github.com/vim/vim/commit/d3343960d7745bd586197a28b9a96d634a292422
Christian Brabandt <cb@256bit.org>
parents:
7450
diff
changeset
|
1590 /**/ |
7450
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1591 1028, |
e159dff12e40
commit https://github.com/vim/vim/commit/92c23d8ab82e723e5fa2e0c5ee06348d72b8e444
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1592 /**/ |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
1593 1027, |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7445
diff
changeset
|
1594 /**/ |
7445
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
1595 1026, |
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
1596 /**/ |
7443
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
1597 1025, |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7441
diff
changeset
|
1598 /**/ |
7441
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
1599 1024, |
7017b495ca53
commit https://github.com/vim/vim/commit/d5c899a3f1d67a220e571dadf90dde1bbd41e166
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
1600 /**/ |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
1601 1023, |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7437
diff
changeset
|
1602 /**/ |
7437
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
1603 1022, |
388977454c14
commit https://github.com/vim/vim/commit/43f837dea588207c87c34794b19c024e9ff1db3e
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
1604 /**/ |
7435
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1605 1021, |
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1606 /**/ |
7433
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
1607 1020, |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7430
diff
changeset
|
1608 /**/ |
7430
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
1609 1019, |
e2fe7a67b3a4
commit https://github.com/vim/vim/commit/39373819fd5fad825df416f1e2b96a6f43758e23
Christian Brabandt <cb@256bit.org>
parents:
7428
diff
changeset
|
1610 /**/ |
7428
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
1611 1018, |
a4838cba1f48
commit https://github.com/vim/vim/commit/af2dff8fbc0e0c1dd7cb5ae058c3b896c28f7d24
Christian Brabandt <cb@256bit.org>
parents:
7426
diff
changeset
|
1612 /**/ |
7426
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
1613 1017, |
779a7c14c795
commit https://github.com/vim/vim/commit/8f79acdf7ede2693fbda53c3c9693f16db4f193b
Christian Brabandt <cb@256bit.org>
parents:
7424
diff
changeset
|
1614 /**/ |
7424
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
1615 1016, |
c260e4df3a24
commit https://github.com/vim/vim/commit/8dfc5eb32818b11ff5818a060324b94345c40031
Christian Brabandt <cb@256bit.org>
parents:
7422
diff
changeset
|
1616 /**/ |
7422
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
1617 1015, |
35af1e06696b
commit https://github.com/vim/vim/commit/c21d67e33c1b42a492e04788cbb14a23a6724e39
Christian Brabandt <cb@256bit.org>
parents:
7420
diff
changeset
|
1618 /**/ |
7420
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
1619 1014, |
37092e334ef2
commit https://github.com/vim/vim/commit/06b0734d9cd2f39d4c12c7fd89a100eadbe5be78
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
1620 /**/ |
7418
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
1621 1013, |
e7874551bb34
commit https://github.com/vim/vim/commit/9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc
Christian Brabandt <cb@256bit.org>
parents:
7416
diff
changeset
|
1622 /**/ |
7416
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1623 1012, |
cd69647bb839
commit https://github.com/vim/vim/commit/1000565c3a2439c9a7c9759284814dbf3b8bc20d
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1624 /**/ |
7414
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
1625 1011, |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
1626 /**/ |
7412
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1627 1010, |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
1628 /**/ |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1629 1009, |
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1630 /**/ |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
1631 1008, |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7406
diff
changeset
|
1632 /**/ |
7406
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
1633 1007, |
c97735aaef9f
commit https://github.com/vim/vim/commit/e3303cb0817e826e3c25d5dc4ac10b569d0841e1
Christian Brabandt <cb@256bit.org>
parents:
7404
diff
changeset
|
1634 /**/ |
7404
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
1635 1006, |
fb61ce5915fc
commit https://github.com/vim/vim/commit/96c664af27ec9535f2c3cd9b889faad3e9460ad6
Christian Brabandt <cb@256bit.org>
parents:
7402
diff
changeset
|
1636 /**/ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
1637 1005, |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7399
diff
changeset
|
1638 /**/ |
7399
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
1639 1004, |
d45f2dbdac8d
commit https://github.com/vim/vim/commit/08b7bae91adb79d30d4c923fd758e2f7cecd33ef
Christian Brabandt <cb@256bit.org>
parents:
7397
diff
changeset
|
1640 /**/ |
7397
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
1641 1003, |
7ec544daecd5
commit https://github.com/vim/vim/commit/7b5f0a15bce11754c47f849b2ddd68ba0909afac
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
1642 /**/ |
7395
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
1643 1002, |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7393
diff
changeset
|
1644 /**/ |
7393
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
1645 1001, |
467b7c511585
commit https://github.com/vim/vim/commit/f49e240c2def978247fa457aa105bb3024413f7d
Christian Brabandt <cb@256bit.org>
parents:
7391
diff
changeset
|
1646 /**/ |
7391
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
1647 1000, |
4761fed349ed
commit https://github.com/vim/vim/commit/c06624661a3aa6642304c06db9cebe553a4cab17
Christian Brabandt <cb@256bit.org>
parents:
7389
diff
changeset
|
1648 /**/ |
7389
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
1649 999, |
f7ed82d38e6d
commit https://github.com/vim/vim/commit/b8cb643eab0e84d6a41f5884c7e41736218425fb
Christian Brabandt <cb@256bit.org>
parents:
7387
diff
changeset
|
1650 /**/ |
7387
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
1651 998, |
702f694c9396
commit https://github.com/vim/vim/commit/f9c8bd2137b045f9a64d63eefcf022b4726b1419
Christian Brabandt <cb@256bit.org>
parents:
7385
diff
changeset
|
1652 /**/ |
7385
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
1653 997, |
160f4b03d8d0
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
1654 /**/ |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
1655 996, |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
1656 /**/ |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
1657 995, |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
1658 /**/ |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
1659 994, |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7376
diff
changeset
|
1660 /**/ |
7376
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
1661 993, |
88843d12c82b
commit https://github.com/vim/vim/commit/52f6ae1366b34fc5771595c0bd17c779a7f6f544
Christian Brabandt <cb@256bit.org>
parents:
7374
diff
changeset
|
1662 /**/ |
7374
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
1663 992, |
7e367104f6b6
commit https://github.com/vim/vim/commit/013806229a1e15480592f6bc8453130685ec750b
Christian Brabandt <cb@256bit.org>
parents:
7372
diff
changeset
|
1664 /**/ |
7372
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
1665 991, |
6b057079a836
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Christian Brabandt <cb@256bit.org>
parents:
7370
diff
changeset
|
1666 /**/ |
7370
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
1667 990, |
e396c6134266
commit https://github.com/vim/vim/commit/e5c5f0c66c9491aca013f30da6e4f730a7ba7db6
Christian Brabandt <cb@256bit.org>
parents:
7368
diff
changeset
|
1668 /**/ |
7368
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
1669 989, |
adc796ba7dda
commit https://github.com/vim/vim/commit/0107f5ba87ca9427500d0fc42ec80a1f3fca9fdb
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
1670 /**/ |
7366
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
1671 988, |
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7364
diff
changeset
|
1672 /**/ |
7364
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
1673 987, |
fe2f6b92d806
commit https://github.com/vim/vim/commit/0d27f64f7188efef99062a3c5694027c12401670
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
1674 /**/ |
7362
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
1675 986, |
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7360
diff
changeset
|
1676 /**/ |
7360
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
1677 985, |
b20095ba6fc2
commit https://github.com/vim/vim/commit/f2f6d297966ec0e357640b71a238e51afcaba6cc
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
1678 /**/ |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
1679 984, |
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
1680 /**/ |
7356
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
1681 983, |
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
1682 /**/ |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
1683 982, |
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7352
diff
changeset
|
1684 /**/ |
7352
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
1685 981, |
ddab7ae8796d
commit https://github.com/vim/vim/commit/4686b323e4bc0f466500b018959f6c8965f010f9
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
1686 /**/ |
7350
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
1687 980, |
5ac8ee7bf4ff
commit https://github.com/vim/vim/commit/57d7971b5f1621071176eea81cdb0d1fc50c925d
Christian Brabandt <cb@256bit.org>
parents:
7347
diff
changeset
|
1688 /**/ |
7347
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
1689 979, |
8977b399cf55
commit https://github.com/vim/vim/commit/4a8c2cfc56b9affc36934aa0f20d8cfd2b1511c8
Christian Brabandt <cb@256bit.org>
parents:
7345
diff
changeset
|
1690 /**/ |
7345
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
1691 978, |
e88aee1842ba
commit https://github.com/vim/vim/commit/c42b9c670ea621d4dac0f216e011a6db576c5136
Christian Brabandt <cb@256bit.org>
parents:
7344
diff
changeset
|
1692 /**/ |
7344
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
1693 977, |
68f2cac6b0db
commit https://github.com/vim/vim/commit/9bc01ebb957d2b30d57bd30d7aee6f1df2a336b0
Christian Brabandt <cb@256bit.org>
parents:
7342
diff
changeset
|
1694 /**/ |
7342
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
1695 976, |
b871e4bdb319
commit https://github.com/vim/vim/commit/8def26a0f5f5535e9af64e715cb80845fc8ec322
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
1696 /**/ |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
1697 975, |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7338
diff
changeset
|
1698 /**/ |
7338
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
1699 974, |
96d5dd9e7bc9
commit https://github.com/vim/vim/commit/f29a82dcd0914c76f595d475ddac4517371fab2b
Christian Brabandt <cb@256bit.org>
parents:
7336
diff
changeset
|
1700 /**/ |
7336
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
1701 973, |
4c5f53a60543
commit https://github.com/vim/vim/commit/6f62fed349bf829da2adb02619dc9acba13c8ab6
Christian Brabandt <cb@256bit.org>
parents:
7334
diff
changeset
|
1702 /**/ |
7334
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
1703 972, |
6890f5a58109
commit https://github.com/vim/vim/commit/a98849670674264de699d7ab22ae4b9b32e78f4a
Christian Brabandt <cb@256bit.org>
parents:
7332
diff
changeset
|
1704 /**/ |
7332
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
1705 971, |
38e4f3a246eb
commit https://github.com/vim/vim/commit/099fdde0f073315b7f2700786ae533d23a556348
Christian Brabandt <cb@256bit.org>
parents:
7330
diff
changeset
|
1706 /**/ |
7330
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
1707 970, |
8ab712f2c3b8
commit https://github.com/vim/vim/commit/9ec021a2b0dd35ba744a8e2a9430a643c85b922a
Christian Brabandt <cb@256bit.org>
parents:
7328
diff
changeset
|
1708 /**/ |
7328
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
1709 969, |
6679f41bddea
commit https://github.com/vim/vim/commit/35be4534c029148a89ccc41e8e465d793e7ed7c2
Christian Brabandt <cb@256bit.org>
parents:
7326
diff
changeset
|
1710 /**/ |
7326
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
1711 968, |
d4e1c1705137
commit https://github.com/vim/vim/commit/b65c749ac5a8a990d53493e3b9677142b1b9e4ce
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
1712 /**/ |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
1713 967, |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7322
diff
changeset
|
1714 /**/ |
7322
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
1715 966, |
6f398bb76c29
commit https://github.com/vim/vim/commit/49222bee65228c7b5994b33c1568394c3cbf4583
Christian Brabandt <cb@256bit.org>
parents:
7320
diff
changeset
|
1716 /**/ |
7320
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
1717 965, |
cc484bbb73dc
commit https://github.com/vim/vim/commit/941aea2b975623a0c8bc24b140881ef0032a8bb8
Christian Brabandt <cb@256bit.org>
parents:
7318
diff
changeset
|
1718 /**/ |
7318
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
1719 964, |
de124c05fe4f
commit https://github.com/vim/vim/commit/91376b63877c113fe9a3fff2c1b04bf9504f447f
Christian Brabandt <cb@256bit.org>
parents:
7316
diff
changeset
|
1720 /**/ |
7316
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
1721 963, |
6170f4945b83
commit https://github.com/vim/vim/commit/1c57fe8b9450eb29c3e42a94527d4b7514f853e2
Christian Brabandt <cb@256bit.org>
parents:
7313
diff
changeset
|
1722 /**/ |
7313
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
1723 962, |
2062247be2d0
commit https://github.com/vim/vim/commit/3f12a2421bda43a4e48c822541b75f72ee11125a
Christian Brabandt <cb@256bit.org>
parents:
7311
diff
changeset
|
1724 /**/ |
7311
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
1725 961, |
743c258ca3ab
commit https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
1726 /**/ |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
1727 960, |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
7307
diff
changeset
|
1728 /**/ |
7307
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
1729 959, |
5d9e27621ffa
commit https://github.com/vim/vim/commit/0379d01c52e7930ccfc9133f229fba54a2024a42
Christian Brabandt <cb@256bit.org>
parents:
7305
diff
changeset
|
1730 /**/ |
7305
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
1731 958, |
372c785c04b6
commit https://github.com/vim/vim/commit/e1a61991d9b6fd5f65636d17583f93118268cda5
Christian Brabandt <cb@256bit.org>
parents:
7303
diff
changeset
|
1732 /**/ |
7303
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1733 957, |
88f9d339026b
commit https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
Christian Brabandt <cb@256bit.org>
parents:
7301
diff
changeset
|
1734 /**/ |
7301
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
1735 956, |
514f51fa1966
commit https://github.com/vim/vim/commit/f882d9f89dbe24ab1ba4bc88529bef28242fd2ed
Christian Brabandt <cb@256bit.org>
parents:
7299
diff
changeset
|
1736 /**/ |
7299
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
1737 955, |
e31e803a2910
commit https://github.com/vim/vim/commit/3b8fcd945c5f0ee104eaabcf969fb6f973e79c77
Christian Brabandt <cb@256bit.org>
parents:
7297
diff
changeset
|
1738 /**/ |
7297
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
1739 954, |
67c7a524b84f
commit https://github.com/vim/vim/commit/f609dcf8c1094f6fc95f4fc36321a1fb08a7110c
Christian Brabandt <cb@256bit.org>
parents:
7295
diff
changeset
|
1740 /**/ |
7295
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
1741 953, |
6922fcadafe6
commit https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b
Christian Brabandt <cb@256bit.org>
parents:
7293
diff
changeset
|
1742 /**/ |
7293
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
1743 952, |
979f8a595326
commit https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
Christian Brabandt <cb@256bit.org>
parents:
7291
diff
changeset
|
1744 /**/ |
7291
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
1745 951, |
6ffc75d807bd
commit https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
Christian Brabandt <cb@256bit.org>
parents:
7289
diff
changeset
|
1746 /**/ |
7289
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
1747 950, |
32efe489afc5
commit https://github.com/vim/vim/commit/4649ded2877508fe343cbcf6f7e7fd277be0aab3
Christian Brabandt <cb@256bit.org>
parents:
7287
diff
changeset
|
1748 /**/ |
7287
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
1749 949, |
6fcadba9ec7a
commit https://github.com/vim/vim/commit/32a214e78df0120f92fe049eab1385c60f0cdb0b
Christian Brabandt <cb@256bit.org>
parents:
7285
diff
changeset
|
1750 /**/ |
7285
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
1751 948, |
a34232b17763
commit https://github.com/vim/vim/commit/20ad69ccfb60ef718bd26387ef0e5424461a643e
Christian Brabandt <cb@256bit.org>
parents:
7283
diff
changeset
|
1752 /**/ |
7283
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
1753 947, |
631cd8059bf4
commit https://github.com/vim/vim/commit/5311c02f25eed8f34e8a80becb98e86264f371c3
Christian Brabandt <cb@256bit.org>
parents:
7281
diff
changeset
|
1754 /**/ |
7281
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
1755 946, |
2a4593702d5c
commit https://github.com/vim/vim/commit/bbfbaf9741deebb9f1ed790885bd571c4cbce17a
Christian Brabandt <cb@256bit.org>
parents:
7279
diff
changeset
|
1756 /**/ |
7279
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
1757 945, |
b5e9810b389d
commit https://github.com/vim/vim/commit/683fa185a4b4ed7595e5942901548b8239ed5cdb
Christian Brabandt <cb@256bit.org>
parents:
7277
diff
changeset
|
1758 /**/ |
7277
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
1759 944, |
6600871bb38c
commit https://github.com/vim/vim/commit/43345546ae63710441f066648b8485fb545b3801
Christian Brabandt <cb@256bit.org>
parents:
7275
diff
changeset
|
1760 /**/ |
7275
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
1761 943, |
4b4ac70f5173
commit https://github.com/vim/vim/commit/48a969b48898fb08dce636c6b918408c6fbd3ea0
Christian Brabandt <cb@256bit.org>
parents:
7273
diff
changeset
|
1762 /**/ |
7273
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
1763 942, |
73207eca53f5
commit https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
1764 /**/ |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
1765 941, |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7264
diff
changeset
|
1766 /**/ |
7264
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
1767 940, |
b1b86aa171cd
commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073
Christian Brabandt <cb@256bit.org>
parents:
7262
diff
changeset
|
1768 /**/ |
7262
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
1769 939, |
fadf7fc3b666
commit https://github.com/vim/vim/commit/9a7d58e42ed54406437c2394e5a489ee6a9e4220
Christian Brabandt <cb@256bit.org>
parents:
7260
diff
changeset
|
1770 /**/ |
7260
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
1771 938, |
8ba562cb3e07
commit https://github.com/vim/vim/commit/88e484bf1b0afb5f2dec44f19335729578ace66a
Christian Brabandt <cb@256bit.org>
parents:
7258
diff
changeset
|
1772 /**/ |
7258
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
1773 937, |
7245d8635ac7
commit https://github.com/vim/vim/commit/5ad075c0735d3d8b97708d17c22de8facb15f997
Christian Brabandt <cb@256bit.org>
parents:
7256
diff
changeset
|
1774 /**/ |
7256
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
1775 936, |
79270eaac6de
commit https://github.com/vim/vim/commit/294a7e55b01149154807a23323038784549b8946
Christian Brabandt <cb@256bit.org>
parents:
7254
diff
changeset
|
1776 /**/ |
7254
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
1777 935, |
b4b7b06c7951
commit https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d
Christian Brabandt <cb@256bit.org>
parents:
7252
diff
changeset
|
1778 /**/ |
7252
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
1779 934, |
1b591fcf2517
commit https://github.com/vim/vim/commit/7487792ab14c1fb8dbdb37bdd74265d8b1d3be50
Christian Brabandt <cb@256bit.org>
parents:
7250
diff
changeset
|
1780 /**/ |
7250
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
1781 933, |
99476f1aaacd
commit https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60
Christian Brabandt <cb@256bit.org>
parents:
7248
diff
changeset
|
1782 /**/ |
7248
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
1783 932, |
dc7b1567d057
commit https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
Christian Brabandt <cb@256bit.org>
parents:
7246
diff
changeset
|
1784 /**/ |
7246
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
1785 931, |
a69b5e4beefd
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Christian Brabandt <cb@256bit.org>
parents:
7243
diff
changeset
|
1786 /**/ |
7243
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
1787 930, |
861a44fc5183
commit https://github.com/vim/vim/commit/97b0b0ec764d3a247ef600d809b965d5ab37155d
Christian Brabandt <cb@256bit.org>
parents:
7241
diff
changeset
|
1788 /**/ |
7241
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
1789 929, |
0c1278704b5c
commit https://github.com/vim/vim/commit/d29c6fea94947b3f4b54fbd5a6f832a7d744bf27
Christian Brabandt <cb@256bit.org>
parents:
7239
diff
changeset
|
1790 /**/ |
7239
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1791 928, |
89c6f7c6704a
commit https://github.com/vim/vim/commit/5d8afebb5bf7fb1e8ce06062451dc6a1f9a53ac0
Christian Brabandt <cb@256bit.org>
parents:
7237
diff
changeset
|
1792 /**/ |
7237
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
1793 927, |
2a95fa0a07b5
commit https://github.com/vim/vim/commit/9b1067e038d371bd6c51e5da025383761f4921b4
Christian Brabandt <cb@256bit.org>
parents:
7235
diff
changeset
|
1794 /**/ |
7235
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
1795 926, |
e45271250496
commit https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9
Christian Brabandt <cb@256bit.org>
parents:
7233
diff
changeset
|
1796 /**/ |
7233
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
1797 925, |
9487ea110214
commit https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
Christian Brabandt <cb@256bit.org>
parents:
7231
diff
changeset
|
1798 /**/ |
7231
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
1799 924, |
a4d10eec6356
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Christian Brabandt <cb@256bit.org>
parents:
7229
diff
changeset
|
1800 /**/ |
7229
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
1801 923, |
ae360f1df2aa
commit https://github.com/vim/vim/commit/6a2697ffd7e894861853b351689b0ddec8901c96
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
1802 /**/ |
7226
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
1803 922, |
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7224
diff
changeset
|
1804 /**/ |
7224
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
1805 921, |
42bf8902d4da
commit https://github.com/vim/vim/commit/cd1c55f706c2f9b8310b8a9fc1f8226c7fd19372
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
1806 /**/ |
7222
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1807 920, |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1808 /**/ |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
1809 919, |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
7218
diff
changeset
|
1810 /**/ |
7218
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
1811 918, |
36dc8df8560f
commit https://github.com/vim/vim/commit/0796c0625fa4b9eb2f47fe8c976b78523924e1fb
Christian Brabandt <cb@256bit.org>
parents:
7216
diff
changeset
|
1812 /**/ |
7216
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
1813 917, |
310925215e17
commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8
Christian Brabandt <cb@256bit.org>
parents:
7214
diff
changeset
|
1814 /**/ |
7214
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
1815 916, |
e036defe034e
commit https://github.com/vim/vim/commit/8648357841065295e39831d2b559d87ca01a7a7c
Christian Brabandt <cb@256bit.org>
parents:
7212
diff
changeset
|
1816 /**/ |
7212
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
1817 915, |
55c67e16e4fd
commit https://github.com/vim/vim/commit/174674743d9a2d7361c9cd89836f8dd8651edeeb
Christian Brabandt <cb@256bit.org>
parents:
7210
diff
changeset
|
1818 /**/ |
7210
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
1819 914, |
08b50e436093
commit https://github.com/vim/vim/commit/98b30a473a58ae98c280e0383c8b1e08c0ebced5
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
1820 /**/ |
7208
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
1821 913, |
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7206
diff
changeset
|
1822 /**/ |
7206
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
1823 912, |
c6a7305972fe
commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a
Christian Brabandt <cb@256bit.org>
parents:
7204
diff
changeset
|
1824 /**/ |
7204
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
1825 911, |
5fad7bc0fe83
commit https://github.com/vim/vim/commit/450ca4335e467ac29c1560b7397225a974aee3bf
Christian Brabandt <cb@256bit.org>
parents:
7202
diff
changeset
|
1826 /**/ |
7202
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
1827 910, |
de43f10a3850
commit https://github.com/vim/vim/commit/e7427f4b7e1af6a63600183be6b4c5724beb2f66
Christian Brabandt <cb@256bit.org>
parents:
7200
diff
changeset
|
1828 /**/ |
7200
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
1829 909, |
bc951043f655
commit https://github.com/vim/vim/commit/de59ba33aa3b94f2757dbf3451682d762c15ebcf
Christian Brabandt <cb@256bit.org>
parents:
7198
diff
changeset
|
1830 /**/ |
7198
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
1831 908, |
b58e16f9119e
commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698
Christian Brabandt <cb@256bit.org>
parents:
7196
diff
changeset
|
1832 /**/ |
7196
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
1833 907, |
42717d048817
commit https://github.com/vim/vim/commit/d94464ee294a351ce7b6ba18e8bd3f24f1bef920
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
1834 /**/ |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
1835 906, |
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7191
diff
changeset
|
1836 /**/ |
7191
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
1837 905, |
692dac7183de
commit https://github.com/vim/vim/commit/d424747d5821c2873e24d25d3407d08b25ea3443
Christian Brabandt <cb@256bit.org>
parents:
7189
diff
changeset
|
1838 /**/ |
7189
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
1839 904, |
0b4387f570ec
commit https://github.com/vim/vim/commit/6407b3e80d7d7f8f0797c13ae35cc06f96be46c9
Christian Brabandt <cb@256bit.org>
parents:
7186
diff
changeset
|
1840 /**/ |
7186
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
1841 903, |
41885de3d577
commit https://github.com/vim/vim/commit/7314efd87d8c4095229bdc2867a553c36c064918
Christian Brabandt <cb@256bit.org>
parents:
7184
diff
changeset
|
1842 /**/ |
7184
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
1843 902, |
0a256475412f
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents:
7181
diff
changeset
|
1844 /**/ |
7181
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
1845 901, |
ce8b286e89ef
commit https://github.com/vim/vim/commit/e7d1376b636e6c758196c3542bd2c1053f9edb75
Christian Brabandt <cb@256bit.org>
parents:
7179
diff
changeset
|
1846 /**/ |
7179
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
1847 900, |
f7d6cc6b78b5
commit https://github.com/vim/vim/commit/f1a4c98ea6fa122ceb24c1ad17e184703cbfd182
Christian Brabandt <cb@256bit.org>
parents:
7177
diff
changeset
|
1848 /**/ |
7177
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
1849 899, |
c4d677c50b9b
commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents:
7174
diff
changeset
|
1850 /**/ |
7174
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
1851 898, |
22f87d5e9533
commit https://github.com/vim/vim/commit/04dfd512293e951479aec2378753b946c39bea87
Christian Brabandt <cb@256bit.org>
parents:
7172
diff
changeset
|
1852 /**/ |
7172
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
1853 897, |
ad57f5b5bd6c
commit https://github.com/vim/vim/commit/4e86150ec5b5158da92b28938ea55819dc890a14
Christian Brabandt <cb@256bit.org>
parents:
7170
diff
changeset
|
1854 /**/ |
7170
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
1855 896, |
beb67ef38f88
commit https://github.com/vim/vim/commit/b4f6a46b01ed00b642a2271e9d1559e51ab0f2c4
Christian Brabandt <cb@256bit.org>
parents:
7168
diff
changeset
|
1856 /**/ |
7168
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
1857 895, |
0f2807c05687
commit https://github.com/vim/vim/commit/23d1b62746dce048c80cc19e7e5af1d513b6b4cf
Christian Brabandt <cb@256bit.org>
parents:
7166
diff
changeset
|
1858 /**/ |
7166
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
1859 894, |
fbec41e5651e
commit https://github.com/vim/vim/commit/f59c73da1e8eb16e7b49b4465aedd1d6ddacc6fd
Christian Brabandt <cb@256bit.org>
parents:
7164
diff
changeset
|
1860 /**/ |
7164
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
1861 893, |
d3c57e7f489a
commit https://github.com/vim/vim/commit/d1b15dec4d00d7ed5e92ff4e0fb7fc2e0818e479
Christian Brabandt <cb@256bit.org>
parents:
7162
diff
changeset
|
1862 /**/ |
7162
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
1863 892, |
fe090e9cd10a
commit https://github.com/vim/vim/commit/9d6ca1cc5ebb6e61cc2ef73aecfbb0bdbb65432f
Christian Brabandt <cb@256bit.org>
parents:
7160
diff
changeset
|
1864 /**/ |
7160
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
1865 891, |
accd3a0e9bf4
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Christian Brabandt <cb@256bit.org>
parents:
7158
diff
changeset
|
1866 /**/ |
7158
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
1867 890, |
43ac8dc380c7
commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad
Christian Brabandt <cb@256bit.org>
parents:
7156
diff
changeset
|
1868 /**/ |
7156
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
1869 889, |
0b4e65cf84fb
commit https://github.com/vim/vim/commit/74b738d414b2895b3365e26ae3b7792eb82ccf47
Christian Brabandt <cb@256bit.org>
parents:
7154
diff
changeset
|
1870 /**/ |
7154
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
1871 888, |
a01294e1c02f
commit https://github.com/vim/vim/commit/ba117c23dfd1146aca3235bea172df17a48bccee
Christian Brabandt <cb@256bit.org>
parents:
7152
diff
changeset
|
1872 /**/ |
7152
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
1873 887, |
cbdc02d71a18
commit https://github.com/vim/vim/commit/c2b717ebd6719e722dcb5f10e4c74033a53ff7c7
Christian Brabandt <cb@256bit.org>
parents:
7150
diff
changeset
|
1874 /**/ |
7150
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
1875 886, |
46390681bd80
commit https://github.com/vim/vim/commit/1d478a6242871dcf4566814d3c6208df17991426
Christian Brabandt <cb@256bit.org>
parents:
7148
diff
changeset
|
1876 /**/ |
7148
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
1877 885, |
339e657a6ed6
commit https://github.com/vim/vim/commit/c79a5452acd695238798947e40086f9823c400e7
Christian Brabandt <cb@256bit.org>
parents:
7145
diff
changeset
|
1878 /**/ |
7145
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
1879 884, |
7669c1269190
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Christian Brabandt <cb@256bit.org>
parents:
7143
diff
changeset
|
1880 /**/ |
7143
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
1881 883, |
fe6d525d12f4
commit https://github.com/vim/vim/commit/10ad1d90da8c464e1bf08bf23d92d4888378a8a1
Christian Brabandt <cb@256bit.org>
parents:
7141
diff
changeset
|
1882 /**/ |
7141
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
1883 882, |
4e8f07fc7ca3
commit https://github.com/vim/vim/commit/5f1fea28f5bc573e2430773c49e95ae1f9cc2a25
Christian Brabandt <cb@256bit.org>
parents:
7139
diff
changeset
|
1884 /**/ |
7139
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
1885 881, |
d1e35ca56c73
commit https://github.com/vim/vim/commit/0a777ab9890ba0e8dd57f082e98fde1adab36aa0
Christian Brabandt <cb@256bit.org>
parents:
7137
diff
changeset
|
1886 /**/ |
7137
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
1887 880, |
41896b9720cc
commit https://github.com/vim/vim/commit/02d803fc0cc99a1c86a3553a1d445137eab1aa8d
Christian Brabandt <cb@256bit.org>
parents:
7135
diff
changeset
|
1888 /**/ |
7135
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
1889 879, |
9d4986f52df8
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Christian Brabandt <cb@256bit.org>
parents:
7133
diff
changeset
|
1890 /**/ |
7133
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
1891 878, |
48ce650e8a27
commit https://github.com/vim/vim/commit/69b67f7e774dc212e8c97495ee81c601b8a89ac2
Christian Brabandt <cb@256bit.org>
parents:
7131
diff
changeset
|
1892 /**/ |
7131
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
1893 877, |
cc5570ed684e
commit https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6
Christian Brabandt <cb@256bit.org>
parents:
7129
diff
changeset
|
1894 /**/ |
7129
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
1895 876, |
aaf96b1aa605
commit https://github.com/vim/vim/commit/b0262f239e77480f81fa3345491b7b6d52a17f6d
Christian Brabandt <cb@256bit.org>
parents:
7127
diff
changeset
|
1896 /**/ |
7127
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1897 875, |
e945a8e35535
commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents:
7125
diff
changeset
|
1898 /**/ |
7125
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
1899 874, |
52a7ba315f03
commit https://github.com/vim/vim/commit/8919554fe17255cddbbce6b833fab9aba19c8b88
Christian Brabandt <cb@256bit.org>
parents:
7123
diff
changeset
|
1900 /**/ |
7123
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
1901 873, |
077ae8b63e15
commit https://github.com/vim/vim/commit/b8603882b1679385b287f14c527fa61eee60a9dd
Christian Brabandt <cb@256bit.org>
parents:
7121
diff
changeset
|
1902 /**/ |
7121
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
1903 872, |
a497a9868255
commit https://github.com/vim/vim/commit/0600f3511c6018cbcdb170a904bcf6533a06bf2d
Christian Brabandt <cb@256bit.org>
parents:
7119
diff
changeset
|
1904 /**/ |
7119
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
1905 871, |
6bc1695b7f11
commit https://github.com/vim/vim/commit/7b256fe7445b46929f660ea74e9090418f857696
Christian Brabandt <cb@256bit.org>
parents:
7117
diff
changeset
|
1906 /**/ |
7117
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
1907 870, |
9946e87686c8
commit https://github.com/vim/vim/commit/2455c4ede8d4ff6f0754977b548708eec08869eb
Christian Brabandt <cb@256bit.org>
parents:
7115
diff
changeset
|
1908 /**/ |
7115
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
1909 869, |
ec89519dfeea
commit https://github.com/vim/vim/commit/3b59755862f4604ded8155404a1fe4c84c606829
Christian Brabandt <cb@256bit.org>
parents:
7113
diff
changeset
|
1910 /**/ |
7113
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
1911 868, |
83b3261352b3
commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents:
7111
diff
changeset
|
1912 /**/ |
7111
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1913 867, |
57c354f0115c
commit https://github.com/vim/vim/commit/9534680731ea342c2fed01a812559958923480da
Christian Brabandt <cb@256bit.org>
parents:
7109
diff
changeset
|
1914 /**/ |
7109
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
1915 866, |
fa95595fbc52
commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db
Christian Brabandt <cb@256bit.org>
parents:
7107
diff
changeset
|
1916 /**/ |
7107
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
1917 865, |
84efaf06f195
commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136
Christian Brabandt <cb@256bit.org>
parents:
7105
diff
changeset
|
1918 /**/ |
7105
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
1919 864, |
f4456e686406
commit https://github.com/vim/vim/commit/e906c502079770ae0e0071c74cefb802689ff193
Christian Brabandt <cb@256bit.org>
parents:
7103
diff
changeset
|
1920 /**/ |
7103
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
1921 863, |
84d318257a45
commit https://github.com/vim/vim/commit/43335ea394fe247132b9701c55cccf51e6c36425
Christian Brabandt <cb@256bit.org>
parents:
7101
diff
changeset
|
1922 /**/ |
7101
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
1923 862, |
793ca14b5654
commit https://github.com/vim/vim/commit/5325b9bbae8a717510ef7248f3ce8b50281bd33f
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
1924 /**/ |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
1925 861, |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
7096
diff
changeset
|
1926 /**/ |
7096
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
1927 860, |
00b9f0c048db
commit https://github.com/vim/vim/commit/a122b5e98afe18c9cfdab31b77d2a9fbb8e36416
Christian Brabandt <cb@256bit.org>
parents:
7094
diff
changeset
|
1928 /**/ |
7094
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
1929 859, |
66137191901a
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Christian Brabandt <cb@256bit.org>
parents:
7092
diff
changeset
|
1930 /**/ |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
1931 858, |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7090
diff
changeset
|
1932 /**/ |
7090
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
1933 857, |
052043fc57ab
commit https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
Christian Brabandt <cb@256bit.org>
parents:
7088
diff
changeset
|
1934 /**/ |
7088
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
1935 856, |
8a58dde655a8
commit https://github.com/vim/vim/commit/a09a2c5857ab854f0870573b5160da1964c905a2
Christian Brabandt <cb@256bit.org>
parents:
7086
diff
changeset
|
1936 /**/ |
7086
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
1937 855, |
3825da022231
commit https://github.com/vim/vim/commit/7e2ec008f5c5152205d0b8a7d88177b374225d8d
Christian Brabandt <cb@256bit.org>
parents:
7084
diff
changeset
|
1938 /**/ |
7084
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
1939 854, |
1c039023af1c
commit https://github.com/vim/vim/commit/b58988b832b69b52dfefeca338ea4802d0c4cdca
Christian Brabandt <cb@256bit.org>
parents:
7082
diff
changeset
|
1940 /**/ |
7082
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
1941 853, |
ad4c039349f6
commit https://github.com/vim/vim/commit/cf619daa8e0ef9a335f27f65eb74e422a17d4f92
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
1942 /**/ |
7080
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1943 852, |
1a34f5272977
commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents:
7078
diff
changeset
|
1944 /**/ |
7078
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
1945 851, |
383d6f39669b
commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents:
7076
diff
changeset
|
1946 /**/ |
7076
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
1947 850, |
6ad58a7e995b
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Christian Brabandt <cb@256bit.org>
parents:
7074
diff
changeset
|
1948 /**/ |
7074
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1949 849, |
c8efa41dd451
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Christian Brabandt <cb@256bit.org>
parents:
7072
diff
changeset
|
1950 /**/ |
7072
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
1951 848, |
05afb5be93bd
commit https://github.com/vim/vim/commit/5adfea1ac63e252556bccce54e92e8e10b58f592
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
1952 /**/ |
7070
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
1953 847, |
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7068
diff
changeset
|
1954 /**/ |
7068
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
1955 846, |
a55f35ed381b
commit https://github.com/vim/vim/commit/6017f3799dbb744fc34894d968b36729e607203e
Christian Brabandt <cb@256bit.org>
parents:
7066
diff
changeset
|
1956 /**/ |
7066
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
1957 845, |
094c8ccdc279
commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
1958 /**/ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
1959 844, |
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
7062
diff
changeset
|
1960 /**/ |
7062
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
1961 843, |
6deb9d802fe4
commit https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f
Christian Brabandt <cb@256bit.org>
parents:
7060
diff
changeset
|
1962 /**/ |
7060
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
1963 842, |
41ccc6f95954
commit https://github.com/vim/vim/commit/cdf0442d009ea97fad06d72231f7de309c75205a
Christian Brabandt <cb@256bit.org>
parents:
7058
diff
changeset
|
1964 /**/ |
7058
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
1965 841, |
64dc5b11ad33
commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents:
7056
diff
changeset
|
1966 /**/ |
7056
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
1967 840, |
1ebd7608cfd9
commit https://github.com/vim/vim/commit/8e5f5b47c2198ffa4161c21a4140eaa9bed46f37
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
1968 /**/ |
7054
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
1969 839, |
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7052
diff
changeset
|
1970 /**/ |
7052
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
1971 838, |
9ec3329823f9
commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents:
7049
diff
changeset
|
1972 /**/ |
7049
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
1973 837, |
2ebc20378f68
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Christian Brabandt <cb@256bit.org>
parents:
7046
diff
changeset
|
1974 /**/ |
7046
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
1975 836, |
fd409a0800fd
commit https://github.com/vim/vim/commit/0a38dd29d6f65aa601162542a5ab0ba7f308fc8e
Christian Brabandt <cb@256bit.org>
parents:
7044
diff
changeset
|
1976 /**/ |
7044
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
1977 835, |
7758d6245c3a
commit https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6
Christian Brabandt <cb@256bit.org>
parents:
7042
diff
changeset
|
1978 /**/ |
7042
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
1979 834, |
e8eccb9621f7
commit https://github.com/vim/vim/commit/7e47d1ac6a9ae0e5a7167aa34ff651a9c39c1641
Christian Brabandt <cb@256bit.org>
parents:
7040
diff
changeset
|
1980 /**/ |
7040
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
1981 833, |
17a3fa77e941
commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents:
7038
diff
changeset
|
1982 /**/ |
7038
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
1983 832, |
76042a56ab85
commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents:
7036
diff
changeset
|
1984 /**/ |
7036
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
1985 831, |
5f00b8d7148f
commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745
Christian Brabandt <cb@256bit.org>
parents:
7034
diff
changeset
|
1986 /**/ |
7034
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
1987 830, |
e668b160ac68
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents:
7032
diff
changeset
|
1988 /**/ |
7032
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
1989 829, |
320c97a73272
commit https://github.com/vim/vim/commit/7fb7d34caf5f45289212987123baac4ce5a0d38c
Christian Brabandt <cb@256bit.org>
parents:
7030
diff
changeset
|
1990 /**/ |
7030
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
1991 828, |
8d513ddfe3ec
commit https://github.com/vim/vim/commit/670acbc70f371409b46b722bd9a1166e53574f42
Christian Brabandt <cb@256bit.org>
parents:
7021
diff
changeset
|
1992 /**/ |
7021 | 1993 827, |
1994 /**/ | |
7019 | 1995 826, |
1996 /**/ | |
7017 | 1997 825, |
1998 /**/ | |
7014 | 1999 824, |
2000 /**/ | |
7011 | 2001 823, |
2002 /**/ | |
7009 | 2003 822, |
2004 /**/ | |
7007 | 2005 821, |
2006 /**/ | |
7005 | 2007 820, |
2008 /**/ | |
7003 | 2009 819, |
2010 /**/ | |
7001 | 2011 818, |
2012 /**/ | |
6999 | 2013 817, |
2014 /**/ | |
6997 | 2015 816, |
2016 /**/ | |
6995 | 2017 815, |
2018 /**/ | |
6993 | 2019 814, |
2020 /**/ | |
6991 | 2021 813, |
2022 /**/ | |
6989 | 2023 812, |
2024 /**/ | |
6987 | 2025 811, |
2026 /**/ | |
6985 | 2027 810, |
2028 /**/ | |
6983 | 2029 809, |
2030 /**/ | |
6981 | 2031 808, |
2032 /**/ | |
6979 | 2033 807, |
2034 /**/ | |
6977 | 2035 806, |
2036 /**/ | |
6975 | 2037 805, |
2038 /**/ | |
6973 | 2039 804, |
2040 /**/ | |
6971 | 2041 803, |
2042 /**/ | |
6969 | 2043 802, |
2044 /**/ | |
6967 | 2045 801, |
2046 /**/ | |
6965 | 2047 800, |
2048 /**/ | |
6963 | 2049 799, |
2050 /**/ | |
6961 | 2051 798, |
2052 /**/ | |
6959 | 2053 797, |
2054 /**/ | |
6957 | 2055 796, |
2056 /**/ | |
6954 | 2057 795, |
2058 /**/ | |
6952 | 2059 794, |
2060 /**/ | |
6949 | 2061 793, |
2062 /**/ | |
6947 | 2063 792, |
2064 /**/ | |
6945 | 2065 791, |
2066 /**/ | |
6943 | 2067 790, |
2068 /**/ | |
6941 | 2069 789, |
2070 /**/ | |
6939 | 2071 788, |
2072 /**/ | |
6937 | 2073 787, |
2074 /**/ | |
6935 | 2075 786, |
2076 /**/ | |
6933 | 2077 785, |
2078 /**/ | |
6931 | 2079 784, |
2080 /**/ | |
6929 | 2081 783, |
2082 /**/ | |
6927 | 2083 782, |
2084 /**/ | |
6925 | 2085 781, |
2086 /**/ | |
6923 | 2087 780, |
2088 /**/ | |
6921 | 2089 779, |
2090 /**/ | |
6919 | 2091 778, |
2092 /**/ | |
6916 | 2093 777, |
2094 /**/ | |
6914 | 2095 776, |
2096 /**/ | |
6911 | 2097 775, |
2098 /**/ | |
6909 | 2099 774, |
2100 /**/ | |
6907 | 2101 773, |
2102 /**/ | |
6905 | 2103 772, |
2104 /**/ | |
6903 | 2105 771, |
2106 /**/ | |
6901 | 2107 770, |
2108 /**/ | |
6899 | 2109 769, |
2110 /**/ | |
6897 | 2111 768, |
2112 /**/ | |
6895 | 2113 767, |
2114 /**/ | |
6893 | 2115 766, |
2116 /**/ | |
6891 | 2117 765, |
2118 /**/ | |
6889 | 2119 764, |
2120 /**/ | |
6887 | 2121 763, |
2122 /**/ | |
6885 | 2123 762, |
2124 /**/ | |
6882 | 2125 761, |
2126 /**/ | |
6880 | 2127 760, |
2128 /**/ | |
6878 | 2129 759, |
2130 /**/ | |
6876 | 2131 758, |
2132 /**/ | |
6874 | 2133 757, |
2134 /**/ | |
6872 | 2135 756, |
2136 /**/ | |
6870 | 2137 755, |
2138 /**/ | |
6868 | 2139 754, |
2140 /**/ | |
6866 | 2141 753, |
2142 /**/ | |
6864 | 2143 752, |
2144 /**/ | |
6862 | 2145 751, |
2146 /**/ | |
6860 | 2147 750, |
2148 /**/ | |
6858 | 2149 749, |
2150 /**/ | |
6856 | 2151 748, |
2152 /**/ | |
6853 | 2153 747, |
2154 /**/ | |
6851 | 2155 746, |
2156 /**/ | |
6849 | 2157 745, |
2158 /**/ | |
6847 | 2159 744, |
2160 /**/ | |
6845 | 2161 743, |
2162 /**/ | |
6843 | 2163 742, |
2164 /**/ | |
6841 | 2165 741, |
2166 /**/ | |
6838 | 2167 740, |
2168 /**/ | |
6836 | 2169 739, |
2170 /**/ | |
6834 | 2171 738, |
2172 /**/ | |
6832 | 2173 737, |
2174 /**/ | |
6830 | 2175 736, |
2176 /**/ | |
6828 | 2177 735, |
2178 /**/ | |
6826 | 2179 734, |
2180 /**/ | |
6824 | 2181 733, |
2182 /**/ | |
6821 | 2183 732, |
2184 /**/ | |
6819 | 2185 731, |
2186 /**/ | |
6817 | 2187 730, |
2188 /**/ | |
6815 | 2189 729, |
2190 /**/ | |
6813 | 2191 728, |
2192 /**/ | |
6811 | 2193 727, |
2194 /**/ | |
6809 | 2195 726, |
2196 /**/ | |
6807 | 2197 725, |
2198 /**/ | |
6805 | 2199 724, |
2200 /**/ | |
6803 | 2201 723, |
2202 /**/ | |
6801 | 2203 722, |
2204 /**/ | |
6799 | 2205 721, |
2206 /**/ | |
6797 | 2207 720, |
2208 /**/ | |
6795 | 2209 719, |
2210 /**/ | |
6793 | 2211 718, |
2212 /**/ | |
6791 | 2213 717, |
2214 /**/ | |
6789 | 2215 716, |
2216 /**/ | |
6787 | 2217 715, |
2218 /**/ | |
6785 | 2219 714, |
2220 /**/ | |
6783 | 2221 713, |
2222 /**/ | |
6781 | 2223 712, |
2224 /**/ | |
6779 | 2225 711, |
2226 /**/ | |
6777 | 2227 710, |
2228 /**/ | |
6775 | 2229 709, |
2230 /**/ | |
6773 | 2231 708, |
2232 /**/ | |
6771 | 2233 707, |
2234 /**/ | |
6769 | 2235 706, |
2236 /**/ | |
6767 | 2237 705, |
2238 /**/ | |
6765 | 2239 704, |
2240 /**/ | |
6763 | 2241 703, |
2242 /**/ | |
6761 | 2243 702, |
2244 /**/ | |
6759 | 2245 701, |
2246 /**/ | |
6755 | 2247 700, |
2248 /**/ | |
6753 | 2249 699, |
2250 /**/ | |
6751 | 2251 698, |
2252 /**/ | |
6749 | 2253 697, |
2254 /**/ | |
6747 | 2255 696, |
2256 /**/ | |
6745 | 2257 695, |
2258 /**/ | |
6742 | 2259 694, |
2260 /**/ | |
6739 | 2261 693, |
2262 /**/ | |
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
|
2263 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
|
2264 /**/ |
6735
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
2265 691, |
f6021786b775
patch 7.4.691 for Problem: Can't build with MzScheme.
Bram Moolenaar <bram@vim.org>
parents:
6733
diff
changeset
|
2266 /**/ |
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
|
2267 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
|
2268 /**/ |
6731 | 2269 689, |
2270 /**/ | |
6729 | 2271 688, |
2272 /**/ | |
6727 | 2273 687, |
2274 /**/ | |
6725 | 2275 686, |
2276 /**/ | |
6723 | 2277 685, |
2278 /**/ | |
6721 | 2279 684, |
2280 /**/ | |
6719 | 2281 683, |
2282 /**/ | |
6717 | 2283 682, |
2284 /**/ | |
6714 | 2285 681, |
2286 /**/ | |
6712 | 2287 680, |
2288 /**/ | |
6710 | 2289 679, |
2290 /**/ | |
6708 | 2291 678, |
2292 /**/ | |
6706 | 2293 677, |
2294 /**/ | |
6704 | 2295 676, |
2296 /**/ | |
6702 | 2297 675, |
2298 /**/ | |
6700 | 2299 674, |
2300 /**/ | |
6698 | 2301 673, |
2302 /**/ | |
6695 | 2303 672, |
2304 /**/ | |
6693 | 2305 671, |
2306 /**/ | |
6691 | 2307 670, |
2308 /**/ | |
6689 | 2309 669, |
2310 /**/ | |
6687 | 2311 668, |
2312 /**/ | |
6685 | 2313 667, |
2314 /**/ | |
6683 | 2315 666, |
2316 /**/ | |
6681 | 2317 665, |
2318 /**/ | |
6679 | 2319 664, |
2320 /**/ | |
6677 | 2321 663, |
2322 /**/ | |
6675 | 2323 662, |
2324 /**/ | |
6673 | 2325 661, |
2326 /**/ | |
6671 | 2327 660, |
2328 /**/ | |
6669 | 2329 659, |
2330 /**/ | |
6667 | 2331 658, |
2332 /**/ | |
6665 | 2333 657, |
2334 /**/ | |
6663 | 2335 656, |
2336 /**/ | |
6661 | 2337 655, |
2338 /**/ | |
6659 | 2339 654, |
2340 /**/ | |
6657 | 2341 653, |
2342 /**/ | |
6655 | 2343 652, |
2344 /**/ | |
6653 | 2345 651, |
2346 /**/ | |
6651 | 2347 650, |
2348 /**/ | |
6649 | 2349 649, |
2350 /**/ | |
6645 | 2351 648, |
2352 /**/ | |
6643 | 2353 647, |
2354 /**/ | |
6641 | 2355 646, |
2356 /**/ | |
6639 | 2357 645, |
2358 /**/ | |
6637 | 2359 644, |
2360 /**/ | |
6635 | 2361 643, |
2362 /**/ | |
6633 | 2363 642, |
2364 /**/ | |
6631 | 2365 641, |
2366 /**/ | |
6629 | 2367 640, |
2368 /**/ | |
6627 | 2369 639, |
2370 /**/ | |
6625 | 2371 638, |
2372 /**/ | |
6623 | 2373 637, |
2374 /**/ | |
6620 | 2375 636, |
2376 /**/ | |
6618 | 2377 635, |
2378 /**/ | |
6616 | 2379 634, |
2380 /**/ | |
6614 | 2381 633, |
2382 /**/ | |
6612 | 2383 632, |
2384 /**/ | |
6610 | 2385 631, |
2386 /**/ | |
6608 | 2387 630, |
2388 /**/ | |
6606 | 2389 629, |
2390 /**/ | |
6604 | 2391 628, |
2392 /**/ | |
6602 | 2393 627, |
2394 /**/ | |
6600 | 2395 626, |
2396 /**/ | |
6598 | 2397 625, |
2398 /**/ | |
6596 | 2399 624, |
2400 /**/ | |
6594 | 2401 623, |
2402 /**/ | |
6592 | 2403 622, |
2404 /**/ | |
6590 | 2405 621, |
2406 /**/ | |
6588 | 2407 620, |
2408 /**/ | |
6586 | 2409 619, |
2410 /**/ | |
6584 | 2411 618, |
2412 /**/ | |
6581 | 2413 617, |
2414 /**/ | |
6579 | 2415 616, |
2416 /**/ | |
6577 | 2417 615, |
2418 /**/ | |
6575 | 2419 614, |
2420 /**/ | |
6573 | 2421 613, |
2422 /**/ | |
6571 | 2423 612, |
2424 /**/ | |
6569 | 2425 611, |
2426 /**/ | |
6567 | 2427 610, |
2428 /**/ | |
6565 | 2429 609, |
2430 /**/ | |
6563 | 2431 608, |
2432 /**/ | |
6561 | 2433 607, |
2434 /**/ | |
6559 | 2435 606, |
2436 /**/ | |
6557 | 2437 605, |
2438 /**/ | |
6555 | 2439 604, |
2440 /**/ | |
6553 | 2441 603, |
2442 /**/ | |
6551 | 2443 602, |
2444 /**/ | |
6549 | 2445 601, |
2446 /**/ | |
6547 | 2447 600, |
2448 /**/ | |
6545 | 2449 599, |
2450 /**/ | |
6543 | 2451 598, |
2452 /**/ | |
6541 | 2453 597, |
2454 /**/ | |
6539 | 2455 596, |
2456 /**/ | |
6537 | 2457 595, |
2458 /**/ | |
6535 | 2459 594, |
2460 /**/ | |
6533 | 2461 593, |
2462 /**/ | |
6531 | 2463 592, |
2464 /**/ | |
6528 | 2465 591, |
2466 /**/ | |
6526 | 2467 590, |
2468 /**/ | |
6524 | 2469 589, |
2470 /**/ | |
6522 | 2471 588, |
2472 /**/ | |
6520 | 2473 587, |
2474 /**/ | |
6518 | 2475 586, |
2476 /**/ | |
6516 | 2477 585, |
2478 /**/ | |
6514 | 2479 584, |
2480 /**/ | |
6512 | 2481 583, |
2482 /**/ | |
6510 | 2483 582, |
2484 /**/ | |
6508 | 2485 581, |
2486 /**/ | |
6506 | 2487 580, |
2488 /**/ | |
6503 | 2489 579, |
2490 /**/ | |
6501 | 2491 578, |
2492 /**/ | |
6499 | 2493 577, |
2494 /**/ | |
6497 | 2495 576, |
2496 /**/ | |
6495 | 2497 575, |
2498 /**/ | |
6493 | 2499 574, |
2500 /**/ | |
6491 | 2501 573, |
2502 /**/ | |
6489 | 2503 572, |
2504 /**/ | |
6487 | 2505 571, |
2506 /**/ | |
6485 | 2507 570, |
2508 /**/ | |
6482 | 2509 569, |
2510 /**/ | |
6480 | 2511 568, |
2512 /**/ | |
6477 | 2513 567, |
2514 /**/ | |
6474 | 2515 566, |
2516 /**/ | |
6472 | 2517 565, |
2518 /**/ | |
6470 | 2519 564, |
2520 /**/ | |
6468 | 2521 563, |
2522 /**/ | |
6466 | 2523 562, |
2524 /**/ | |
6464 | 2525 561, |
2526 /**/ | |
6462 | 2527 560, |
2528 /**/ | |
6460 | 2529 559, |
2530 /**/ | |
6458 | 2531 558, |
2532 /**/ | |
6456 | 2533 557, |
2534 /**/ | |
6454 | 2535 556, |
2536 /**/ | |
6452 | 2537 555, |
2538 /**/ | |
6450 | 2539 554, |
2540 /**/ | |
6448 | 2541 553, |
2542 /**/ | |
6445 | 2543 552, |
2544 /**/ | |
6443 | 2545 551, |
2546 /**/ | |
6441 | 2547 550, |
2548 /**/ | |
6438 | 2549 549, |
2550 /**/ | |
6436 | 2551 548, |
2552 /**/ | |
6434 | 2553 547, |
2554 /**/ | |
6432 | 2555 546, |
2556 /**/ | |
6430 | 2557 545, |
2558 /**/ | |
6428 | 2559 544, |
2560 /**/ | |
6426 | 2561 543, |
2562 /**/ | |
6424 | 2563 542, |
2564 /**/ | |
6422 | 2565 541, |
2566 /**/ | |
6419 | 2567 540, |
2568 /**/ | |
6417 | 2569 539, |
2570 /**/ | |
6415 | 2571 538, |
2572 /**/ | |
6413 | 2573 537, |
2574 /**/ | |
6411 | 2575 536, |
2576 /**/ | |
6409 | 2577 535, |
2578 /**/ | |
6406 | 2579 534, |
2580 /**/ | |
6404 | 2581 533, |
2582 /**/ | |
6402 | 2583 532, |
2584 /**/ | |
6400 | 2585 531, |
2586 /**/ | |
6398 | 2587 530, |
2588 /**/ | |
6396 | 2589 529, |
2590 /**/ | |
6394 | 2591 528, |
2592 /**/ | |
6392 | 2593 527, |
2594 /**/ | |
6390 | 2595 526, |
2596 /**/ | |
6388 | 2597 525, |
2598 /**/ | |
6386 | 2599 524, |
2600 /**/ | |
6383 | 2601 523, |
2602 /**/ | |
6381 | 2603 522, |
2604 /**/ | |
6379 | 2605 521, |
2606 /**/ | |
6377 | 2607 520, |
2608 /**/ | |
6375 | 2609 519, |
2610 /**/ | |
6373 | 2611 518, |
2612 /**/ | |
6371 | 2613 517, |
2614 /**/ | |
6367 | 2615 516, |
2616 /**/ | |
6365 | 2617 515, |
2618 /**/ | |
6363 | 2619 514, |
2620 /**/ | |
6361 | 2621 513, |
2622 /**/ | |
6359 | 2623 512, |
2624 /**/ | |
6357 | 2625 511, |
2626 /**/ | |
6355 | 2627 510, |
2628 /**/ | |
6353 | 2629 509, |
2630 /**/ | |
6351 | 2631 508, |
2632 /**/ | |
6349 | 2633 507, |
2634 /**/ | |
6347 | 2635 506, |
2636 /**/ | |
6345 | 2637 505, |
2638 /**/ | |
6343 | 2639 504, |
2640 /**/ | |
6341 | 2641 503, |
2642 /**/ | |
6339 | 2643 502, |
2644 /**/ | |
6337 | 2645 501, |
2646 /**/ | |
6334 | 2647 500, |
2648 /**/ | |
6332 | 2649 499, |
2650 /**/ | |
6330 | 2651 498, |
2652 /**/ | |
6328 | 2653 497, |
2654 /**/ | |
6326 | 2655 496, |
2656 /**/ | |
6324 | 2657 495, |
2658 /**/ | |
6322 | 2659 494, |
2660 /**/ | |
6320 | 2661 493, |
2662 /**/ | |
6318 | 2663 492, |
2664 /**/ | |
6316 | 2665 491, |
2666 /**/ | |
6314 | 2667 490, |
2668 /**/ | |
6312 | 2669 489, |
2670 /**/ | |
6310 | 2671 488, |
2672 /**/ | |
6307 | 2673 487, |
2674 /**/ | |
6305 | 2675 486, |
2676 /**/ | |
6303 | 2677 485, |
2678 /**/ | |
6301 | 2679 484, |
2680 /**/ | |
6299 | 2681 483, |
2682 /**/ | |
6297 | 2683 482, |
2684 /**/ | |
6295 | 2685 481, |
2686 /**/ | |
6293 | 2687 480, |
2688 /**/ | |
6290 | 2689 479, |
2690 /**/ | |
6288 | 2691 478, |
2692 /**/ | |
6286 | 2693 477, |
2694 /**/ | |
6284 | 2695 476, |
2696 /**/ | |
6282 | 2697 475, |
2698 /**/ | |
6280 | 2699 474, |
2700 /**/ | |
6278 | 2701 473, |
2702 /**/ | |
6276 | 2703 472, |
2704 /**/ | |
6274 | 2705 471, |
2706 /**/ | |
6272 | 2707 470, |
2708 /**/ | |
6270 | 2709 469, |
2710 /**/ | |
6268 | 2711 468, |
2712 /**/ | |
6266 | 2713 467, |
2714 /**/ | |
6264 | 2715 466, |
2716 /**/ | |
6262 | 2717 465, |
2718 /**/ | |
6260 | 2719 464, |
2720 /**/ | |
6257 | 2721 463, |
2722 /**/ | |
6255 | 2723 462, |
2724 /**/ | |
6253 | 2725 461, |
2726 /**/ | |
6251 | 2727 460, |
2728 /**/ | |
6249 | 2729 459, |
2730 /**/ | |
6247 | 2731 458, |
2732 /**/ | |
6245 | 2733 457, |
2734 /**/ | |
6243 | 2735 456, |
2736 /**/ | |
6241 | 2737 455, |
2738 /**/ | |
6239 | 2739 454, |
2740 /**/ | |
6236 | 2741 453, |
2742 /**/ | |
6234 | 2743 452, |
2744 /**/ | |
6232 | 2745 451, |
2746 /**/ | |
6230 | 2747 450, |
2748 /**/ | |
6228 | 2749 449, |
2750 /**/ | |
6226 | 2751 448, |
2752 /**/ | |
6224 | 2753 447, |
2754 /**/ | |
6222 | 2755 446, |
2756 /**/ | |
6220 | 2757 445, |
2758 /**/ | |
6218 | 2759 444, |
2760 /**/ | |
6216 | 2761 443, |
2762 /**/ | |
6214 | 2763 442, |
2764 /**/ | |
6211 | 2765 441, |
2766 /**/ | |
6209 | 2767 440, |
2768 /**/ | |
6207 | 2769 439, |
2770 /**/ | |
6205 | 2771 438, |
2772 /**/ | |
6203 | 2773 437, |
2774 /**/ | |
6201 | 2775 436, |
2776 /**/ | |
6199 | 2777 435, |
2778 /**/ | |
6197 | 2779 434, |
2780 /**/ | |
6195 | 2781 433, |
2782 /**/ | |
6193 | 2783 432, |
2784 /**/ | |
6191 | 2785 431, |
2786 /**/ | |
6189 | 2787 430, |
2788 /**/ | |
6187 | 2789 429, |
2790 /**/ | |
6185 | 2791 428, |
2792 /**/ | |
6183 | 2793 427, |
2794 /**/ | |
6181 | 2795 426, |
2796 /**/ | |
6178 | 2797 425, |
2798 /**/ | |
6176 | 2799 424, |
2800 /**/ | |
6174 | 2801 423, |
2802 /**/ | |
6172 | 2803 422, |
2804 /**/ | |
6170 | 2805 421, |
2806 /**/ | |
6168 | 2807 420, |
2808 /**/ | |
6166 | 2809 419, |
2810 /**/ | |
6164 | 2811 418, |
2812 /**/ | |
6162 | 2813 417, |
2814 /**/ | |
6160 | 2815 416, |
2816 /**/ | |
6158
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
2817 415, |
353442863d85
Update version number to 7.4.415
Bram Moolenaar <bram@vim.org>
parents:
6154
diff
changeset
|
2818 /**/ |
6154 | 2819 414, |
2820 /**/ | |
6151 | 2821 413, |
2822 /**/ | |
6149 | 2823 412, |
2824 /**/ | |
6147 | 2825 411, |
2826 /**/ | |
6145 | 2827 410, |
2828 /**/ | |
6143 | 2829 409, |
2830 /**/ | |
6140 | 2831 408, |
2832 /**/ | |
6138 | 2833 407, |
2834 /**/ | |
6136 | 2835 406, |
2836 /**/ | |
6134 | 2837 405, |
2838 /**/ | |
6132 | 2839 404, |
2840 /**/ | |
6130 | 2841 403, |
2842 /**/ | |
6128 | 2843 402, |
2844 /**/ | |
6126 | 2845 401, |
2846 /**/ | |
6124 | 2847 400, |
2848 /**/ | |
6122 | 2849 399, |
2850 /**/ | |
6120 | 2851 398, |
2852 /**/ | |
6118 | 2853 397, |
2854 /**/ | |
6116 | 2855 396, |
2856 /**/ | |
6114 | 2857 395, |
2858 /**/ | |
6112 | 2859 394, |
2860 /**/ | |
6110 | 2861 393, |
2862 /**/ | |
6108 | 2863 392, |
2864 /**/ | |
6106 | 2865 391, |
2866 /**/ | |
6104 | 2867 390, |
2868 /**/ | |
6102 | 2869 389, |
2870 /**/ | |
6100 | 2871 388, |
2872 /**/ | |
6098 | 2873 387, |
2874 /**/ | |
6096 | 2875 386, |
2876 /**/ | |
6094 | 2877 385, |
2878 /**/ | |
6092 | 2879 384, |
2880 /**/ | |
6089 | 2881 383, |
2882 /**/ | |
6087 | 2883 382, |
2884 /**/ | |
6085 | 2885 381, |
2886 /**/ | |
6083 | 2887 380, |
2888 /**/ | |
6081 | 2889 379, |
2890 /**/ | |
6079 | 2891 378, |
2892 /**/ | |
6077 | 2893 377, |
2894 /**/ | |
6075 | 2895 376, |
2896 /**/ | |
6073 | 2897 375, |
2898 /**/ | |
6071 | 2899 374, |
2900 /**/ | |
6068 | 2901 373, |
2902 /**/ | |
6066 | 2903 372, |
2904 /**/ | |
6064 | 2905 371, |
2906 /**/ | |
6062 | 2907 370, |
2908 /**/ | |
6060 | 2909 369, |
2910 /**/ | |
6058 | 2911 368, |
2912 /**/ | |
6056 | 2913 367, |
2914 /**/ | |
6054 | 2915 366, |
2916 /**/ | |
6052 | 2917 365, |
2918 /**/ | |
6049 | 2919 364, |
2920 /**/ | |
6047 | 2921 363, |
2922 /**/ | |
6045 | 2923 362, |
2924 /**/ | |
6043 | 2925 361, |
2926 /**/ | |
6041 | 2927 360, |
2928 /**/ | |
6039 | 2929 359, |
2930 /**/ | |
6037 | 2931 358, |
2932 /**/ | |
6035 | 2933 357, |
2934 /**/ | |
6033 | 2935 356, |
2936 /**/ | |
6030 | 2937 355, |
2938 /**/ | |
6028 | 2939 354, |
2940 /**/ | |
6026 | 2941 353, |
2942 /**/ | |
6024 | 2943 352, |
2944 /**/ | |
6022 | 2945 351, |
2946 /**/ | |
6020 | 2947 350, |
2948 /**/ | |
6018 | 2949 349, |
2950 /**/ | |
6016 | 2951 348, |
2952 /**/ | |
6014 | 2953 347, |
2954 /**/ | |
6012 | 2955 346, |
2956 /**/ | |
6010 | 2957 345, |
2958 /**/ | |
6007 | 2959 344, |
2960 /**/ | |
6005 | 2961 343, |
2962 /**/ | |
6003 | 2963 342, |
2964 /**/ | |
6001 | 2965 341, |
2966 /**/ | |
5999 | 2967 340, |
2968 /**/ | |
5997 | 2969 339, |
2970 /**/ | |
5995 | 2971 338, |
2972 /**/ | |
5993 | 2973 337, |
2974 /**/ | |
5991 | 2975 336, |
2976 /**/ | |
5989 | 2977 335, |
2978 /**/ | |
5987 | 2979 334, |
2980 /**/ | |
5985 | 2981 333, |
2982 /**/ | |
5983 | 2983 332, |
2984 /**/ | |
5981 | 2985 331, |
2986 /**/ | |
5979 | 2987 330, |
2988 /**/ | |
5977 | 2989 329, |
2990 /**/ | |
5975 | 2991 328, |
2992 /**/ | |
5973 | 2993 327, |
2994 /**/ | |
5971 | 2995 326, |
2996 /**/ | |
5969 | 2997 325, |
2998 /**/ | |
5966 | 2999 324, |
3000 /**/ | |
5964 | 3001 323, |
3002 /**/ | |
5962 | 3003 322, |
3004 /**/ | |
5960 | 3005 321, |
3006 /**/ | |
5958 | 3007 320, |
3008 /**/ | |
5956 | 3009 319, |
3010 /**/ | |
5954 | 3011 318, |
3012 /**/ | |
5952 | 3013 317, |
3014 /**/ | |
5950 | 3015 316, |
3016 /**/ | |
5948 | 3017 315, |
3018 /**/ | |
5946 | 3019 314, |
3020 /**/ | |
5944 | 3021 313, |
3022 /**/ | |
5942 | 3023 312, |
3024 /**/ | |
5940 | 3025 311, |
3026 /**/ | |
5938 | 3027 310, |
3028 /**/ | |
5936 | 3029 309, |
3030 /**/ | |
5934 | 3031 308, |
3032 /**/ | |
5932 | 3033 307, |
3034 /**/ | |
5930 | 3035 306, |
3036 /**/ | |
5927 | 3037 305, |
3038 /**/ | |
5925 | 3039 304, |
3040 /**/ | |
5923 | 3041 303, |
3042 /**/ | |
5921 | 3043 302, |
3044 /**/ | |
5919 | 3045 301, |
3046 /**/ | |
5917 | 3047 300, |
3048 /**/ | |
5915 | 3049 299, |
3050 /**/ | |
5913 | 3051 298, |
3052 /**/ | |
5911 | 3053 297, |
3054 /**/ | |
5909 | 3055 296, |
3056 /**/ | |
5905 | 3057 295, |
3058 /**/ | |
5903 | 3059 294, |
3060 /**/ | |
5901 | 3061 293, |
3062 /**/ | |
5899 | 3063 292, |
3064 /**/ | |
5897 | 3065 291, |
3066 /**/ | |
5895 | 3067 290, |
3068 /**/ | |
5893 | 3069 289, |
3070 /**/ | |
5891 | 3071 288, |
3072 /**/ | |
5889 | 3073 287, |
3074 /**/ | |
5887 | 3075 286, |
3076 /**/ | |
5885 | 3077 285, |
3078 /**/ | |
5883 | 3079 284, |
3080 /**/ | |
5881 | 3081 283, |
3082 /**/ | |
5879 | 3083 282, |
3084 /**/ | |
5877 | 3085 281, |
3086 /**/ | |
5875 | 3087 280, |
3088 /**/ | |
5873 | 3089 279, |
3090 /**/ | |
5871 | 3091 278, |
3092 /**/ | |
5869 | 3093 277, |
3094 /**/ | |
5867 | 3095 276, |
3096 /**/ | |
5865 | 3097 275, |
3098 /**/ | |
5863 | 3099 274, |
3100 /**/ | |
5860 | 3101 273, |
3102 /**/ | |
5858 | 3103 272, |
3104 /**/ | |
5856 | 3105 271, |
3106 /**/ | |
5854 | 3107 270, |
3108 /**/ | |
5852 | 3109 269, |
3110 /**/ | |
5850 | 3111 268, |
3112 /**/ | |
5848 | 3113 267, |
3114 /**/ | |
5846 | 3115 266, |
3116 /**/ | |
5844 | 3117 265, |
3118 /**/ | |
5842 | 3119 264, |
3120 /**/ | |
5840 | 3121 263, |
3122 /**/ | |
5838 | 3123 262, |
3124 /**/ | |
5836 | 3125 261, |
3126 /**/ | |
5834 | 3127 260, |
3128 /**/ | |
5832 | 3129 259, |
3130 /**/ | |
5830 | 3131 258, |
3132 /**/ | |
5828 | 3133 257, |
3134 /**/ | |
5826 | 3135 256, |
3136 /**/ | |
5824 | 3137 255, |
3138 /**/ | |
5822 | 3139 254, |
3140 /**/ | |
5820 | 3141 253, |
3142 /**/ | |
5818 | 3143 252, |
3144 /**/ | |
5816 | 3145 251, |
3146 /**/ | |
5812 | 3147 250, |
3148 /**/ | |
5810 | 3149 249, |
3150 /**/ | |
5808 | 3151 248, |
3152 /**/ | |
5806 | 3153 247, |
3154 /**/ | |
5804 | 3155 246, |
3156 /**/ | |
5802 | 3157 245, |
3158 /**/ | |
5800 | 3159 244, |
3160 /**/ | |
5798 | 3161 243, |
3162 /**/ | |
5796 | 3163 242, |
3164 /**/ | |
5794 | 3165 241, |
3166 /**/ | |
5792 | 3167 240, |
3168 /**/ | |
5790 | 3169 239, |
3170 /**/ | |
5788 | 3171 238, |
3172 /**/ | |
5786 | 3173 237, |
3174 /**/ | |
5784 | 3175 236, |
3176 /**/ | |
5782 | 3177 235, |
3178 /**/ | |
5780 | 3179 234, |
3180 /**/ | |
5778 | 3181 233, |
3182 /**/ | |
5776 | 3183 232, |
3184 /**/ | |
5774 | 3185 231, |
3186 /**/ | |
5772 | 3187 230, |
3188 /**/ | |
5770 | 3189 229, |
3190 /**/ | |
5768 | 3191 228, |
3192 /**/ | |
5766 | 3193 227, |
3194 /**/ | |
5764 | 3195 226, |
3196 /**/ | |
5761 | 3197 225, |
3198 /**/ | |
5759 | 3199 224, |
3200 /**/ | |
5757 | 3201 223, |
3202 /**/ | |
5755 | 3203 222, |
3204 /**/ | |
5753 | 3205 221, |
3206 /**/ | |
5751 | 3207 220, |
3208 /**/ | |
5749 | 3209 219, |
3210 /**/ | |
5747 | 3211 218, |
3212 /**/ | |
5745 | 3213 217, |
3214 /**/ | |
5743 | 3215 216, |
3216 /**/ | |
5741 | 3217 215, |
3218 /**/ | |
5739 | 3219 214, |
3220 /**/ | |
5737 | 3221 213, |
3222 /**/ | |
5735 | 3223 212, |
3224 /**/ | |
5732 | 3225 211, |
3226 /**/ | |
5730 | 3227 210, |
3228 /**/ | |
5728 | 3229 209, |
3230 /**/ | |
5726 | 3231 208, |
3232 /**/ | |
5724 | 3233 207, |
3234 /**/ | |
5722 | 3235 206, |
3236 /**/ | |
5720 | 3237 205, |
3238 /**/ | |
5718 | 3239 204, |
3240 /**/ | |
5716 | 3241 203, |
3242 /**/ | |
5714 | 3243 202, |
3244 /**/ | |
5712 | 3245 201, |
3246 /**/ | |
5710 | 3247 200, |
3248 /**/ | |
5708 | 3249 199, |
3250 /**/ | |
5706 | 3251 198, |
3252 /**/ | |
5704 | 3253 197, |
3254 /**/ | |
5702 | 3255 196, |
3256 /**/ | |
5700 | 3257 195, |
3258 /**/ | |
5698 | 3259 194, |
3260 /**/ | |
5695 | 3261 193, |
3262 /**/ | |
5693 | 3263 192, |
3264 /**/ | |
5690 | 3265 191, |
3266 /**/ | |
5688 | 3267 190, |
3268 /**/ | |
5686 | 3269 189, |
3270 /**/ | |
5684 | 3271 188, |
3272 /**/ | |
5682 | 3273 187, |
3274 /**/ | |
5680 | 3275 186, |
3276 /**/ | |
5678 | 3277 185, |
3278 /**/ | |
5676 | 3279 184, |
3280 /**/ | |
5674 | 3281 183, |
3282 /**/ | |
5672 | 3283 182, |
3284 /**/ | |
5670 | 3285 181, |
3286 /**/ | |
5668 | 3287 180, |
3288 /**/ | |
5666 | 3289 179, |
3290 /**/ | |
5664 | 3291 178, |
3292 /**/ | |
5661 | 3293 177, |
3294 /**/ | |
5659 | 3295 176, |
3296 /**/ | |
5657 | 3297 175, |
3298 /**/ | |
5655 | 3299 174, |
3300 /**/ | |
5653 | 3301 173, |
3302 /**/ | |
5651 | 3303 172, |
3304 /**/ | |
5649 | 3305 171, |
3306 /**/ | |
5647 | 3307 170, |
3308 /**/ | |
5645 | 3309 169, |
3310 /**/ | |
5643 | 3311 168, |
3312 /**/ | |
5641 | 3313 167, |
3314 /**/ | |
5639 | 3315 166, |
3316 /**/ | |
5637 | 3317 165, |
3318 /**/ | |
5635 | 3319 164, |
3320 /**/ | |
5633 | 3321 163, |
3322 /**/ | |
5631 | 3323 162, |
3324 /**/ | |
5629 | 3325 161, |
3326 /**/ | |
5627 | 3327 160, |
3328 /**/ | |
5625 | 3329 159, |
3330 /**/ | |
5623 | 3331 158, |
3332 /**/ | |
5621 | 3333 157, |
3334 /**/ | |
5619 | 3335 156, |
3336 /**/ | |
5616 | 3337 155, |
3338 /**/ | |
5614 | 3339 154, |
3340 /**/ | |
5612 | 3341 153, |
3342 /**/ | |
5610 | 3343 152, |
3344 /**/ | |
5608 | 3345 151, |
3346 /**/ | |
5606 | 3347 150, |
3348 /**/ | |
5604 | 3349 149, |
3350 /**/ | |
5602 | 3351 148, |
3352 /**/ | |
5600 | 3353 147, |
3354 /**/ | |
5598 | 3355 146, |
3356 /**/ | |
5596 | 3357 145, |
3358 /**/ | |
5594 | 3359 144, |
3360 /**/ | |
5592 | 3361 143, |
3362 /**/ | |
5590 | 3363 142, |
3364 /**/ | |
5588 | 3365 141, |
3366 /**/ | |
5586 | 3367 140, |
3368 /**/ | |
5584 | 3369 139, |
3370 /**/ | |
5582 | 3371 138, |
3372 /**/ | |
5580 | 3373 137, |
3374 /**/ | |
5578 | 3375 136, |
3376 /**/ | |
5575 | 3377 135, |
3378 /**/ | |
5573 | 3379 134, |
3380 /**/ | |
5571 | 3381 133, |
3382 /**/ | |
5569 | 3383 132, |
3384 /**/ | |
5566 | 3385 131, |
3386 /**/ | |
5564 | 3387 130, |
3388 /**/ | |
5562 | 3389 129, |
3390 /**/ | |
5560 | 3391 128, |
3392 /**/ | |
5558 | 3393 127, |
3394 /**/ | |
5556 | 3395 126, |
3396 /**/ | |
5553 | 3397 125, |
3398 /**/ | |
5551 | 3399 124, |
3400 /**/ | |
5549 | 3401 123, |
3402 /**/ | |
5547 | 3403 122, |
3404 /**/ | |
5545 | 3405 121, |
3406 /**/ | |
5543 | 3407 120, |
3408 /**/ | |
5541 | 3409 119, |
3410 /**/ | |
5539 | 3411 118, |
3412 /**/ | |
5537 | 3413 117, |
3414 /**/ | |
5535 | 3415 116, |
3416 /**/ | |
5533 | 3417 115, |
3418 /**/ | |
5531 | 3419 114, |
3420 /**/ | |
5529 | 3421 113, |
3422 /**/ | |
5527 | 3423 112, |
3424 /**/ | |
5525 | 3425 111, |
3426 /**/ | |
5523 | 3427 110, |
3428 /**/ | |
5521 | 3429 109, |
3430 /**/ | |
5519 | 3431 108, |
3432 /**/ | |
5517 | 3433 107, |
3434 /**/ | |
5515 | 3435 106, |
3436 /**/ | |
5513 | 3437 105, |
3438 /**/ | |
5511 | 3439 104, |
3440 /**/ | |
5508 | 3441 103, |
3442 /**/ | |
5506 | 3443 102, |
3444 /**/ | |
5504 | 3445 101, |
3446 /**/ | |
5502 | 3447 100, |
3448 /**/ | |
5500 | 3449 99, |
3450 /**/ | |
5498 | 3451 98, |
3452 /**/ | |
5496 | 3453 97, |
3454 /**/ | |
5494 | 3455 96, |
3456 /**/ | |
5492 | 3457 95, |
3458 /**/ | |
5490 | 3459 94, |
3460 /**/ | |
5488 | 3461 93, |
3462 /**/ | |
5485 | 3463 92, |
3464 /**/ | |
5483 | 3465 91, |
3466 /**/ | |
5481 | 3467 90, |
3468 /**/ | |
5479 | 3469 89, |
3470 /**/ | |
5477 | 3471 88, |
3472 /**/ | |
5475 | 3473 87, |
3474 /**/ | |
5473 | 3475 86, |
3476 /**/ | |
5471 | 3477 85, |
3478 /**/ | |
5469 | 3479 84, |
3480 /**/ | |
5467 | 3481 83, |
3482 /**/ | |
5464 | 3483 82, |
3484 /**/ | |
5462 | 3485 81, |
3486 /**/ | |
5460 | 3487 80, |
3488 /**/ | |
5458 | 3489 79, |
3490 /**/ | |
5456 | 3491 78, |
3492 /**/ | |
5454 | 3493 77, |
3494 /**/ | |
5452 | 3495 76, |
3496 /**/ | |
5450 | 3497 75, |
3498 /**/ | |
5448 | 3499 74, |
3500 /**/ | |
5446 | 3501 73, |
3502 /**/ | |
5444 | 3503 72, |
3504 /**/ | |
5442 | 3505 71, |
3506 /**/ | |
5440 | 3507 70, |
3508 /**/ | |
5438 | 3509 69, |
3510 /**/ | |
5436 | 3511 68, |
3512 /**/ | |
5434 | 3513 67, |
3514 /**/ | |
5432 | 3515 66, |
3516 /**/ | |
5430 | 3517 65, |
3518 /**/ | |
5428 | 3519 64, |
3520 /**/ | |
5426 | 3521 63, |
3522 /**/ | |
5423 | 3523 62, |
3524 /**/ | |
5421 | 3525 61, |
3526 /**/ | |
5419 | 3527 60, |
3528 /**/ | |
5417 | 3529 59, |
3530 /**/ | |
5415 | 3531 58, |
3532 /**/ | |
5413 | 3533 57, |
3534 /**/ | |
5411 | 3535 56, |
3536 /**/ | |
5409 | 3537 55, |
3538 /**/ | |
5407 | 3539 54, |
3540 /**/ | |
5405 | 3541 53, |
3542 /**/ | |
5403 | 3543 52, |
3544 /**/ | |
5401 | 3545 51, |
3546 /**/ | |
5398 | 3547 50, |
3548 /**/ | |
5396 | 3549 49, |
3550 /**/ | |
5394 | 3551 48, |
3552 /**/ | |
5392 | 3553 47, |
3554 /**/ | |
5390 | 3555 46, |
3556 /**/ | |
5388 | 3557 45, |
3558 /**/ | |
5386 | 3559 44, |
3560 /**/ | |
5384 | 3561 43, |
3562 /**/ | |
5382 | 3563 42, |
3564 /**/ | |
5380 | 3565 41, |
3566 /**/ | |
5378 | 3567 40, |
3568 /**/ | |
5376 | 3569 39, |
3570 /**/ | |
5374 | 3571 38, |
3572 /**/ | |
5372 | 3573 37, |
3574 /**/ | |
5370 | 3575 36, |
3576 /**/ | |
5367 | 3577 35, |
3578 /**/ | |
5365 | 3579 34, |
3580 /**/ | |
5363 | 3581 33, |
3582 /**/ | |
5360 | 3583 32, |
3584 /**/ | |
5358 | 3585 31, |
3586 /**/ | |
5356 | 3587 30, |
3588 /**/ | |
5353 | 3589 29, |
3590 /**/ | |
5351 | 3591 28, |
3592 /**/ | |
5349 | 3593 27, |
3594 /**/ | |
5347 | 3595 26, |
3596 /**/ | |
5345 | 3597 25, |
3598 /**/ | |
5343 | 3599 24, |
3600 /**/ | |
5341 | 3601 23, |
3602 /**/ | |
5338 | 3603 22, |
3604 /**/ | |
5336 | 3605 21, |
3606 /**/ | |
5334 | 3607 20, |
3608 /**/ | |
5332 | 3609 19, |
3610 /**/ | |
5330 | 3611 18, |
3612 /**/ | |
5328 | 3613 17, |
3614 /**/ | |
5326 | 3615 16, |
3616 /**/ | |
5324 | 3617 15, |
3618 /**/ | |
5322 | 3619 14, |
3620 /**/ | |
5320 | 3621 13, |
3622 /**/ | |
5318 | 3623 12, |
3624 /**/ | |
5316 | 3625 11, |
3626 /**/ | |
5314 | 3627 10, |
3628 /**/ | |
5312 | 3629 9, |
3630 /**/ | |
5310 | 3631 8, |
3632 /**/ | |
5308 | 3633 7, |
3634 /**/ | |
5306 | 3635 6, |
3636 /**/ | |
5304 | 3637 5, |
3638 /**/ | |
5302 | 3639 4, |
3640 /**/ | |
5300 | 3641 3, |
3642 /**/ | |
5298 | 3643 2, |
3644 /**/ | |
5296 | 3645 1, |
3646 /**/ | |
7 | 3647 0 |
3648 }; | |
3649 | |
1760 | 3650 /* |
3651 * Place to put a short description when adding a feature with a patch. | |
3652 * Keep it short, e.g.,: "relative numbers", "persistent undo". | |
3653 * Also add a comment marker to separate the lines. | |
3654 * See the official Vim patches for the diff format: It must use a context of | |
1777 | 3655 * one line only. Create it by hand or use "diff -C2" and edit the patch. |
1760 | 3656 */ |
3657 static char *(extra_patches[]) = | |
3658 { /* Add your patch description below this line */ | |
3659 /**/ | |
3660 NULL | |
3661 }; | |
3662 | |
7 | 3663 int |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
3664 highest_patch(void) |
7 | 3665 { |
3666 int i; | |
3667 int h = 0; | |
3668 | |
3669 for (i = 0; included_patches[i] != 0; ++i) | |
3670 if (included_patches[i] > h) | |
3671 h = included_patches[i]; | |
3672 return h; | |
3673 } | |
3674 | |
3675 #if defined(FEAT_EVAL) || defined(PROTO) | |
3676 /* | |
3677 * Return TRUE if patch "n" has been included. | |
3678 */ | |
3679 int | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
3680 has_patch(int n) |
7 | 3681 { |
3682 int i; | |
3683 | |
3684 for (i = 0; included_patches[i] != 0; ++i) | |
3685 if (included_patches[i] == n) | |
3686 return TRUE; | |
3687 return FALSE; | |
3688 } | |
3689 #endif | |
3690 | |
3691 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
3692 ex_version(exarg_T *eap) |
7 | 3693 { |
3694 /* | |
3695 * Ignore a ":version 9.99" command. | |
3696 */ | |
3697 if (*eap->arg == NUL) | |
3698 { | |
3699 msg_putchar('\n'); | |
3700 list_version(); | |
3701 } | |
3702 } | |
3703 | |
4147 | 3704 /* |
3705 * List all features aligned in columns, dictionary style. | |
3706 */ | |
3707 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
3708 list_features(void) |
4147 | 3709 { |
3710 int i; | |
3711 int ncol; | |
3712 int nrow; | |
3713 int nfeat = 0; | |
3714 int width = 0; | |
3715 | |
3716 /* Find the length of the longest feature name, use that + 1 as the column | |
3717 * width */ | |
3718 for (i = 0; features[i] != NULL; ++i) | |
3719 { | |
4160 | 3720 int l = (int)STRLEN(features[i]); |
4147 | 3721 |
3722 if (l > width) | |
3723 width = l; | |
3724 ++nfeat; | |
3725 } | |
3726 width += 1; | |
3727 | |
3728 if (Columns < width) | |
3729 { | |
3730 /* Not enough screen columns - show one per line */ | |
3731 for (i = 0; features[i] != NULL; ++i) | |
3732 { | |
3733 version_msg(features[i]); | |
3734 if (msg_col > 0) | |
3735 msg_putchar('\n'); | |
3736 } | |
3737 return; | |
3738 } | |
3739 | |
3740 /* The rightmost column doesn't need a separator. | |
3741 * Sacrifice it to fit in one more column if possible. */ | |
4170 | 3742 ncol = (int) (Columns + 1) / width; |
4147 | 3743 nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0); |
3744 | |
4170 | 3745 /* i counts columns then rows. idx counts rows then columns. */ |
4147 | 3746 for (i = 0; !got_int && i < nrow * ncol; ++i) |
3747 { | |
3748 int idx = (i / ncol) + (i % ncol) * nrow; | |
3749 | |
3750 if (idx < nfeat) | |
3751 { | |
3752 int last_col = (i + 1) % ncol == 0; | |
3753 | |
3754 msg_puts((char_u *)features[idx]); | |
3755 if (last_col) | |
3756 { | |
3757 if (msg_col > 0) | |
3758 msg_putchar('\n'); | |
3759 } | |
3760 else | |
3761 { | |
3762 while (msg_col % width) | |
3763 msg_putchar(' '); | |
3764 } | |
3765 } | |
3766 else | |
4170 | 3767 { |
3768 if (msg_col > 0) | |
3769 msg_putchar('\n'); | |
3770 } | |
4147 | 3771 } |
3772 } | |
4160 | 3773 |
7 | 3774 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
3775 list_version(void) |
7 | 3776 { |
3777 int i; | |
3778 int first; | |
3779 char *s = ""; | |
3780 | |
3781 /* | |
3782 * When adding features here, don't forget to update the list of | |
3783 * internal variables in eval.c! | |
3784 */ | |
3785 MSG(longVersion); | |
3786 #ifdef WIN3264 | |
3787 # ifdef FEAT_GUI_W32 | |
3788 # if defined(_MSC_VER) && (_MSC_VER <= 1010) | |
3789 /* Only MS VC 4.1 and earlier can do Win32s */ | |
1607 | 3790 MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version")); |
7 | 3791 # else |
990 | 3792 # ifdef _WIN64 |
1607 | 3793 MSG_PUTS(_("\nMS-Windows 64-bit GUI version")); |
990 | 3794 # else |
1607 | 3795 MSG_PUTS(_("\nMS-Windows 32-bit GUI version")); |
990 | 3796 # endif |
7 | 3797 # endif |
3798 if (gui_is_win32s()) | |
3799 MSG_PUTS(_(" in Win32s mode")); | |
3800 # ifdef FEAT_OLE | |
3801 MSG_PUTS(_(" with OLE support")); | |
3802 # endif | |
3803 # else | |
1607 | 3804 # ifdef _WIN64 |
3805 MSG_PUTS(_("\nMS-Windows 64-bit console version")); | |
3806 # else | |
3807 MSG_PUTS(_("\nMS-Windows 32-bit console version")); | |
3808 # endif | |
7 | 3809 # endif |
3810 #endif | |
3811 #ifdef MACOS | |
3812 # ifdef MACOS_X | |
3813 # ifdef MACOS_X_UNIX | |
3814 MSG_PUTS(_("\nMacOS X (unix) version")); | |
3815 # else | |
3816 MSG_PUTS(_("\nMacOS X version")); | |
3817 # endif | |
3818 #else | |
3819 MSG_PUTS(_("\nMacOS version")); | |
3820 # endif | |
3821 #endif | |
3822 | |
3823 #ifdef VMS | |
1705 | 3824 MSG_PUTS(_("\nOpenVMS version")); |
1045 | 3825 # ifdef HAVE_PATHDEF |
3826 if (*compiled_arch != NUL) | |
3827 { | |
3828 MSG_PUTS(" - "); | |
3829 MSG_PUTS(compiled_arch); | |
3830 } | |
3831 # endif | |
3832 | |
7 | 3833 #endif |
3834 | |
3835 /* Print the list of patch numbers if there is at least one. */ | |
3836 /* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */ | |
3837 if (included_patches[0] != 0) | |
3838 { | |
3839 MSG_PUTS(_("\nIncluded patches: ")); | |
3840 first = -1; | |
3841 /* find last one */ | |
3842 for (i = 0; included_patches[i] != 0; ++i) | |
3843 ; | |
3844 while (--i >= 0) | |
3845 { | |
3846 if (first < 0) | |
3847 first = included_patches[i]; | |
3848 if (i == 0 || included_patches[i - 1] != included_patches[i] + 1) | |
3849 { | |
3850 MSG_PUTS(s); | |
3851 s = ", "; | |
3852 msg_outnum((long)first); | |
3853 if (first != included_patches[i]) | |
3854 { | |
3855 MSG_PUTS("-"); | |
3856 msg_outnum((long)included_patches[i]); | |
3857 } | |
3858 first = -1; | |
3859 } | |
3860 } | |
3861 } | |
3862 | |
1760 | 3863 /* Print the list of extra patch descriptions if there is at least one. */ |
3864 if (extra_patches[0] != NULL) | |
3865 { | |
3866 MSG_PUTS(_("\nExtra patches: ")); | |
3867 s = ""; | |
3868 for (i = 0; extra_patches[i] != NULL; ++i) | |
3869 { | |
3870 MSG_PUTS(s); | |
3871 s = ", "; | |
3872 MSG_PUTS(extra_patches[i]); | |
3873 } | |
3874 } | |
3875 | |
7 | 3876 #ifdef MODIFIED_BY |
3877 MSG_PUTS("\n"); | |
3878 MSG_PUTS(_("Modified by ")); | |
3879 MSG_PUTS(MODIFIED_BY); | |
3880 #endif | |
3881 | |
3882 #ifdef HAVE_PATHDEF | |
3883 if (*compiled_user != NUL || *compiled_sys != NUL) | |
3884 { | |
3885 MSG_PUTS(_("\nCompiled ")); | |
3886 if (*compiled_user != NUL) | |
3887 { | |
3888 MSG_PUTS(_("by ")); | |
3889 MSG_PUTS(compiled_user); | |
3890 } | |
3891 if (*compiled_sys != NUL) | |
3892 { | |
3893 MSG_PUTS("@"); | |
3894 MSG_PUTS(compiled_sys); | |
3895 } | |
3896 } | |
3897 #endif | |
3898 | |
3899 #ifdef FEAT_HUGE | |
3900 MSG_PUTS(_("\nHuge version ")); | |
3901 #else | |
3902 # ifdef FEAT_BIG | |
3903 MSG_PUTS(_("\nBig version ")); | |
3904 # else | |
3905 # ifdef FEAT_NORMAL | |
3906 MSG_PUTS(_("\nNormal version ")); | |
3907 # else | |
3908 # ifdef FEAT_SMALL | |
3909 MSG_PUTS(_("\nSmall version ")); | |
3910 # else | |
3911 MSG_PUTS(_("\nTiny version ")); | |
3912 # endif | |
3913 # endif | |
3914 # endif | |
3915 #endif | |
3916 #ifndef FEAT_GUI | |
3917 MSG_PUTS(_("without GUI.")); | |
3918 #else | |
3919 # ifdef FEAT_GUI_GTK | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3920 # ifdef USE_GTK3 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3921 MSG_PUTS(_("with GTK3 GUI.")); |
7 | 3922 # else |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3923 # ifdef FEAT_GUI_GNOME |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3924 MSG_PUTS(_("with GTK2-GNOME GUI.")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3925 # else |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3926 MSG_PUTS(_("with GTK2 GUI.")); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3927 # endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8216
diff
changeset
|
3928 # endif |
7 | 3929 # else |
3930 # ifdef FEAT_GUI_MOTIF | |
3931 MSG_PUTS(_("with X11-Motif GUI.")); | |
3932 # else | |
3933 # ifdef FEAT_GUI_ATHENA | |
3934 # ifdef FEAT_GUI_NEXTAW | |
3935 MSG_PUTS(_("with X11-neXtaw GUI.")); | |
3936 # else | |
3937 MSG_PUTS(_("with X11-Athena GUI.")); | |
3938 # endif | |
3939 # else | |
3940 # ifdef FEAT_GUI_PHOTON | |
3941 MSG_PUTS(_("with Photon GUI.")); | |
3942 # else | |
3943 # if defined(MSWIN) | |
3944 MSG_PUTS(_("with GUI.")); | |
3945 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
3946 # if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON |
7 | 3947 MSG_PUTS(_("with Carbon GUI.")); |
3948 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
3949 # if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX |
7 | 3950 MSG_PUTS(_("with Cocoa GUI.")); |
3951 # else | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
3952 # if defined(MACOS) |
7 | 3953 MSG_PUTS(_("with (classic) GUI.")); |
3954 # endif | |
3955 # endif | |
3956 # endif | |
3957 # endif | |
3958 # endif | |
3959 # endif | |
3960 # endif | |
3961 # endif | |
3962 #endif | |
3963 version_msg(_(" Features included (+) or not (-):\n")); | |
3964 | |
4147 | 3965 list_features(); |
7 | 3966 |
3967 #ifdef SYS_VIMRC_FILE | |
3968 version_msg(_(" system vimrc file: \"")); | |
3969 version_msg(SYS_VIMRC_FILE); | |
3970 version_msg("\"\n"); | |
3971 #endif | |
3972 #ifdef USR_VIMRC_FILE | |
3973 version_msg(_(" user vimrc file: \"")); | |
3974 version_msg(USR_VIMRC_FILE); | |
3975 version_msg("\"\n"); | |
3976 #endif | |
3977 #ifdef USR_VIMRC_FILE2 | |
3978 version_msg(_(" 2nd user vimrc file: \"")); | |
3979 version_msg(USR_VIMRC_FILE2); | |
3980 version_msg("\"\n"); | |
3981 #endif | |
3982 #ifdef USR_VIMRC_FILE3 | |
3983 version_msg(_(" 3rd user vimrc file: \"")); | |
3984 version_msg(USR_VIMRC_FILE3); | |
3985 version_msg("\"\n"); | |
3986 #endif | |
3987 #ifdef USR_EXRC_FILE | |
3988 version_msg(_(" user exrc file: \"")); | |
3989 version_msg(USR_EXRC_FILE); | |
3990 version_msg("\"\n"); | |
3991 #endif | |
3992 #ifdef USR_EXRC_FILE2 | |
3993 version_msg(_(" 2nd user exrc file: \"")); | |
3994 version_msg(USR_EXRC_FILE2); | |
3995 version_msg("\"\n"); | |
3996 #endif | |
3997 #ifdef FEAT_GUI | |
3998 # ifdef SYS_GVIMRC_FILE | |
3999 version_msg(_(" system gvimrc file: \"")); | |
4000 version_msg(SYS_GVIMRC_FILE); | |
4001 version_msg("\"\n"); | |
4002 # endif | |
4003 version_msg(_(" user gvimrc file: \"")); | |
4004 version_msg(USR_GVIMRC_FILE); | |
4005 version_msg("\"\n"); | |
4006 # ifdef USR_GVIMRC_FILE2 | |
4007 version_msg(_("2nd user gvimrc file: \"")); | |
4008 version_msg(USR_GVIMRC_FILE2); | |
4009 version_msg("\"\n"); | |
4010 # endif | |
4011 # ifdef USR_GVIMRC_FILE3 | |
4012 version_msg(_("3rd user gvimrc file: \"")); | |
4013 version_msg(USR_GVIMRC_FILE3); | |
4014 version_msg("\"\n"); | |
4015 # endif | |
4016 #endif | |
4017 #ifdef FEAT_GUI | |
4018 # ifdef SYS_MENU_FILE | |
4019 version_msg(_(" system menu file: \"")); | |
4020 version_msg(SYS_MENU_FILE); | |
4021 version_msg("\"\n"); | |
4022 # endif | |
4023 #endif | |
4024 #ifdef HAVE_PATHDEF | |
4025 if (*default_vim_dir != NUL) | |
4026 { | |
4027 version_msg(_(" fall-back for $VIM: \"")); | |
4028 version_msg((char *)default_vim_dir); | |
4029 version_msg("\"\n"); | |
4030 } | |
4031 if (*default_vimruntime_dir != NUL) | |
4032 { | |
4033 version_msg(_(" f-b for $VIMRUNTIME: \"")); | |
4034 version_msg((char *)default_vimruntime_dir); | |
4035 version_msg("\"\n"); | |
4036 } | |
4037 version_msg(_("Compilation: ")); | |
4038 version_msg((char *)all_cflags); | |
4039 version_msg("\n"); | |
4040 #ifdef VMS | |
4041 if (*compiler_version != NUL) | |
4042 { | |
4043 version_msg(_("Compiler: ")); | |
4044 version_msg((char *)compiler_version); | |
4045 version_msg("\n"); | |
4046 } | |
4047 #endif | |
4048 version_msg(_("Linking: ")); | |
4049 version_msg((char *)all_lflags); | |
4050 #endif | |
4051 #ifdef DEBUG | |
4052 version_msg("\n"); | |
4053 version_msg(_(" DEBUG BUILD")); | |
4054 #endif | |
4055 } | |
4056 | |
4057 /* | |
4058 * Output a string for the version message. If it's going to wrap, output a | |
4059 * newline, unless the message is too long to fit on the screen anyway. | |
4060 */ | |
4061 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4062 version_msg(char *s) |
7 | 4063 { |
4064 int len = (int)STRLEN(s); | |
4065 | |
4066 if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns | |
4067 && *s != '\n') | |
4068 msg_putchar('\n'); | |
4069 if (!got_int) | |
4070 MSG_PUTS(s); | |
4071 } | |
4072 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4073 static void do_intro_line(int row, char_u *mesg, int add_version, int attr); |
7 | 4074 |
4075 /* | |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4076 * 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
|
4077 */ |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4078 void |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4079 maybe_intro_message(void) |
5126
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4080 { |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4081 if (bufempty() |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4082 && curbuf->b_fname == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4083 #ifdef FEAT_WINDOWS |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4084 && firstwin->w_next == NULL |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4085 #endif |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4086 && vim_strchr(p_shm, SHM_INTRO) == NULL) |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4087 intro_message(FALSE); |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4088 } |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4089 |
71859e71b1f9
updated for version 7.3.1306
Bram Moolenaar <bram@vim.org>
parents:
5124
diff
changeset
|
4090 /* |
7 | 4091 * Give an introductory message about Vim. |
4092 * Only used when starting Vim on an empty file, without a file name. | |
4093 * Or with the ":intro" command (for Sven :-). | |
4094 */ | |
4095 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4096 intro_message( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4097 int colon) /* TRUE for ":intro" */ |
7 | 4098 { |
4099 int i; | |
4100 int row; | |
4101 int blanklines; | |
4102 int sponsor; | |
4103 char *p; | |
4104 static char *(lines[]) = | |
4105 { | |
4106 N_("VIM - Vi IMproved"), | |
4107 "", | |
4108 N_("version "), | |
4109 N_("by Bram Moolenaar et al."), | |
4110 #ifdef MODIFIED_BY | |
4111 " ", | |
4112 #endif | |
4113 N_("Vim is open source and freely distributable"), | |
4114 "", | |
4115 N_("Help poor children in Uganda!"), | |
4116 N_("type :help iccf<Enter> for information "), | |
4117 "", | |
4118 N_("type :q<Enter> to exit "), | |
4119 N_("type :help<Enter> or <F1> for on-line help"), | |
26 | 4120 N_("type :help version7<Enter> for version info"), |
7 | 4121 NULL, |
4122 "", | |
4123 N_("Running in Vi compatible mode"), | |
4124 N_("type :set nocp<Enter> for Vim defaults"), | |
4125 N_("type :help cp-default<Enter> for info on this"), | |
4126 }; | |
4127 #ifdef FEAT_GUI | |
4128 static char *(gui_lines[]) = | |
4129 { | |
4130 NULL, | |
4131 NULL, | |
4132 NULL, | |
4133 NULL, | |
4134 #ifdef MODIFIED_BY | |
4135 NULL, | |
4136 #endif | |
4137 NULL, | |
4138 NULL, | |
4139 NULL, | |
4140 N_("menu Help->Orphans for information "), | |
4141 NULL, | |
4142 N_("Running modeless, typed text is inserted"), | |
4143 N_("menu Edit->Global Settings->Toggle Insert Mode "), | |
4144 N_(" for two modes "), | |
4145 NULL, | |
4146 NULL, | |
4147 NULL, | |
4148 N_("menu Edit->Global Settings->Toggle Vi Compatible"), | |
4149 N_(" for Vim defaults "), | |
4150 }; | |
4151 #endif | |
4152 | |
4153 /* blanklines = screen height - # message lines */ | |
4154 blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1); | |
4155 if (!p_cp) | |
4156 blanklines += 4; /* add 4 for not showing "Vi compatible" message */ | |
4157 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
4158 if (mch_windows95()) | |
4159 blanklines -= 3; /* subtract 3 for showing "Windows 95" message */ | |
4160 #endif | |
4161 | |
4162 #ifdef FEAT_WINDOWS | |
4163 /* Don't overwrite a statusline. Depends on 'cmdheight'. */ | |
4164 if (p_ls > 1) | |
4165 blanklines -= Rows - topframe->fr_height; | |
4166 #endif | |
4167 if (blanklines < 0) | |
4168 blanklines = 0; | |
4169 | |
4170 /* Show the sponsor and register message one out of four times, the Uganda | |
4171 * message two out of four times. */ | |
615 | 4172 sponsor = (int)time(NULL); |
7 | 4173 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); |
4174 | |
4175 /* start displaying the message lines after half of the blank lines */ | |
4176 row = blanklines / 2; | |
4177 if ((row >= 2 && Columns >= 50) || colon) | |
4178 { | |
4179 for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i) | |
4180 { | |
4181 p = lines[i]; | |
4182 #ifdef FEAT_GUI | |
4183 if (p_im && gui.in_use && gui_lines[i] != NULL) | |
4184 p = gui_lines[i]; | |
4185 #endif | |
4186 if (p == NULL) | |
4187 { | |
4188 if (!p_cp) | |
4189 break; | |
4190 continue; | |
4191 } | |
4192 if (sponsor != 0) | |
4193 { | |
4194 if (strstr(p, "children") != NULL) | |
4195 p = sponsor < 0 | |
4196 ? N_("Sponsor Vim development!") | |
4197 : N_("Become a registered Vim user!"); | |
4198 else if (strstr(p, "iccf") != NULL) | |
4199 p = sponsor < 0 | |
4200 ? N_("type :help sponsor<Enter> for information ") | |
4201 : N_("type :help register<Enter> for information "); | |
4202 else if (strstr(p, "Orphans") != NULL) | |
4203 p = N_("menu Help->Sponsor/Register for information "); | |
4204 } | |
4205 if (*p != NUL) | |
4206 do_intro_line(row, (char_u *)_(p), i == 2, 0); | |
4207 ++row; | |
4208 } | |
4209 #if defined(WIN3264) && !defined(FEAT_GUI_W32) | |
4210 if (mch_windows95()) | |
4211 { | |
4212 do_intro_line(++row, | |
4213 (char_u *)_("WARNING: Windows 95/98/ME detected"), | |
4214 FALSE, hl_attr(HLF_E)); | |
4215 do_intro_line(++row, | |
4216 (char_u *)_("type :help windows95<Enter> for info on this"), | |
4217 FALSE, 0); | |
4218 } | |
4219 #endif | |
4220 } | |
4221 | |
4222 /* Make the wait-return message appear just below the text. */ | |
4223 if (colon) | |
4224 msg_row = row; | |
4225 } | |
4226 | |
4227 static void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4228 do_intro_line( |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4229 int row, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4230 char_u *mesg, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4231 int add_version, |
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4232 int attr) |
7 | 4233 { |
4234 char_u vers[20]; | |
4235 int col; | |
4236 char_u *p; | |
4237 int l; | |
4238 int clen; | |
4239 #ifdef MODIFIED_BY | |
4240 # define MODBY_LEN 150 | |
4241 char_u modby[MODBY_LEN]; | |
4242 | |
4243 if (*mesg == ' ') | |
4244 { | |
1491 | 4245 vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1); |
7 | 4246 l = STRLEN(modby); |
1491 | 4247 vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1); |
7 | 4248 mesg = modby; |
4249 } | |
4250 #endif | |
4251 | |
4252 /* Center the message horizontally. */ | |
4253 col = vim_strsize(mesg); | |
4254 if (add_version) | |
4255 { | |
4256 STRCPY(vers, mediumVersion); | |
4257 if (highest_patch()) | |
4258 { | |
4259 /* Check for 9.9x or 9.9xx, alpha/beta version */ | |
2619 | 4260 if (isalpha((int)vers[3])) |
7 | 4261 { |
3396 | 4262 int len = (isalpha((int)vers[4])) ? 5 : 4; |
4263 sprintf((char *)vers + len, ".%d%s", highest_patch(), | |
4264 mediumVersion + len); | |
7 | 4265 } |
4266 else | |
4267 sprintf((char *)vers + 3, ".%d", highest_patch()); | |
4268 } | |
4269 col += (int)STRLEN(vers); | |
4270 } | |
4271 col = (Columns - col) / 2; | |
4272 if (col < 0) | |
4273 col = 0; | |
4274 | |
4275 /* Split up in parts to highlight <> items differently. */ | |
4276 for (p = mesg; *p != NUL; p += l) | |
4277 { | |
4278 clen = 0; | |
4279 for (l = 0; p[l] != NUL | |
4280 && (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l) | |
4281 { | |
4282 #ifdef FEAT_MBYTE | |
4283 if (has_mbyte) | |
4284 { | |
4285 clen += ptr2cells(p + l); | |
474 | 4286 l += (*mb_ptr2len)(p + l) - 1; |
7 | 4287 } |
4288 else | |
4289 #endif | |
4290 clen += byte2cells(p[l]); | |
4291 } | |
4292 screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr); | |
4293 col += clen; | |
4294 } | |
4295 | |
4296 /* Add the version number to the version line. */ | |
4297 if (add_version) | |
4298 screen_puts(vers, row, col, 0); | |
4299 } | |
4300 | |
4301 /* | |
4302 * ":intro": clear screen, display intro screen and wait for return. | |
4303 */ | |
4304 void | |
7837
33ba2adb6065
commit https://github.com/vim/vim/commit/b638a7be952544ceb03052c25b84224577a6494b
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4305 ex_intro(exarg_T *eap UNUSED) |
7 | 4306 { |
4307 screenclear(); | |
4308 intro_message(TRUE); | |
4309 wait_return(TRUE); | |
4310 } |