]> granicus.if.org Git - vim/log
vim
9 years agopatch 7.4.962 v7.4.962
Bram Moolenaar [Sat, 5 Dec 2015 19:56:57 +0000 (20:56 +0100)]
patch 7.4.962
Problem:    Cannot run the tests with gvim.  Cannot run individual new stests.
Solution:   Add the -f flag. Add new test targets in Makefile.

9 years agopatch 7.4.961 v7.4.961
Bram Moolenaar [Sat, 5 Dec 2015 18:47:04 +0000 (19:47 +0100)]
patch 7.4.961
Problem:    Test107 fails in some circunstances.
Solution:   When using "zt", "zb" and "z=" recompute the fraction.

9 years agopatch 7.4.960 v7.4.960
Bram Moolenaar [Thu, 3 Dec 2015 21:37:21 +0000 (22:37 +0100)]
patch 7.4.960
Problem:    Detecting every version of nmake is clumsy.
Solution:   Use a tiny C program to get the version of _MSC_VER. (Ken Takata)

9 years agopatch 7.4.959 v7.4.959
Bram Moolenaar [Thu, 3 Dec 2015 20:17:24 +0000 (21:17 +0100)]
patch 7.4.959
Problem:    When setting 'term' the clipboard ownership is lost.
Solution:   Do not call clip_init(). (James McCoy)

9 years agopatch 7.4.958 v7.4.958
Bram Moolenaar [Thu, 3 Dec 2015 20:02:27 +0000 (21:02 +0100)]
patch 7.4.958
Problem:    Vim checks if the directory "$TMPDIR" exists.
Solution:   Do not check if the name starts with "$".

9 years agopatch 7.4.957 v7.4.957
Bram Moolenaar [Thu, 3 Dec 2015 19:46:20 +0000 (20:46 +0100)]
patch 7.4.957
Problem:    Test_tagcase fails when using another language than English.
Solution:   Set the messages language to C. (Kenichi Ito)

9 years agopatch 7.4.956 v7.4.956
Bram Moolenaar [Thu, 3 Dec 2015 19:18:24 +0000 (20:18 +0100)]
patch 7.4.956
Problem:    A few more file name extensions not recognized.
Solution:   Add .asciidoc, .bzl, .gradle, etc.

9 years agopatch 7.4.955 v7.4.955
Bram Moolenaar [Thu, 3 Dec 2015 19:14:12 +0000 (20:14 +0100)]
patch 7.4.955
Problem:    Vim doesn't recognize .pl6 and .pod6 files.
Solution:   Recognize them as perl6 and pod6. (Mike Eve, closes #511)

9 years agopatch 7.4.954 v7.4.954
Bram Moolenaar [Thu, 3 Dec 2015 16:43:17 +0000 (17:43 +0100)]
patch 7.4.954
Problem:    When using Lua there may be a crash. (issue #468)
Solution:   Avoid using an unitialized tv. (Yukihiro Nakadaira)

9 years agopatch 7.4.953 v7.4.953
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)

9 years agopatch 7.4.952 v7.4.952
Bram Moolenaar [Thu, 3 Dec 2015 15:54:53 +0000 (16:54 +0100)]
patch 7.4.952
Problem:    'lispwords' is tested in the old way.
Solution:   Make a new style test for 'lispwords'.

9 years agopatch 7.4.951 v7.4.951
Bram Moolenaar [Thu, 3 Dec 2015 15:33:12 +0000 (16:33 +0100)]
patch 7.4.951
Problem:    Sorting number strings does not work as expected. (Luc Hermitte)
Solution:   Add the 'N" argument to sort()

9 years agopatch 7.4.950 v7.4.950
Bram Moolenaar [Thu, 3 Dec 2015 13:55:55 +0000 (14:55 +0100)]
patch 7.4.950
Problem:    v:errors is not initialized.
Solution:   Initialze it to an empty list. (Thinca)

9 years agopatch 7.4.949 v7.4.949
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)

