Re: Patch 8.1.2326

2019-12-05 Thread Jun T
2019年11月21日木曜日 23時37分11秒 UTC+9 Bram Moolenaar: > > > Patch 8.1.2326 > Problem:Cannot parse a date/time string. > Solution: Add strptime(). (Stephen Wall, closes #) > > *** ../vim-8.1.2325/src/testdir/test_functions.vim2019-11-16 > 18:21:57.990848019 +0100 > --- src/testdir/test

Re: Discrepancy between modeline help and behavior

2019-12-05 Thread Andy Massimino
It says a little further down "There is one exception:" that the whitespace is optional if v is the first character on the line. On Thu, Dec 5, 2019, 9:51 PM Gary Johnson wrote: > ":help modeline" says: > > There are two forms of modelines. The first form: > [text]{white}{vi:|vi

Discrepancy between modeline help and behavior

2019-12-05 Thread Gary Johnson
":help modeline" says: There are two forms of modelines. The first form: [text]{white}{vi:|vim:|ex:}[white]{options} [text] any text or empty {white} at least one blank character ( or ) {vi:|vim:|ex:} the string "vi:", "vim:"

Re: Upcoming Vim 8.2 release

2019-12-05 Thread Ken Takata
Hi Bram, Here is another patch for the latest version8.txt: --- a/runtime/doc/version8.txt +++ b/runtime/doc/version8.txt @@ -40841,7 +40841,7 @@ Files:src/register.c, src/testdir/t Patch 8.1.2376 Problem:Preprocessor indents are incorrect. Solution: Fix the indents. (Ken Takata,

Patch 8.1.2397

2019-12-05 Thread Bram Moolenaar
Patch 8.1.2397 Problem:Should not define __USE_XOPEN. _XOPEN_SOURCE is not needed for Android. Solution: Remove __USE_XOPEN and adjust #ifdefs. (Ozaki Kiichi, closes #5322) Files: src/vim.h *** ../vim-8.1.2396/src/vim.h 2019-11-30 22:47:42.659331167 +0100 --

Patch 8.1.2391

2019-12-05 Thread Bram Moolenaar
Patch 8.1.2391 Problem:Cannot build when __QNXNTO__ is defined. (Ian Wayne Larson) Solution: Move the check for "qansi". (Ken Takata, closes #5317) Files: src/highlight.c *** ../vim-8.1.2390/src/highlight.c 2019-11-02 22:54:37.401188829 +0100 --- src/highlight.c 2019-12-05 18

Patch 8.1.2390

2019-12-05 Thread Bram Moolenaar
Patch 8.1.2390 Problem:Test94 is old style, fix 7.4.441 not tested. Solution: Turn test94 into a new style test. Add tests for the fix in patch 7.4.441. (Yegappan Lakshmanan, closes #5316) Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/Make_vms.mms,

Re: Patch 8.1.2389

2019-12-05 Thread Bram Moolenaar
Ken Takata wrote: > 2019/12/5 Thu 21:42:51 UTC+9 Bram Moolenaar wrote: > > Ken Takata wrote: > > > > > 2019/12/5 Thu 6:17:35 UTC+9 Bram Moolenaar wrote: > > > > > > > > > > > > Patch 8.1.2389 > > > > Problem:Using old C style comments. > > > > Solution: Use // comments where appropri

Re: Patch 8.1.2389

2019-12-05 Thread Ken Takata
Hi Bram, 2019/12/5 Thu 21:42:51 UTC+9 Bram Moolenaar wrote: > > > Ken Takata wrote: > > > 2019/12/5 Thu 6:17:35 UTC+9 Bram Moolenaar wrote: > > > > > > > > > Patch 8.1.2389 > > > Problem:Using old C style comments. > > > Solution: Use // comments where appropriate. > > > Files:

Re: Patch 8.1.2389

2019-12-05 Thread Bram Moolenaar
Ken Takata wrote: > 2019/12/5 Thu 6:17:35 UTC+9 Bram Moolenaar wrote: > > > > > > Patch 8.1.2389 > > Problem:Using old C style comments. > > Solution: Use // comments where appropriate. > > Files:src/libvterm/src/screen.c, src/libvterm/src/unicode.c, > > src/lib

Re: Upcoming Vim 8.2 release

2019-12-05 Thread Bram Moolenaar
Ken Takata wrote: > Sorry, my previous patch had a mistake. > Could you apply the following patch? > > --- a/runtime/doc/version8.txt > +++ b/runtime/doc/version8.txt > @@ -35845,7 +35845,7 @@ Solution: Ignore the "browse" modifier > Files:src/ex_cmds.c > > Patch 8.1.1595 > -Probl