Re: [patch] SEGV occurs in balloon_show() under certain circumstances.

2017-03-01 Fir de Conversatie h_east
Hi Ken, 2017-3-2(Thu) 12:26:38 UTC+9 Ken Takata: > Hi, > > 2017/3/2 Thu 11:52:29 UTC+9 h_east wrote: > > Hi Bram, > > > > How to reproduce (on Linux): > > - Go to Vim source directory > > $ cd /path/to/your/vim > > - Configure with enabling gui gnome2 > > $ ./configure --with-features=huge

Re: [patch] SEGV occurs in balloon_show() under certain circumstances.

2017-03-01 Fir de Conversatie Ken Takata
Hi, 2017/3/2 Thu 11:52:29 UTC+9 h_east wrote: > Hi Bram, > > How to reproduce (on Linux): > - Go to Vim source directory > $ cd /path/to/your/vim > - Configure with enabling gui gnome2 > $ ./configure --with-features=huge --enable-gui=gnome2 > --enable-fail-if-missing > - Make > $ make >

[patch] SEGV occurs in balloon_show() under certain circumstances.

2017-03-01 Fir de Conversatie h_east
Hi Bram, How to reproduce (on Linux): - Go to Vim source directory $ cd /path/to/your/vim - Configure with enabling gui gnome2 $ ./configure --with-features=huge --enable-gui=gnome2 --enable-fail-if-missing - Make $ make - Run vanilla CLI Vim $ src/vim -Nu NONE - Execute the following

:sbr opens buffers with horizontal split, even when switchbuf is set to vsplit

2017-03-01 Fir de Conversatie Haldean Brown
Hi folks, I've set switchbuf to vsplit but when I use :sbr, vim uses a horizontal split to open the new buffer. Steps to repro: 1. Open vim 2. :set switchbuf=vsplit 3. :e A 4. :e B 5. :sbr After 5, I have a horizontal split with A on top and B on bottom, when I would expect

:sbr opens buffers with horizontal split, even when switchbuf is set to vsplit

2017-03-01 Fir de Conversatie Haldean Brown
Hi folks, I've set switchbuf to vsplit but when I use :sbr, vim uses a horizontal split to open the new buffer. Steps to repro: 1. Open vim 2. :set switchbuf=vsplit 3. :e A 4. :e B 5. :sbr After 5, I have a horizontal split with A on top and B on bottom, when I would expect