9 years agopatch 7.4.948 v7.4.948
Bram Moolenaar [Thu, 3 Dec 2015 12:52:52 +0000 (13:52 +0100)]
patch 7.4.948
Problem:    Can't build when the insert_expand feature is disabled.
Solution:   Add #ifdefs. (Dan Pasanen, closes #499)

9 years agopatch 7.4.947 v7.4.947
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)

9 years agopatch 7.4.946 v7.4.946
Bram Moolenaar [Tue, 1 Dec 2015 14:32:56 +0000 (15:32 +0100)]
patch 7.4.946
Problem:    Missing changes in source file.
Solution:   Include changes to the eval.c file.

9 years agopatch 7.4.945 v7.4.945
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.

9 years agopatch 7.4.944 v7.4.944
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.

9 years agopatch 7.4.943 v7.4.943
Bram Moolenaar [Sat, 28 Nov 2015 13:29:26 +0000 (14:29 +0100)]
patch 7.4.943
Problem:    Tests are not run.
Solution:   Add test_writefile to makefiles. (Ken Takata)

9 years agopatch 7.4.942 v7.4.942
Bram Moolenaar [Wed, 25 Nov 2015 22:53:01 +0000 (23:53 +0100)]
patch 7.4.942
Problem:    test_tagcase breaks for small builds.
Solution:   Bail out of the test early. (Hirohito Higashi)

9 years agoUpdate runtime files.
Bram Moolenaar [Tue, 24 Nov 2015 18:18:36 +0000 (19:18 +0100)]
Update runtime files.

9 years agopatch 7.4.941 v7.4.941
Bram Moolenaar [Tue, 24 Nov 2015 17:48:14 +0000 (18:48 +0100)]
patch 7.4.941
Problem:    There is no way to ignore case only for tag searches.
Solution:   Add the 'tagcase' option. (Gary Johnson)

9 years agopatch 7.4.940 v7.4.940
Bram Moolenaar [Tue, 24 Nov 2015 17:15:51 +0000 (18:15 +0100)]
patch 7.4.940
Problem:    vt52 terminal codes are not correct.
Solution:   Move entries outside of #if. (Random)  Adjustments based on
            documented codes.

9 years agopatch 7.4.939 v7.4.939
Bram Moolenaar [Tue, 24 Nov 2015 16:23:56 +0000 (17:23 +0100)]
patch 7.4.939
Problem:    Memory leak when encountering a syntax error.
Solution:   Free the memory. (Dominique Pelle)

9 years agopatch 7.4.938 v7.4.938
Bram Moolenaar [Tue, 24 Nov 2015 14:38:44 +0000 (15:38 +0100)]
patch 7.4.938
Problem:    X11 and GTK have moure mouse buttons than Vim supports.
Solution:   Recognize more mouse buttons. (Benoit Pierre, closes #498)

9 years agopatch 7.4.937 v7.4.937
Bram Moolenaar [Tue, 24 Nov 2015 14:18:32 +0000 (15:18 +0100)]
patch 7.4.937
Problem:    Segfault reading unitialized memory.
Solution:   Do not read match \z0, it does not exist. (Marius Gedminas, closes
            #497)

9 years agopatch 7.4.936 v7.4.936
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)

9 years agopatch 7.4.935 v7.4.935
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.

9 years agopatch 7.4.934 v7.4.934
Bram Moolenaar [Sat, 21 Nov 2015 16:15:33 +0000 (17:15 +0100)]
patch 7.4.934
Problem:    Appveyor also builds on a tag push.
Solution:   Add a skip_tags line. (Kenichi Ito, closes #489)

9 years agopatch 7.4.933 v7.4.933
Bram Moolenaar [Sat, 21 Nov 2015 15:28:50 +0000 (16:28 +0100)]
patch 7.4.933
Problem:    Crash when using longest completion match.
Solution:   Fix array index.

9 years agopatch 7.4.932 v7.4.932
Bram Moolenaar [Sat, 21 Nov 2015 13:31:33 +0000 (14:31 +0100)]
patch 7.4.932
Problem:    test_utf8 has confusing dummy command.
Solution:   Use a real command instead of a colon.

9 years agopatch 7.4.931 v7.4.931
Bram Moolenaar [Sat, 21 Nov 2015 13:24:50 +0000 (14:24 +0100)]
patch 7.4.931
Problem:    Test 94 fails on some systems.
Solution:   Set 'encoding' to utf-8.

9 years agoUpdate runtime files.
Bram Moolenaar [Thu, 19 Nov 2015 19:38:09 +0000 (20:38 +0100)]
Update runtime files.

9 years agopatch 7.4.930 v7.4.930
Bram Moolenaar [Thu, 19 Nov 2015 19:23:37 +0000 (20:23 +0100)]
patch 7.4.930
Problem:    MS-Windows: Most users appear not to like the window border.
Solution:   Remove WS_EX_CLIENTEDGE. (Ian Halliday)

9 years agopatch 7.4.929 v7.4.929
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)

9 years agopatch 7.4.928 v7.4.928
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)

