]> granicus.if.org Git - vim/log
vim
8 years agopatch 7.4.2148 v7.4.2148
Bram Moolenaar [Tue, 2 Aug 2016 21:01:40 +0000 (23:01 +0200)]
patch 7.4.2148
Problem:    Not much testing for cscope.
Solution:   Add a test that uses the cscope program. (Christian Brabandt)

8 years agopatch 7.4.2147 v7.4.2147
Bram Moolenaar [Tue, 2 Aug 2016 20:51:42 +0000 (22:51 +0200)]
patch 7.4.2147
Problem:    test_alot fails.
Solution:   Close window.

8 years agopatch 7.4.2146 v7.4.2146
Bram Moolenaar [Tue, 2 Aug 2016 20:36:02 +0000 (22:36 +0200)]
patch 7.4.2146
Problem:    Not enough testing for popup menu.  CTRL-E does not always work
            properly.
Solution:   Add more tests.  When using CTRL-E check if the popup menu is
            visible. (Christian Brabandt)

8 years agopatch 7.4.2145 v7.4.2145
Bram Moolenaar [Tue, 2 Aug 2016 19:55:17 +0000 (21:55 +0200)]
patch 7.4.2145
Problem:    Win32: Using CreateThread/ExitThread is not safe.
Solution:   Use _beginthreadex and return from the thread. (Ken Takata)

8 years agopatch 7.4.2144 v7.4.2144
Bram Moolenaar [Tue, 2 Aug 2016 19:41:28 +0000 (21:41 +0200)]
patch 7.4.2144
Problem:    On MS-Windows quickix does not handle a line with 1023 bytes
            ending in CR-LF properly.
Solution:   Don't consider CR a line break. (Ken Takata)

8 years agoUpdated runtime files.
Bram Moolenaar [Tue, 2 Aug 2016 19:04:33 +0000 (21:04 +0200)]
Updated runtime files.

8 years agopatch 7.4.2143 v7.4.2143
Bram Moolenaar [Mon, 1 Aug 2016 20:49:22 +0000 (22:49 +0200)]
patch 7.4.2143
Problem:    A funccal is garbage collected while it can still be used.
Solution:   Set copyID in all referenced functions.  Do not list lambda
            functions with ":function".

8 years agopatch 7.4.2142 v7.4.2142
Bram Moolenaar [Mon, 1 Aug 2016 18:46:25 +0000 (20:46 +0200)]
patch 7.4.2142
Problem:    Leaking memory when redefining a function.
Solution:   Don't increment the function reference count when it's found by
            name. Don't remove the wrong function from the hashtab.  More
            reference counting fixes.

8 years agopatch 7.4.2141 v7.4.2141
Bram Moolenaar [Mon, 1 Aug 2016 15:10:20 +0000 (17:10 +0200)]
patch 7.4.2141
Problem:    Coverity reports bogus NULL check.
Solution:   When checking for a variable in the funccal scope don't pass the
            varname.

8 years agopatch 7.4.2140 v7.4.2140
Bram Moolenaar [Mon, 1 Aug 2016 14:35:59 +0000 (16:35 +0200)]
patch 7.4.2140
Problem:    Tiny build fails.
Solution:   Add dummy typedefs.

8 years agopatch 7.4.2139 v7.4.2139
Bram Moolenaar [Mon, 1 Aug 2016 14:29:47 +0000 (16:29 +0200)]
patch 7.4.2139
Problem:    :delfunction causes illegal memory access.
Solution:   Correct logic when deciding to free a function.

8 years agopatch 7.4.2138 v7.4.2138
Bram Moolenaar [Mon, 1 Aug 2016 14:27:23 +0000 (16:27 +0200)]
patch 7.4.2138
Problem:    Test 86 and 87 fail.
Solution:   Call func_ref() also for regular functions.

