Bram Moolenaar [Thu, 31 Dec 2015 17:29:46 +0000 (18:29 +0100)]
patch 7.4.1007
Problem: When a symbolic link points to a file in the root directory, the
swapfile is not correct.
Solution: Do not try getting the full name of a file in the root directory.
(Milly, closes #501)
Bram Moolenaar [Wed, 30 Dec 2015 16:40:43 +0000 (17:40 +0100)]
patch 7.4.1003
Problem: Travis could check a few more things.
Solution: Run autoconf on one of the builds. (James McCoy, closes #510)
Also build with normal features.
Bram Moolenaar [Tue, 29 Dec 2015 20:34:48 +0000 (21:34 +0100)]
patch 7.4.998
Problem: Running tests in shadow directory fails. Test 49 fails.
Solution: Link more files for the shadow directory. Make test 49 end up in
the right buffer.
Bram Moolenaar [Tue, 29 Dec 2015 18:03:21 +0000 (19:03 +0100)]
patch 7.4.996
Problem: New GDK files and testdir/Make_all.mak missing from distribution.
PC build instructions are outdated.
Solution: Add the file to the list. Update PC build instructions.
Bram Moolenaar [Tue, 29 Dec 2015 13:26:57 +0000 (14:26 +0100)]
patch 7.4.991
Problem: When running new style tests the output is not visible.
Solution: Add the testdir/messages file and show it. Update the list of
test names.
Bram Moolenaar [Mon, 28 Dec 2015 20:35:14 +0000 (21:35 +0100)]
patch 7.4.986
Problem: Test49 doesn't work on MS-Windows. test70 is listed twice.
Solution: Move test49 to the group not used on Amiga and MS-Windows.
Remove test70 from SCRIPTS_WIN32.
Bram Moolenaar [Mon, 28 Dec 2015 18:20:36 +0000 (19:20 +0100)]
patch 7.4.984
Problem: searchpos() always starts searching in the first column, which is
not what some people expect. (Brett Stahlman)
Solution: Add the 'z' flag: start at the specified column.
Bram Moolenaar [Mon, 28 Dec 2015 15:01:26 +0000 (16:01 +0100)]
patch 7.4.982
Problem: Keeping the list of tests updated is a hassle.
Solution: Move the list to a separate file, so that it only needs to be
udpated in one place.
Bram Moolenaar [Sat, 19 Dec 2015 14:28:18 +0000 (15:28 +0100)]
patch 7.4.979
Problem: When changing the crypt key the blocks read from disk are not
decrypted.
Solution: Also call ml_decrypt_data() when mf_old_key is set. (Ken Takata)
Bram Moolenaar [Thu, 17 Dec 2015 14:34:53 +0000 (15:34 +0100)]
patch 7.4.976
Problem: When compiling Vim for MSYS2 (linked with msys-2.0.dll), the Win32
clipboard is not enabled.
Solution: Recognize MSYS like CYGWIN. (Ken Takata)
Bram Moolenaar [Thu, 17 Dec 2015 14:07:32 +0000 (15:07 +0100)]
patch 7.4.975
Problem: Using ":sort" on a very big file sometimes causes text to be
corrupted. (John Beckett)
Solution: Copy the line into a buffer before calling ml_append().
Bram Moolenaar [Thu, 17 Dec 2015 14:03:55 +0000 (15:03 +0100)]
patch 7.4.974
Problem: When using :diffsplit the cursor jumps to the first line.
Solution: Put the cursor on the line related to where the cursor was before
the split.
Bram Moolenaar [Thu, 17 Dec 2015 13:04:24 +0000 (14:04 +0100)]
patch 7.4.973
Problem: When pasting on the command line line breaks result in literal
<CR> characters. This makes pasting a long file name difficult.
Solution: Skip the characters.
Bram Moolenaar [Sat, 12 Dec 2015 15:23:29 +0000 (16:23 +0100)]
patch 7.4.970
Problem: Rare crash in getvcol(). (Timo Mihaljov)
Solution: Check for the buffer being NULL in init_preedit_start_col.
(Hirohito Higashi, Christian Brabandt)
Bram Moolenaar [Fri, 11 Dec 2015 18:38:44 +0000 (19:38 +0100)]
patch 7.4.967
Problem: Cross compilation on MS-windows doesn't work well.
Solution: Tidy up cross compilation across architectures with Visual Studio.
(Mike Williams)
Bram Moolenaar [Sun, 6 Dec 2015 13:53:18 +0000 (14:53 +0100)]
patch 7.4.963
Problem: test_listlbr_utf8 sometimes fails.
Solution: Don't use a literal multibyte character but <C-V>uXXXX. Do not
dump the screen highlighting. (Christian Brabandt, closes #518)
Bram Moolenaar [Thu, 3 Dec 2015 16:21:28 +0000 (17:21 +0100)]
patch 7.4.953
Problem: When a test script navigates to another buffer the .res file is
created with the wrong name.
Solution: Use the "testname" for the .res file. (Damien)
Bram Moolenaar [Thu, 3 Dec 2015 13:29:02 +0000 (14:29 +0100)]
patch 7.4.949
Problem: When using 'colorcolumn' and there is a sign with a fullwidth
character the highlighting is wrong. (Andrew Stewart)
Solution: Only increment vcol when in the right state. (Christian Brabandt)
Bram Moolenaar [Tue, 1 Dec 2015 19:19:26 +0000 (20:19 +0100)]
patch 7.4.947
Problem: Test_listchars fails with MingW. (Michael Soyka)
Solution: Add the test to the ones that need the fileformat fixed.
(Christian Brabandt)
Bram Moolenaar [Mon, 30 Nov 2015 20:38:24 +0000 (21:38 +0100)]
patch 7.4.945
Problem: New style testing is incomplete.
Solution: Add the runtest script to the list of distributed files.
Add the new functions to the function overview.
Rename the functions to match Vim function style.
Move undolevels testing into a new style test script.
Bram Moolenaar [Sun, 29 Nov 2015 16:35:35 +0000 (17:35 +0100)]
patch 7.4.944
Problem: Writing tests for Vim script is hard.
Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add
the v:errors variable. Add the runtest script. Add a first new
style test script.
Bram Moolenaar [Sun, 22 Nov 2015 18:39:38 +0000 (19:39 +0100)]
patch 7.4.936
Problem: Crash when dragging with the mouse.
Solution: Add safety check for NULL pointer. Check mouse position for valid
value. (Hirohito Higashi)
Bram Moolenaar [Sun, 22 Nov 2015 14:08:59 +0000 (15:08 +0100)]
patch 7.4.935
Problem: test_utf8 fails on MS-Windows when executed with gvim.
Solution: Use the insert flag on feedkeys() to put the string before the
":" that was already read when checking for available chars.
Bram Moolenaar [Thu, 19 Nov 2015 19:11:54 +0000 (20:11 +0100)]
patch 7.4.929
Problem: "gv" after paste selects one character less if 'selection' is
"exclusive".
Solution: Increment the end position. (Christian Brabandt)
Bram Moolenaar [Thu, 19 Nov 2015 18:55:16 +0000 (19:55 +0100)]
patch 7.4.928
Problem: A clientserver message interrupts handling keys of a mapping.
Solution: Have mch_inchar() send control back to WaitForChar when it is
interrupted by server message. (James Kolb)
Bram Moolenaar [Thu, 19 Nov 2015 18:00:05 +0000 (19:00 +0100)]
patch 7.4.926
Problem: Completing the longest match doesn't work properly with multi-byte
characters.
Solution: When using multi-byte characters use another way to find the
longest match. (Hirohito Higashi)
Bram Moolenaar [Thu, 19 Nov 2015 16:56:13 +0000 (17:56 +0100)]
patch 7.4.925
Problem: User may yank or put using the register being recorded in.
Solution: Add the recording register in the message. (Christian Brabandt,
closes #470)
Bram Moolenaar [Thu, 19 Nov 2015 12:46:48 +0000 (13:46 +0100)]
patch 7.4.924
Problem: DEVELOPER_DIR gets reset by configure.
Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir
argument. (Kazuki Sakamoto, closes #482)