9 years agopatch 7.4.927 v7.4.927
Bram Moolenaar [Thu, 19 Nov 2015 18:33:15 +0000 (19:33 +0100)]
patch 7.4.927
Problem:    Ruby crashes when there is a runtime error.
Solution:   Use ruby_options() instead of ruby_process_options(). (Damien)

9 years agopatch 7.4.926 v7.4.926
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)

9 years agopatch 7.4.925 v7.4.925
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)

9 years agopatch 7.4.924 v7.4.924
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)

9 years agopatch 7.4.923 v7.4.923
Bram Moolenaar [Thu, 19 Nov 2015 12:14:30 +0000 (13:14 +0100)]
patch 7.4.923
Problem:    Prototypes not always generated.
Solution:   Change #if to OR with PROTO.

9 years agoUpdated runtime files.
Bram Moolenaar [Tue, 10 Nov 2015 20:15:48 +0000 (21:15 +0100)]
Updated runtime files.

9 years agopatch 7.4.922 v7.4.922
Bram Moolenaar [Tue, 10 Nov 2015 20:05:48 +0000 (21:05 +0100)]
patch 7.4.922
Problem:    Leaking memory with ":helpt {dir-not-exists}".
Solution:   Free dirname. (Dominique Pelle)

9 years agopatch 7.4.921 v7.4.921
Bram Moolenaar [Tue, 10 Nov 2015 19:52:04 +0000 (20:52 +0100)]
patch 7.4.921
Problem:    Missing proto file update. (Randall W. Morris)
Solution:   Add the missing line for mch_ishidden.

9 years agopatch 7.4.920 v7.4.920
Bram Moolenaar [Tue, 10 Nov 2015 19:45:09 +0000 (20:45 +0100)]
patch 7.4.920
Problem:    The rubydll option is not in the options window.
Solution:   Add the rubydll option.

9 years agopatch 7.4.919 v7.4.919
Bram Moolenaar [Tue, 10 Nov 2015 18:48:14 +0000 (19:48 +0100)]
patch 7.4.919
Problem:    The dll options are not in the options window.
Solution:   Add the dll options.  And other fixes.

9 years agopatch 7.4.918 v7.4.918
Bram Moolenaar [Tue, 10 Nov 2015 18:41:37 +0000 (19:41 +0100)]
patch 7.4.918
Problem:    A digit in an option name has problems.
Solution:   Rename 'python3dll' to 'pythonthreedll'.

9 years agopatch 7.4.917 v7.4.917
Bram Moolenaar [Tue, 10 Nov 2015 18:11:58 +0000 (19:11 +0100)]
patch 7.4.917
Problem:    Compiler warning for comparing signed and unsigned.
Solution:   Add a type cast.

9 years agopatch 7.4.916 v7.4.916
Bram Moolenaar [Tue, 10 Nov 2015 18:04:23 +0000 (19:04 +0100)]
patch 7.4.916
Problem:    When running out of memory while copying a dict memory may be
            freed twice. (ZyX)