8 years agopatch 7.4.2137 v7.4.2137
Bram Moolenaar [Mon, 1 Aug 2016 13:40:54 +0000 (15:40 +0200)]
patch 7.4.2137
Problem:    Using function() with a name will find another function when it is
            redefined.
Solution:   Add funcref().  Refer to lambda using a partial.  Fix several
            reference counting issues.

8 years agopatch 7.4.2136 v7.4.2136
Bram Moolenaar [Sun, 31 Jul 2016 16:30:22 +0000 (18:30 +0200)]
patch 7.4.2136
Problem:    Closure function fails.
Solution:   Don't reset uf_scoped when it points to another funccal.

8 years agopatch 7.4.2135 v7.4.2135
Bram Moolenaar [Sun, 31 Jul 2016 12:17:27 +0000 (14:17 +0200)]
patch 7.4.2135
Problem:    Various tiny issues.
Solution:   Update comments, white space, etc.

8 years agopatch 7.4.2134 v7.4.2134
Bram Moolenaar [Sun, 31 Jul 2016 12:11:58 +0000 (14:11 +0200)]
patch 7.4.2134
Problem:    No error for using function() badly.
Solution:   Check for passing wrong function name. (Ken Takata)

8 years agopatch 7.4.2133 v7.4.2133
Bram Moolenaar [Sat, 30 Jul 2016 21:18:47 +0000 (23:18 +0200)]
patch 7.4.2133
Problem:    Can't build with tiny features.
Solution:   Add #ifdef.

8 years agopatch 7.4.2132 v7.4.2132
Bram Moolenaar [Sat, 30 Jul 2016 21:14:28 +0000 (23:14 +0200)]
patch 7.4.2132
Problem:    test_partial has memory leaks reported.
Solution:   Add a note about why this happens.

8 years agopatch 7.4.2131 v7.4.2131
Bram Moolenaar [Sat, 30 Jul 2016 21:05:09 +0000 (23:05 +0200)]
patch 7.4.2131
Problem:    More memory leaks when using partial, e.g. for "exit-cb".
Solution:   Don't copy the callback when using a partial.

8 years agopatch 7.4.2130 v7.4.2130
Bram Moolenaar [Sat, 30 Jul 2016 20:47:56 +0000 (22:47 +0200)]
patch 7.4.2130
Problem:    Pending timers cause false memory leak reports.
Solution:   Free all timers on exit.

8 years agopatch 7.4.2129 v7.4.2129
Bram Moolenaar [Sat, 30 Jul 2016 20:32:11 +0000 (22:32 +0200)]
patch 7.4.2129
Problem:    Memory leak when using timer_start(). (Dominique Pelle)
Solution:   Don't copy the callback when using a partial.

8 years agopatch 7.4.2128 v7.4.2128
Bram Moolenaar [Sat, 30 Jul 2016 19:48:59 +0000 (21:48 +0200)]
patch 7.4.2128
Problem:    Memory leak when saving for undo fails.
Solution:   Free allocated memory. (Hirohito Higashi)

8 years agopatch 7.4.2127 v7.4.2127
Bram Moolenaar [Sat, 30 Jul 2016 17:39:29 +0000 (19:39 +0200)]
patch 7.4.2127
Problem:    The short form of ":noswapfile" is ":noswap" instead of ":now".
            (Kent Sibilev)
Solution:   Only require three characters.  Add a test for the short forms.

8 years agopatch 7.4.2126 v7.4.2126
Bram Moolenaar [Sat, 30 Jul 2016 17:11:25 +0000 (19:11 +0200)]
patch 7.4.2126
Problem:    No tests for :diffget and :diffput
Solution:   Add tests.

8 years agoAdd OSX build to Travis CI. (Christian Brabandt)
Bram Moolenaar [Sat, 30 Jul 2016 15:41:49 +0000 (17:41 +0200)]
Add OSX build to Travis CI. (Christian Brabandt)