Patch 8.0.0398

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0398 Problem:Illegal memory access with "t". Solution: Use strncmp() instead of memcmp(). (Dominique Pelle, closes #1528) Files: src/search.c, src/testdir/test_search.vim *** ../vim-8.0.0397/src/search.c2017-02-18 23:11:57.341793867 +0100 --- src/search.c

Patch 8.0.0397

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0397 (after 8.0.0392) Problem:Cannot build with the viminfo feature but without the eval feature. Solution: Adjust #ifdef. (John Marriott) Files: src/message.c, src/misc2.c *** ../vim-8.0.0396/src/message.c 2017-03-01 18:30:30.578978886 +0100 ---

Re: Patch 8.0.0395

2017-03-01 Fir de Conversatie Bram Moolenaar
Kazunobu Kuriyama wrote: > 2017-03-02 2:30 GMT+09:00 Bram Moolenaar : > > > Patch 8.0.0395 (after 8.0.0392) > > Problem:Testing the + register fails with Motif. > > Solution: Also ignore the "failed to create input context" error in the > > second gvim.

Re: Patch 8.0.0392

2017-03-01 Fir de Conversatie Bram Moolenaar
John Marriott wrote: > On 02-Mar-2017 01:07, Bram Moolenaar wrote: > > Patch 8.0.0392 > > Problem:GUI test fails with Athena and Motif. > > Solution: Add test_ignore_error(). Use it to ignore the "failed to create > > input context" error. > > Files: src/message.c,

Re: Patch 8.0.0394

2017-03-01 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Mi, 01 Mär 2017, Bram Moolenaar wrote: > > > Patch 8.0.0394 > > Also fix that ":redraw" does not scroll horizontally to show the > > cursor. And fix the test that depended on the old behavior. > > Ah thanks for that. That will make

Patch 8.0.0396

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0396 Problem:'balloonexpr' only works synchronously. Solution: Add balloon_show(). (Jusufadis Bakamovic, closes #1449) Files: runtime/doc/eval.txt, src/evalfunc.c, src/os_unix.c, src/os_win32.c *** ../vim-8.0.0395/runtime/doc/eval.txt2017-03-01

Re: Patch 8.0.0394

2017-03-01 Fir de Conversatie Christian Brabandt
Hi Bram! On Mi, 01 Mär 2017, Bram Moolenaar wrote: > Patch 8.0.0394 > Also fix that ":redraw" does not scroll horizontally to show the > cursor. And fix the test that depended on the old behavior. Ah thanks for that. That will make testing easier. Best, Christian --

Re: Patch 8.0.0392

2017-03-01 Fir de Conversatie John Marriott
On 02-Mar-2017 01:07, Bram Moolenaar wrote: Patch 8.0.0392 Problem:GUI test fails with Athena and Motif. Solution: Add test_ignore_error(). Use it to ignore the "failed to create input context" error. Files: src/message.c, src/proto/message.pro, src/evalfunc.c,

Re: Patch 8.0.0394

2017-03-01 Fir de Conversatie Axel Bender
@Christian, Bram Thx for fixing this! -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the

Re: Patch 8.0.0395

2017-03-01 Fir de Conversatie Kazunobu Kuriyama
2017-03-02 2:30 GMT+09:00 Bram Moolenaar : > > Patch 8.0.0395 (after 8.0.0392) > Problem:Testing the + register fails with Motif. > Solution: Also ignore the "failed to create input context" error in the > second gvim. Don't use msg() when it would result in

Patch 8.0.0395

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0395 (after 8.0.0392) Problem:Testing the + register fails with Motif. Solution: Also ignore the "failed to create input context" error in the second gvim. Don't use msg() when it would result in a dialog. Files: src/message.c, src/testdir/test_gui.vim,

Re: Patch 8.0.0392

2017-03-01 Fir de Conversatie Kazunobu Kuriyama
2017-03-01 23:07 GMT+09:00 Bram Moolenaar : > > Patch 8.0.0392 > Problem:GUI test fails with Athena and Motif. > Solution: Add test_ignore_error(). Use it to ignore the "failed to > create > input context" error. > Files: src/message.c,

Patch 8.0.0394

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0394 Problem:Tabs are not aligned when scrolling horizontally and a Tab doesn't fit. (Axel Bender) Solution: Handle a Tab as a not fitting character. (Christian Brabandt) Also fix that ":redraw" does not scroll horizontally to show the cursor.

Patch 8.0.0393

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0393 (after 8.0.0190) Problem:When the same tag appears more than once, the order is unpredictable. (Charles Campbell) Solution: Besides using a dict for finding duplicates, use a grow array for keeping the tags in sequence. Files: src/tag.c,

Patch 8.0.0392

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0392 Problem:GUI test fails with Athena and Motif. Solution: Add test_ignore_error(). Use it to ignore the "failed to create input context" error. Files: src/message.c, src/proto/message.pro, src/evalfunc.c, src/testdir/test_gui.vim,

Patch 8.0.0391

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0391 Problem:Arabic support is verbose and not well tested. Solution: Simplify the code. Add more tests. Files: src/arabic.c, src/testdir/test_arabic.vim *** ../vim-8.0.0390/src/arabic.c2016-08-29 22:39:44.0 +0200 --- src/arabic.c2017-03-01

Patch 8.0.0390

2017-03-01 Fir de Conversatie Bram Moolenaar
Patch 8.0.0390 Problem:When the window scrolls horizontally when the popup menu is displayed part of it may not be cleared. (Neovim issue #6184) Solution: Remove the menu when the windows scrolled. (closes #1524) Files: src/edit.c *** ../vim-8.0.0389/src/edit.c

Re: Patch 8.0.0389

2017-03-01 Fir de Conversatie Christian Brabandt
On Mi, 01 Mär 2017, Mats Bertil Tegner wrote: > This patch is not yet available on GitHub. It is now. Best, Christian -- Es gibt nur ein Problem, das schwieriger ist, als Freunde zu gewinnen: sie wieder loszuwerden. -- Mark Twain (eigl. Samuel Langhorne Clemens) -- -- You

Re: Patch 8.0.0389

2017-03-01 Fir de Conversatie Mats Bertil Tegner
This patch is not yet available on GitHub. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to