Solution:   Do not call the garbage collector when running out of memory.

9 years agopatch 7.4.915 v7.4.915
Bram Moolenaar [Tue, 10 Nov 2015 16:50:24 +0000 (17:50 +0100)]
patch 7.4.915
Problem:    When removing from 'path' and then adding, a comma may go missing.
            (Malcolm Rowe)
Solution:   Fix the check for P_ONECOMMA. (closes #471)

9 years agopatch 7.4.914 v7.4.914
Bram Moolenaar [Tue, 10 Nov 2015 14:18:02 +0000 (15:18 +0100)]
patch 7.4.914
Problem:    New compiler warning: logical-not-parentheses
Solution:   Silence the warning.

9 years agopatch 7.4.913 v7.4.913
Bram Moolenaar [Tue, 10 Nov 2015 13:35:18 +0000 (14:35 +0100)]
patch 7.4.913
Problem:    No utf-8 support for the hangul input feature.
Solution:   Add utf-8 support. (Namsh)

9 years agopatch 7.4.912 v7.4.912
Bram Moolenaar [Tue, 10 Nov 2015 13:06:53 +0000 (14:06 +0100)]
patch 7.4.912
Problem:    Wrong indenting for C++ constructor.
Solution:   Recognize ::.  (Anhong)

9 years agopatch 7.4.911 v7.4.911
Bram Moolenaar [Tue, 10 Nov 2015 12:30:39 +0000 (13:30 +0100)]
patch 7.4.911
Problem:    t_Ce and t_Cs are documented but not supported. (Hirohito Higashi)
Solution:   Define the options.

9 years agopatch 7.4.910 v7.4.910
Bram Moolenaar [Tue, 10 Nov 2015 12:24:20 +0000 (13:24 +0100)]
patch 7.4.910
Problem:    Compiler complains about type punned pointer.
Solution:   Use another way to increment the ref count.

9 years agopatch 7.4.909 v7.4.909
Bram Moolenaar [Tue, 3 Nov 2015 21:03:16 +0000 (22:03 +0100)]
patch 7.4.909
Problem:    "make install" fails.
Solution:   Only try installing desktop files if the destination directory
            exists.

9 years agopatch 7.4.908 v7.4.908
Bram Moolenaar [Mon, 2 Nov 2015 16:35:43 +0000 (17:35 +0100)]
patch 7.4.908
Problem:    Build error with MingW compiler. (Cesar Romani)
Solution:   Change #if into #ifdef.

9 years agopatch 7.4.907 v7.4.907
Bram Moolenaar [Mon, 2 Nov 2015 14:28:18 +0000 (15:28 +0100)]
patch 7.4.907
Problem:    Libraries for dynamically loading interfaces can only be defined
            at compile time.
Solution:   Add options to specify the dll names. (Kazuki Sakamoto,
            closes #452)

9 years agopatch 7.4.906 v7.4.906
Bram Moolenaar [Mon, 2 Nov 2015 13:45:56 +0000 (14:45 +0100)]
patch 7.4.906
Problem:    On MS-Windows the viminfo file is (always) given the hidden
            attribute. (raulnac)
Solution:   Check the hidden attribute in a different way. (Ken Takata)

9 years agoAdd files in patch 7.4.904 missing from commit.
Bram Moolenaar [Mon, 2 Nov 2015 12:29:53 +0000 (13:29 +0100)]
Add files in patch 7.4.904 missing from commit.

9 years agopatch 7.4.905 v7.4.905
Bram Moolenaar [Mon, 2 Nov 2015 12:28:59 +0000 (13:28 +0100)]
patch 7.4.905
Problem:    Python interface can produce error "vim.message' object has no
            attribute 'isatty'".
Solution:   Add dummy isatty(), readable(), etc. (closes #464)

9 years agopatch 7.4.904 v7.4.904
Bram Moolenaar [Mon, 2 Nov 2015 11:50:55 +0000 (12:50 +0100)]
patch 7.4.904
Problem:    Vim does not provide .desktop files.
Solution:   Include and install .desktop files. (James McCoy, closes #455)

9 years agoUpdated runtime files.
Bram Moolenaar [Sun, 1 Nov 2015 15:49:04 +0000 (16:49 +0100)]
Updated runtime files.

9 years agopatch 7.4.903 v7.4.903
Bram Moolenaar [Sat, 31 Oct 2015 14:32:52 +0000 (15:32 +0100)]
patch 7.4.903
Problem:    MS-Windows: When 'encoding' differs from the current code page,
            expandinig wildcards may cause illegal memory access.
Solution:   Allocate a longer buffer. (Ken Takata)

9 years agopatch 7.4.902 v7.4.902
Bram Moolenaar [Fri, 30 Oct 2015 15:46:55 +0000 (16:46 +0100)]
patch 7.4.902
Problem:    Problems with using the MS-Windows console.
Solution:   Revert patches 7.4.851, 7.4.876 and 7.4.886 until we find a better
            solution. (suggested by Ken Takata)

9 years agoUpdate runtime files.
Bram Moolenaar [Fri, 30 Oct 2015 13:37:44 +0000 (14:37 +0100)]
Update runtime files.

9 years agopatch 7.4.901 v7.4.901
Bram Moolenaar [Fri, 30 Oct 2015 13:23:33 +0000 (14:23 +0100)]
patch 7.4.901
Problem:    When a BufLeave autocommand changes folding in a way it syncs
            undo, undo can be corrupted.
Solution:   Prevent undo sync. (Jacob Niehus)

9 years agopatch 7.4.900 v7.4.900
Bram Moolenaar [Sun, 25 Oct 2015 21:42:00 +0000 (22:42 +0100)]
patch 7.4.900
Problem:    README file can still be improved
Solution:   Add a couple of links. (Christian Brabandt)

9 years agopatch 7.4.899 v7.4.899
Bram Moolenaar [Sun, 25 Oct 2015 12:55:00 +0000 (13:55 +0100)]
patch 7.4.899
Problem:    README file is not optimal.
Solution:   Move buttons, update some text. (closes #460)

9 years agoUpdate runtime files.
Bram Moolenaar [Tue, 13 Oct 2015 21:21:27 +0000 (23:21 +0200)]
Update runtime files.

9 years agopatch 7.4.898 v7.4.898
Bram Moolenaar [Tue, 13 Oct 2015 18:55:50 +0000 (20:55 +0200)]
patch 7.4.898
Problem:    The 'fixendofline' option is set on with ":edit".
Solution:   Don't set the option when clearing a buffer. (Yasuhiro Matsumoto)

9 years agopatch 7.4.897 v7.4.897
Bram Moolenaar [Tue, 13 Oct 2015 18:21:49 +0000 (20:21 +0200)]
patch 7.4.897
Problem:    Freeze and crash when there is a sleep in a remote command.
            (Karl Yngve LervĂ„g)
Solution:   Remove a message from the queue before dealing with it. (James
            Kolb)

9 years agopatch 7.4.896 v7.4.896
Bram Moolenaar [Tue, 13 Oct 2015 17:43:17 +0000 (19:43 +0200)]
patch 7.4.896
Problem:    Editing a URL, which netrw should handle, doesn't work.
Solution:   Avoid changing slashes to backslashes. (Yasuhiro Matsumoto)

9 years agopatch 7.4.895 v7.4.895
Bram Moolenaar [Tue, 13 Oct 2015 17:18:04 +0000 (19:18 +0200)]
patch 7.4.895
Problem:    Custom command line completion does not work for a command
            containing digits.
Solution:   Skip over the digits. (suggested by Yasuhiro Matsumoto)

9 years agopatch 7.4.894 v7.4.894
Bram Moolenaar [Tue, 13 Oct 2015 15:52:59 +0000 (17:52 +0200)]
patch 7.4.894
Problem:    vimrun.exe is picky about the number of spaces before -s.
Solution:   Skip all spaces. (Cam Sinclair)

9 years agopatch 7.4.893 v7.4.893
Bram Moolenaar [Tue, 13 Oct 2015 14:13:39 +0000 (16:13 +0200)]
patch 7.4.893
Problem:    C indenting is wrong below a "case (foo):" because it is
            recognized as a C++ base class construct.  Issue #38.
Solution:   Check for the case keyword.

9 years agopatch 7.4.892 v7.4.892
Bram Moolenaar [Tue, 13 Oct 2015 11:49:09 +0000 (13:49 +0200)]
patch 7.4.892
Problem:    On MS-Windows the iconv DLL may have a different name.
Solution:   Also try libiconv2.dll and libiconv-2.dll. (Yasuhiro Matsumoto)

9 years agopatch 7.4.891 v7.4.891
Bram Moolenaar [Wed, 7 Oct 2015 09:41:49 +0000 (11:41 +0200)]
patch 7.4.891
Problem:    Indentation of array initializer is wrong.
Solution:   Avoid that calling find_start_rawstring() changes the position
            returned by find_start_comment(), add a test. (Hirohito Higashi)

9 years agopatch 7.4.890 v7.4.890
Bram Moolenaar [Wed, 7 Oct 2015 08:39:55 +0000 (10:39 +0200)]
patch 7.4.890
Problem:    Build failure when using dynamic python but not python3.
Solution:   Adjust the #if to also include DYNAMIC_PYTHON3 and UNIX.

9 years agopatch 7.4.889 v7.4.889
Bram Moolenaar [Tue, 29 Sep 2015 16:08:33 +0000 (18:08 +0200)]
patch 7.4.889
Problem:    Triggering OptionSet from setwinvar() isn't tested.
Solution:   Add a test. (Christian Brabandt)

9 years agopatch 7.4.888 v7.4.888
Bram Moolenaar [Tue, 29 Sep 2015 14:53:22 +0000 (16:53 +0200)]
patch 7.4.888
Problem:    The OptionSet autocommands are not triggered from setwinvar().
Solution:   Do not use switch_win() when not needed. (Hirohito Higashi)

9 years agopatch 7.4.887 v7.4.887
Bram Moolenaar [Tue, 29 Sep 2015 13:06:14 +0000 (15:06 +0200)]
patch 7.4.887
Problem:    Using uninitialized memory for regexp with back reference.
            (Dominique Pelle)
Solution:   Initialize end_lnum.

9 years agopatch 7.4.886 v7.4.886
Bram Moolenaar [Tue, 29 Sep 2015 12:01:12 +0000 (14:01 +0200)]
patch 7.4.886
Problem:    Windows7: Switching screen buffer causes flicker when using
            system().
Solution:   Instead of actually switching screen buffer, duplicate the handle.
            (Yasuhiro Matsumoto)

9 years agopatch 7.4.885 v7.4.885
Bram Moolenaar [Tue, 29 Sep 2015 10:08:42 +0000 (12:08 +0200)]
patch 7.4.885
Problem:    When doing an upwards search without wildcards the search fails if
            the initial directory doesn't exist.
Solution:   Fix the non-wildcard case. (Stefan Kempf)

9 years agoUpdate various runtime files.
Bram Moolenaar [Fri, 25 Sep 2015 18:34:21 +0000 (20:34 +0200)]
Update various runtime files.

9 years agopatch 7.4.884 v7.4.884
Bram Moolenaar [Fri, 25 Sep 2015 18:30:58 +0000 (20:30 +0200)]
patch 7.4.884
Problem:    Travis also builds on a tag push.
Solution:   Filter out tag pushes. (Kenichi Ito)

9 years agopatch 7.4.883 v7.4.883
Bram Moolenaar [Fri, 25 Sep 2015 17:35:02 +0000 (19:35 +0200)]
patch 7.4.883
Problem:    Block-mode replace works characterwise instead of blockwise after
            column 147. (Issue #422)
Solution:   Set Visual mode. (Christian Brabandt)

9 years agopatch 7.4.882 v7.4.882
Bram Moolenaar [Fri, 25 Sep 2015 17:12:22 +0000 (19:12 +0200)]
patch 7.4.882
Problem:    When leaving the command line window with CTRL-C while a
            completion menu is displayed the menu isn't removed.
Solution:   Force a screen update. (Hirohito Higashi)

9 years agopatch 7.4.881 v7.4.881
Bram Moolenaar [Fri, 25 Sep 2015 15:56:50 +0000 (17:56 +0200)]
patch 7.4.881
Problem:    Test 49 fails.
Solution:   Add line number to check of call stack.

9 years agopatch 7.4.880 v7.4.880
Bram Moolenaar [Fri, 25 Sep 2015 15:50:22 +0000 (17:50 +0200)]
patch 7.4.880
Problem:    No build and coverage status.
Solution:   Add links to the README file. (Christian Brabandt)

9 years agopatch 7.4.879 v7.4.879
Bram Moolenaar [Fri, 25 Sep 2015 15:37:16 +0000 (17:37 +0200)]
patch 7.4.879
Problem:    Can't see line numbers in nested function calls.
Solution:   Add line number to the file name. (Alberto Fanjul)

9 years agopatch 7.4.878 v7.4.878
Bram Moolenaar [Fri, 25 Sep 2015 14:59:47 +0000 (16:59 +0200)]
patch 7.4.878
Problem:    Coverity error for clearing only one byte of struct.
Solution:   Clear the whole struct. (Dominique Pelle)

9 years agopatch 7.4.877 v7.4.877
Bram Moolenaar [Fri, 25 Sep 2015 14:38:01 +0000 (16:38 +0200)]
patch 7.4.877
Problem:    ":find" sometimes fails. (Excanoe)
Solution:   Compare current characters instead of previous ones.

9 years agopatch 7.4.876 v7.4.876
Bram Moolenaar [Fri, 25 Sep 2015 13:28:38 +0000 (15:28 +0200)]
patch 7.4.876
Problem:    Windows7: when using vim.exe with msys or msys2, conhost.exe
            (console window provider on Windows7) will freeze or crash.
Solution:   Make original screen buffer active, before executing external
            program.  And when the program is finished, revert to vim's one.
            (Taro Muraoka)

9 years agopatch 7.4.875 v7.4.875
Bram Moolenaar [Fri, 25 Sep 2015 13:00:56 +0000 (15:00 +0200)]
patch 7.4.875
Problem:    Not obvious how to contribute.
Solution:   Add a remark about CONTRIBUTING.md to README.md

9 years agopatch 7.4.874 v7.4.874
Bram Moolenaar [Fri, 25 Sep 2015 13:00:31 +0000 (15:00 +0200)]
patch 7.4.874
Problem:    MS-Windows: When Vim runs inside another application, the size
            isn't right.
Solution:   When in child mode compute the size differently. (Agorgianitis
            Loukas)

9 years agopatch 7.4.873 v7.4.873
Bram Moolenaar [Thu, 17 Sep 2015 21:20:42 +0000 (23:20 +0200)]
patch 7.4.873
Problem:    Compiler warning for unused variable. (Tony Mechelynck)
Solution:   Remove the variable.  Also fix int vs long_u mixup.

9 years agopatch 7.4.872 v7.4.872
Bram Moolenaar [Tue, 15 Sep 2015 17:18:18 +0000 (19:18 +0200)]
patch 7.4.872
Problem:    Not using CI services available.
Solution:   Add configuration files for travis and appveyor. (PR #401)

9 years agopatch 7.4.871 v7.4.871
Bram Moolenaar [Tue, 15 Sep 2015 17:05:59 +0000 (19:05 +0200)]
patch 7.4.871
Problem:    Vim leaks memory, when 'wildignore' filters out all matches.
Solution:   Free the files array when it becomes empty.