8 years agopatch 7.4.2125 v7.4.2125
Bram Moolenaar [Sat, 30 Jul 2016 14:40:39 +0000 (16:40 +0200)]
patch 7.4.2125
Problem:    Compiler warning for loss of data.
Solution:   Add a type cast. (Christian Brabandt)

8 years agopatch 7.4.2124 v7.4.2124
Bram Moolenaar [Sat, 30 Jul 2016 14:36:01 +0000 (16:36 +0200)]
patch 7.4.2124
Problem:    diffmode test leaves files behind, breaking another test.
Solution:   Delete the files.

8 years agopatch 7.4.2123 v7.4.2123
Bram Moolenaar [Sat, 30 Jul 2016 14:16:54 +0000 (16:16 +0200)]
patch 7.4.2123
Problem:    No new style test for diff mode.
Solution:   Add a test.  Check that folds are in sync.

8 years agopatch 7.4.2122 v7.4.2122
Bram Moolenaar [Sat, 30 Jul 2016 12:12:23 +0000 (14:12 +0200)]
patch 7.4.2122
Problem:    Mac: don't get +clipboard in huge build.
Solution:   Move #define down below including featureh.h

8 years agopatch 7.4.2121 v7.4.2121
Bram Moolenaar [Fri, 29 Jul 2016 20:50:35 +0000 (22:50 +0200)]
patch 7.4.2121
Problem:    No easy way to check if lambda and closure are supported.
Solution:   Add the +lambda feature.

8 years agopatch 7.4.2120 v7.4.2120
Bram Moolenaar [Fri, 29 Jul 2016 20:37:06 +0000 (22:37 +0200)]
patch 7.4.2120
Problem:    User defined functions can't be a closure.
Solution:   Add the "closure" argument. Allow using :unlet on a bound
            variable. (Yasuhiro Matsumoto, Ken Takata)

8 years agopatch 7.4.2119 v7.4.2119
Bram Moolenaar [Fri, 29 Jul 2016 20:15:09 +0000 (22:15 +0200)]
patch 7.4.2119
Problem:    Closures are not supported.
Solution:   Capture variables in lambdas from the outer scope. (Yasuhiro
            Matsumoto, Ken Takata)

8 years agopatch 7.4.2118 v7.4.2118
Bram Moolenaar [Fri, 29 Jul 2016 19:01:10 +0000 (21:01 +0200)]
patch 7.4.2118
Problem:    Mac: can't build with tiny features.
Solution:   Don't define FEAT_CLIPBOARD unconditionally. (Kazunobu Kuriyama)

8 years agopatch 7.4.2117 v7.4.2117
Bram Moolenaar [Fri, 29 Jul 2016 18:50:24 +0000 (20:50 +0200)]
patch 7.4.2117
Problem:    Deleting an augroup that still has autocmds does not give a
            warning.  The next defined augroup takes its place.
Solution:   Give a warning and prevent the index being used for another group
            name.

8 years agopatch 7.4.2116 v7.4.2116
Bram Moolenaar [Fri, 29 Jul 2016 16:33:38 +0000 (18:33 +0200)]
patch 7.4.2116
Problem:    The default vimrc for Windows is very conservative.
Solution:   Use the defaults.vim in the Windows installer.

8 years agopatch 7.4.2115 v7.4.2115
Bram Moolenaar [Fri, 29 Jul 2016 16:13:42 +0000 (18:13 +0200)]
patch 7.4.2115
Problem:    Loading defaults.vim with -C argument.
Solution:   Don't load the defaults script with -C argument.  Test sourcing
            the defaults script.  Set 'display' to "truncate".

8 years agopatch 7.4.2114 v7.4.2114
Bram Moolenaar [Fri, 29 Jul 2016 15:03:54 +0000 (17:03 +0200)]
patch 7.4.2114
Problem:    Tiny build fails.
Solution:   Always include vim_time().

