Bram Moolenaar [Fri, 25 Mar 2016 14:01:10 +0000 (15:01 +0100)]
patch 7.4.1647
Problem: Using freed memory after setqflist() and ":caddbuffer". (Dominique)
Solution: Set qf_ptr when adding the first item to the quickfix list.
Bram Moolenaar [Thu, 24 Mar 2016 20:42:09 +0000 (21:42 +0100)]
patch 7.4.1645
Problem: When a dict contains a partial it can't be redefined as a
function. (Nikolai Pavlov)
Solution: Remove the partial when overwriting with a function.
Bram Moolenaar [Thu, 24 Mar 2016 20:23:06 +0000 (21:23 +0100)]
patch 7.4.1644
Problem: Using string() on a partial that exists in the dictionary it binds
results in an error. (Nikolai Pavlov)
Solution: Make string() not fail on a recursively nested structure. (Ken
Takta)
Bram Moolenaar [Thu, 24 Mar 2016 17:24:58 +0000 (18:24 +0100)]
patch 7.4.1642
Problem: Handling emoji characters as full width has problems with
backwards compatibility.
Solution: Only put characters in the 1f000 range in the emoji table.
Bram Moolenaar [Wed, 23 Mar 2016 19:55:42 +0000 (20:55 +0100)]
patch 7.4.1640
Problem: Crash when an autocommand changes a quickfix list. (Dominique)
Solution: Check wether an entry is still valid. (Yegappan Lakshmanan,
Hirohito Higashi)
Bram Moolenaar [Tue, 22 Mar 2016 20:00:09 +0000 (21:00 +0100)]
patch 7.4.1638
Problem: When binding a function to a dict the reference count is wrong.
Solution: Decrement dict reference count, only reference the function when
actually making a copy. (Ken Takata)
Bram Moolenaar [Mon, 21 Mar 2016 22:13:32 +0000 (23:13 +0100)]
patch 7.4.1634
Problem: Vertical movement after CTRL-A ends up in the wrong column.
(Urtica Dioica)
Solution: Set curswant when appropriate. (Hirohito Higashi)
Bram Moolenaar [Mon, 21 Mar 2016 21:09:44 +0000 (22:09 +0100)]
patch 7.4.1629
Problem: Handling emoji characters as full width has problems with
backwards compatibility.
Solution: Remove ambiguous and double width characters from the emoji table.
Use a separate table for the character class.
(partly by Yasuhiro Matsumoto)
Bram Moolenaar [Sun, 20 Mar 2016 17:15:21 +0000 (18:15 +0100)]
patch 7.4.1620
Problem: Emoji characters are not considered as a kind of word character.
Solution: Give emoji characters a word class number. (Yasuhiro Matsumoto)
Bram Moolenaar [Sun, 20 Mar 2016 16:53:25 +0000 (17:53 +0100)]
patch 7.4.1619
Problem: When 'fileformats' is set in the vimrc it applies to new buffers
but not the initial buffer.
Solution: Set 'fileformat' when starting up. (Mike Williams)
Bram Moolenaar [Sat, 19 Mar 2016 21:11:51 +0000 (22:11 +0100)]
patch 7.4.1611
Problem: The versplit feature makes the code uneccessary complicated.
Solution: Remove FEAT_VERTSPLIT, always support vertical splits when
FEAT_WINDOWS is defined.
Bram Moolenaar [Sat, 19 Mar 2016 18:38:12 +0000 (19:38 +0100)]
patch 7.4.1607
Problem: Comparing a function that exists on two dicts is not backwards
compatible. (Thinca)
Solution: Only compare the function, not what the partial adds.
Bram Moolenaar [Sat, 19 Mar 2016 17:52:29 +0000 (18:52 +0100)]
patch 7.4.1606
Problem: Having type() handle a Funcref that is or isn't a partial
differently causes problems for existing scripts.
Solution: Make type() return the same value. (Thinca)
Bram Moolenaar [Sat, 19 Mar 2016 17:42:29 +0000 (18:42 +0100)]
patch 7.4.1604
Problem: Although emoji characters are ambiguous width, best is to treat
them as full width.
Solution: Update the Unicode character tables. Add the 'emoji' options.
(Yasuhiro Matsumoto)
Bram Moolenaar [Sat, 19 Mar 2016 16:05:20 +0000 (17:05 +0100)]
patch 7.4.1603
Problem: Timer with an ":echo" command messes up display.
Solution: Redraw depending on the mode. (Hirohito Higashi) Avoid the more
prompt being used recursively.
Bram Moolenaar [Sat, 19 Mar 2016 12:35:03 +0000 (13:35 +0100)]
patch 7.4.1592
Problem: Quickfix code using memory after being freed. (Dominique Pelle)
Solution: Detect that the window was closed. (Hirohito Higashi)
Bram Moolenaar [Wed, 16 Mar 2016 21:52:12 +0000 (22:52 +0100)]
patch 7.4.1582
Problem: Get E923 when using function(dict.func, [], dict). (Kent Sibilev)
Storing a function with a dict in a variable drops the dict if the
function is script-local.
Solution: Translate the function name. Use dict arg if present.
Bram Moolenaar [Wed, 16 Mar 2016 20:40:30 +0000 (21:40 +0100)]
patch 7.4.1581
Problem: Using ":call dict.func()" where the function is a partial does
not work. Using "dict.func()" where the function does not take a
Dictionary does not work.
Solution: Handle partial properly in ":call". (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 15 Mar 2016 17:23:55 +0000 (18:23 +0100)]
patch 7.4.1576
Problem: Write error of viminfo file is not handled properly. (Christian
Neukirchen)
Solution: Check the return value of fclose(). (closes #682)