8 years agopatch 7.4.2113 v7.4.2113
Bram Moolenaar [Fri, 29 Jul 2016 14:15:27 +0000 (16:15 +0200)]
patch 7.4.2113
Problem:    Test for undo is flaky.
Solution:   Turn it into a new style test.  Use test_settime() to avoid
            flakyness.

8 years agopatch 7.4.2112 v7.4.2112
Bram Moolenaar [Thu, 28 Jul 2016 20:53:37 +0000 (22:53 +0200)]
patch 7.4.2112
Problem:    getcompletion(.., 'dir') returns a match with trailing "*" when
            there are no matches. (Chdiza)
Solution:   Return an empty list when there are no matches.  Add a trailing
            slash to directories. (Yegappan Lakshmanan)  Add tests for no
            matches. (closes #947)

8 years agoUpdate gitignore for new test binary. (Oyvind Holm, closes #954)
Bram Moolenaar [Thu, 28 Jul 2016 20:36:37 +0000 (22:36 +0200)]
Update gitignore for new test binary.  (Oyvind Holm, closes #954)

8 years agopatch 7.4.2111 v7.4.2111
Bram Moolenaar [Thu, 28 Jul 2016 20:24:15 +0000 (22:24 +0200)]
patch 7.4.2111
Problem:    Defaults are very conservative.
Solution:   Move settings from vimrc_example.vim to defaults.vim.  Load
            defaults.vim if no .vimrc was found.

8 years agopatch 7.4.2110 v7.4.2110
Bram Moolenaar [Thu, 28 Jul 2016 20:08:24 +0000 (22:08 +0200)]
patch 7.4.2110
Problem:    When there is an CmdUndefined autocmd then the error for a missing
            command is E464 instead of E492. (Manuel Ortega)
Solution:   Don't let the pointer be NULL.

8 years agopatch 7.4.2109 v7.4.2109
Bram Moolenaar [Wed, 27 Jul 2016 21:26:04 +0000 (23:26 +0200)]
patch 7.4.2109
Problem:    Setting 'display' to "lastline" is a drastic change, while
            omitting it results in lots of "@" lines.
Solution:   Add "truncate" to show "@@@" for a truncated line.

8 years agopatch 7.4.2108 v7.4.2108
Bram Moolenaar [Wed, 27 Jul 2016 20:56:48 +0000 (22:56 +0200)]
patch 7.4.2108
Problem:    Netbeans test is flaky.
Solution:   Wait for the cursor to be positioned.

8 years agopatch 7.4.2107 v7.4.2107
Bram Moolenaar [Tue, 26 Jul 2016 20:14:09 +0000 (22:14 +0200)]
patch 7.4.2107
Problem:    Misplaced equal sign.
Solution:   Remove it.

8 years agopatch 7.4.2106 v7.4.2106
Bram Moolenaar [Tue, 26 Jul 2016 20:02:54 +0000 (22:02 +0200)]
patch 7.4.2106
Problem:    Clang warns about missing field in initializer.
Solution:   Define COMMA and use it.  (Kazunobu Kuriyama)

8 years agopatch 7.4.2105 v7.4.2105
Bram Moolenaar [Tue, 26 Jul 2016 19:27:36 +0000 (21:27 +0200)]
patch 7.4.2105
Problem:    Configure reports default features to be "normal" while it is
            "huge".
Solution:   Change the default text.

8 years agopatch 7.4.2104 v7.4.2104
Bram Moolenaar [Tue, 26 Jul 2016 18:46:08 +0000 (20:46 +0200)]
patch 7.4.2104
Problem:    Code duplication when unreferencing a function.
Solution:   De-duplicate.

8 years agopatch 7.4.2103 v7.4.2103
Bram Moolenaar [Tue, 26 Jul 2016 18:43:40 +0000 (20:43 +0200)]
patch 7.4.2103
Problem:    Can't have "augroup END" right after ":au!".
Solution:   Check for the bar character before the command argument.

8 years agopatch 7.4.2102 v7.4.2102
Bram Moolenaar [Sun, 24 Jul 2016 20:25:15 +0000 (22:25 +0200)]
patch 7.4.2102
Problem:    Tiny build with GUI fails.
Solution:   Revert one FOR_ALL_ change.

8 years agopatch 7.4.2101 v7.4.2101
Bram Moolenaar [Sun, 24 Jul 2016 20:04:11 +0000 (22:04 +0200)]
patch 7.4.2101
Problem:    Looping over windows, buffers and tab pages is inconsistant.
Solution:   Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)

8 years agopatch 7.4.2100 v7.4.2100
Bram Moolenaar [Sun, 24 Jul 2016 15:33:05 +0000 (17:33 +0200)]
patch 7.4.2100
Problem:    "cgn" and "dgn" do not work correctly with a single character
            match and the replacement includes the searched pattern. (John
            Beckett)
Solution:   If the match is found in the wrong column try in the next column.
            Turn the test into new style. (Christian Brabandt)

8 years agopatch 7.4.2099 v7.4.2099
Bram Moolenaar [Sun, 24 Jul 2016 14:17:59 +0000 (16:17 +0200)]
patch 7.4.2099
Problem:    When a keymap is active only "(lang)" is displayed. (Ilya
            Dogolazky)
Solution:   Show the keymap name. (Dmitri Vereshchagin, closes #933)

8 years agoUpdated runtime files.
Bram Moolenaar [Sun, 24 Jul 2016 12:12:38 +0000 (14:12 +0200)]
Updated runtime files.

8 years agopatch 7.4.2098 v7.4.2098
Bram Moolenaar [Sat, 23 Jul 2016 20:04:47 +0000 (22:04 +0200)]
patch 7.4.2098
Problem:    Text object tests are old style.
Solution:   Turn them into new style tests. (James McCoy, closes #941)

8 years agopatch 7.4.2097 v7.4.2097
Bram Moolenaar [Sat, 23 Jul 2016 15:28:22 +0000 (17:28 +0200)]
patch 7.4.2097
Problem:    Warning from 64 bit compiler.
Solution:   use size_t instead of int. (Mike Williams)

8 years agopatch 7.4.2096 v7.4.2096
Bram Moolenaar [Sat, 23 Jul 2016 13:47:34 +0000 (15:47 +0200)]
patch 7.4.2096
Problem:    Lambda functions show up with completion.
Solution:   Don't show lambda functions. (Ken Takata)

8 years agopatch 7.4.2095 v7.4.2095
Bram Moolenaar [Sat, 23 Jul 2016 13:35:35 +0000 (15:35 +0200)]
patch 7.4.2095
Problem:    Man test fails when run with the GUI.
Solution:   Adjust for different behavior of GUI.  Add assert_inrange().

8 years agopatch 7.4.2094 v7.4.2094
Bram Moolenaar [Sat, 23 Jul 2016 12:35:12 +0000 (14:35 +0200)]
patch 7.4.2094
Problem:    The color allocation in X11 is overly complicated.
Solution:   Remove find_closest_color(), XAllocColor() already does this.
            (Kazunobu Kuriyama)

8 years agopatch 7.4.2093 v7.4.2093
Bram Moolenaar [Sat, 23 Jul 2016 12:01:15 +0000 (14:01 +0200)]
patch 7.4.2093
Problem:    Netbeans test fails once in a while.  Leaving log file behind.
Solution:   Add it to the list of flaky tests.  Disable logfile.

8 years agopatch 7.4.2092 v7.4.2092
Bram Moolenaar [Fri, 22 Jul 2016 20:26:52 +0000 (22:26 +0200)]
patch 7.4.2092
Problem:    GTK 3 build fails with older GTK version.
Solution:   Check the pango version. (Kazunobu Kuriyama)

8 years agopatch 7.4.2091 v7.4.2091
Bram Moolenaar [Fri, 22 Jul 2016 20:12:38 +0000 (22:12 +0200)]
patch 7.4.2091
Problem:    Coverity reports a resource leak when out of memory.
Solution:   Close the file before returning.

8 years agopatch 7.4.2090 v7.4.2090
Bram Moolenaar [Fri, 22 Jul 2016 19:50:18 +0000 (21:50 +0200)]
patch 7.4.2090
Problem:    Using submatch() in a lambda passed to substitute() is verbose.
Solution:   Use a static list and pass it as an optional argument to the
            function.  Fix memory leak.

8 years agopatch 7.4.2089 v7.4.2089
Bram Moolenaar [Thu, 21 Jul 2016 20:10:12 +0000 (22:10 +0200)]
patch 7.4.2089
Problem:    Color handling of X11 GUIs is too complicated.
Solution:   Simplify the code.  Use RGBA where appropriate. (Kazunobu
            Kuriyama)

8 years agopatch 7.4.2088 v7.4.2088
Bram Moolenaar [Thu, 21 Jul 2016 20:03:02 +0000 (22:03 +0200)]
patch 7.4.2088
Problem:    Keymap test fails with normal features.
Solution:   Bail out if the keymap feature is not supported.

8 years agopatch 7.4.2087 v7.4.2087
Bram Moolenaar [Thu, 21 Jul 2016 19:23:38 +0000 (21:23 +0200)]
patch 7.4.2087
Problem:    Digraph code test coverage is still low.
Solution:   Add more tests. (Christian Brabandt)

8 years agopatch 7.4.2086 v7.4.2086
Bram Moolenaar [Thu, 21 Jul 2016 18:33:32 +0000 (20:33 +0200)]
patch 7.4.2086
Problem:    Using the system default encoding makes tests unpredictable.
Solution:   Always use utf-8 or latin1 in the new style tests.  Remove setting
            encoding and scriptencoding where it is not needed.

8 years agopatch 7.4.2085 v7.4.2085
Bram Moolenaar [Thu, 21 Jul 2016 08:11:03 +0000 (10:11 +0200)]
patch 7.4.2085
Problem:    Digraph tests fails on some systems.
Solution:   Run it separately and set 'encoding' early.

8 years agopatch 7.4.2084 v7.4.2084
Bram Moolenaar [Wed, 20 Jul 2016 20:23:49 +0000 (22:23 +0200)]
patch 7.4.2084
Problem:    New digraph test makes testing hang.
Solution:   Don't set "nocp".

8 years agopatch 7.4.2083 v7.4.2083
Bram Moolenaar [Wed, 20 Jul 2016 20:11:06 +0000 (22:11 +0200)]
patch 7.4.2083
Problem:    Coverity complains about not restoring a value.
Solution:   Restore the value, although it's not really needed.  Change return
            to jump to cleanup, might leak memory.

8 years agopatch 7.4.2082 v7.4.2082
Bram Moolenaar [Wed, 20 Jul 2016 20:01:12 +0000 (22:01 +0200)]
patch 7.4.2082
Problem:    Not much test coverage for digraphs.
Solution:   Add a new style digraph test. (Christian Brabandt)

8 years agopatch 7.4.2081 v7.4.2081
Bram Moolenaar [Wed, 20 Jul 2016 19:44:37 +0000 (21:44 +0200)]
patch 7.4.2081
Problem:    Line numbers in the error list are not always adjusted.
Solution:   Set b_has_qf_entry properly. (Yegappan Lakshmanan)

8 years agopatch 7.4.2080 v7.4.2080
Bram Moolenaar [Tue, 19 Jul 2016 22:10:51 +0000 (00:10 +0200)]
patch 7.4.2080
Problem:    When using PERROR() on some systems assert_fails() does not see
            the error.
Solution:   Make PERROR() always report the error.

8 years agopatch 7.4.2079 v7.4.2079
Bram Moolenaar [Tue, 19 Jul 2016 22:03:18 +0000 (00:03 +0200)]
patch 7.4.2079
Problem:    Netbeans test fails on non-Unix systems.
Solution:   Only do the permission check on Unix systems.

8 years agopatch 7.4.2078 v7.4.2078
Bram Moolenaar [Tue, 19 Jul 2016 21:36:31 +0000 (23:36 +0200)]
patch 7.4.2078
Problem:    Running checks in po diretory fails.
Solution:   Add colors used in syntax.c to the builtiin color table.

8 years agopatch 7.4.2077 v7.4.2077
Bram Moolenaar [Tue, 19 Jul 2016 21:13:03 +0000 (23:13 +0200)]
patch 7.4.2077
Problem:    Cannot update 'tabline' when a tab was closed.
Solution:   Add the TabClosed autocmd event. (partly by Felipe Morales)

8 years agopatch 7.4.2076 v7.4.2076
Bram Moolenaar [Tue, 19 Jul 2016 20:43:11 +0000 (22:43 +0200)]
patch 7.4.2076
Problem:    Syntax error when dict has '>' key.
Solution:   Check for endchar. (Ken Takata)

8 years agopatch 7.4.2075 v7.4.2075
Bram Moolenaar [Tue, 19 Jul 2016 20:31:36 +0000 (22:31 +0200)]
patch 7.4.2075
Problem:    No autocommand event to initialize a window or tab page.
Solution:   Add WinNew and TabNew events. (partly by Felipe Morales)

8 years agopatch 7.4.2074 v7.4.2074
Bram Moolenaar [Tue, 19 Jul 2016 19:30:13 +0000 (21:30 +0200)]
patch 7.4.2074
Problem:    One more place using a dummy variable.
Solution:   Use offsetof(). (Ken Takata)

8 years agopatch 7.4.2073 v7.4.2073
Bram Moolenaar [Tue, 19 Jul 2016 19:05:21 +0000 (21:05 +0200)]
patch 7.4.2073
Problem:    rgb.txt is read for every color name.
Solution:   Load rgb.txt once. (Christian Brabandt)  Add a test.

8 years agopatch 7.4.2072 v7.4.2072
Bram Moolenaar [Tue, 19 Jul 2016 17:10:51 +0000 (19:10 +0200)]
patch 7.4.2072
Problem:    substitute() does not support a Funcref argument.
Solution:   Support a Funcref like it supports  a string starting with "\=".

8 years agopatch 7.4.2071 v7.4.2071
Bram Moolenaar [Tue, 19 Jul 2016 15:25:25 +0000 (17:25 +0200)]
patch 7.4.2071
Problem:    The return value of type() is difficult to use.
Solution:   Define v:t_ constants. (Ken Takata)

8 years agopatch 7.4.2070 v7.4.2070
Bram Moolenaar [Tue, 19 Jul 2016 15:01:31 +0000 (17:01 +0200)]
patch 7.4.2070
Problem:    Missing change to include file.
Solution:   Include the spell header file.

8 years agopatch 7.4.2069 v7.4.2069
Bram Moolenaar [Tue, 19 Jul 2016 14:39:08 +0000 (16:39 +0200)]
patch 7.4.2069
Problem:    spell.c is too big.
Solution:   Split it in spell file handling and spell checking.

8 years agopatch 7.4.2068 v7.4.2068
Bram Moolenaar [Tue, 19 Jul 2016 10:33:44 +0000 (12:33 +0200)]
patch 7.4.2068
Problem:    Not all arguments of trunc_string() are tested.  Memory access
            error when running the message tests.
Solution:   Add another test case. (Yegappan Lakshmanan)  Make it easy to run
            unittests with valgrind.  Fix the access error.

8 years agopatch 7.4.2067 v7.4.2067
Bram Moolenaar [Mon, 18 Jul 2016 20:22:39 +0000 (22:22 +0200)]
patch 7.4.2067
Problem:    Compiler warning for char/char_u conversion. (Tony Mechelynck)
            Inefficient code.
Solution:   Use more lines to fill with spaces. (Nikolai Pavlov) Add type cast.

8 years agopatch 7.4.2066 v7.4.2066
Bram Moolenaar [Sun, 17 Jul 2016 21:34:21 +0000 (23:34 +0200)]
patch 7.4.2066
Problem:    getcompletion() not well tested.
Solution:   Add more testing.

8 years agopatch 7.4.2065 v7.4.2065
Bram Moolenaar [Sun, 17 Jul 2016 20:33:53 +0000 (22:33 +0200)]
patch 7.4.2065
Problem:    Compiler warns for uninitialzed variable. (John Marriott)
Solution:   Set lnum to the right value.

8 years agopatch 7.4.2064 v7.4.2064
Bram Moolenaar [Sun, 17 Jul 2016 20:25:36 +0000 (22:25 +0200)]
patch 7.4.2064
Problem:    Coverity warns for possible buffer overflow.
Solution:   Use vim_strcat() instead of strcat().

8 years agopatch 7.4.2063 v7.4.2063
Bram Moolenaar [Sun, 17 Jul 2016 20:13:49 +0000 (22:13 +0200)]
patch 7.4.2063
Problem:    eval.c is still too big.
Solution:   Split off internal functions to evalfunc.c.

8 years agopatch 7.4.2062 v7.4.2062
Bram Moolenaar [Sun, 17 Jul 2016 18:37:43 +0000 (20:37 +0200)]
patch 7.4.2062
Problem:    Using dummy variable to compute struct member offset.
Solution:   Use offsetof().

8 years agopatch 7.4.2061 v7.4.2061
Bram Moolenaar [Sun, 17 Jul 2016 17:25:04 +0000 (19:25 +0200)]
patch 7.4.2061
Problem:    qf_init_ext() is too big.
Solution:   Move code to qf_parse_line() (Yegappan Lakshmanan)

8 years agopatch 7.4.2060 v7.4.2060
Bram Moolenaar [Sun, 17 Jul 2016 17:02:16 +0000 (19:02 +0200)]
patch 7.4.2060
Problem:    Wrong file name.
Solution:   Fix typo.

8 years agopatch 7.4.2059 v7.4.2059
Bram Moolenaar [Sun, 17 Jul 2016 16:41:47 +0000 (18:41 +0200)]
patch 7.4.2059
Problem:    Non-Unix builds fail.
Solution:   Update Makefiles for new files.

8 years agopatch 7.4.2058 v7.4.2058
Bram Moolenaar [Sun, 17 Jul 2016 16:29:19 +0000 (18:29 +0200)]
patch 7.4.2058
Problem:    eval.c is too big.
Solution:   Move user functions to userfunc.c

8 years agopatch 7.4.2057 v7.4.2057
Bram Moolenaar [Sun, 17 Jul 2016 13:46:27 +0000 (15:46 +0200)]
patch 7.4.2057
Problem:    eval.c is too big.
Solution:   Move List functions to list.c

8 years agopatch 7.4.2056 v7.4.2056
Bram Moolenaar [Sun, 17 Jul 2016 13:06:51 +0000 (15:06 +0200)]
patch 7.4.2056
Problem:    Build fails.
Solution:   Add missing changes.

8 years agopatch 7.4.2055 v7.4.2055
Bram Moolenaar [Sun, 17 Jul 2016 12:57:05 +0000 (14:57 +0200)]
patch 7.4.2055
Problem:    eval.c is too big.
Solution:   Move Dictionary functions to dict.c.

8 years agoUpdate runtime files.
Bram Moolenaar [Sun, 17 Jul 2016 11:35:14 +0000 (13:35 +0200)]
Update runtime files.

8 years agoPut building with interfaces on the right target.
Bram Moolenaar [Sat, 16 Jul 2016 19:58:01 +0000 (21:58 +0200)]
Put building with interfaces on the right target.