Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 1 | *version8.txt* For Vim version 8.0. Last change: 2017 Apr 23 |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
| 5 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 6 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 7 | *vim8* *vim-8* *version-8.0* *version8.0* |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 8 | Welcome to Vim 8! A large number of bugs have been fixed and several nice |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 9 | features have been added. This file mentions all the new items and changes to |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 10 | existing features since Vim 7.4. The patches up to Vim 7.4 can be found here: |
| 11 | |vim-7.4|. |
| 12 | |
| 13 | Use this command to see the full version and features information of the Vim |
| 14 | program you are using: > |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 15 | :version |
| 16 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 17 | NEW FEATURES |new-8| |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 18 | Vim script enhancements |new-vim-script-8| |
| 19 | Various new items |new-items-8| |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 20 | |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 21 | INCOMPATIBLE CHANGES |incompatible-8| |
| 22 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 23 | IMPROVEMENTS |improvements-8| |
| 24 | |
| 25 | COMPILE TIME CHANGES |compile-changes-8| |
| 26 | |
| 27 | PATCHES |patches-8| |
| 28 | |
| 29 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 30 | See |vi_diff.txt| for an overview of differences between Vi and Vim 8.0. |
| 31 | See |version4.txt|, |version5.txt|, |version6.txt| and |version7.txt| for |
| 32 | differences between other versions. |
| 33 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 34 | ============================================================================== |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 35 | NEW FEATURES *new-8* |
| 36 | |
Bram Moolenaar | bb76f24 | 2016-09-12 14:24:39 +0200 | [diff] [blame] | 37 | First an overview of the more interesting new features. A comprehensive list |
| 38 | is below. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 39 | |
| 40 | |
| 41 | Asynchronous I/O support, channels ~ |
| 42 | |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 43 | Vim can now exchange messages with other processes in the background. This |
| 44 | makes it possible to have servers do work and send back the results to Vim. |
| 45 | See |channel-demo| for an example, this shows communicating with a Python |
| 46 | server. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 47 | |
| 48 | Closely related to channels is JSON support. JSON is widely supported and can |
| 49 | easily be used for inter-process communication, allowing for writing a server |
| 50 | in any language. The functions to use are |json_encode()| and |json_decode()|. |
| 51 | |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 52 | This makes it possible to build very complex plugins, written in any language |
| 53 | and running in a separate process. |
| 54 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 55 | |
| 56 | Jobs ~ |
| 57 | |
| 58 | Vim can now start a job, communicate with it and stop it. This is very useful |
| 59 | to run a process for completion, syntax checking, etc. Channels are used to |
| 60 | communicate with the job. Jobs can also read from or write to a buffer or a |
| 61 | file. See |job_start()|. |
| 62 | |
| 63 | |
| 64 | Timers ~ |
| 65 | |
| 66 | Also asynchronous are timers. They can fire once or repeatedly and invoke a |
| 67 | function to do any work. For example: > |
| 68 | let tempTimer = timer_start(4000, 'CheckTemp') |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 69 | This will call the CheckTemp() function four seconds (4000 milli seconds) |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 70 | later. See |timer_start()|. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 71 | |
| 72 | |
| 73 | Partials ~ |
| 74 | |
| 75 | Vim already had a Funcref, a reference to a function. A partial also refers |
| 76 | to a function, and additionally binds arguments and/or a dictionary. This is |
| 77 | especially useful for callbacks on channels and timers. E.g., for the timer |
| 78 | example above, to pass an argument to the function: > |
| 79 | let tempTimer = timer_start(4000, function('CheckTemp', ['out'])) |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 80 | This will call CheckTemp('out') four seconds later. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 81 | |
| 82 | |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 83 | Lambda and Closure ~ |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 84 | |
| 85 | A short way to create a function has been added: {args -> expr}. See |lambda|. |
| 86 | This is useful for functions such as `filter()` and `map()`, which now also |
| 87 | accept a function argument. Example: > |
| 88 | :call filter(mylist, {idx, val -> val > 20}) |
| 89 | |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 90 | A lambda can use variables defined in the scope where the lambda is defined. |
| 91 | This is usually called a |closure|. |
| 92 | |
| 93 | User defined functions can also be a closure by adding the "closure" argument |
| 94 | |:func-closure|. |
| 95 | |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 96 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 97 | Packages ~ |
| 98 | |
Bram Moolenaar | aa3b15d | 2016-04-21 08:53:19 +0200 | [diff] [blame] | 99 | Plugins keep growing and more of them are available than ever before. To keep |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 100 | the collection of plugins manageable package support has been added. This is |
| 101 | a convenient way to get one or more plugins, drop them in a directory and |
| 102 | possibly keep them updated. Vim will load them automatically, or only when |
| 103 | desired. See |packages|. |
| 104 | |
| 105 | |
| 106 | New style tests ~ |
| 107 | |
| 108 | This is for Vim developers. So far writing tests for Vim has not been easy. |
| 109 | Vim 8 adds assert functions and a framework to run tests. This makes it a lot |
Bram Moolenaar | 82af871 | 2016-06-04 20:20:29 +0200 | [diff] [blame] | 110 | simpler to write tests and keep them updated. Also new are several functions |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 111 | that are added specifically for testing. See |test-functions|. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 112 | |
| 113 | |
| 114 | Window IDs ~ |
| 115 | |
| 116 | Previously windows could only be accessed by their number. And every time a |
| 117 | window would open, close or move that number changes. Each window now has a |
Bram Moolenaar | 82af871 | 2016-06-04 20:20:29 +0200 | [diff] [blame] | 118 | unique ID, so that they are easy to find. See |win_getid()| and |win_id2win()|. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 119 | |
| 120 | |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 121 | Viminfo uses timestamps ~ |
| 122 | |
| 123 | Previously the information stored in viminfo was whatever the last Vim wrote |
| 124 | there. Now timestamps are used to always keep the most recent items. |
| 125 | See |viminfo-timestamp|. |
| 126 | |
| 127 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 128 | Wrapping lines with indent ~ |
| 129 | |
| 130 | The 'breakindent' option has been added to be able to wrap lines without |
| 131 | changing the amount of indent. |
| 132 | |
| 133 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 134 | Windows: DirectX support ~ |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 135 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 136 | This adds the 'renderoptions' option to allow for switching on DirectX |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 137 | (DirectWrite) support on MS-Windows. |
| 138 | |
| 139 | |
| 140 | GTK+ 3 support ~ |
| 141 | |
Bram Moolenaar | e4a3bcf | 2016-08-26 19:52:37 +0200 | [diff] [blame] | 142 | The GTK+ 3 GUI works just like GTK+ 2 except for hardly noticeable technical |
| 143 | differences between them. Configure still chooses GTK+ 2 if both 2 and 3 are |
| 144 | available. See src/Makefile for how to use GTK+ 3 instead. See |
| 145 | |gui-x11-compiling| for other details. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 146 | |
| 147 | |
| 148 | Vim script enhancements *new-vim-script-8* |
| 149 | ----------------------- |
| 150 | |
Bram Moolenaar | aa3b15d | 2016-04-21 08:53:19 +0200 | [diff] [blame] | 151 | In Vim script the following types have been added: |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 152 | |
| 153 | |Special| |v:false|, |v:true|, |v:none| and |v:null| |
| 154 | |Channel| connection to another process for asynchronous I/O |
| 155 | |Job| process control |
| 156 | |
| 157 | Many functions and commands have been added to support the new types. |
| 158 | |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 159 | On some systems the numbers used in Vim script are now 64 bit. This can be |
| 160 | checked with the |+num64| feature. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 161 | |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 162 | Many items were added to support |new-style-testing|. |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 163 | |
Bram Moolenaar | 36f44c2 | 2016-08-28 18:17:20 +0200 | [diff] [blame] | 164 | printf() now accepts any type of argument for %s. It is converted to a string |
| 165 | like with string(). |
| 166 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 167 | |
| 168 | Various new items *new-items-8* |
| 169 | ----------------- |
| 170 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 171 | Visual mode commands: ~ |
| 172 | |
| 173 | |v_CTRL-A| CTRL-A add N to number in highlighted text |
| 174 | |v_CTRL-X| CTRL-X subtract N from number in highlighted text |
| 175 | |v_g_CTRL-A| g CTRL-A add N to number in highlighted text |
| 176 | |v_g_CTRL-X| g CTRL-X subtract N from number in highlighted text |
| 177 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 178 | |
| 179 | Insert mode commands: ~ |
| 180 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 181 | |i_CTRL-G_U| CTRL-G U don't break undo with next cursor movement |
| 182 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 183 | |
Bram Moolenaar | bc2eada | 2017-01-02 21:27:47 +0100 | [diff] [blame] | 184 | Cmdline mode commands: ~ |
| 185 | |
| 186 | |/_CTRL-G| CTRL-G move to the next match in 'incsearch' mode |
| 187 | |/_CTRL-T| CTRL-T move to the previous match in 'incsearch' mode |
| 188 | |
| 189 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 190 | Options: ~ |
| 191 | |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 192 | 'belloff' do not ring the bell for these reasons |
| 193 | 'breakindent' wrapped line repeats indent |
| 194 | 'breakindentopt' settings for 'breakindent'. |
| 195 | 'emoji' emoji characters are considered full width |
| 196 | 'fixendofline' make sure last line in file has <EOL> |
Bram Moolenaar | e4a3bcf | 2016-08-26 19:52:37 +0200 | [diff] [blame] | 197 | 'langremap' do apply 'langmap' to mapped characters |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 198 | 'luadll' name of the Lua dynamic library |
| 199 | 'packpath' list of directories used for packages |
| 200 | 'perldll' name of the Perl dynamic library |
| 201 | 'pythondll' name of the Python 2 dynamic library |
| 202 | 'pythonthreedll' name of the Python 3 dynamic library |
| 203 | 'renderoptions' options for text rendering on Windows |
| 204 | 'rubydll' name of the Ruby dynamic library |
Bram Moolenaar | 214641f | 2017-03-05 17:04:09 +0100 | [diff] [blame] | 205 | 'signcolumn' when to display the sign column |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 206 | 'tagcase' how to handle case when searching in tags files |
| 207 | 'tcldll' name of the Tcl dynamic library |
| 208 | 'termguicolors' use GUI colors for the terminal |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 209 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 210 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 211 | Ex commands: ~ |
| 212 | |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 213 | |:cbottom| scroll to the bottom of the quickfix window |
| 214 | |:cdo| execute command in each valid error list entry |
| 215 | |:cfdo| execute command in each file in error list |
| 216 | |:chistory| display quickfix list stack |
| 217 | |:clearjumps| clear the jump list |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 218 | |:filter| only output lines that (do not) match a pattern |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 219 | |:helpclose| close one help window |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 220 | |:lbottom| scroll to the bottom of the location window |
| 221 | |:ldo| execute command in valid location list entries |
| 222 | |:lfdo| execute command in each file in location list |
| 223 | |:lhistory| display location list stack |
| 224 | |:noswapfile| following commands don't create a swap file |
| 225 | |:packadd| add a plugin from 'packpath' |
| 226 | |:packloadall| load all packages under 'packpath' |
| 227 | |:smile| make the user happy |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 228 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 229 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 230 | Ex command modifiers: ~ |
| 231 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 232 | |:keeppatterns| following command keeps search pattern history |
Bram Moolenaar | 369b6f5 | 2017-01-17 12:22:32 +0100 | [diff] [blame] | 233 | |<mods>| supply command modifiers to user defined commands |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 234 | |
| 235 | |
| 236 | New and extended functions: ~ |
| 237 | |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 238 | |arglistid()| get id of the argument list |
| 239 | |assert_equal()| assert that two expressions values are equal |
| 240 | |assert_exception()| assert that a command throws an exception |
| 241 | |assert_fails()| assert that a function call fails |
| 242 | |assert_false()| assert that an expression is false |
| 243 | |assert_inrange()| assert that an expression is inside a range |
| 244 | |assert_match()| assert that a pattern matches the value |
| 245 | |assert_notequal()| assert that two expressions values are not equal |
| 246 | |assert_notmatch()| assert that a pattern does not match the value |
| 247 | |assert_true()| assert that an expression is true |
| 248 | |bufwinid()| get the window ID of a specific buffer |
| 249 | |byteidxcomp()| like byteidx() but count composing characters |
| 250 | |ch_close()| close a channel |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 251 | |ch_close_in()| close the in part of a channel |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 252 | |ch_evalexpr()| evaluates an expression over channel |
| 253 | |ch_evalraw()| evaluates a raw string over channel |
| 254 | |ch_getbufnr()| get the buffer number of a channel |
| 255 | |ch_getjob()| get the job associated with a channel |
| 256 | |ch_info()| get channel information |
| 257 | |ch_log()| write a message in the channel log file |
| 258 | |ch_logfile()| set the channel log file |
| 259 | |ch_open()| open a channel |
| 260 | |ch_read()| read a message from a channel |
| 261 | |ch_readraw()| read a raw message from a channel |
| 262 | |ch_sendexpr()| send a JSON message over a channel |
| 263 | |ch_sendraw()| send a raw message over a channel |
| 264 | |ch_setoptions()| set the options for a channel |
| 265 | |ch_status()| get status of a channel |
| 266 | |execute()| execute an Ex command and get the output |
| 267 | |exepath()| full path of an executable program |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 268 | |funcref()| return a reference to function {name} |
| 269 | |getbufinfo()| get a list with buffer information |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 270 | |getcharsearch()| return character search information |
| 271 | |getcmdwintype()| return the current command-line window type |
| 272 | |getcompletion()| return a list of command-line completion matches |
| 273 | |getcurpos()| get position of the cursor |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 274 | |gettabinfo()| get a list with tab page information |
| 275 | |getwininfo()| get a list with window information |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 276 | |glob2regpat()| convert a glob pattern into a search pattern |
| 277 | |isnan()| check for not a number |
| 278 | |job_getchannel()| get the channel used by a job |
| 279 | |job_info()| get information about a job |
| 280 | |job_setoptions()| set options for a job |
| 281 | |job_start()| start a job |
| 282 | |job_status()| get the status of a job |
| 283 | |job_stop()| stop a job |
| 284 | |js_decode()| decode a JSON string to Vim types |
| 285 | |js_encode()| encode an expression to a JSON string |
| 286 | |json_decode()| decode a JSON string to Vim types |
| 287 | |json_encode()| encode an expression to a JSON string |
| 288 | |matchaddpos()| define a list of positions to highlight |
| 289 | |matchstrpos()| match and positions of a pattern in a string |
| 290 | |perleval()| evaluate Perl expression |
| 291 | |reltimefloat()| convert reltime() result to a Float |
| 292 | |setcharsearch()| set character search information |
| 293 | |setfperm()| set the permissions of a file |
| 294 | |strcharpart()| get part of a string using char index |
| 295 | |strgetchar()| get character from a string using char index |
| 296 | |systemlist()| get the result of a shell command as a list |
| 297 | |test_alloc_fail()| make memory allocation fail |
| 298 | |test_autochdir()| test 'autochdir' functionality |
Bram Moolenaar | 036986f | 2017-03-16 17:41:02 +0100 | [diff] [blame] | 299 | test_disable_char_avail() test without typeahead (removed later) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 300 | |test_garbagecollect_now()| free memory right now |
| 301 | |test_null_channel()| return a null Channel |
| 302 | |test_null_dict()| return a null Dict |
| 303 | |test_null_job()| return a null Job |
| 304 | |test_null_list()| return a null List |
| 305 | |test_null_partial()| return a null Partial function |
| 306 | |test_null_string()| return a null String |
| 307 | |test_settime()| set the time Vim uses internally |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 308 | |timer_info()| get information about timers |
| 309 | |timer_pause()| pause or unpause a timer |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 310 | |timer_start()| create a timer |
| 311 | |timer_stop()| stop a timer |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 312 | |timer_stopall()| stop all timers |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 313 | |uniq()| remove copies of repeated adjacent items |
| 314 | |win_findbuf()| find windows containing a buffer |
| 315 | |win_getid()| get window ID of a window |
| 316 | |win_gotoid()| go to window with ID |
| 317 | |win_id2tabwin()| get tab and window nr from window ID |
| 318 | |win_id2win()| get window nr from window ID |
| 319 | |wordcount()| get byte/word/char count of buffer |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 320 | |
| 321 | |
| 322 | New Vim variables: ~ |
| 323 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 324 | |v:beval_winid| Window ID of the window where the mouse pointer is |
| 325 | |v:completed_item| complete items for the most recently completed word |
| 326 | |v:errors| errors found by assert functions |
| 327 | |v:false| a Number with value zero |
| 328 | |v:hlsearch| indicates whether search highlighting is on |
| 329 | |v:mouse_winid| Window ID for a mouse click obtained with |getchar()| |
| 330 | |v:none| an empty String, used for JSON |
| 331 | |v:null| an empty String, used for JSON |
| 332 | |v:option_new| new value of the option, used by |OptionSet| |
| 333 | |v:option_old| old value of the option, used by |OptionSet| |
| 334 | |v:option_type| scope of the set command, used by |OptionSet| |
| 335 | |v:progpath| the command with which Vim was invoked |
| 336 | |v:t_bool| value of Boolean type |
| 337 | |v:t_channel| value of Channel type |
| 338 | |v:t_dict| value of Dictionary type |
| 339 | |v:t_float| value of Float type |
| 340 | |v:t_func| value of Funcref type |
| 341 | |v:t_job| value of Job type |
| 342 | |v:t_list| value of List type |
| 343 | |v:t_none| value of None type |
| 344 | |v:t_number| value of Number type |
| 345 | |v:t_string| value of String type |
| 346 | |v:testing| must be set before using `test_garbagecollect_now()` |
| 347 | |v:true| a Number with value one |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 348 | |v:vim_did_enter| set just before VimEnter autocommands are triggered |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 349 | |
| 350 | |
| 351 | New autocommand events: ~ |
| 352 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 353 | |CmdUndefined| a user command is used but it isn't defined |
| 354 | |OptionSet| after setting any option |
| 355 | |TabClosed| after closing a tab page |
| 356 | |TabNew| after creating a new tab page |
| 357 | |TextChangedI| after a change was made to the text in Insert mode |
| 358 | |TextChanged| after a change was made to the text in Normal mode |
| 359 | |WinNew| after creating a new window |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 360 | |
| 361 | |
| 362 | New highlight groups: ~ |
| 363 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 364 | EndOfBuffer filler lines (~) after the last line in the buffer. |
| 365 | |hl-EndOfBuffer| |
| 366 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 367 | |
| 368 | New items in search patterns: ~ |
| 369 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 370 | |/\%C| \%C match any composing characters |
| 371 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 372 | |
| 373 | New Syntax/Indent/FTplugin files: ~ |
| 374 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 375 | AVR Assembler (Avra) syntax |
| 376 | Arduino syntax |
| 377 | Bazel syntax and indent and ftplugin |
| 378 | Dockerfile syntax and ftplugin |
| 379 | Eiffel ftplugin |
| 380 | Euphoria 3 and 4 syntax |
| 381 | Go syntax and indent and ftplugin |
| 382 | Godoc syntax |
| 383 | Groovy ftplugin |
| 384 | HGcommit ftplugin |
| 385 | Hog indent and ftplugin |
| 386 | Innovation Data Processing upstream.pt syntax |
| 387 | J syntax and indent and ftplugin |
| 388 | Jproperties ftplugin |
| 389 | Json syntax and indent and ftplugin |
| 390 | Kivy syntax |
| 391 | Less syntax and indent |
| 392 | Mix syntax |
| 393 | Motorola S-Record syntax |
| 394 | R ftplugin |
| 395 | ReStructuredText syntax and indent and ftplugin |
| 396 | Registry ftplugin |
| 397 | Rhelp indent and ftplugin |
| 398 | Rmd (markdown with R code chunks) syntax and indent |
| 399 | Rmd ftplugin |
| 400 | Rnoweb ftplugin |
| 401 | Rnoweb indent |
Bram Moolenaar | e4a3bcf | 2016-08-26 19:52:37 +0200 | [diff] [blame] | 402 | Scala syntax and indent and ftplugin |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 403 | SystemVerilog syntax and indent and ftplugin |
| 404 | Systemd syntax and indent and ftplugin |
| 405 | Teraterm (TTL) syntax and indent |
| 406 | Text ftplugin |
| 407 | Vroom syntax and indent and ftplugin |
| 408 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 409 | |
| 410 | New Keymaps: ~ |
| 411 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 412 | Armenian eastern and western |
| 413 | Russian jcukenwintype |
| 414 | Vietnamese telex and vni |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 415 | |
| 416 | ============================================================================== |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 417 | INCOMPATIBLE CHANGES *incompatible-8* |
| 418 | |
| 419 | These changes are incompatible with previous releases. Check this list if you |
| 420 | run into a problem when upgrading from Vim 7.4 to 8.0. |
| 421 | |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 422 | |
| 423 | Better defaults without a vimrc ~ |
| 424 | |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 425 | When no vimrc file is found, the |defaults.vim| script is loaded to set more |
| 426 | useful default values for new users. That includes setting 'nocompatible'. |
| 427 | Thus Vim no longer starts up in Vi compatible mode. If you do want that, |
| 428 | either create a .vimrc file that does "set compatible" or start Vim with |
Bram Moolenaar | 036986f | 2017-03-16 17:41:02 +0100 | [diff] [blame] | 429 | "vim -C". |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 430 | |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 431 | |
| 432 | Support removed ~ |
| 433 | |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 434 | The support for MS-DOS has been removed. It hasn't been working for a while |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 435 | (Vim doesn't fit in memory) and removing it cleans up the code quite a bit. |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 436 | |
| 437 | The support for Windows 16 bit (Windows 95 and older) has been removed. |
| 438 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 439 | The support for OS/2 has been removed. It probably hasn't been working for a |
| 440 | while since nobody uses it. |
| 441 | |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 442 | The SNiFF+ support has been removed. |
| 443 | |
| 444 | |
| 445 | Minor incompatibilities: ~ |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 446 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 447 | Probably... |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 448 | |
| 449 | ============================================================================== |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 450 | IMPROVEMENTS *improvements-8* |
| 451 | |
| 452 | The existing blowfish encryption turned out to be much weaker than it was |
| 453 | supposed to be. The blowfish2 method has been added to fix that. Note that |
| 454 | this still isn't a state-of-the-art encryption, but good enough for most |
| 455 | usage. See 'cryptmethod'. |
| 456 | |
Bram Moolenaar | 36f44c2 | 2016-08-28 18:17:20 +0200 | [diff] [blame] | 457 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 458 | ============================================================================== |
| 459 | COMPILE TIME CHANGES *compile-changes-8* |
| 460 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 461 | The Vim repository was moved from Google code to github, since Google code |
| 462 | was shut down. It can now be found at https://github.com/vim/vim. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 463 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 464 | Functions now use ANSI-C declarations. At least a C-89 compatible compiler is |
| 465 | required. |
| 466 | |
| 467 | The +visual feature is now always included. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 468 | |
| 469 | ============================================================================== |
| 470 | PATCHES *patches-8* *bug-fixes-8* |
| 471 | |
| 472 | The list of patches that got included since 7.4.0. This includes all the new |
| 473 | features, but does not include runtime file changes (syntax, indent, help, |
| 474 | etc.) |
| 475 | |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 476 | Patch 7.4.001 |
| 477 | Problem: Character classes such as [a-z] do not react to 'ignorecase'. |
| 478 | Breaks man page highlighting. (Mario Grgic) |
| 479 | Solution: Add separate items for classes that react to 'ignorecase'. Clean |
| 480 | up logic handling character classes. Add more tests. |
| 481 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 482 | |
| 483 | Patch 7.4.002 |
| 484 | Problem: Pattern with two alternative look-behind matches does not match. |
| 485 | (Amadeus Demarzi) |
| 486 | Solution: When comparing PIMs also compare their state ID to see if they are |
| 487 | different. |
| 488 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 489 | |
| 490 | Patch 7.4.003 |
| 491 | Problem: Memory access error in Ruby syntax highlighting. (Christopher Chow) |
| 492 | Solution: Refresh stale pointer. (James McCoy) |
| 493 | Files: src/regexp_nfa.c |
| 494 | |
| 495 | Patch 7.4.004 |
| 496 | Problem: When closing a window fails ":bwipe" may hang. |
| 497 | Solution: Let win_close() return FAIL and break out of the loop. |
| 498 | Files: src/window.c, src/proto/window.pro, src/buffer.c |
| 499 | |
| 500 | Patch 7.4.005 |
| 501 | Problem: Using "vaB" while 'virtualedit' is set selects the wrong area. |
| 502 | (Dimitar Dimitrov) |
| 503 | Solution: Reset coladd when finding a match. |
| 504 | Files: src/search.c |
| 505 | |
| 506 | Patch 7.4.006 |
| 507 | Problem: mkdir("foo/bar/", "p") gives an error message. (David Barnett) |
| 508 | Solution: Remove the trailing slash. (lcd) |
| 509 | Files: src/eval.c |
| 510 | |
| 511 | Patch 7.4.007 |
| 512 | Problem: Creating a preview window on startup leaves the screen layout in a |
| 513 | messed up state. (Marius Gedminas) |
| 514 | Solution: Don't change firstwin. (Christian Brabandt) |
| 515 | Files: src/main.c |
| 516 | |
| 517 | Patch 7.4.008 |
| 518 | Problem: New regexp engine can't be interrupted. |
| 519 | Solution: Check for CTRL-C pressed. (Yasuhiro Matsumoto) |
| 520 | Files: src/regexp_nfa.c, src/regexp.c |
| 521 | |
| 522 | Patch 7.4.009 |
| 523 | Problem: When a file was not decrypted (yet), writing it may destroy the |
| 524 | contents. |
| 525 | Solution: Mark the file as readonly until decryption was done. (Christian |
| 526 | Brabandt) |
| 527 | Files: src/fileio.c |
| 528 | |
| 529 | Patch 7.4.010 (after 7.4.006) |
| 530 | Problem: Crash with invalid argument to mkdir(). |
| 531 | Solution: Check for empty string. (lcd47) |
| 532 | Files: src/eval.c |
| 533 | |
| 534 | Patch 7.4.011 |
| 535 | Problem: Cannot find out if "acl" and "xpm" features are supported. |
| 536 | Solution: Add "acl" and "xpm" to the list of features. (Ken Takata) |
| 537 | Files: src/eval.c, src/version.c |
| 538 | |
| 539 | Patch 7.4.012 |
| 540 | Problem: MS-Windows: resolving shortcut does not work properly with |
| 541 | multi-byte characters. |
| 542 | Solution: Use wide system functions. (Ken Takata) |
| 543 | Files: src/os_mswin.c |
| 544 | |
| 545 | Patch 7.4.013 |
| 546 | Problem: MS-Windows: File name buffer too small for utf-8. |
| 547 | Solution: Use character count instead of byte count. (Ken Takata) |
| 548 | Files: src/os_mswin.c |
| 549 | |
| 550 | Patch 7.4.014 |
| 551 | Problem: MS-Windows: check for writing to device does not work. |
| 552 | Solution: Fix #ifdefs. (Ken Takata) |
| 553 | Files: src/fileio.c |
| 554 | |
| 555 | Patch 7.4.015 |
| 556 | Problem: MS-Windows: Detecting node type does not work for multi-byte |
| 557 | characters. |
| 558 | Solution: Use wide character function when needed. (Ken Takata) |
| 559 | Files: src/os_win32.c |
| 560 | |
| 561 | Patch 7.4.016 |
| 562 | Problem: MS-Windows: File name case can be wrong. |
| 563 | Solution: Add fname_casew(). (Ken Takata) |
| 564 | Files: src/os_win32.c |
| 565 | |
| 566 | Patch 7.4.017 |
| 567 | Problem: ":help !!" does not find the "!!" tag in the help file. (Ben |
| 568 | Fritz) |
| 569 | Solution: When reading the start of the tags file do parse lines that are |
| 570 | not header lines. |
| 571 | Files: src/tag.c |
| 572 | |
| 573 | Patch 7.4.018 |
| 574 | Problem: When completing item becomes unselected. (Shougo Matsu) |
| 575 | Solution: Revert patch 7.3.1269. |
| 576 | Files: src/edit.c |
| 577 | |
| 578 | Patch 7.4.019 |
| 579 | Problem: MS-Windows: File name completion doesn't work properly with |
| 580 | Chinese characters. (Yue Wu) |
| 581 | Solution: Take care of multi-byte characters when looking for the start of |
| 582 | the file name. (Ken Takata) |
| 583 | Files: src/edit.c |
| 584 | |
| 585 | Patch 7.4.020 |
| 586 | Problem: NFA engine matches too much with \@>. (John McGowan) |
| 587 | Solution: When a whole pattern match is found stop searching. |
| 588 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 589 | |
| 590 | Patch 7.4.021 |
| 591 | Problem: NFA regexp: Using \ze in one branch which doesn't match may cause |
| 592 | end of another branch to be wrong. (William Fugh) |
| 593 | Solution: Set end position if it wasn't set yet. |
| 594 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 595 | |
| 596 | Patch 7.4.022 |
| 597 | Problem: Deadlock while exiting, because of allocating memory. |
| 598 | Solution: Do not use gettext() in deathtrap(). (James McCoy) |
| 599 | Files: src/os_unix.c, src/misc1.c |
| 600 | |
| 601 | Patch 7.4.023 |
| 602 | Problem: Compiler warning on 64 bit windows. |
| 603 | Solution: Add type cast. (Mike Williams) |
| 604 | Files: src/edit.c |
| 605 | |
| 606 | Patch 7.4.024 |
| 607 | Problem: When root edits a file the undo file is owned by root while the |
| 608 | edited file may be owned by another user, which is not allowed. |
| 609 | (cac2s) |
| 610 | Solution: Accept an undo file owned by the current user. |
| 611 | Files: src/undo.c |
| 612 | |
| 613 | Patch 7.4.025 (after 7.4.019) |
| 614 | Problem: Reading before start of a string. |
| 615 | Solution: Do not call mb_ptr_back() at start of a string. (Dominique Pelle) |
| 616 | Files: src/edit.c |
| 617 | |
| 618 | Patch 7.4.026 |
| 619 | Problem: Clang warning for int shift overflow. |
| 620 | Solution: Use unsigned and cast back to int. (Dominique Pelle) |
| 621 | Files: src/misc2.c |
| 622 | |
| 623 | Patch 7.4.027 (after 7.4.025) |
| 624 | Problem: Another valgrind error when using CTRL-X CTRL-F at the start of |
| 625 | the line. (Dominique Pelle) |
| 626 | Solution: Don't call mb_ptr_back() at the start of the line. Add a test. |
| 627 | Files: src/edit.c, src/testdir/test32.in |
| 628 | |
| 629 | Patch 7.4.028 |
| 630 | Problem: Equivalence classes are not working for multi-byte characters. |
| 631 | Solution: Copy the rules from the old to the new regexp engine. Add a test |
| 632 | to check both engines. |
| 633 | Files: src/regexp_nfa.c, src/testdir/test44.in, src/testdir/test99.in, |
| 634 | src/testdir/test99.ok, src/testdir/Make_amiga.mak, |
| 635 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 636 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 637 | src/testdir/Makefile |
| 638 | |
| 639 | Patch 7.4.029 |
| 640 | Problem: An error in a pattern is reported twice. |
| 641 | Solution: Remove the retry with the backtracking engine, it won't work. |
| 642 | Files: src/regexp.c |
| 643 | |
| 644 | Patch 7.4.030 |
| 645 | Problem: The -mno-cygwin argument is no longer supported by Cygwin. |
| 646 | Solution: Remove the arguments. (Steve Hall) |
| 647 | Files: src/GvimExt/Make_cyg.mak, src/Make_cyg.mak, src/xxd/Make_cyg.mak |
| 648 | |
| 649 | Patch 7.4.031 |
| 650 | Problem: ":diffoff!" resets options even when 'diff' is not set. (Charles |
| 651 | Cooper) |
| 652 | Solution: Only resets related options in a window where 'diff' is set. |
| 653 | Files: src/diff.c |
| 654 | |
| 655 | Patch 7.4.032 |
| 656 | Problem: NFA engine does not match the NUL character. (Jonathon Merz) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 657 | Solution: Use 0x0a instead of NUL. (Christian Brabandt) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 658 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 659 | |
| 660 | Patch 7.4.033 |
| 661 | Problem: When the terminal has only 20 lines test 92 and 93 overwrite the |
| 662 | input file. |
| 663 | Solution: Explicitly write test.out. Check that the terminal is large enough |
| 664 | to run the tests. (Hirohito Higashi) |
| 665 | Files: src/testdir/test92.in, src/testdir/test93.in, |
| 666 | src/testdir/test1.in, src/testdir/Makefile |
| 667 | |
| 668 | Patch 7.4.034 |
| 669 | Problem: Using "p" in Visual block mode only changes the first line. |
| 670 | Solution: Repeat the put in all text in the block. (Christian Brabandt) |
| 671 | Files: runtime/doc/change.txt, src/ops.c, src/normal.c, |
| 672 | src/testdir/test20.in, src/testdir/test20.ok |
| 673 | |
| 674 | Patch 7.4.035 |
| 675 | Problem: MS-Windows: The mouse pointer flickers when going from command |
| 676 | line mode to Normal mode. |
| 677 | Solution: Check for WM_NCMOUSEMOVE. (Ken Takata) |
| 678 | Files: src/gui_w48.c |
| 679 | |
| 680 | Patch 7.4.036 |
| 681 | Problem: NFA engine does not capture group correctly when using \@>. (ZyX) |
| 682 | Solution: Copy submatches before doing the recursive match. |
| 683 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 684 | |
| 685 | Patch 7.4.037 |
| 686 | Problem: Using "\ze" in a sub-pattern does not result in the end of the |
| 687 | match to be set. (Axel Bender) |
| 688 | Solution: Copy the end of match position when a recursive match was |
| 689 | successful. |
| 690 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 691 | |
| 692 | Patch 7.4.038 |
| 693 | Problem: Using "zw" and "zg" when 'spell' is off give a confusing error |
| 694 | message. (Gary Johnson) |
| 695 | Solution: Ignore the error when locating the word. Explicitly mention what |
| 696 | word was added. (Christian Brabandt) |
| 697 | Files: src/normal.c, src/spell.c |
| 698 | |
| 699 | Patch 7.4.039 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 700 | Problem: MS-Windows: MSVC10 and earlier can't handle symlinks to a |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 701 | directory properly. |
| 702 | Solution: Add stat_symlink_aware() and wstat_symlink_aware(). (Ken Takata) |
| 703 | Files: src/os_mswin.c, src/os_win32.c, src/os_win32.h |
| 704 | |
| 705 | Patch 7.4.040 |
| 706 | Problem: Valgrind error on exit when a script-local variable holds a |
| 707 | reference to the scope of another script. |
| 708 | Solution: First clear all variables, then free the scopes. (ZyX) |
| 709 | Files: src/eval.c |
| 710 | |
| 711 | Patch 7.4.041 (after 7.4.034) |
| 712 | Problem: Visual selection does not remain after being copied over. (Axel |
| 713 | Bender) |
| 714 | Solution: Move when VIsual_active is reset. (Christian Brabandt) |
| 715 | Files: src/ops.c |
| 716 | |
| 717 | Patch 7.4.042 |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 718 | Problem: When using ":setlocal" for 'spell' and 'spelllang' then :spelldump |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 719 | doesn't work. (Dimitar Dimitrov) |
| 720 | Solution: Copy the option variables to the new window used to show the dump. |
| 721 | (Christian Brabandt) |
| 722 | Files: src/spell.c |
| 723 | |
| 724 | Patch 7.4.043 |
| 725 | Problem: VMS can't handle long function names. |
| 726 | Solution: Shorten may_req_ambiguous_character_width. (Samuel Ferencik) |
| 727 | Files: src/main.c, src/term.c, src/proto/term.pro |
| 728 | |
| 729 | |
| 730 | Patch 7.4.044 (after 7.4.039) |
| 731 | Problem: Can't build with old MSVC. (Wang Shoulin) |
| 732 | Solution: Define OPEN_OH_ARGTYPE instead of using intptr_t directly. |
| 733 | Files: src/os_mswin.c |
| 734 | |
| 735 | Patch 7.4.045 |
| 736 | Problem: substitute() does not work properly when the pattern starts with |
| 737 | "\ze". |
| 738 | Solution: Detect an empty match. (Christian Brabandt) |
| 739 | Files: src/eval.c, src/testdir/test80.in, src/testdir/test80.ok |
| 740 | |
| 741 | Patch 7.4.046 |
| 742 | Problem: Can't use Tcl 8.6. |
| 743 | Solution: Change how Tcl_FindExecutable is called. (Jan Nijtmans) |
| 744 | Files: src/if_tcl.c |
| 745 | |
| 746 | Patch 7.4.047 |
| 747 | Problem: When using input() in a function invoked by a mapping it doesn't |
| 748 | work. |
| 749 | Solution: Temporarily reset ex_normal_busy. (Yasuhiro Matsumoto) |
| 750 | Files: src/eval.c |
| 751 | |
| 752 | Patch 7.4.048 |
| 753 | Problem: Recent clang version complains about -fno-strength-reduce. |
| 754 | Solution: Add a configure check for the clang version. (Kazunobu Kuriyama) |
| 755 | Files: src/configure.in, src/auto/configure |
| 756 | |
| 757 | Patch 7.4.049 |
| 758 | Problem: In Ex mode, when line numbers are enabled the substitute prompt is |
| 759 | wrong. |
| 760 | Solution: Adjust for the line number size. (Benoit Pierre) |
| 761 | Files: src/ex_cmds.c |
| 762 | |
| 763 | Patch 7.4.050 |
| 764 | Problem: "gn" selects too much for the pattern "\d" when there are two |
| 765 | lines with a single digit. (Ryan Carney) |
| 766 | Solution: Adjust the logic of is_one_char(). (Christian Brabandt) |
| 767 | Files: src/search.c, src/testdir/test53.in, src/testdir/test53.ok |
| 768 | |
| 769 | Patch 7.4.051 |
| 770 | Problem: Syntax highlighting a Yaml file causes a crash. (Blake Preston) |
| 771 | Solution: Copy the pim structure before calling addstate() to avoid it |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 772 | becoming invalid when the state list is reallocated. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 773 | Files: src/regexp_nfa.c |
| 774 | |
| 775 | Patch 7.4.052 |
| 776 | Problem: With 'fo' set to "a2" inserting a space in the first column may |
| 777 | cause the cursor to jump to the previous line. |
| 778 | Solution: Handle the case when there is no comment leader properly. (Tor |
| 779 | Perkins) Also fix that cursor is in the wrong place when spaces |
| 780 | get replaced with a Tab. |
| 781 | Files: src/misc1.c, src/ops.c, src/testdir/test68.in, |
| 782 | src/testdir/test68.ok |
| 783 | |
| 784 | Patch 7.4.053 |
| 785 | Problem: Test75 has a wrong header. (ZyX) |
| 786 | Solution: Fix the text and remove leading ". |
| 787 | Files: src/testdir/test75.in |
| 788 | |
| 789 | Patch 7.4.054 |
| 790 | Problem: Reading past end of the 'stl' string. |
| 791 | Solution: Don't increment pointer when already at the NUL. (Christian |
| 792 | Brabandt) |
| 793 | Files: src/buffer.c |
| 794 | |
| 795 | Patch 7.4.055 |
| 796 | Problem: Mac: Where availability macros are defined depends on the system. |
| 797 | Solution: Add a configure check. (Felix Bünemann) |
| 798 | Files: src/config.h.in, src/configure.in, src/auto/configure, |
| 799 | src/os_mac.h |
| 800 | |
| 801 | Patch 7.4.056 |
| 802 | Problem: Mac: Compilation problem with OS X 10.9 Mavericks. |
| 803 | Solution: Include AvailabilityMacros.h when available. (Kazunobu Kuriyama) |
| 804 | Files: src/os_unix.c |
| 805 | |
| 806 | Patch 7.4.057 |
| 807 | Problem: byteidx() does not work for composing characters. |
| 808 | Solution: Add byteidxcomp(). |
| 809 | Files: src/eval.c, src/testdir/test69.in, src/testdir/test69.ok, |
| 810 | runtime/doc/eval.txt |
| 811 | |
| 812 | Patch 7.4.058 |
| 813 | Problem: Warnings on 64 bit Windows. |
| 814 | Solution: Add type casts. (Mike Williams) |
| 815 | Files: src/ops.c |
| 816 | |
| 817 | Patch 7.4.059 |
| 818 | Problem: set_last_cursor() may encounter w_buffer being NULL. (Matt |
| 819 | Mkaniaris) |
| 820 | Solution: Check for NULL. |
| 821 | Files: src/mark.c |
| 822 | |
| 823 | Patch 7.4.060 |
| 824 | Problem: Declaration has wrong return type for PyObject_SetAttrString(). |
| 825 | Solution: Use int instead of PyObject. (Andreas Schwab) |
| 826 | Files: src/if_python.c, src/if_python3.c |
| 827 | |
| 828 | Patch 7.4.061 (after 7.4.055 and 7.4.056) |
| 829 | Problem: Availability macros configure check in wrong place. |
| 830 | Solution: Also check when not using Darwin. Remove version check. |
| 831 | Files: src/configure.in, src/auto/configure, src/os_unix.c |
| 832 | |
| 833 | Patch 7.4.062 (after 7.4.061) |
| 834 | Problem: Configure check for AvailabilityMacros.h is wrong. |
| 835 | Solution: Use AC_CHECK_HEADERS(). |
| 836 | Files: src/configure.in, src/auto/configure |
| 837 | |
| 838 | Patch 7.4.063 |
| 839 | Problem: Crash when using invalid key in Python dictionary. |
| 840 | Solution: Check for object to be NULL. Add tests. (ZyX) |
| 841 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok, |
| 842 | src/testdir/test87.in, src/testdir/test87.ok |
| 843 | |
| 844 | Patch 7.4.064 |
| 845 | Problem: When replacing a character in Visual block mode, entering a CR |
| 846 | does not cause a repeated line break. |
| 847 | Solution: Recognize the situation and repeat the line break. (Christian |
| 848 | Brabandt) |
| 849 | Files: src/normal.c, src/ops.c, src/testdir/test39.in, |
| 850 | src/testdir/test39.ok |
| 851 | |
| 852 | Patch 7.4.065 |
| 853 | Problem: When recording, the character typed at the hit-enter prompt is |
| 854 | recorded twice. (Urtica Dioica) |
| 855 | Solution: Avoid recording the character twice. (Christian Brabandt) |
| 856 | Files: src/message.c |
| 857 | |
| 858 | Patch 7.4.066 |
| 859 | Problem: MS-Windows: When there is a colon in the file name (sub-stream |
| 860 | feature) the swap file name is wrong. |
| 861 | Solution: Change the colon to "%". (Yasuhiro Matsumoto) |
| 862 | Files: src/fileio.c, src/memline.c, src/misc1.c, src/proto/misc1.pro |
| 863 | |
| 864 | Patch 7.4.067 |
| 865 | Problem: After inserting comment leader, CTRL-\ CTRL-O does move the |
| 866 | cursor. (Wiktor Ruben) |
| 867 | Solution: Avoid moving the cursor. (Christian Brabandt) |
| 868 | Files: src/edit.c |
| 869 | |
| 870 | Patch 7.4.068 |
| 871 | Problem: Cannot build Vim on Mac with non-Apple compilers. |
| 872 | Solution: Remove the -no-cpp-precomp flag. (Misty De Meo) |
| 873 | Files: src/configure.in, src/auto/configure, src/osdef.sh |
| 874 | |
| 875 | Patch 7.4.069 |
| 876 | Problem: Cannot right shift lines starting with #. |
| 877 | Solution: Allow the right shift when 'cino' contains #N with N > 0. |
| 878 | (Christian Brabandt) |
| 879 | Refactor parsing 'cino', store the values in the buffer. |
| 880 | Files: runtime/doc/indent.txt, src/buffer.c, src/edit.c, src/eval.c, |
| 881 | src/ex_getln.c, src/fold.c, src/misc1.c, src/ops.c, |
| 882 | src/proto/misc1.pro, src/proto/option.pro, src/structs.h, |
| 883 | src/option.c |
| 884 | |
| 885 | Patch 7.4.070 (after 7.4.069) |
| 886 | Problem: Can't compile with tiny features. (Tony Mechelynck) |
| 887 | Solution: Add #ifdef. |
| 888 | Files: src/buffer.c |
| 889 | |
| 890 | Patch 7.4.071 (after 7.4.069) |
| 891 | Problem: Passing limits around too often. |
| 892 | Solution: Use limits from buffer. |
| 893 | Files: src/edit.c, src/misc1.c, src/proto/misc1.pro |
| 894 | |
| 895 | Patch 7.4.072 |
| 896 | Problem: Crash when using Insert mode completion. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 897 | Solution: Avoid going past the end of pum_array. (idea by Francisco Lopes) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 898 | Files: src/popupmnu.c |
| 899 | |
| 900 | Patch 7.4.073 |
| 901 | Problem: Setting undolevels for one buffer changes undo in another. |
| 902 | Solution: Make 'undolevels' a global-local option. (Christian Brabandt) |
| 903 | Files: runtime/doc/options.txt, src/buffer.c, src/option.c, src/option.h |
| 904 | src/structs.h, src/undo.c |
| 905 | |
| 906 | Patch 7.4.074 |
| 907 | Problem: When undo'ing all changes and creating a new change the undo |
| 908 | structure is incorrect. (Christian Brabandt) |
| 909 | Solution: When deleting the branch starting at the old header, delete the |
| 910 | whole branch, not just the first entry. |
| 911 | Files: src/undo.c |
| 912 | |
| 913 | Patch 7.4.075 |
| 914 | Problem: Locally setting 'undolevels' is not tested. |
| 915 | Solution: Add a test. (Christian Brabandt) |
| 916 | Files: src/testdir/test100.in, src/testdir/test100.ok, |
| 917 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 918 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 919 | src/testdir/Make_vms.mms, src/testdir/Makefile, src/Makefile |
| 920 | |
| 921 | Patch 7.4.076 |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 922 | Problem: "cgn" does not wrap around the end of the file. (Dimitar Dimitrov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 923 | Solution: Restore 'wrapscan' earlier. (Christian Brabandt) |
| 924 | Files: src/search.c |
| 925 | |
| 926 | Patch 7.4.077 |
| 927 | Problem: DOS installer creates shortcut without a path, resulting in the |
| 928 | current directory to be C:\Windows\system32. |
| 929 | Solution: Use environment variables. |
| 930 | Files: src/dosinst.c |
| 931 | |
| 932 | Patch 7.4.078 |
| 933 | Problem: MSVC 2013 is not supported. |
| 934 | Solution: Recognize and support MSVC 2013. (Ed Brown) |
| 935 | Files: src/Make_mvc.mak |
| 936 | |
| 937 | Patch 7.4.079 |
| 938 | Problem: A script cannot detect whether 'hlsearch' highlighting is actually |
| 939 | displayed. |
| 940 | Solution: Add the "v:hlsearch" variable. (ZyX) |
| 941 | Files: src/eval.c, src/ex_docmd.c, |
| 942 | src/option.c, src/screen.c, src/search.c, src/tag.c, src/vim.h, |
| 943 | src/testdir/test101.in, src/testdir/test101.ok, |
| 944 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 945 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 946 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 947 | |
| 948 | Patch 7.4.080 (after 7.4.079) |
| 949 | Problem: Missing documentation for v:hlsearch. |
| 950 | Solution: Include the right file in the patch. |
| 951 | Files: runtime/doc/eval.txt |
| 952 | |
| 953 | Patch 7.4.081 (after 7.4.078) |
| 954 | Problem: Wrong logic when ANALYZE is "yes". |
| 955 | Solution: Use or instead of and. (KF Leong) |
| 956 | Files: src/Make_mvc.mak |
| 957 | |
| 958 | Patch 7.4.082 |
| 959 | Problem: Using "gf" in a changed buffer suggests adding "!", which is not |
| 960 | possible. (Tim Chase) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 961 | Solution: Pass a flag to check_changed() whether adding ! make sense. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 962 | Files: src/vim.h, src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/globals.h, |
| 963 | src/ex_cmds.c, src/ex_docmd.c |
| 964 | |
| 965 | Patch 7.4.083 |
| 966 | Problem: It's hard to avoid adding a used pattern to the search history. |
| 967 | Solution: Add the ":keeppatterns" modifier. (Christian Brabandt) |
| 968 | Files: runtime/doc/cmdline.txt, src/ex_cmds.h, src/ex_docmd.c, |
| 969 | src/ex_getln.c, src/structs.h |
| 970 | |
| 971 | Patch 7.4.084 |
| 972 | Problem: Python: interrupt not being properly discarded. (Yggdroot Chen) |
| 973 | Solution: Discard interrupt in VimTryEnd. (ZyX) |
| 974 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok, |
| 975 | src/testdir/test87.in, src/testdir/test87.ok |
| 976 | |
| 977 | Patch 7.4.085 |
| 978 | Problem: When inserting text in Visual block mode and moving the cursor the |
| 979 | wrong text gets repeated in other lines. |
| 980 | Solution: Use the '[ mark to find the start of the actually inserted text. |
| 981 | (Christian Brabandt) |
| 982 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 983 | |
| 984 | Patch 7.4.086 |
| 985 | Problem: Skipping over an expression when not evaluating it does not work |
| 986 | properly for dict members. |
| 987 | Solution: Skip over unrecognized expression. (ZyX) |
| 988 | Files: src/eval.c, src/testdir/test34.in, src/testdir/test34.ok |
| 989 | |
| 990 | Patch 7.4.087 |
| 991 | Problem: Compiler warning on 64 bit Windows systems. |
| 992 | Solution: Fix type cast. (Mike Williams) |
| 993 | Files: src/ops.c |
| 994 | |
| 995 | Patch 7.4.088 |
| 996 | Problem: When spell checking is enabled Asian characters are always marked |
| 997 | as error. |
| 998 | Solution: When 'spelllang' contains "cjk" do not mark Asian characters as |
| 999 | error. (Ken Takata) |
| 1000 | Files: runtime/doc/options.txt, runtime/doc/spell.txt, src/mbyte.c, |
| 1001 | src/option.c, src/spell.c, src/structs.h |
| 1002 | |
| 1003 | Patch 7.4.089 |
| 1004 | Problem: When editing a file in a directory mounted through sshfs Vim |
| 1005 | doesn't set the security context on a renamed file. |
| 1006 | Solution: Add mch_copy_sec() to vim_rename(). (Peter Backes) |
| 1007 | Files: src/fileio.c |
| 1008 | |
| 1009 | Patch 7.4.090 |
| 1010 | Problem: Win32: When a directory name contains an exclamation mark, |
| 1011 | completion doesn't complete the contents of the directory. |
| 1012 | Solution: Escape the exclamation mark. (Jan Stocker) |
| 1013 | Files: src/ex_getln.c, src/testdir/test102.in, src/testdir/test102.ok, |
| 1014 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 1015 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 1016 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 1017 | |
| 1018 | Patch 7.4.091 (after 7.4.089) |
| 1019 | Problem: Missing semicolon. |
| 1020 | Solution: Add the semicolon. |
| 1021 | Files: src/fileio.c |
| 1022 | |
| 1023 | Patch 7.4.092 (after 7.4.088) |
| 1024 | Problem: Can't build small version. |
| 1025 | Solution: Add #ifdef where the b_cjk flag is used. (Ken Takata) |
| 1026 | Files: src/spell.c |
| 1027 | |
| 1028 | Patch 7.4.093 |
| 1029 | Problem: Configure can't use LuaJIT on ubuntu 12.04. |
| 1030 | Solution: Adjust the configure regexp that locates the version number. |
| 1031 | (Charles Strahan) |
| 1032 | Files: src/configure.in, src/auto/configure |
| 1033 | |
| 1034 | Patch 7.4.094 |
| 1035 | Problem: Configure may not find that -lint is needed for gettext(). |
| 1036 | Solution: Check for gettext() with empty $LIBS. (Thomas De Schampheleire) |
| 1037 | Files: src/configure.in, src/auto/configure |
| 1038 | |
| 1039 | Patch 7.4.095 (after 7.4.093) |
| 1040 | Problem: Regexp for LuaJIT version doesn't work on BSD. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 1041 | Solution: Use "*" instead of "\+" and "\?". (Ozaki Kiichi) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1042 | Files: src/configure.in, src/auto/configure |
| 1043 | |
| 1044 | Patch 7.4.096 |
| 1045 | Problem: Can't change directory to an UNC path. |
| 1046 | Solution: Use win32_getattrs() in mch_getperm(). (Christian Brabandt) |
| 1047 | Files: src/os_win32.c |
| 1048 | |
| 1049 | Patch 7.4.097 (after 7.4.034) |
| 1050 | Problem: Unexpected behavior change related to 'virtualedit'. (Ingo Karkat) |
| 1051 | Solution: Update the valid cursor position. (Christian Brabandt) |
| 1052 | Files: src/ops.c |
| 1053 | |
| 1054 | Patch 7.4.098 |
| 1055 | Problem: When using ":'<,'>del" errors may be given for the visual line |
| 1056 | numbers being out of range. |
| 1057 | Solution: Reset Visual mode in ":del". (Lech Lorens) |
| 1058 | Files: src/ex_docmd.c, src/testdir/test103.in, src/testdir/test103.ok, |
| 1059 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 1060 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 1061 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 1062 | |
| 1063 | Patch 7.4.099 |
| 1064 | Problem: Append in blockwise Visual mode with "$" is wrong. |
| 1065 | Solution: After "$" don't use the code that checks if the cursor was moved. |
| 1066 | (Hirohito Higashi, Ken Takata) |
| 1067 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 1068 | |
| 1069 | Patch 7.4.100 |
| 1070 | Problem: NFA regexp doesn't handle backreference correctly. (Ryuichi |
| 1071 | Hayashida, Urtica Dioica) |
| 1072 | Solution: Always add NFA_SKIP, also when it already exists at the start |
| 1073 | position. |
| 1074 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 1075 | |
| 1076 | Patch 7.4.101 |
| 1077 | Problem: Using \1 in pattern goes one line too far. (Bohr Shaw, John Little) |
| 1078 | Solution: Only advance the match end for the matched characters in the last |
| 1079 | line. |
| 1080 | Files: src/regexp.c, src/testdir/test64.in, src/testdir/test64.ok |
| 1081 | |
| 1082 | Patch 7.4.102 |
| 1083 | Problem: Crash when interrupting "z=". |
| 1084 | Solution: Add safety check for word length. (Christian Brabandt, Dominique |
| 1085 | Pelle) |
| 1086 | Files: src/spell.c |
| 1087 | |
| 1088 | Patch 7.4.103 |
| 1089 | Problem: Dos installer uses an old way to escape spaces in the diff |
| 1090 | command. |
| 1091 | Solution: Adjust the quoting to the new default shellxquote. (Ben Fritz) |
| 1092 | Files: src/dosinst.c |
| 1093 | |
| 1094 | Patch 7.4.104 |
| 1095 | Problem: ":help s/\_" reports an internal error. (John Beckett) |
| 1096 | Solution: Check for NUL and invalid character classes. |
| 1097 | Files: src/regexp_nfa.c |
| 1098 | |
| 1099 | Patch 7.4.105 |
| 1100 | Problem: Completing a tag pattern may give an error for invalid pattern. |
| 1101 | Solution: Suppress the error, just return no matches. |
| 1102 | Files: src/tag.c |
| 1103 | |
| 1104 | Patch 7.4.106 |
| 1105 | Problem: Can't build with Ruby using Cygwin. |
| 1106 | Solution: Fix library name in makefile. (Steve Hall) |
| 1107 | Files: src/Make_cyg.mak |
| 1108 | |
| 1109 | Patch 7.4.107 |
| 1110 | Problem: Python: When vim.eval() encounters a Vim error, a try/catch in the |
| 1111 | Python code doesn't catch it. (Yggdroot Chen) |
| 1112 | Solution: Throw exceptions on errors in vim.eval(). (ZyX) |
| 1113 | Files: src/ex_eval.c, src/if_py_both.h, src/proto/ex_eval.pro, |
| 1114 | src/testdir/test86.in, src/testdir/test86.ok, |
| 1115 | src/testdir/test87.in, src/testdir/test87.ok |
| 1116 | |
| 1117 | Patch 7.4.108 |
| 1118 | Problem: "zG" and "zW" leave temp files around on MS-Windows. |
| 1119 | Solution: Delete the temp files when exiting. (Ken Takata) |
| 1120 | Files: src/memline.c, src/proto/spell.pro, src/spell.c |
| 1121 | |
| 1122 | Patch 7.4.109 |
| 1123 | Problem: ColorScheme autocommand matches with the current buffer name. |
| 1124 | Solution: Match with the colorscheme name. (Christian Brabandt) |
| 1125 | Files: runtime/doc/autocmd.txt, src/fileio.c, src/syntax.c |
| 1126 | |
| 1127 | Patch 7.4.110 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1128 | Problem: "gUgn" cannot be repeated. (Dimitar Dimitrov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1129 | Solution: Don't put "gn" in a different order in the redo buffer. Restore |
| 1130 | 'wrapscan' when the pattern isn't found. (Christian Wellenbrock) |
| 1131 | Files: src/normal.c, src/search.c, src/test53.in, src/test53.ok |
| 1132 | |
| 1133 | Patch 7.4.111 |
| 1134 | Problem: Memory leak in Python OptionsAssItem. (Ken Takata) |
| 1135 | Solution: Call Py_XDECREF() where needed. (ZyX) |
| 1136 | Files: src/if_py_both.h |
| 1137 | |
| 1138 | Patch 7.4.112 |
| 1139 | Problem: The defaults for 'directory' and 'backupdir' on MS-Windows do not |
| 1140 | include a directory that exists. |
| 1141 | Solution: Use $TEMP. |
| 1142 | Files: src/os_dos.h |
| 1143 | |
| 1144 | Patch 7.4.113 |
| 1145 | Problem: MSVC static analysis gives warnings. |
| 1146 | Solution: Avoid the warnings and avoid possible bugs. (Ken Takata) |
| 1147 | Files: src/os_win32.c |
| 1148 | |
| 1149 | Patch 7.4.114 |
| 1150 | Problem: New GNU make outputs messages about changing directory in another |
| 1151 | format. |
| 1152 | Solution: Recognize the new format. |
| 1153 | Files: src/option.h |
| 1154 | |
| 1155 | Patch 7.4.115 |
| 1156 | Problem: When using Zsh expanding ~abc doesn't work when the result |
| 1157 | contains a space. |
| 1158 | Solution: Off-by-one error in detecting the NUL. (Pavol Juhas) |
| 1159 | Files: src/os_unix.c |
| 1160 | |
| 1161 | Patch 7.4.116 |
| 1162 | Problem: When a mapping starts with a space, the typed space does not show |
| 1163 | up for 'showcmd'. |
| 1164 | Solution: Show "<20>". (Brook Hong) |
| 1165 | Files: src/normal.c |
| 1166 | |
| 1167 | Patch 7.4.117 |
| 1168 | Problem: Can't build with Cygwin/MingW and Perl 5.18. |
| 1169 | Solution: Add a linker argument for the Perl library. (Cesar Romani) |
| 1170 | Adjust CFLAGS and LIB. (Cesar Romani) |
| 1171 | Move including inline.h further down. (Ken Takata) |
| 1172 | Files: src/Make_cyg.mak, src/Make_ming.mak, src/if_perl.xs |
| 1173 | |
| 1174 | Patch 7.4.118 |
| 1175 | Problem: It's possible that redrawing the status lines causes |
| 1176 | win_redr_custom() to be called recursively. |
| 1177 | Solution: Protect against recursiveness. (Yasuhiro Matsumoto) |
| 1178 | Files: src/screen.c |
| 1179 | |
| 1180 | Patch 7.4.119 |
| 1181 | Problem: Vim doesn't work well on OpenVMS. |
| 1182 | Solution: Fix various problems. (Samuel Ferencik) |
| 1183 | Files: src/os_unix.c, src/os_unix.h, src/os_vms.c |
| 1184 | |
| 1185 | Patch 7.4.120 (after 7.4.117) |
| 1186 | Problem: Can't build with Perl 5.18 on Linux. (Lcd 47) |
| 1187 | Solution: Add #ifdef. (Ken Takata) |
| 1188 | Files: src/if_perl.xs |
| 1189 | |
| 1190 | Patch 7.4.121 |
| 1191 | Problem: Completion doesn't work for ":py3d" and ":py3f". (Bohr Shaw) |
| 1192 | Solution: Skip over letters after ":py3". |
| 1193 | Files: src/ex_docmd.c |
| 1194 | |
| 1195 | Patch 7.4.122 |
| 1196 | Problem: Win32: When 'encoding' is set to "utf-8" and the active codepage |
| 1197 | is cp932 then ":grep" and other commands don't work for multi-byte |
| 1198 | characters. |
| 1199 | Solution: (Yasuhiro Matsumoto) |
| 1200 | Files: src/os_win32.c |
| 1201 | |
| 1202 | Patch 7.4.123 |
| 1203 | Problem: Win32: Getting user name does not use wide function. |
| 1204 | Solution: Use GetUserNameW() if possible. (Ken Takata) |
| 1205 | Files: src/os_win32.c |
| 1206 | |
| 1207 | Patch 7.4.124 |
| 1208 | Problem: Win32: Getting host name does not use wide function. |
| 1209 | Solution: Use GetComputerNameW() if possible. (Ken Takata) |
| 1210 | Files: src/os_win32.c |
| 1211 | |
| 1212 | Patch 7.4.125 |
| 1213 | Problem: Win32: Dealing with messages may not work for multi-byte chars. |
| 1214 | Solution: Use pDispatchMessage(). (Ken Takata) |
| 1215 | Files: src/os_win32.c |
| 1216 | |
| 1217 | Patch 7.4.126 |
| 1218 | Problem: Compiler warnings for "const" and incompatible types. |
| 1219 | Solution: Remove "const", add type cast. (Ken Takata) |
| 1220 | Files: src/os_win32.c |
| 1221 | |
| 1222 | Patch 7.4.127 |
| 1223 | Problem: Perl 5.18 on Unix doesn't work. |
| 1224 | Solution: Move workaround to after including vim.h. (Ken Takata) |
| 1225 | Files: src/if_perl.xs |
| 1226 | |
| 1227 | Patch 7.4.128 |
| 1228 | Problem: Perl 5.18 for MSVC doesn't work. |
| 1229 | Solution: Add check in makefile and define __inline. (Ken Takata) |
| 1230 | Files: src/Make_mvc.mak, src/if_perl.xs |
| 1231 | |
| 1232 | Patch 7.4.129 |
| 1233 | Problem: getline(-1) returns zero. (mvxxc) |
| 1234 | Solution: Return an empty string. |
| 1235 | Files: src/eval.c |
| 1236 | |
| 1237 | Patch 7.4.130 |
| 1238 | Problem: Relative line numbers mix up windows when using folds. |
| 1239 | Solution: Use hasFoldingWin() instead of hasFolding(). (Lech Lorens) |
| 1240 | Files: src/misc2.c |
| 1241 | |
| 1242 | Patch 7.4.131 |
| 1243 | Problem: Syncbind causes E315 errors in some situations. (Liang Li) |
| 1244 | Solution: Set and restore curbuf in ex_syncbind(). (Christian Brabandt) |
| 1245 | Files: src/ex_docmd.c, src/testdir/test37.ok |
| 1246 | |
| 1247 | Patch 7.4.132 (after 7.4.122) |
| 1248 | Problem: Win32: flags and inherit_handles arguments mixed up. |
| 1249 | Solution: Swap the argument. (cs86661) |
| 1250 | Files: src/os_win32.c |
| 1251 | |
| 1252 | Patch 7.4.133 |
| 1253 | Problem: Clang warns for using NUL. |
| 1254 | Solution: Change NUL to NULL. (Dominique Pelle) |
| 1255 | Files: src/eval.c, src/misc2.c |
| 1256 | |
| 1257 | Patch 7.4.134 |
| 1258 | Problem: Spurious space in MingW Makefile. |
| 1259 | Solution: Remove the space. (Michael Soyka) |
| 1260 | Files: src/Make_ming.mak |
| 1261 | |
| 1262 | Patch 7.4.135 |
| 1263 | Problem: Missing dot in MingW test Makefile. |
| 1264 | Solution: Add the dot. (Michael Soyka) |
| 1265 | Files: src/testdir/Make_ming.mak |
| 1266 | |
| 1267 | Patch 7.4.136 (after 7.4.096) |
| 1268 | Problem: MS-Windows: When saving a file with a UNC path the file becomes |
| 1269 | read-only. |
| 1270 | Solution: Don't mix up Win32 attributes and Unix attributes. (Ken Takata) |
| 1271 | Files: src/os_mswin.c, src/os_win32.c |
| 1272 | |
| 1273 | Patch 7.4.137 |
| 1274 | Problem: Cannot use IME with Windows 8 console. |
| 1275 | Solution: Change the user of ReadConsoleInput() and PeekConsoleInput(). |
| 1276 | (Nobuhiro Takasaki) |
| 1277 | Files: src/os_win32.c |
| 1278 | |
| 1279 | Patch 7.4.138 (after 7.4.114) |
| 1280 | Problem: Directory change messages are not recognized. |
| 1281 | Solution: Fix using a character range literally. (Lech Lorens) |
| 1282 | Files: src/option.h |
| 1283 | |
| 1284 | Patch 7.4.139 |
| 1285 | Problem: Crash when using :cd in autocommand. (François Ingelrest) |
| 1286 | Solution: Set w_localdir to NULL after freeing it. (Dominique Pelle) |
| 1287 | Files: src/ex_docmd.c, src/window.c |
| 1288 | |
| 1289 | Patch 7.4.140 |
| 1290 | Problem: Crash when wiping out buffer triggers autocommand that wipes out |
| 1291 | only other buffer. |
| 1292 | Solution: Do not delete the last buffer, make it empty. (Hirohito Higashi) |
| 1293 | Files: src/buffer.c |
| 1294 | |
| 1295 | Patch 7.4.141 |
| 1296 | Problem: Problems when building with Borland: st_mode is signed short; |
| 1297 | can't build with Python; temp files not ignored by Mercurial; |
| 1298 | building with DEBUG doesn't define _DEBUG. |
| 1299 | Solution: Fix the problems. (Ken Takata) |
| 1300 | Files: src/Make_bc5.mak, src/if_py_both.h, src/os_win32.c |
| 1301 | |
| 1302 | Patch 7.4.142 (after 7.4.137) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1303 | Problem: On MS-Windows 8 IME input doesn't work correctly. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1304 | Solution: Work around the problem. (Nobuhiro Takasaki) |
| 1305 | Files: src/os_win32.c |
| 1306 | |
| 1307 | Patch 7.4.143 |
| 1308 | Problem: TextChangedI is not triggered. |
| 1309 | Solution: Reverse check for "ready". (lilydjwg) |
| 1310 | Files: src/edit.c |
| 1311 | |
| 1312 | Patch 7.4.144 |
| 1313 | Problem: MingW also supports intptr_t for OPEN_OH_ARGTYPE. |
| 1314 | Solution: Adjust #ifdef. (Ken Takata) |
| 1315 | Files: src/os_mswin.c |
| 1316 | |
| 1317 | Patch 7.4.145 |
| 1318 | Problem: getregtype() does not return zero for unknown register. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1319 | Solution: Adjust documentation: return empty string for unknown register. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1320 | Check the register name to be valid. (Yukihiro Nakadaira) |
| 1321 | Files: runtime/doc/eval.txt, src/ops.c |
| 1322 | |
| 1323 | Patch 7.4.146 |
| 1324 | Problem: When starting Vim with "-u NONE" v:oldfiles is NULL. |
| 1325 | Solution: Set v:oldfiles to an empty list. (Yasuhiro Matsumoto) |
| 1326 | Files: src/main.c |
| 1327 | |
| 1328 | Patch 7.4.147 |
| 1329 | Problem: Cursor moves to wrong position when using "gj" after "$" and |
| 1330 | virtual editing is active. |
| 1331 | Solution: Make "gj" behave differently when virtual editing is active. |
| 1332 | (Hirohito Higashi) |
| 1333 | Files: src/normal.c, src/testdir/test39.in, src/testdir/test39.ok |
| 1334 | |
| 1335 | Patch 7.4.148 |
| 1336 | Problem: Cannot build with Cygwin and X11. |
| 1337 | Solution: Include Xwindows.h instead of windows.h. (Lech Lorens) |
| 1338 | Files: src/mbyte.c |
| 1339 | |
| 1340 | Patch 7.4.149 |
| 1341 | Problem: Get E685 error when assigning a function to an autoload variable. |
| 1342 | (Yukihiro Nakadaira) |
| 1343 | Solution: Instead of having a global no_autoload variable, pass an autoload |
| 1344 | flag down to where it is used. (ZyX) |
| 1345 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok, |
| 1346 | src/testdir/test60.in, src/testdir/test60.ok, |
| 1347 | src/testdir/sautest/autoload/footest.vim |
| 1348 | |
| 1349 | Patch 7.4.150 |
| 1350 | Problem: :keeppatterns is not respected for :s. |
| 1351 | Solution: Check the keeppatterns flag. (Yasuhiro Matsumoto) |
| 1352 | Files: src/search.c, src/testdir/test14.in, src/testdir/test14.ok |
| 1353 | |
| 1354 | Patch 7.4.151 |
| 1355 | Problem: Python: slices with steps are not supported. |
| 1356 | Solution: Support slices in Python vim.List. (ZyX) |
| 1357 | Files: src/eval.c, src/if_py_both.h, src/if_python3.c, src/if_python.c, |
| 1358 | src/proto/eval.pro, src/testdir/test86.in, src/testdir/test86.ok, |
| 1359 | src/testdir/test87.in, src/testdir/test87.ok |
| 1360 | |
| 1361 | Patch 7.4.152 |
| 1362 | Problem: Python: Cannot iterate over options. |
| 1363 | Solution: Add options iterator. (ZyX) |
| 1364 | Files: src/if_py_both.h, src/option.c, src/proto/option.pro, |
| 1365 | src/testdir/test86.in, src/testdir/test86.ok, |
| 1366 | src/testdir/test87.in, src/testdir/test87.ok, src/vim.h |
| 1367 | |
| 1368 | Patch 7.4.153 |
| 1369 | Problem: Compiler warning for pointer type. |
| 1370 | Solution: Add type cast. |
| 1371 | Files: src/if_py_both.h, src/if_python.c, src/if_python3.c |
| 1372 | |
| 1373 | Patch 7.4.154 (after 7.4.149) |
| 1374 | Problem: Still a problem with auto-loading. |
| 1375 | Solution: Pass no_autoload to deref_func_name(). (Yukihiro Nakadaira) |
| 1376 | Files: src/eval.c |
| 1377 | |
| 1378 | Patch 7.4.155 |
| 1379 | Problem: ":keeppatterns /pat" does not keep search pattern offset. |
| 1380 | Solution: Restore the offset after doing the search. |
| 1381 | Files: src/search.c, src/testdir/test14.in, src/testdir/test14.ok |
| 1382 | |
| 1383 | Patch 7.4.156 |
| 1384 | Problem: Test file missing from distribution. |
| 1385 | Solution: Add new directory to file list. |
| 1386 | Files: Filelist |
| 1387 | |
| 1388 | Patch 7.4.157 |
| 1389 | Problem: Error number used twice. (Yukihiro Nakadaira) |
| 1390 | Solution: Change the one not referred in the docs. |
| 1391 | Files: src/undo.c |
| 1392 | |
| 1393 | Patch 7.4.158 (after 7.4.045) |
| 1394 | Problem: Pattern containing \zs is not handled correctly by substitute(). |
| 1395 | Solution: Change how an empty match is skipped. (Yukihiro Nakadaira) |
| 1396 | Files: src/eval.c, src/testdir/test80.in, src/testdir/test80.ok |
| 1397 | |
| 1398 | Patch 7.4.159 |
| 1399 | Problem: Completion hangs when scanning the current buffer after doing |
| 1400 | keywords. (Christian Brabandt) |
| 1401 | Solution: Set the first match position when starting to scan the current |
| 1402 | buffer. |
| 1403 | Files: src/edit.c |
| 1404 | |
| 1405 | Patch 7.4.160 |
| 1406 | Problem: Win32: Crash when executing external command. |
| 1407 | Solution: Only close the handle when it was created. (Yasuhiro Matsumoto) |
| 1408 | Files: src/os_win32.c |
| 1409 | |
| 1410 | Patch 7.4.161 |
| 1411 | Problem: Crash in Python exception handling. |
| 1412 | Solution: Only use exception variables if did_throw is set. (ZyX) |
| 1413 | Files: if_py_both.h |
| 1414 | |
| 1415 | Patch 7.4.162 |
| 1416 | Problem: Running tests in shadow dir doesn't work. |
| 1417 | Solution: Add testdir/sautest to the shadow target. (James McCoy) |
| 1418 | Files: src/Makefile |
| 1419 | |
| 1420 | Patch 7.4.163 (after 7.4.142) |
| 1421 | Problem: MS-Windows input doesn't work properly on Windows 7 and earlier. |
| 1422 | Solution: Add a check for Windows 8. (Yasuhiro Matsumoto) |
| 1423 | Files: src/os_win32.c |
| 1424 | |
| 1425 | Patch 7.4.164 (after 7.4.163) |
| 1426 | Problem: Problem with event handling on Windows 8. |
| 1427 | Solution: Ignore duplicate WINDOW_BUFFER_SIZE_EVENTs. (Nobuhiro Takasaki) |
| 1428 | Files: src/os_win32.c |
| 1429 | |
| 1430 | Patch 7.4.165 |
| 1431 | Problem: By default, after closing a buffer changes can't be undone. |
| 1432 | Solution: In the example vimrc file set 'undofile'. |
| 1433 | Files: runtime/vimrc_example.vim |
| 1434 | |
| 1435 | Patch 7.4.166 |
| 1436 | Problem: Auto-loading a function for code that won't be executed. |
| 1437 | Solution: Do not auto-load when evaluation is off. (Yasuhiro Matsumoto) |
| 1438 | Files: src/eval.c |
| 1439 | |
| 1440 | Patch 7.4.167 (after 7.4.149) |
| 1441 | Problem: Fixes are not tested. |
| 1442 | Solution: Add a test for not autoloading on assignment. (Yukihiro Nakadaira) |
| 1443 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 1444 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 1445 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 1446 | src/testdir/sautest/autoload/Test104.vim, src/testdir/test104.in, |
| 1447 | src/testdir/test104.ok |
| 1448 | |
| 1449 | Patch 7.4.168 |
| 1450 | Problem: Can't compile with Ruby 2.1.0. |
| 1451 | Solution: Add support for new GC. (Kohei Suzuki) |
| 1452 | Files: src/if_ruby.c |
| 1453 | |
| 1454 | Patch 7.4.169 |
| 1455 | Problem: ":sleep" puts cursor in the wrong column. (Liang Li) |
| 1456 | Solution: Add the window offset. (Christian Brabandt) |
| 1457 | Files: src/ex_docmd.c |
| 1458 | |
| 1459 | Patch 7.4.170 |
| 1460 | Problem: Some help tags don't work with ":help". (Tim Chase) |
| 1461 | Solution: Add exceptions. |
| 1462 | Files: src/ex_cmds.c |
| 1463 | |
| 1464 | Patch 7.4.171 |
| 1465 | Problem: Redo does not set v:count and v:count1. |
| 1466 | Solution: Use a separate buffer for redo, so that we can set the counts when |
| 1467 | performing redo. |
| 1468 | Files: src/getchar.c, src/globals.h, src/normal.c, src/proto/getchar.pro, |
| 1469 | src/structs.h |
| 1470 | |
| 1471 | Patch 7.4.172 |
| 1472 | Problem: The blowfish code mentions output feedback, but the code is |
| 1473 | actually doing cipher feedback. |
| 1474 | Solution: Adjust names and comments. |
| 1475 | Files: src/blowfish.c, src/fileio.c, src/proto/blowfish.pro, |
| 1476 | src/memline.c |
| 1477 | |
| 1478 | Patch 7.4.173 |
| 1479 | Problem: When using scrollbind the cursor can end up below the last line. |
| 1480 | (mvxxc) |
| 1481 | Solution: Reset w_botfill when scrolling up. (Christian Brabandt) |
| 1482 | Files: src/move.c |
| 1483 | |
| 1484 | Patch 7.4.174 |
| 1485 | Problem: Compiler warnings for Python interface. (Tony Mechelynck) |
| 1486 | Solution: Add type casts, initialize variable. |
| 1487 | Files: src/if_py_both.h |
| 1488 | |
| 1489 | Patch 7.4.175 |
| 1490 | Problem: When a wide library function fails, falling back to the non-wide |
| 1491 | function may do the wrong thing. |
| 1492 | Solution: Check the platform, when the wide function is supported don't fall |
| 1493 | back to the non-wide function. (Ken Takata) |
| 1494 | Files: src/os_mswin.c, src/os_win32.c |
| 1495 | |
| 1496 | Patch 7.4.176 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1497 | Problem: Dictionary.update() throws an error when used without arguments. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1498 | Python programmers don't expect that. |
| 1499 | Solution: Make Dictionary.update() without arguments do nothing. (ZyX) |
| 1500 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test87.in |
| 1501 | |
| 1502 | Patch 7.4.177 |
| 1503 | Problem: Compiler warning for unused variable. (Tony Mechelynck) |
| 1504 | Solution: Add #ifdef. |
| 1505 | Files: src/move.c |
| 1506 | |
| 1507 | Patch 7.4.178 |
| 1508 | Problem: The J command does not update '[ and '] marks. (William Gardner) |
| 1509 | Solution: Set the marks. (Christian Brabandt) |
| 1510 | Files: src/ops.c |
| 1511 | |
| 1512 | Patch 7.4.179 |
| 1513 | Problem: Warning for type-punned pointer. (Tony Mechelynck) |
| 1514 | Solution: Use intermediate variable. |
| 1515 | Files: src/if_py_both.h |
| 1516 | |
| 1517 | Patch 7.4.180 (after 7.4.174) |
| 1518 | Problem: Older Python versions don't support %ld. |
| 1519 | Solution: Use %d instead. (ZyX) |
| 1520 | Files: src/if_py_both.h |
| 1521 | |
| 1522 | Patch 7.4.181 |
| 1523 | Problem: When using 'pastetoggle' the status lines are not updated. (Samuel |
| 1524 | Ferencik, Jan Christoph Ebersbach) |
| 1525 | Solution: Update the status lines. (Nobuhiro Takasaki) |
| 1526 | Files: src/getchar.c |
| 1527 | |
| 1528 | Patch 7.4.182 |
| 1529 | Problem: Building with mzscheme and racket does not work. (David Chimay) |
| 1530 | Solution: Adjust autoconf. (Sergey Khorev) |
| 1531 | Files: src/configure.in, src/auto/configure |
| 1532 | |
| 1533 | Patch 7.4.183 |
| 1534 | Problem: MSVC Visual Studio update not supported. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 1535 | Solution: Add version number. (Mike Williams) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1536 | Files: src/Make_mvc.mak |
| 1537 | |
| 1538 | Patch 7.4.184 |
| 1539 | Problem: match() does not work properly with a {count} argument. |
| 1540 | Solution: Compute the length once and update it. Quit the loop when at the |
| 1541 | end. (Hirohito Higashi) |
| 1542 | Files: src/eval.c, src/testdir/test53.in, src/testdir/test53.ok |
| 1543 | |
| 1544 | Patch 7.4.185 |
| 1545 | Problem: Clang gives warnings. |
| 1546 | Solution: Adjust how bigness is set. (Dominique Pelle) |
| 1547 | Files: src/ex_cmds.c |
| 1548 | |
| 1549 | Patch 7.4.186 (after 7.4.085) |
| 1550 | Problem: Insert in Visual mode sometimes gives incorrect results. |
| 1551 | (Dominique Pelle) |
| 1552 | Solution: Remember the original insert start position. (Christian Brabandt, |
| 1553 | Dominique Pelle) |
| 1554 | Files: src/edit.c, src/globals.h, src/ops.c, src/structs.h |
| 1555 | |
| 1556 | Patch 7.4.187 |
| 1557 | Problem: Delete that crosses line break splits multi-byte character. |
| 1558 | Solution: Advance a character instead of a byte. (Cade Foster) |
| 1559 | Files: src/normal.c, src/testdir/test69.in, src/testdir/test69.ok |
| 1560 | |
| 1561 | Patch 7.4.188 |
| 1562 | Problem: SIZEOF_LONG clashes with similar defines in header files. |
| 1563 | Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT. |
| 1564 | Files: src/if_ruby.c, src/vim.h, src/configure.in, src/auto/configure, |
| 1565 | src/config.h.in, src/fileio.c, src/if_python.c, src/message.c, |
| 1566 | src/spell.c, src/feature.h, src/os_os2_cfg.h, src/os_vms_conf.h, |
| 1567 | src/os_win16.h, src/structs.h |
| 1568 | |
| 1569 | Patch 7.4.189 |
| 1570 | Problem: Compiler warning for unused argument. |
| 1571 | Solution: Add UNUSED. |
| 1572 | Files: src/eval.c |
| 1573 | |
| 1574 | Patch 7.4.190 |
| 1575 | Problem: Compiler warning for using %lld for off_t. |
| 1576 | Solution: Add type cast. |
| 1577 | Files: src/fileio.c |
| 1578 | |
| 1579 | Patch 7.4.191 |
| 1580 | Problem: Escaping a file name for shell commands can't be done without a |
| 1581 | function. |
| 1582 | Solution: Add the :S file name modifier. |
| 1583 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 1584 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 1585 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 1586 | src/testdir/test105.in, src/testdir/test105.ok, |
| 1587 | runtime/doc/cmdline.txt, runtime/doc/eval.txt, |
| 1588 | runtime/doc/map.txt, runtime/doc/options.txt, |
| 1589 | runtime/doc/quickfix.txt, runtime/doc/usr_30.txt, |
| 1590 | runtime/doc/usr_40.txt, runtime/doc/usr_42.txt, |
| 1591 | runtime/doc/vi_diff.txt, src/eval.c, src/misc2.c, src/normal.c, |
| 1592 | src/proto/misc2.pro |
| 1593 | |
| 1594 | Patch 7.4.192 |
| 1595 | Problem: Memory leak when giving E853. |
| 1596 | Solution: Free the argument. (Dominique Pelle) |
| 1597 | Files: src/eval.c |
| 1598 | |
| 1599 | Patch 7.4.193 |
| 1600 | Problem: Typos in messages. |
| 1601 | Solution: "then" -> "than". (Dominique Pelle) |
| 1602 | Files: src/if_py_both.h, src/spell.c |
| 1603 | |
| 1604 | Patch 7.4.194 |
| 1605 | Problem: Can't build for Android. |
| 1606 | Solution: Add #if condition. (Fredrik Fornwall) |
| 1607 | Files: src/mbyte.c |
| 1608 | |
| 1609 | Patch 7.4.195 (after 7.4.193) |
| 1610 | Problem: Python tests fail. |
| 1611 | Solution: Change "then" to "than" in more places. (Dominique Pelle, Taro |
| 1612 | Muraoka) |
| 1613 | Files: src/testdir/test86.in, src/testdir/test86.ok, |
| 1614 | src/testdir/test87.in, src/testdir/test87.ok |
| 1615 | |
| 1616 | Patch 7.4.196 |
| 1617 | Problem: Tests fail on Solaris 9 and 10. |
| 1618 | Solution: Use "test -f" instead of "test -e". (Laurent Blume) |
| 1619 | Files: src/testdir/Makefile |
| 1620 | |
| 1621 | Patch 7.4.197 |
| 1622 | Problem: Various problems on VMS. |
| 1623 | Solution: Fix several VMS problems. (Zoltan Arpadffy) |
| 1624 | Files: runtime/doc/os_vms.txt, src/Make_vms.mms, src/fileio.c, |
| 1625 | src/os_unix.c, src/os_unix.h, src/os_vms.c, src/os_vms_conf.h, |
| 1626 | src/proto/os_vms.pro, src/testdir/Make_vms.mms, |
| 1627 | src/testdir/test72.in, src/testdir/test77a.com, |
| 1628 | src/testdir/test77a.in, src/testdir/test77a.ok src/undo.c |
| 1629 | |
| 1630 | Patch 7.4.198 |
| 1631 | Problem: Can't build Vim with Perl when -Dusethreads is not specified for |
| 1632 | building Perl, and building Vim with --enable-perlinterp=dynamic. |
| 1633 | Solution: Adjust #ifdefs. (Yasuhiro Matsumoto) |
| 1634 | Files: src/if_perl.xs |
| 1635 | |
| 1636 | Patch 7.4.199 |
| 1637 | Problem: (issue 197) ]P doesn't paste over Visual selection. |
| 1638 | Solution: Handle Visual mode specifically. (Christian Brabandt) |
| 1639 | Files: src/normal.c |
| 1640 | |
| 1641 | Patch 7.4.200 |
| 1642 | Problem: Too many #ifdefs in the code. |
| 1643 | Solution: Enable FEAT_VISUAL always, await any complaints |
| 1644 | Files: src/feature.h |
| 1645 | |
| 1646 | Patch 7.4.201 |
| 1647 | Problem: 'lispwords' is a global option. |
| 1648 | Solution: Make 'lispwords' global-local. (Sung Pae) |
| 1649 | Files: runtime/doc/options.txt, runtime/optwin.vim, src/buffer.c, |
| 1650 | src/misc1.c, src/option.c, src/option.h, src/structs.h, |
| 1651 | src/testdir/test100.in, src/testdir/test100.ok |
| 1652 | |
| 1653 | Patch 7.4.202 |
| 1654 | Problem: MS-Windows: non-ASCII font names don't work. |
| 1655 | Solution: Convert between the current code page and 'encoding'. (Ken Takata) |
| 1656 | Files: src/gui_w48.c, src/os_mswin.c, src/proto/winclip.pro, |
| 1657 | src/winclip.c |
| 1658 | |
| 1659 | Patch 7.4.203 |
| 1660 | Problem: Parsing 'errorformat' is not correct. |
| 1661 | Solution: Reset "multiignore" at the start of a multi-line message. (Lcd) |
| 1662 | Files: src/quickfix.c, src/testdir/Make_amiga.mak, |
| 1663 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 1664 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 1665 | src/testdir/Makefile, src/testdir/test106.in, |
| 1666 | src/testdir/test106.ok |
| 1667 | |
| 1668 | Patch 7.4.204 |
| 1669 | Problem: A mapping where the second byte is 0x80 doesn't work. |
| 1670 | Solution: Unescape before checking for incomplete multi-byte char. (Nobuhiro |
| 1671 | Takasaki) |
| 1672 | Files: src/getchar.c, src/testdir/test75.in, src/testdir/test75.ok |
| 1673 | |
| 1674 | Patch 7.4.205 |
| 1675 | Problem: ":mksession" writes command to move to second argument while it |
| 1676 | does not exist. When it does exist the order might be wrong. |
| 1677 | Solution: Use ":argadd" for each argument instead of using ":args" with a |
| 1678 | list of names. (Nobuhiro Takasaki) |
| 1679 | Files: src/ex_docmd.c |
| 1680 | |
| 1681 | Patch 7.4.206 |
| 1682 | Problem: Compiler warnings on 64 bit Windows. |
| 1683 | Solution: Add type casts. (Mike Williams) |
| 1684 | Files: src/gui_w48.c, src/os_mswin.c |
| 1685 | |
| 1686 | Patch 7.4.207 |
| 1687 | Problem: The cursor report sequence is sometimes not recognized and results |
| 1688 | in entering replace mode. |
| 1689 | Solution: Also check for the cursor report when not asked for. |
| 1690 | Files: src/term.c |
| 1691 | |
| 1692 | Patch 7.4.208 |
| 1693 | Problem: Mercurial picks up some files that are not distributed. |
| 1694 | Solution: Add patterns to the ignore list. (Cade Forester) |
| 1695 | Files: .hgignore |
| 1696 | |
| 1697 | Patch 7.4.209 |
| 1698 | Problem: When repeating a filter command "%" and "#" are expanded. |
| 1699 | Solution: Escape the command when storing for redo. (Christian Brabandt) |
| 1700 | Files: src/ex_cmds.c |
| 1701 | |
| 1702 | Patch 7.4.210 |
| 1703 | Problem: Visual block mode plus virtual edit doesn't work well with tabs. |
| 1704 | (Liang Li) |
| 1705 | Solution: Take coladd into account. (Christian Brabandt) |
| 1706 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 1707 | |
| 1708 | Patch 7.4.211 |
| 1709 | Problem: ":lu" is an abbreviation for ":lua", but it should be ":lunmap". |
| 1710 | (ZyX) |
| 1711 | Solution: Move "lunmap" to above "lua". |
| 1712 | Files: src/ex_cmds.h |
| 1713 | |
| 1714 | Patch 7.4.212 (after 7.4.200) |
| 1715 | Problem: Now that the +visual feature is always enabled the #ifdefs for it |
| 1716 | are not useful. |
| 1717 | Solution: Remove the checks for FEAT_VISUAL. |
| 1718 | Files: src/buffer.c, src/charset.c, src/edit.c, src/eval.c, |
| 1719 | src/ex_cmds.c, src/ex_docmd.c, src/fold.c, src/getchar.c, |
| 1720 | src/gui.c, src/gui_mac.c, src/gui_w48.c, src/main.c, src/mark.c, |
| 1721 | src/menu.c, src/misc2.c, src/move.c, src/netbeans.c, src/normal.c, |
| 1722 | src/ops.c, src/option.c, src/os_msdos.c, src/os_qnx.c, |
| 1723 | src/quickfix.c, src/regexp.c, src/regexp_nfa.c, src/screen.c, |
| 1724 | src/search.c, src/spell.c, src/syntax.c, src/term.c, src/ui.c, |
| 1725 | src/undo.c, src/version.c, src/window.c, src/feature.h, |
| 1726 | src/globals.h, src/option.h, src/os_win32.h, src/structs.h |
| 1727 | |
| 1728 | Patch 7.4.213 |
| 1729 | Problem: It's not possible to open a new buffer without creating a swap |
| 1730 | file. |
| 1731 | Solution: Add the ":noswapfile" modifier. (Christian Brabandt) |
| 1732 | Files: runtime/doc/recover.txt, src/ex_cmds.h, src/ex_docmd.c, |
| 1733 | src/memline.c, src/structs.h |
| 1734 | |
| 1735 | Patch 7.4.214 |
| 1736 | Problem: Compilation problems on HP_nonStop (Tandem). |
| 1737 | Solution: Add #defines. (Joachim Schmitz) |
| 1738 | Files: src/vim.h |
| 1739 | |
| 1740 | Patch 7.4.215 |
| 1741 | Problem: Inconsistency: ":sp foo" does not reload "foo", unless "foo" is |
| 1742 | the current buffer. (Liang Li) |
| 1743 | Solution: Do not reload the current buffer on a split command. |
| 1744 | Files: runtime/doc/windows.txt, src/ex_docmd.c |
| 1745 | |
| 1746 | Patch 7.4.216 |
| 1747 | Problem: Compiler warnings. (Tony Mechelynck) |
| 1748 | Solution: Initialize variables, add #ifdef. |
| 1749 | Files: src/term.c, src/os_unix.h |
| 1750 | |
| 1751 | Patch 7.4.217 |
| 1752 | Problem: When src/auto/configure was updated, "make clean" would run |
| 1753 | configure pointlessly. |
| 1754 | Solution: Do not run configure for "make clean" and "make distclean" when |
| 1755 | the make program supports $MAKECMDGOALS. (Ken Takata) |
| 1756 | Files: src/Makefile |
| 1757 | |
| 1758 | Patch 7.4.218 |
| 1759 | Problem: It's not easy to remove duplicates from a list. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 1760 | Solution: Add the uniq() function. (Lcd) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1761 | Files: runtime/doc/change.txt, runtime/doc/eval.txt, |
| 1762 | runtime/doc/usr_41.txt, runtime/doc/version7.txt, src/eval.c, |
| 1763 | src/testdir/test55.in, src/testdir/test55.ok |
| 1764 | |
| 1765 | Patch 7.4.219 |
| 1766 | Problem: When 'relativenumber' or 'cursorline' are set the window is |
| 1767 | redrawn much to often. (Patrick Hemmer, Dominique Pelle) |
| 1768 | Solution: Check the VALID_CROW flag instead of VALID_WROW. |
| 1769 | Files: src/move.c |
| 1770 | |
| 1771 | Patch 7.4.220 |
| 1772 | Problem: Test 105 does not work in a shadow dir. (James McCoy) |
| 1773 | Solution: Omit "src/" from the checked path. |
| 1774 | Files: src/testdir/test105.in, src/testdir/test105.ok |
| 1775 | |
| 1776 | Patch 7.4.221 |
| 1777 | Problem: Quickfix doesn't resize on ":copen 20". (issue 199) |
| 1778 | Solution: Resize the window when requested. (Christian Brabandt) |
| 1779 | Files: src/quickfix.c |
| 1780 | |
| 1781 | Patch 7.4.222 |
| 1782 | Problem: The Ruby directory is constructed from parts. |
| 1783 | Solution: Use 'rubyarchhdrdir' if it exists. (James McCoy) |
| 1784 | Files: src/configure.in, src/auto/configure |
| 1785 | |
| 1786 | Patch 7.4.223 |
| 1787 | Problem: Still using an older autoconf version. |
| 1788 | Solution: Switch to autoconf 2.69. |
| 1789 | Files: src/Makefile, src/configure.in, src/auto/configure |
| 1790 | |
| 1791 | Patch 7.4.224 |
| 1792 | Problem: /usr/bin/grep on Solaris does not support -F. |
| 1793 | Solution: Add configure check to find a good grep. (Danek Duvall) |
| 1794 | Files: src/configure.in, src/auto/configure |
| 1795 | |
| 1796 | Patch 7.4.225 |
| 1797 | Problem: Dynamic Ruby doesn't work on Solaris. |
| 1798 | Solution: Always use the stubs. (Danek Duvall, Yukihiro Nakadaira) |
| 1799 | Files: src/if_ruby.c |
| 1800 | |
| 1801 | Patch 7.4.226 (after 7.4.219) |
| 1802 | Problem: Cursurline highlighting not redrawn when scrolling. (John |
| 1803 | Marriott) |
| 1804 | Solution: Check for required redraw in two places. |
| 1805 | Files: src/move.c |
| 1806 | |
| 1807 | Patch 7.4.227 (after 7.4.225) |
| 1808 | Problem: Can't build with Ruby 1.8. |
| 1809 | Solution: Do include a check for the Ruby version. (Ken Takata) |
| 1810 | Files: src/if_ruby.c |
| 1811 | |
| 1812 | Patch 7.4.228 |
| 1813 | Problem: Compiler warnings when building with Python 3.2. |
| 1814 | Solution: Make type cast depend on Python version. (Ken Takata) |
| 1815 | Files: src/if_py_both.h, src/if_python.c, src/if_python3.c |
| 1816 | |
| 1817 | Patch 7.4.229 |
| 1818 | Problem: Using ":let" for listing variables and the second one is a curly |
| 1819 | braces expression may fail. |
| 1820 | Solution: Check for an "=" in a better way. (ZyX) |
| 1821 | Files: src/eval.c, src/testdir/test104.in, src/testdir/test104.ok |
| 1822 | |
| 1823 | Patch 7.4.230 |
| 1824 | Problem: Error when using ":options". |
| 1825 | Solution: Fix the entry for 'lispwords'. (Kenichi Ito) |
| 1826 | Files: runtime/optwin.vim |
| 1827 | |
| 1828 | Patch 7.4.231 |
| 1829 | Problem: An error in ":options" is not caught by the tests. |
| 1830 | Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that |
| 1831 | it uses the current runtime files instead of the installed ones. |
| 1832 | Files: src/Makefile, src/testdir/Makefile, src/testdir/test_options.in, |
| 1833 | src/testdir/test_options.ok, src/testdir/Make_amiga.mak, |
| 1834 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 1835 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms |
| 1836 | |
| 1837 | Patch 7.4.232 |
| 1838 | Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin) |
| 1839 | Solution: Turn this into a join command. (Christian Brabandt) |
| 1840 | Files: src/ex_cmds.c, src/ex_docmd.c, src/proto/ex_docmd.pro |
| 1841 | |
| 1842 | Patch 7.4.233 |
| 1843 | Problem: Escaping special characters for using "%" with a shell command is |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1844 | inconsistent, parentheses are escaped but spaces are not. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1845 | Solution: Only escape "!". (Gary Johnson) |
| 1846 | Files: src/ex_docmd.c |
| 1847 | |
| 1848 | Patch 7.4.234 |
| 1849 | Problem: Can't get the command that was used to start Vim. |
| 1850 | Solution: Add v:progpath. (Viktor Kojouharov) |
| 1851 | Files: runtime/doc/eval.txt, src/eval.c, src/main.c, src/vim.h |
| 1852 | |
| 1853 | Patch 7.4.235 |
| 1854 | Problem: It is not easy to get the full path of a command. |
| 1855 | Solution: Add the exepath() function. |
| 1856 | Files: src/eval.c, src/misc1.c, src/os_amiga.c, src/os_msdos.c, |
| 1857 | src/os_unix.c, src/os_vms.c, src/os_win32.c, |
| 1858 | src/proto/os_amiga.pro, src/proto/os_msdos.pro, |
| 1859 | src/proto/os_unix.pro, src/proto/os_win32.pro, |
| 1860 | runtime/doc/eval.txt |
| 1861 | |
| 1862 | Patch 7.4.236 |
| 1863 | Problem: It's not that easy to check the Vim patch version. |
| 1864 | Solution: Make has("patch-7.4.123") work. (partly by Marc Weber) |
| 1865 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test60.in, |
| 1866 | src/testdir/test60.ok |
| 1867 | |
| 1868 | Patch 7.4.237 (after 7.4.236) |
Bram Moolenaar | 036986f | 2017-03-16 17:41:02 +0100 | [diff] [blame] | 1869 | Problem: When some patches were not included has("patch-7.4.123") may return |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1870 | true falsely. |
| 1871 | Solution: Check for the specific patch number. |
| 1872 | Files: runtime/doc/eval.txt, src/eval.c |
| 1873 | |
| 1874 | Patch 7.4.238 |
| 1875 | Problem: Vim does not support the smack library. |
| 1876 | Solution: Add smack support (Jose Bollo) |
| 1877 | Files: src/config.h.in, src/configure.in, src/fileio.c, src/memfile.c, |
| 1878 | src/os_unix.c, src/undo.c, src/auto/configure |
| 1879 | |
| 1880 | Patch 7.4.239 |
| 1881 | Problem: ":e +" does not position cursor at end of the file. |
| 1882 | Solution: Check for "+" being the last character (ZyX) |
| 1883 | Files: src/ex_docmd.c |
| 1884 | |
| 1885 | Patch 7.4.240 |
| 1886 | Problem: ":tjump" shows "\n" as "\\n". |
| 1887 | Solution: Skip over "\" that escapes a backslash. (Gary Johnson) |
| 1888 | Files: src/tag.c |
| 1889 | |
| 1890 | Patch 7.4.241 |
| 1891 | Problem: The string returned by submatch() does not distinguish between a |
| 1892 | NL from a line break and a NL that stands for a NUL character. |
| 1893 | Solution: Add a second argument to return a list. (ZyX) |
| 1894 | Files: runtime/doc/eval.txt, src/eval.c, src/proto/regexp.pro, |
| 1895 | src/regexp.c, src/testdir/test79.in, src/testdir/test79.ok, |
| 1896 | src/testdir/test80.in, src/testdir/test80.ok |
| 1897 | |
| 1898 | Patch 7.4.242 |
| 1899 | Problem: getreg() does not distinguish between a NL used for a line break |
| 1900 | and a NL used for a NUL character. |
| 1901 | Solution: Add another argument to return a list. (ZyX) |
| 1902 | Files: runtime/doc/eval.txt, src/eval.c src/ops.c, src/proto/ops.pro, |
| 1903 | src/vim.h, src/Makefile, src/testdir/test_eval.in, |
| 1904 | src/testdir/test_eval.ok, src/testdir/Make_amiga.mak, |
| 1905 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 1906 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms |
| 1907 | |
| 1908 | Patch 7.4.243 |
| 1909 | Problem: Cannot use setreg() to add text that includes a NUL. |
| 1910 | Solution: Make setreg() accept a list. |
| 1911 | Files: runtime/doc/eval.txt, src/eval.c, src/ops.c, src/proto/ops.pro, |
| 1912 | src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 1913 | |
| 1914 | Patch 7.4.244 (after 7.4.238) |
| 1915 | Problem: The smack feature causes stray error messages. |
| 1916 | Solution: Remove the error messages. |
| 1917 | Files: src/os_unix.c |
| 1918 | |
| 1919 | Patch 7.4.245 |
| 1920 | Problem: Crash for "vim -u NONE -N -c '&&'". |
| 1921 | Solution: Check for the pattern to be NULL. (Dominique Pelle) |
| 1922 | Files: src/ex_cmds.c |
| 1923 | |
| 1924 | Patch 7.4.246 |
| 1925 | Problem: Configure message for detecting smack are out of sequence. |
| 1926 | Solution: Put the messages in the right place. (Kazunobu Kuriyama) |
| 1927 | Files: src/configure.in, src/auto/configure |
| 1928 | |
| 1929 | Patch 7.4.247 |
| 1930 | Problem: When passing input to system() there is no way to keep NUL and |
| 1931 | NL characters separate. |
| 1932 | Solution: Optionally use a list for the system() input. (ZyX) |
| 1933 | Files: runtime/doc/eval.txt, src/eval.c |
| 1934 | |
| 1935 | Patch 7.4.248 |
| 1936 | Problem: Cannot distinguish between NL and NUL in output of system(). |
| 1937 | Solution: Add systemlist(). (ZyX) |
| 1938 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_cmds2.c, src/misc1.c, |
| 1939 | src/proto/misc1.pro |
| 1940 | |
| 1941 | Patch 7.4.249 |
| 1942 | Problem: Using setreg() with a list of numbers does not work. |
| 1943 | Solution: Use a separate buffer for numbers. (ZyX) |
| 1944 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 1945 | |
| 1946 | Patch 7.4.250 |
| 1947 | Problem: Some test files missing from distribution. |
| 1948 | Solution: Add pattern for newly added tests. |
| 1949 | Files: Filelist |
| 1950 | |
| 1951 | Patch 7.4.251 |
| 1952 | Problem: Crash when BufAdd autocommand wipes out the buffer. |
| 1953 | Solution: Check for buffer to still be valid. Postpone freeing the buffer |
| 1954 | structure. (Hirohito Higashi) |
| 1955 | Files: src/buffer.c, src/ex_cmds.c, src/fileio.c, src/globals.h |
| 1956 | |
| 1957 | Patch 7.4.252 |
| 1958 | Problem: Critical error in GTK, removing timer twice. |
| 1959 | Solution: Clear the timer after removing it. (James McCoy) |
| 1960 | Files: src/gui_gtk_x11.c |
| 1961 | |
| 1962 | Patch 7.4.253 |
| 1963 | Problem: Crash when using cpp syntax file with pattern using external |
| 1964 | match. (Havard Garnes) |
| 1965 | Solution: Discard match when end column is before start column. |
| 1966 | Files: src/regexp.c, src/regexp_nfa.c |
| 1967 | |
| 1968 | Patch 7.4.254 |
| 1969 | Problem: Smack support detection is incomplete. |
| 1970 | Solution: Check for attr/xattr.h and specific macro. |
| 1971 | Files: src/configure.in, src/auto/configure |
| 1972 | |
| 1973 | Patch 7.4.255 |
| 1974 | Problem: Configure check for smack doesn't work with all shells. (David |
| 1975 | Larson) |
| 1976 | Solution: Remove spaces in set command. |
| 1977 | Files: src/configure.in, src/auto/configure |
| 1978 | |
| 1979 | Patch 7.4.256 (after 7.4.248) |
| 1980 | Problem: Using systemlist() may cause a crash and does not handle NUL |
| 1981 | characters properly. |
| 1982 | Solution: Increase the reference count, allocate memory by length. (Yasuhiro |
| 1983 | Matsumoto) |
| 1984 | Files: src/eval.c |
| 1985 | |
| 1986 | Patch 7.4.257 |
| 1987 | Problem: Compiler warning, possibly for mismatch in parameter name. |
| 1988 | Solution: Rename the parameter in the declaration. |
| 1989 | Files: src/ops.c |
| 1990 | |
| 1991 | Patch 7.4.258 |
| 1992 | Problem: Configure fails if $CC contains options. |
| 1993 | Solution: Remove quotes around $CC. (Paul Barker) |
| 1994 | Files: src/configure.in, src/auto/configure |
| 1995 | |
| 1996 | Patch 7.4.259 |
| 1997 | Problem: Warning for misplaced "const". |
| 1998 | Solution: Move the "const". (Yukihiro Nakadaira) |
| 1999 | Files: src/os_unix.c |
| 2000 | |
| 2001 | Patch 7.4.260 |
| 2002 | Problem: It is possible to define a function with a colon in the name. It |
| 2003 | is possible to define a function with a lower case character if a |
| 2004 | "#" appears after the name. |
| 2005 | Solution: Disallow using a colon other than with "s:". Ignore "#" after the |
| 2006 | name. |
| 2007 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_eval.in, |
| 2008 | src/testdir/test_eval.ok |
| 2009 | |
| 2010 | Patch 7.4.261 |
| 2011 | Problem: When updating the window involves a regexp pattern, an interactive |
| 2012 | substitute to replace a "\n" with a line break fails. (Ingo |
| 2013 | Karkat) |
| 2014 | Solution: Set reg_line_lbr in vim_regsub() and vim_regsub_multi(). |
| 2015 | Files: src/regexp.c, src/testdir/test79.in, src/testdir/test79.ok |
| 2016 | |
| 2017 | Patch 7.4.262 |
| 2018 | Problem: Duplicate code in regexec(). |
| 2019 | Solution: Add line_lbr flag to regexec_nl(). |
| 2020 | Files: src/regexp.c, src/regexp_nfa.c, src/regexp.h |
| 2021 | |
| 2022 | Patch 7.4.263 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2023 | Problem: GCC 4.8 compiler warning for hiding a declaration (François Gannaz) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2024 | Solution: Remove the second declaration. |
| 2025 | Files: src/eval.c |
| 2026 | |
| 2027 | Patch 7.4.264 (after 7.4.260) |
| 2028 | Problem: Can't define a function starting with "g:". Can't assign a |
| 2029 | funcref to a buffer-local variable. |
| 2030 | Solution: Skip "g:" at the start of a function name. Don't check for colons |
| 2031 | when assigning to a variable. |
| 2032 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 2033 | |
| 2034 | Patch 7.4.265 (after 7.4.260) |
| 2035 | Problem: Can't call a global function with "g:" in an expression. |
| 2036 | Solution: Skip the "g:" when looking up the function. |
| 2037 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 2038 | |
| 2039 | Patch 7.4.266 |
| 2040 | Problem: Test 62 fails. |
| 2041 | Solution: Set the language to C. (Christian Brabandt) |
| 2042 | Files: src/testdir/test62.in |
| 2043 | |
| 2044 | Patch 7.4.267 (after 7.4.178) |
| 2045 | Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat) |
| 2046 | Solution: Add the setmark argument to do_join(). (Christian Brabandt) |
| 2047 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2048 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2049 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2050 | src/testdir/test_autoformat_join.in, |
| 2051 | src/testdir/test_autoformat_join.ok, src/Makefile, src/edit.c, |
| 2052 | src/ex_cmds.c, src/ex_docmd.c, src/normal.c, src/ops.c, |
| 2053 | src/proto/ops.pro |
| 2054 | |
| 2055 | Patch 7.4.268 |
| 2056 | Problem: Using exists() on a funcref for a script-local function does not |
| 2057 | work. |
| 2058 | Solution: Translate <SNR> to the special byte sequence. Add a test. |
| 2059 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok, |
| 2060 | src/testdir/test_eval_func.vim, Filelist |
| 2061 | |
| 2062 | Patch 7.4.269 |
| 2063 | Problem: CTRL-U in Insert mode does not work after using a cursor key. |
| 2064 | (Pine Wu) |
| 2065 | Solution: Use the original insert start position. (Christian Brabandt) |
| 2066 | Files: src/edit.c, src/testdir/test29.in, src/testdir/test29.ok |
| 2067 | |
| 2068 | Patch 7.4.270 |
| 2069 | Problem: Comparing pointers instead of the string they point to. |
| 2070 | Solution: Use strcmp(). (Ken Takata) |
| 2071 | Files: src/gui_gtk_x11.c |
| 2072 | |
| 2073 | Patch 7.4.271 |
| 2074 | Problem: Compiler warning on 64 bit windows. |
| 2075 | Solution: Add type cast. (Mike Williams) |
| 2076 | Files: src/ops.c |
| 2077 | |
| 2078 | Patch 7.4.272 |
| 2079 | Problem: Using just "$" does not cause an error message. |
| 2080 | Solution: Check for empty environment variable name. (Christian Brabandt) |
| 2081 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 2082 | |
| 2083 | Patch 7.4.273 |
| 2084 | Problem: "make autoconf" and "make reconfig" may first run configure and |
| 2085 | then remove the output. |
| 2086 | Solution: Add these targets to the exceptions. (Ken Takata) |
| 2087 | Files: src/Makefile |
| 2088 | |
| 2089 | Patch 7.4.274 |
| 2090 | Problem: When doing ":update" just before running an external command that |
| 2091 | changes the file, the timestamp may be unchanged and the file |
| 2092 | is not reloaded. |
| 2093 | Solution: Also check the file size. |
| 2094 | Files: src/fileio.c |
| 2095 | |
| 2096 | Patch 7.4.275 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2097 | Problem: When changing the type of a sign that hasn't been placed there is |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2098 | no error message. |
| 2099 | Solution: Add an error message. (Christian Brabandt) |
| 2100 | Files: src/ex_cmds.c |
| 2101 | |
| 2102 | Patch 7.4.276 |
| 2103 | Problem: The fish shell is not supported. |
| 2104 | Solution: Use begin/end instead of () for fish. (Andy Russell) |
| 2105 | Files: src/ex_cmds.c, src/misc1.c, src/option.c, src/proto/misc1.pro |
| 2106 | |
| 2107 | Patch 7.4.277 |
| 2108 | Problem: Using ":sign unplace *" may leave the cursor in the wrong position |
| 2109 | (Christian Brabandt) |
| 2110 | Solution: Update the cursor position when removing all signs. |
| 2111 | Files: src/buffer.c |
| 2112 | |
| 2113 | Patch 7.4.278 |
| 2114 | Problem: list_remove() conflicts with function defined in Sun header file. |
| 2115 | Solution: Rename the function. (Richard Palo) |
| 2116 | Files: src/eval.c, src/if_lua.c, src/if_py_both.h, src/proto/eval.pro |
| 2117 | |
| 2118 | Patch 7.4.279 |
| 2119 | Problem: globpath() returns a string, making it difficult to get a list of |
| 2120 | matches. (Greg Novack) |
| 2121 | Solution: Add an optional argument like with glob(). (Adnan Zafar) |
| 2122 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_getln.c, src/misc1.c, |
| 2123 | src/misc2.c, src/proto/ex_getln.pro, src/proto/misc2.pro, |
| 2124 | src/testdir/test97.in, src/testdir/test97.ok |
| 2125 | |
| 2126 | Patch 7.4.280 |
| 2127 | Problem: When using a session file the relative position of the cursor is |
| 2128 | not restored if there is another tab. (Nobuhiro Takasaki) |
| 2129 | Solution: Update w_wrow before calculating the fraction. |
| 2130 | Files: src/window.c |
| 2131 | |
| 2132 | Patch 7.4.281 |
| 2133 | Problem: When a session file has more than one tabpage and 'showtabline' is |
| 2134 | one the positions may be slightly off. |
| 2135 | Solution: Set 'showtabline' to two while positioning windows. |
| 2136 | Files: src/ex_docmd.c |
| 2137 | |
| 2138 | Patch 7.4.282 (after 7.4.279) |
| 2139 | Problem: Test 97 fails on Mac. |
| 2140 | Solution: Do not ignore case in file names. (Jun Takimoto) |
| 2141 | Files: src/testdir/test97.in |
| 2142 | |
| 2143 | Patch 7.4.283 (after 7.4.276) |
| 2144 | Problem: Compiler warning about unused variable. (Charles Cooper) |
| 2145 | Solution: Move the variable inside the #if block. |
| 2146 | Files: src/ex_cmds.c |
| 2147 | |
| 2148 | Patch 7.4.284 |
| 2149 | Problem: Setting 'langmap' in the modeline can cause trouble. E.g. mapping |
| 2150 | ":" breaks many commands. (Jens-Wolfhard Schicke-Uffmann) |
| 2151 | Solution: Disallow setting 'langmap' from the modeline. |
| 2152 | Files: src/option.c |
| 2153 | |
| 2154 | Patch 7.4.285 |
| 2155 | Problem: When 'relativenumber' is set and deleting lines or undoing that, |
| 2156 | line numbers are not always updated. (Robert Arkwright) |
| 2157 | Solution: (Christian Brabandt) |
| 2158 | Files: src/misc1.c |
| 2159 | |
| 2160 | Patch 7.4.286 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2161 | Problem: Error messages are inconsistent. (ZyX) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2162 | Solution: Change "Lists" to "list". |
| 2163 | Files: src/eval.c |
| 2164 | |
| 2165 | Patch 7.4.287 |
| 2166 | Problem: Patches for .hgignore don't work, since the file is not in the |
| 2167 | distribution. |
| 2168 | Solution: Add .hgignore to the distribution. Will be effective with the |
| 2169 | next version. |
| 2170 | Files: Filelist |
| 2171 | |
| 2172 | Patch 7.4.288 |
| 2173 | Problem: When 'spellfile' is set the screen is not redrawn. |
| 2174 | Solution: Redraw when updating the spelling info. (Christian Brabandt) |
| 2175 | Files: src/spell.c |
| 2176 | |
| 2177 | Patch 7.4.289 |
| 2178 | Problem: Pattern with repeated backreference does not match with new regexp |
| 2179 | engine. (Urtica Dioica) |
| 2180 | Solution: Also check the end of a submatch when deciding to put a state in |
| 2181 | the state list. |
| 2182 | Files: src/testdir/test64.in, src/testdir/test64.ok, src/regexp_nfa.c |
| 2183 | |
| 2184 | Patch 7.4.290 |
| 2185 | Problem: A non-greedy match followed by a branch is too greedy. (Ingo |
| 2186 | Karkat) |
| 2187 | Solution: Add NFA_MATCH when it is already in the state list if the position |
| 2188 | differs. |
| 2189 | Files: src/testdir/test64.in, src/testdir/test64.ok, src/regexp_nfa.c |
| 2190 | |
| 2191 | Patch 7.4.291 |
| 2192 | Problem: Compiler warning for int to pointer of different size when DEBUG |
| 2193 | is defined. |
| 2194 | Solution: use smsg() instead of EMSG3(). |
| 2195 | Files: src/regexp.c |
| 2196 | |
| 2197 | Patch 7.4.292 |
| 2198 | Problem: Searching for "a" does not match accented "a" with new regexp |
| 2199 | engine, does match with old engine. (David Bürgin) |
| 2200 | "ca" does not match "ca" with accented "a" with either engine. |
| 2201 | Solution: Change the old engine, check for following composing character |
| 2202 | also for single-byte patterns. |
| 2203 | Files: src/regexp.c, src/testdir/test95.in, src/testdir/test95.ok |
| 2204 | |
| 2205 | Patch 7.4.293 |
| 2206 | Problem: It is not possible to ignore composing characters at a specific |
| 2207 | point in a pattern. |
| 2208 | Solution: Add the %C item. |
| 2209 | Files: src/regexp.c, src/regexp_nfa.c, src/testdir/test95.in, |
| 2210 | src/testdir/test95.ok, runtime/doc/pattern.txt |
| 2211 | |
| 2212 | Patch 7.4.294 (7.4.293) |
| 2213 | Problem: Test files missing from patch. |
| 2214 | Solution: Patch the test files. |
| 2215 | Files: src/testdir/test95.in, src/testdir/test95.ok |
| 2216 | |
| 2217 | Patch 7.4.295 |
| 2218 | Problem: Various typos, bad white space and unclear comments. |
| 2219 | Solution: Fix typos. Improve white space. Update comments. |
| 2220 | Files: src/testdir/test49.in, src/macros.h, src/screen.c, src/structs.h, |
| 2221 | src/gui_gtk_x11.c, src/os_unix.c |
| 2222 | |
| 2223 | Patch 7.4.296 |
| 2224 | Problem: Can't run tests on Solaris. |
| 2225 | Solution: Change the way VIMRUNTIME is set. (Laurent Blume) |
| 2226 | Files: src/testdir/Makefile |
| 2227 | |
| 2228 | Patch 7.4.297 |
| 2229 | Problem: Memory leak from result of get_isolated_shell_name(). |
| 2230 | Solution: Free the memory. (Dominique Pelle) |
| 2231 | Files: src/ex_cmds.c, src/misc1.c |
| 2232 | |
| 2233 | Patch 7.4.298 |
| 2234 | Problem: Can't have a funcref start with "t:". |
| 2235 | Solution: Add "t" to the list of accepted names. (Yukihiro Nakadaira) |
| 2236 | Files: src/eval.c |
| 2237 | |
| 2238 | Patch 7.4.299 |
| 2239 | Problem: When running configure twice DYNAMIC_PYTHON_DLL may become empty. |
| 2240 | Solution: Use AC_CACHE_VAL. (Ken Takata) |
| 2241 | Files: src/configure.in, src/auto/configure |
| 2242 | |
| 2243 | Patch 7.4.300 |
| 2244 | Problem: The way config.cache is removed doesn't always work. |
| 2245 | Solution: Always remove config.cache. (Ken Takata) |
| 2246 | Files: src/Makefile |
| 2247 | |
| 2248 | Patch 7.4.301 (after 7.4.280) |
| 2249 | Problem: Still a scrolling problem when loading a session file. |
| 2250 | Solution: Fix off-by-one mistake. (Nobuhiro Takasaki) |
| 2251 | Files: src/window.c |
| 2252 | |
| 2253 | Patch 7.4.302 |
| 2254 | Problem: Signs placed with 'foldcolumn' set don't show up after filler |
| 2255 | lines. |
| 2256 | Solution: Take filler lines into account. (Olaf Dabrunz) |
| 2257 | Files: src/screen.c |
| 2258 | |
| 2259 | Patch 7.4.303 |
| 2260 | Problem: When using double-width characters the text displayed on the |
| 2261 | command line is sometimes truncated. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 2262 | Solution: Reset the string length. (Nobuhiro Takasaki) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2263 | Files: src/screen.c |
| 2264 | |
| 2265 | Patch 7.4.304 |
| 2266 | Problem: Cannot always use Python with Vim. |
| 2267 | Solution: Add the manifest to the executable. (Jacques Germishuys) |
| 2268 | Files: src/Make_mvc.mak |
| 2269 | |
| 2270 | Patch 7.4.305 |
| 2271 | Problem: Making 'ttymouse' empty after the xterm version was requested |
| 2272 | causes problems. (Elijah Griffin) |
| 2273 | Solution: Do not check for DEC mouse sequences when the xterm version was |
| 2274 | requested. Also don't request the xterm version when DEC mouse |
| 2275 | was enabled. |
| 2276 | Files: src/term.c, src/os_unix.c, src/proto/term.pro, src/globals.h |
| 2277 | |
| 2278 | Patch 7.4.306 |
| 2279 | Problem: getchar(0) does not return Esc. |
| 2280 | Solution: Do not wait for an Esc sequence to be complete. (Yasuhiro |
| 2281 | Matsumoto) |
| 2282 | Files: src/eval.c, src/getchar.c |
| 2283 | |
| 2284 | Patch 7.4.307 (after 7.4.305) |
| 2285 | Problem: Can't build without the +termresponse feature. |
| 2286 | Solution: Add proper #ifdefs. |
| 2287 | Files: src/os_unix.c, src/term.c |
| 2288 | |
| 2289 | Patch 7.4.308 |
| 2290 | Problem: When using ":diffsplit" on an empty file the cursor is displayed |
| 2291 | on the command line. |
| 2292 | Solution: Limit the value of w_topfill. |
| 2293 | Files: src/diff.c |
| 2294 | |
| 2295 | Patch 7.4.309 |
| 2296 | Problem: When increasing the size of the lower window, the upper window |
| 2297 | jumps back to the top. (Ron Aaron) |
| 2298 | Solution: Change setting the topline. (Nobuhiro Takasaki) |
| 2299 | Files: src/window.c |
| 2300 | |
| 2301 | Patch 7.4.310 |
| 2302 | Problem: getpos()/setpos() don't include curswant. |
| 2303 | Solution: Add a fifth number when getting/setting the cursor. |
| 2304 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok, |
| 2305 | runtime/doc/eval.txt |
| 2306 | |
| 2307 | Patch 7.4.311 |
| 2308 | Problem: Can't use winrestview to only restore part of the view. |
| 2309 | Solution: Handle missing items in the dict. (Christian Brabandt) |
| 2310 | Files: src/eval.c, runtime/doc/eval.txt |
| 2311 | |
| 2312 | Patch 7.4.312 |
| 2313 | Problem: Cannot figure out what argument list is being used for a window. |
| 2314 | Solution: Add the arglistid() function. (Marcin Szamotulski) |
| 2315 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c, |
| 2316 | src/ex_docmd.c, src/globals.h, src/structs.h, src/main.c |
| 2317 | |
| 2318 | Patch 7.4.313 (after 7.4.310) |
| 2319 | Problem: Changing the return value of getpos() causes an error. (Jie Zhu) |
| 2320 | Solution: Revert getpos() and add getcurpos(). |
| 2321 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok, |
| 2322 | runtime/doc/eval.txt |
| 2323 | |
| 2324 | Patch 7.4.314 |
| 2325 | Problem: Completion messages can get in the way of a plugin. |
| 2326 | Solution: Add 'c' flag to 'shortmess' option. (Shougo Matsu) |
| 2327 | Files: runtime/doc/options.txt, src/edit.c, src/option.h, src/screen.c |
| 2328 | |
| 2329 | Patch 7.4.315 (after 7.4.309) |
| 2330 | Problem: Fixes for computation of topline not tested. |
| 2331 | Solution: Add test. (Hirohito Higashi) |
| 2332 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2333 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2334 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2335 | src/testdir/test107.in, src/testdir/test107.ok |
| 2336 | |
| 2337 | Patch 7.4.316 |
| 2338 | Problem: Warning from 64-bit compiler. |
| 2339 | Solution: Add type cast. (Mike Williams) |
| 2340 | Files: src/ex_getln.c |
| 2341 | |
| 2342 | Patch 7.4.317 |
| 2343 | Problem: Crash when starting gvim. Issue 230. |
| 2344 | Solution: Check for a pointer to be NULL. (Christian Brabandt) |
| 2345 | Files: src/window.c |
| 2346 | |
| 2347 | Patch 7.4.318 |
| 2348 | Problem: Check for whether a highlight group has settings ignores fg and bg |
| 2349 | color settings. |
| 2350 | Solution: Also check cterm and GUI color settings. (Christian Brabandt) |
| 2351 | Files: src/syntax.c |
| 2352 | |
| 2353 | Patch 7.4.319 |
| 2354 | Problem: Crash when putting zero bytes on the clipboard. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2355 | Solution: Do not support the utf8_atom target when not using a Unicode |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2356 | encoding. (Naofumi Honda) |
| 2357 | Files: src/ui.c |
| 2358 | |
| 2359 | Patch 7.4.320 |
| 2360 | Problem: Possible crash when an BufLeave autocommand deletes the buffer. |
| 2361 | Solution: Check for the window pointer being valid. Postpone freeing the |
| 2362 | window until autocommands are done. (Yasuhiro Matsumoto) |
| 2363 | Files: src/buffer.c, src/fileio.c, src/globals.h, src/window.c |
| 2364 | |
| 2365 | Patch 7.4.321 |
| 2366 | Problem: Can't build with strawberry perl 5.20 + mingw-w64-4.9.0. |
| 2367 | Solution: Define save_strlen. (Ken Takata) |
| 2368 | Files: src/if_perl.xs |
| 2369 | |
| 2370 | Patch 7.4.322 |
| 2371 | Problem: Using "msgfmt" is hard coded, cannot use "gmsgfmt". |
| 2372 | Solution: Use the msgfmt command found by configure. (Danek Duvall) |
| 2373 | Files: src/config.mk.in, src/po/Makefile |
| 2374 | |
| 2375 | Patch 7.4.323 |
| 2376 | Problem: Substitute() with zero width pattern breaks multi-byte character. |
| 2377 | Solution: Take multi-byte character size into account. (Yukihiro Nakadaira) |
| 2378 | Files: src/eval.c src/testdir/test69.in, src/testdir/test69.ok |
| 2379 | |
| 2380 | Patch 7.4.324 |
| 2381 | Problem: In Ex mode, cyrillic characters are not handled. (Stas Malavin) |
| 2382 | Solution: Support multi-byte characters in Ex mode. (Yukihiro Nakadaira) |
| 2383 | Files: src/ex_getln.c |
| 2384 | |
| 2385 | Patch 7.4.325 |
| 2386 | Problem: When starting the gui and changing the window size the status line |
| 2387 | may not be drawn correctly. |
| 2388 | Solution: Catch new_win_height() being called recursively. (Christian |
| 2389 | Brabandt) |
| 2390 | Files: src/window.c |
| 2391 | |
| 2392 | Patch 7.4.326 |
| 2393 | Problem: Can't build Tiny version. (Elimar Riesebieter) |
| 2394 | Solution: Add #ifdef. |
| 2395 | Files: src/window.c |
| 2396 | |
| 2397 | Patch 7.4.327 |
| 2398 | Problem: When 'verbose' is set to display the return value of a function, |
| 2399 | may get E724 repeatedly. |
| 2400 | Solution: Do not give an error for verbose messages. Abort conversion to |
| 2401 | string after an error. |
| 2402 | Files: src/eval.c |
| 2403 | |
| 2404 | Patch 7.4.328 |
| 2405 | Problem: Selection of inner block is inconsistent. |
| 2406 | Solution: Skip indent not only for '}' but all parens. (Tom McDonald) |
| 2407 | Files: src/search.c |
| 2408 | |
| 2409 | Patch 7.4.329 |
| 2410 | Problem: When moving the cursor and then switching to another window the |
| 2411 | previous window isn't scrolled. (Yukihiro Nakadaira) |
| 2412 | Solution: Call update_topline() before leaving the window. (Christian |
| 2413 | Brabandt) |
| 2414 | Files: src/window.c |
| 2415 | |
| 2416 | Patch 7.4.330 |
| 2417 | Problem: Using a regexp pattern to highlight a specific position can be |
| 2418 | slow. |
| 2419 | Solution: Add matchaddpos() to highlight specific positions efficiently. |
| 2420 | (Alexey Radkov) |
| 2421 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, |
| 2422 | runtime/plugin/matchparen.vim, src/eval.c, src/ex_docmd.c, |
| 2423 | src/proto/window.pro, src/screen.c, src/structs.h, |
| 2424 | src/testdir/test63.in, src/testdir/test63.ok, src/window.c |
| 2425 | |
| 2426 | Patch 7.4.331 |
| 2427 | Problem: Relative numbering not updated after a linewise yank. Issue 235. |
| 2428 | Solution: Redraw after the yank. (Christian Brabandt) |
| 2429 | Files: src/ops.c |
| 2430 | |
| 2431 | Patch 7.4.332 |
| 2432 | Problem: GTK: When a sign icon doesn't fit exactly there can be ugly gaps. |
| 2433 | Solution: Scale the sign to fit when the aspect ratio is not too far off. |
| 2434 | (Christian Brabandt) |
| 2435 | Files: src/gui_gtk_x11.c |
| 2436 | |
| 2437 | Patch 7.4.333 |
| 2438 | Problem: Compiler warning for unused function. |
| 2439 | Solution: Put the function inside the #ifdef. |
| 2440 | Files: src/screen.c |
| 2441 | |
| 2442 | Patch 7.4.334 (after 7.4.330) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2443 | Problem: Uninitialized variables, causing some problems. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2444 | Solution: Initialize the variables. (Dominique Pelle) |
| 2445 | Files: src/screen.c, src/window.c |
| 2446 | |
| 2447 | Patch 7.4.335 |
| 2448 | Problem: No digraph for the new rouble sign. |
| 2449 | Solution: Add the digraphs =R and =P. |
| 2450 | Files: src/digraph.c, runtime/doc/digraph.txt |
| 2451 | |
| 2452 | Patch 7.4.336 |
| 2453 | Problem: Setting 'history' to a big value causes out-of-memory errors. |
| 2454 | Solution: Limit the value to 10000. (Hirohito Higashi) |
| 2455 | Files: runtime/doc/options.txt, src/option.c |
| 2456 | |
| 2457 | Patch 7.4.337 |
| 2458 | Problem: When there is an error preparing to edit the command line, the |
| 2459 | command won't be executed. (Hirohito Higashi) |
| 2460 | Solution: Reset did_emsg before editing. |
| 2461 | Files: src/ex_getln.c |
| 2462 | |
| 2463 | Patch 7.4.338 |
| 2464 | Problem: Cannot wrap lines taking indent into account. |
| 2465 | Solution: Add the 'breakindent' option. (many authors, final improvements by |
| 2466 | Christian Brabandt) |
| 2467 | Files: runtime/doc/eval.txt, runtime/doc/options.txt, runtime/optwin.vim, |
| 2468 | src/buffer.c, src/charset.c, src/edit.c, src/ex_getln.c, |
| 2469 | src/getchar.c, src/misc1.c, src/misc2.c, src/ops.c, src/option.c, |
| 2470 | src/option.h, src/proto/charset.pro, src/proto/misc1.pro, |
| 2471 | src/proto/option.pro, src/screen.c, src/structs.h, |
| 2472 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2473 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2474 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2475 | src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok, |
| 2476 | src/ui.c, src/version.c |
| 2477 | |
| 2478 | Patch 7.4.339 |
| 2479 | Problem: Local function is available globally. |
| 2480 | Solution: Add "static". |
| 2481 | Files: src/option.c, src/proto/option.pro |
| 2482 | |
| 2483 | Patch 7.4.340 |
| 2484 | Problem: Error from sed about illegal bytes when installing Vim. |
| 2485 | Solution: Prepend LC_ALL=C. (Itchyny) |
| 2486 | Files: src/installman.sh |
| 2487 | |
| 2488 | Patch 7.4.341 |
| 2489 | Problem: sort() doesn't handle numbers well. |
| 2490 | Solution: Add an argument to specify sorting on numbers. (Christian Brabandt) |
| 2491 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test55.in, |
| 2492 | src/testdir/test55.ok |
| 2493 | |
| 2494 | Patch 7.4.342 |
| 2495 | Problem: Clang gives warnings. |
| 2496 | Solution: Add an else block. (Dominique Pelle) |
| 2497 | Files: src/gui_beval.c |
| 2498 | |
| 2499 | Patch 7.4.343 |
| 2500 | Problem: matchdelete() does not always update the right lines. |
| 2501 | Solution: Fix off-by-one error. (Ozaki Kiichi) |
| 2502 | Files: src/window.c |
| 2503 | |
| 2504 | Patch 7.4.344 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2505 | Problem: Unnecessary initializations and other things related to |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2506 | matchaddpos(). |
| 2507 | Solution: Code cleanup. (Alexey Radkov) |
| 2508 | Files: runtime/doc/eval.txt, src/screen.c, src/window.c |
| 2509 | |
| 2510 | Patch 7.4.345 (after 7.4.338) |
| 2511 | Problem: Indent is not updated when deleting indent. |
| 2512 | Solution: Remember changedtick. |
| 2513 | Files: src/misc1.c |
| 2514 | |
| 2515 | Patch 7.4.346 (after 7.4.338) |
| 2516 | Problem: Indent is not updated when changing 'breakindentopt'. (itchyny) |
| 2517 | Solution: Do not cache "brishift". (Christian Brabandt) |
| 2518 | Files: src/misc1.c |
| 2519 | |
| 2520 | Patch 7.4.347 |
| 2521 | Problem: test55 fails on some systems. |
| 2522 | Solution: Remove the elements that all result in zero and can end up in an |
| 2523 | arbitrary position. |
| 2524 | Files: src/testdir/test55.in, src/testdir/test55.ok |
| 2525 | |
| 2526 | Patch 7.4.348 |
| 2527 | Problem: When using "J1" in 'cinoptions' a line below a continuation line |
| 2528 | gets too much indent. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2529 | Solution: Fix parentheses in condition. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2530 | Files: src/misc1.c |
| 2531 | |
| 2532 | Patch 7.4.349 |
| 2533 | Problem: When there are matches to highlight the whole window is redrawn, |
| 2534 | which is slow. |
| 2535 | Solution: Only redraw everything when lines were inserted or deleted. |
| 2536 | Reset b_mod_xlines when needed. (Alexey Radkov) |
| 2537 | Files: src/screen.c, src/window.c |
| 2538 | |
| 2539 | Patch 7.4.350 |
| 2540 | Problem: Using C indenting for Javascript does not work well for a {} block |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2541 | inside parentheses. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2542 | Solution: When looking for a matching paren ignore one that is before the |
| 2543 | start of a {} block. |
| 2544 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 2545 | |
| 2546 | Patch 7.4.351 |
| 2547 | Problem: sort() is not stable. |
| 2548 | Solution: When the items are identical, compare the pointers. |
| 2549 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok |
| 2550 | |
| 2551 | Patch 7.4.352 |
| 2552 | Problem: With 'linebreak' a tab causes a missing line break. |
| 2553 | Solution: Count a tab for what it's worth also for shorter lines. |
| 2554 | (Christian Brabandt) |
| 2555 | Files: src/charset.c |
| 2556 | |
| 2557 | Patch 7.4.353 |
| 2558 | Problem: 'linebreak' doesn't work with the 'list' option. |
| 2559 | Solution: Make it work. (Christian Brabandt) |
| 2560 | Files: runtime/doc/options.txt, src/charset.c, src/screen.c, |
| 2561 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2562 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2563 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2564 | src/testdir/test_listlbr.in, src/testdir/test_listlbr.ok |
| 2565 | |
| 2566 | Patch 7.4.354 |
| 2567 | Problem: Compiler warning. |
| 2568 | Solution: Change NUL to NULL. (Ken Takata) |
| 2569 | Files: src/screen.c |
| 2570 | |
| 2571 | Patch 7.4.355 |
| 2572 | Problem: Several problems with Javascript indenting. |
| 2573 | Solution: Improve Javascript indenting. |
| 2574 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 2575 | |
| 2576 | Patch 7.4.356 |
| 2577 | Problem: Mercurial does not ignore memfile_test. (Daniel Hahler) |
| 2578 | Solution: Add memfile_test to ignored files, remove trailing spaces. |
| 2579 | Files: .hgignore |
| 2580 | |
| 2581 | Patch 7.4.357 |
| 2582 | Problem: After completion some characters are not redrawn. |
| 2583 | Solution: Clear the command line unconditionally. (Jacob Niehus) |
| 2584 | Files: src/edit.c |
| 2585 | |
| 2586 | Patch 7.4.358 (after 7.4.351) |
| 2587 | Problem: Sort is not always stable. |
| 2588 | Solution: Add an index instead of relying on the pointer to remain the same. |
| 2589 | Idea by Jun Takimoto. |
| 2590 | Files: src/eval.c |
| 2591 | |
| 2592 | Patch 7.4.359 |
| 2593 | Problem: When 'ttymouse' is set to 'uxterm' the xterm version is not |
| 2594 | requested. (Tomas Janousek) |
| 2595 | Solution: Do not mark uxterm as a conflict mouse and add |
| 2596 | resume_get_esc_sequence(). |
| 2597 | Files: src/term.c, src/os_unix.c, src/proto/term.pro |
| 2598 | |
| 2599 | Patch 7.4.360 |
| 2600 | Problem: In a regexp pattern a "$" followed by \v or \V is not seen as the |
| 2601 | end-of-line. |
| 2602 | Solution: Handle the situation. (Ozaki Kiichi) |
| 2603 | Files: src/regexp.c |
| 2604 | |
| 2605 | Patch 7.4.361 |
| 2606 | Problem: Lots of flickering when filling the preview window for 'omnifunc'. |
| 2607 | Solution: Disable redrawing. (Hirohito Higashi) |
| 2608 | Files: src/popupmnu.c |
| 2609 | |
| 2610 | Patch 7.4.362 |
| 2611 | Problem: When matchaddpos() uses a length smaller than the number of bytes |
| 2612 | in the (last) character the highlight continues until the end of |
| 2613 | the line. |
| 2614 | Solution: Change condition from equal to larger-or-equal. |
| 2615 | Files: src/screen.c |
| 2616 | |
| 2617 | Patch 7.4.363 |
| 2618 | Problem: In Windows console typing 0xCE does not work. |
| 2619 | Solution: Convert 0xCE to K_NUL 3. (Nobuhiro Takasaki et al.) |
| 2620 | Files: src/os_win32.c, src/term.c |
| 2621 | |
| 2622 | Patch 7.4.364 |
| 2623 | Problem: When the viminfo file can't be renamed there is no error message. |
| 2624 | (Vladimir Berezhnoy) |
| 2625 | Solution: Check for the rename to fail. |
| 2626 | Files: src/ex_cmds.c |
| 2627 | |
| 2628 | Patch 7.4.365 |
| 2629 | Problem: Crash when using ":botright split" when there isn't much space. |
| 2630 | Solution: Add a check for the minimum width/height. (Yukihiro Nakadaira) |
| 2631 | Files: src/window.c |
| 2632 | |
| 2633 | Patch 7.4.366 |
| 2634 | Problem: Can't run the linebreak test on MS-Windows. |
| 2635 | Solution: Fix the output file name. (Taro Muraoka) |
| 2636 | Files: src/testdir/Make_dos.mak |
| 2637 | |
| 2638 | Patch 7.4.367 (after 7.4.357) |
| 2639 | Problem: Other solution for redrawing after completion. |
| 2640 | Solution: Schedule a window redraw instead of just clearing the command |
| 2641 | line. (Jacob Niehus) |
| 2642 | Files: src/edit.c |
| 2643 | |
| 2644 | Patch 7.4.368 |
| 2645 | Problem: Restoring the window sizes after closing the command line window |
| 2646 | doesn't work properly if there are nested splits. |
| 2647 | Solution: Restore the sizes twice. (Hirohito Higashi) |
| 2648 | Files: src/window.c |
| 2649 | |
| 2650 | Patch 7.4.369 |
| 2651 | Problem: Using freed memory when exiting while compiled with EXITFREE. |
| 2652 | Solution: Set curwin to NULL and check for that. (Dominique Pelle) |
| 2653 | Files: src/buffer.c, src/window.c |
| 2654 | |
| 2655 | Patch 7.4.370 |
| 2656 | Problem: Linebreak test fails when encoding is not utf-8. (Danek Duvall) |
| 2657 | Solution: Split the test in a single byte one and a utf-8 one. (Christian |
| 2658 | Brabandt) |
| 2659 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2660 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2661 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2662 | src/testdir/test_listlbr.in, src/testdir/test_listlbr.ok, |
| 2663 | src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok |
| 2664 | |
| 2665 | Patch 7.4.371 |
| 2666 | Problem: When 'linebreak' is set control characters are not correctly |
| 2667 | displayed. (Kimmy Lindvall) |
| 2668 | Solution: Set n_extra. (Christian Brabandt) |
| 2669 | Files: src/screen.c |
| 2670 | |
| 2671 | Patch 7.4.372 |
| 2672 | Problem: When 'winminheight' is zero there might not be one line for the |
| 2673 | current window. |
| 2674 | Solution: Change the size computations. (Yukihiro Nakadaira) |
| 2675 | Files: src/window.c |
| 2676 | |
| 2677 | Patch 7.4.373 |
| 2678 | Problem: Compiler warning for unused argument and unused variable. |
| 2679 | Solution: Add UNUSED. Move variable inside #ifdef. |
| 2680 | Files: src/charset.c, src/window.c |
| 2681 | |
| 2682 | Patch 7.4.374 |
| 2683 | Problem: Character after "fb" command not mapped if it might be a composing |
| 2684 | character. |
| 2685 | Solution: Don't disable mapping when looking for a composing character. |
| 2686 | (Jacob Niehus) |
| 2687 | Files: src/normal.c |
| 2688 | |
| 2689 | Patch 7.4.375 |
| 2690 | Problem: Test 63 fails when run with GUI-only Vim. |
| 2691 | Solution: Add guibg attributes. (suggested by Mike Soyka) |
| 2692 | Files: src/testdir/test63.in |
| 2693 | |
| 2694 | Patch 7.4.376 (after 7.4.367) |
| 2695 | Problem: Popup menu flickers too much. |
| 2696 | Solution: Remove the forced redraw. (Hirohito Higashi) |
| 2697 | Files: src/edit.c |
| 2698 | |
| 2699 | Patch 7.4.377 |
| 2700 | Problem: When 'equalalways' is set a split may report "no room" even though |
| 2701 | there is plenty of room. |
| 2702 | Solution: Compute the available room properly. (Yukihiro Nakadaira) |
| 2703 | Files: src/window.c |
| 2704 | |
| 2705 | Patch 7.4.378 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2706 | Problem: Title of quickfix list is not kept for setqflist(list, 'r'). |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2707 | Solution: Keep the title. Add a test. (Lcd) |
| 2708 | Files: src/quickfix.c, src/testdir/Make_amiga.mak, |
| 2709 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 2710 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 2711 | src/testdir/Makefile, src/testdir/test_qf_title.in, |
| 2712 | src/testdir/test_qf_title.ok |
| 2713 | |
| 2714 | Patch 7.4.379 |
| 2715 | Problem: Accessing freed memory after using setqflist(list, 'r'). (Lcd) |
| 2716 | Solution: Reset qf_index. |
| 2717 | Files: src/quickfix.c |
| 2718 | |
| 2719 | Patch 7.4.380 |
| 2720 | Problem: Loading python may cause Vim to exit. |
| 2721 | Solution: Avoid loading the "site" module. (Taro Muraoka) |
| 2722 | Files: src/if_python.c |
| 2723 | |
| 2724 | Patch 7.4.381 |
| 2725 | Problem: Get u_undo error when backspacing in Insert mode deletes more than |
| 2726 | one line break. (Ayberk Ozgur) |
| 2727 | Solution: Also decrement Insstart.lnum. |
| 2728 | Files: src/edit.c |
| 2729 | |
| 2730 | Patch 7.4.382 |
| 2731 | Problem: Mapping characters may not work after typing Esc in Insert mode. |
| 2732 | Solution: Fix the noremap flags for inserted characters. (Jacob Niehus) |
| 2733 | Files: src/getchar.c |
| 2734 | |
| 2735 | Patch 7.4.383 |
| 2736 | Problem: Bad interaction between preview window and omnifunc. |
| 2737 | Solution: Avoid redrawing the status line. (Hirohito Higashi) |
| 2738 | Files: src/popupmnu.c |
| 2739 | |
| 2740 | Patch 7.4.384 |
| 2741 | Problem: Test 102 fails when compiled with small features. |
| 2742 | Solution: Source small.vim. (Jacob Niehus) |
| 2743 | Files: src/testdir/test102.in |
| 2744 | |
| 2745 | Patch 7.4.385 |
| 2746 | Problem: When building with tiny or small features building the .mo files |
| 2747 | fails. |
| 2748 | Solution: In autoconf do not setup for building the .mo files when it would |
| 2749 | fail. |
| 2750 | Files: src/configure.in, src/auto/configure |
| 2751 | |
| 2752 | Patch 7.4.386 |
| 2753 | Problem: When splitting a window the changelist position is wrong. |
| 2754 | Solution: Copy the changelist position. (Jacob Niehus) |
| 2755 | Files: src/window.c, src/testdir/Make_amiga.mak, |
| 2756 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 2757 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 2758 | src/testdir/Makefile, src/testdir/test_changelist.in, |
| 2759 | src/testdir/test_changelist.ok |
| 2760 | |
| 2761 | Patch 7.4.387 |
| 2762 | Problem: "4gro" replaces one character then executes "ooo". (Urtica Dioica) |
| 2763 | Solution: Write the ESC in the second stuff buffer. |
| 2764 | Files: src/getchar.c, src/proto/getchar.pro, src/edit.c, |
| 2765 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2766 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2767 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2768 | src/testdir/test_insertcount.in, src/testdir/test_insertcount.ok |
| 2769 | |
| 2770 | Patch 7.4.388 |
| 2771 | Problem: With 'linebreak' set and 'list' unset a Tab is not counted |
| 2772 | properly. (Kent Sibilev) |
| 2773 | Solution: Check the 'list' option. (Christian Brabandt) |
| 2774 | Files: src/screen.c, src/testdir/test_listlbr_utf8.in, |
| 2775 | src/testdir/test_listlbr_utf8.ok |
| 2776 | |
| 2777 | Patch 7.4.389 |
| 2778 | Problem: Still sometimes Vim enters Replace mode when starting up. |
| 2779 | Solution: Use a different solution in detecting the termresponse and |
| 2780 | location response. (Hayaki Saito) |
| 2781 | Files: src/globals.h, src/os_unix.c, src/term.c, src/proto/term.pro |
| 2782 | |
| 2783 | Patch 7.4.390 |
| 2784 | Problem: Advancing pointer over end of a string. |
| 2785 | Solution: Init quote character to -1 instead of zero. (Dominique Pelle) |
| 2786 | Files: src/misc1.c |
| 2787 | |
| 2788 | Patch 7.4.391 |
| 2789 | Problem: No 'cursorline' highlighting when the cursor is on a line with |
| 2790 | diff highlighting. (Benjamin Fritz) |
| 2791 | Solution: Combine the highlight attributes. (Christian Brabandt) |
| 2792 | Files: src/screen.c |
| 2793 | |
| 2794 | Patch 7.4.392 |
| 2795 | Problem: Not easy to detect type of command line window. |
| 2796 | Solution: Add the getcmdwintype() function. (Jacob Niehus) |
| 2797 | Files: src/eval.c |
| 2798 | |
| 2799 | Patch 7.4.393 |
| 2800 | Problem: Text drawing on newer MS-Windows systems is suboptimal. Some |
| 2801 | multi-byte characters are not displayed, even though the same font |
| 2802 | in Notepad can display them. (Srinath Avadhanula) |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 2803 | Solution: Add the 'renderoptions' option to enable DirectX drawing. (Taro |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2804 | Muraoka) |
| 2805 | Files: runtime/doc/eval.txt, runtime/doc/options.txt, |
| 2806 | runtime/doc/various.txt, src/Make_cyg.mak, src/Make_ming.mak, |
| 2807 | src/Make_mvc.mak, src/eval.c, src/gui_dwrite.cpp, |
| 2808 | src/gui_dwrite.h, src/gui_w32.c, src/gui_w48.c, src/option.c, |
| 2809 | src/option.h, src/version.c, src/vim.h, src/proto/gui_w32.pro |
| 2810 | |
| 2811 | Patch 7.4.394 (after 7.4.393) |
| 2812 | Problem: When using DirectX last italic character is incomplete. |
| 2813 | Solution: Add one to the number of cells. (Ken Takata) |
| 2814 | Files: src/gui_w32.c |
| 2815 | |
| 2816 | Patch 7.4.395 (after 7.4.355) |
| 2817 | Problem: C indent is wrong below an if with wrapped condition followed by |
| 2818 | curly braces. (Trevor Powell) |
| 2819 | Solution: Make a copy of tryposBrace. |
| 2820 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 2821 | |
| 2822 | Patch 7.4.396 |
| 2823 | Problem: When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful) |
| 2824 | Solution: Only set the clipboard after the last delete. (Christian Brabandt) |
| 2825 | Files: src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/globals.h, |
| 2826 | src/ops.c, src/proto/ui.pro, src/ui.c |
| 2827 | |
| 2828 | Patch 7.4.397 |
| 2829 | Problem: Matchparen only uses the topmost syntax item. |
| 2830 | Solution: Go through the syntax stack to find items. (James McCoy) |
| 2831 | Also use getcurpos() when possible. |
| 2832 | Files: runtime/plugin/matchparen.vim |
| 2833 | |
| 2834 | Patch 7.4.398 (after 7.4.393) |
| 2835 | Problem: Gcc error for the argument of InterlockedIncrement() and |
| 2836 | InterlockedDecrement(). (Axel Bender) |
| 2837 | Solution: Remove "unsigned" from the cRefCount_ declaration. |
| 2838 | Files: src/gui_dwrite.cpp |
| 2839 | |
| 2840 | Patch 7.4.399 |
| 2841 | Problem: Encryption implementation is messy. Blowfish encryption has a |
| 2842 | weakness. |
| 2843 | Solution: Refactor the encryption, store the state in an allocated struct |
| 2844 | instead of using a save/restore mechanism. Introduce the |
| 2845 | "blowfish2" method, which does not have the weakness and encrypts |
| 2846 | the whole undo file. (largely by David Leadbeater) |
| 2847 | Files: runtime/doc/editing.txt, runtime/doc/options.txt, src/Makefile, |
| 2848 | src/blowfish.c, src/crypt.c, src/crypt_zip.c, src/ex_docmd.c, |
| 2849 | src/fileio.c, src/globals.h, src/main.c, src/memline.c, |
| 2850 | src/misc2.c, src/option.c, src/proto.h, src/proto/blowfish.pro, |
| 2851 | src/proto/crypt.pro, src/proto/crypt_zip.pro, |
| 2852 | src/proto/fileio.pro, src/proto/misc2.pro, src/structs.h, |
| 2853 | src/undo.c, src/testdir/test71.in, src/testdir/test71.ok, |
| 2854 | src/testdir/test71a.in, src/testdir/test72.in, |
| 2855 | src/testdir/test72.ok |
| 2856 | |
| 2857 | Patch 7.4.400 |
| 2858 | Problem: List of distributed files is incomplete. |
| 2859 | Solution: Add recently added files. |
| 2860 | Files: Filelist |
| 2861 | |
| 2862 | Patch 7.4.401 (after 7.4.399) |
| 2863 | Problem: Can't build on MS-Windows. |
| 2864 | Solution: Include the new files in all the Makefiles. |
| 2865 | Files: src/Make_bc3.mak, src/Make_bc5.mak, src/Make_cyg.mak, |
| 2866 | src/Make_dice.mak, src/Make_djg.mak, src/Make_ivc.mak, |
| 2867 | src/Make_manx.mak, src/Make_ming.mak, src/Make_morph.mak, |
| 2868 | src/Make_mvc.mak, src/Make_os2.mak, src/Make_sas.mak, |
| 2869 | Make_vms.mms |
| 2870 | |
| 2871 | Patch 7.4.402 |
| 2872 | Problem: Test 72 crashes under certain conditions. (Kazunobu Kuriyama) |
| 2873 | Solution: Clear the whole bufinfo_T early. |
| 2874 | Files: src/undo.c |
| 2875 | |
| 2876 | Patch 7.4.403 |
| 2877 | Problem: Valgrind reports errors when running test 72. (Dominique Pelle) |
| 2878 | Solution: Reset the local 'cryptmethod' option before storing the seed. |
| 2879 | Set the seed in the memfile even when there is no block0 yet. |
| 2880 | Files: src/fileio.c, src/option.c, src/memline.c |
| 2881 | |
| 2882 | Patch 7.4.404 |
| 2883 | Problem: Windows 64 bit compiler warnings. |
| 2884 | Solution: Add type casts. (Mike Williams) |
| 2885 | Files: src/crypt.c, src/undo.c |
| 2886 | |
| 2887 | Patch 7.4.405 |
| 2888 | Problem: Screen updating is slow when using matches. |
| 2889 | Solution: Do not use the ">=" as in patch 7.4.362, check the lnum. |
| 2890 | Files: src/screen.c, src/testdir/test63.in, src/testdir/test63.ok |
| 2891 | |
| 2892 | Patch 7.4.406 |
| 2893 | Problem: Test 72 and 100 fail on MS-Windows. |
| 2894 | Solution: Set fileformat to unix in the tests. (Taro Muraoka) |
| 2895 | Files: src/testdir/test72.in, src/testdir/test100.in |
| 2896 | |
| 2897 | Patch 7.4.407 |
| 2898 | Problem: Inserting text for Visual block mode, with cursor movement, |
| 2899 | repeats the wrong text. (Aleksandar Ivanov) |
| 2900 | Solution: Reset the update_Insstart_orig flag. (Christian Brabandt) |
| 2901 | Files: src/edit.c, src/testdir/test39.in, src/testdir/test39.ok |
| 2902 | |
| 2903 | Patch 7.4.408 |
| 2904 | Problem: Visual block insert breaks a multi-byte character. |
| 2905 | Solution: Calculate the position properly. (Yasuhiro Matsumoto) |
| 2906 | Files: src/ops.c, src/testdir/test_utf8.in, src/testdir/test_utf8.ok, |
| 2907 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2908 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2909 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 2910 | |
| 2911 | Patch 7.4.409 |
| 2912 | Problem: Can't build with Perl on Fedora 20. |
| 2913 | Solution: Find xsubpp in another directory. (Michael Henry) |
| 2914 | Files: src/Makefile, src/config.mk.in, src/configure.in, |
| 2915 | src/auto/configure |
| 2916 | |
| 2917 | Patch 7.4.410 |
| 2918 | Problem: Fold does not open after search when there is a CmdwinLeave |
| 2919 | autocommand. |
| 2920 | Solution: Restore KeyTyped. (Jacob Niehus) |
| 2921 | Files: src/ex_getln.c |
| 2922 | |
| 2923 | Patch 7.4.411 |
| 2924 | Problem: "foo bar" sorts before "foo" with sort(). (John Little) |
| 2925 | Solution: Avoid putting quotes around strings before comparing them. |
| 2926 | Files: src/eval.c |
| 2927 | |
| 2928 | Patch 7.4.412 |
| 2929 | Problem: Can't build on Windows XP with MSVC. |
| 2930 | Solution: Add SUBSYSTEM_VER to the Makefile. (Yongwei Wu) |
| 2931 | Files: src/Make_mvc.mak, src/INSTALLpc.txt |
| 2932 | |
| 2933 | Patch 7.4.413 |
| 2934 | Problem: MS-Windows: Using US international keyboard layout, inserting dead |
| 2935 | key by pressing space does not always work. Issue 250. |
| 2936 | Solution: Let MS-Windows translate the message. (John Wellesz) |
| 2937 | Files: src/gui_w48.c |
| 2938 | |
| 2939 | Patch 7.4.414 |
| 2940 | Problem: Cannot define a command only when it's used. |
| 2941 | Solution: Add the CmdUndefined autocommand event. (partly by Yasuhiro |
| 2942 | Matsumoto) |
| 2943 | Files: runtime/doc/autocmd.txt, src/ex_docmd.c, src/fileio.c, |
| 2944 | src/proto/fileio.pro |
| 2945 | |
| 2946 | Patch 7.4.415 (after 7.4.414) |
| 2947 | Problem: Cannot build. Warning for shadowed variable. (John Little) |
| 2948 | Solution: Add missing change. Remove declaration. |
| 2949 | Files: src/vim.h, src/ex_docmd.c |
| 2950 | |
| 2951 | Patch 7.4.416 |
| 2952 | Problem: Problem with breakindent/showbreak and tabs. |
| 2953 | Solution: Handle tabs differently. (Christian Brabandt) |
| 2954 | Files: src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok, |
| 2955 | src/charset.c |
| 2956 | |
| 2957 | Patch 7.4.417 |
| 2958 | Problem: After splitting a window and setting 'breakindent' the default |
| 2959 | minimum with is not respected. |
| 2960 | Solution: Call briopt_check() when copying options to a new window. |
| 2961 | Files: src/option.c, src/proto/option.pro, |
| 2962 | src/testdir/test_breakindent.in |
| 2963 | |
| 2964 | Patch 7.4.418 |
| 2965 | Problem: When leaving ":append" the cursor shape is like in Insert mode. |
| 2966 | (Jacob Niehus) |
| 2967 | Solution: Do not have State set to INSERT when calling getline(). |
| 2968 | Files: src/ex_cmds.c |
| 2969 | |
| 2970 | Patch 7.4.419 |
| 2971 | Problem: When part of a list is locked it's possible to make changes. |
| 2972 | Solution: Check if any of the list items is locked before make a change. |
| 2973 | (ZyX) |
| 2974 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok |
| 2975 | |
| 2976 | Patch 7.4.420 |
| 2977 | Problem: It's not obvious how to add a new test. |
| 2978 | Solution: Add a README file. (Christian Brabandt) |
| 2979 | Files: src/testdir/README.txt |
| 2980 | |
| 2981 | Patch 7.4.421 |
| 2982 | Problem: Crash when searching for "\ze*". (Urtica Dioica) |
| 2983 | Solution: Disallow a multi after \ze and \zs. |
| 2984 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 2985 | |
| 2986 | Patch 7.4.422 |
| 2987 | Problem: When using conceal with linebreak some text is not displayed |
| 2988 | correctly. (Grüner Gimpel) |
| 2989 | Solution: Check for conceal mode when using linebreak. (Christian Brabandt) |
| 2990 | Files: src/screen.c, src/testdir/test_listlbr.in, |
| 2991 | src/testdir/test_listlbr.ok |
| 2992 | |
| 2993 | Patch 7.4.423 |
| 2994 | Problem: expand("$shell") does not work as documented. |
| 2995 | Solution: Do not escape the $ when expanding environment variables. |
| 2996 | Files: src/os_unix.c, src/misc1.c, src/vim.h |
| 2997 | |
| 2998 | Patch 7.4.424 |
| 2999 | Problem: Get ml_get error when using Python to delete lines in a buffer |
| 3000 | that is not in a window. issue 248. |
| 3001 | Solution: Do not try adjusting the cursor for a different buffer. |
| 3002 | Files: src/if_py_both.h |
| 3003 | |
| 3004 | Patch 7.4.425 |
| 3005 | Problem: When 'showbreak' is used "gj" may move to the wrong position. |
| 3006 | (Nazri Ramliy) |
| 3007 | Solution: Adjust virtcol when 'showbreak' is set. (Christian Brabandt) |
| 3008 | Files: src/normal.c |
| 3009 | |
| 3010 | Patch 7.4.426 |
| 3011 | Problem: README File missing from list of files. |
| 3012 | Solution: Update the list of files. |
| 3013 | Files: Filelist |
| 3014 | |
| 3015 | Patch 7.4.427 |
| 3016 | Problem: When an InsertCharPre autocommand executes system() typeahead may |
| 3017 | be echoed and messes up the display. (Jacob Niehus) |
| 3018 | Solution: Do not set cooked mode when invoked from ":silent". |
| 3019 | Files: src/eval.c, runtime/doc/eval.txt |
| 3020 | |
| 3021 | Patch 7.4.428 |
| 3022 | Problem: executable() may return a wrong result on MS-Windows. |
| 3023 | Solution: Change the way SearchPath() is called. (Yasuhiro Matsumoto, Ken |
| 3024 | Takata) |
| 3025 | Files: src/os_win32.c |
| 3026 | |
| 3027 | Patch 7.4.429 |
| 3028 | Problem: Build fails with fewer features. (Elimar Riesebieter) |
| 3029 | Solution: Add #ifdef. |
| 3030 | Files: src/normal.c |
| 3031 | |
| 3032 | Patch 7.4.430 |
| 3033 | Problem: test_listlbr fails when compiled with normal features. |
| 3034 | Solution: Check for the +conceal feature. |
| 3035 | Files: src/testdir/test_listlbr.in |
| 3036 | |
| 3037 | Patch 7.4.431 |
| 3038 | Problem: Compiler warning. |
| 3039 | Solution: Add type cast. (Mike Williams) |
| 3040 | Files: src/ex_docmd.c |
| 3041 | |
| 3042 | Patch 7.4.432 |
| 3043 | Problem: When the startup code expands command line arguments, setting |
| 3044 | 'encoding' will not properly convert the arguments. |
| 3045 | Solution: Call get_cmd_argsW() early in main(). (Yasuhiro Matsumoto) |
| 3046 | Files: src/os_win32.c, src/main.c, src/os_mswin.c |
| 3047 | |
| 3048 | Patch 7.4.433 |
| 3049 | Problem: Test 75 fails on MS-Windows. |
| 3050 | Solution: Use ":normal" instead of feedkeys(). (Michael Soyka) |
| 3051 | Files: src/testdir/test75.in |
| 3052 | |
| 3053 | Patch 7.4.434 |
| 3054 | Problem: gettabvar() is not consistent with getwinvar() and getbufvar(). |
| 3055 | Solution: Return a dict with all variables when the varname is empty. |
| 3056 | (Yasuhiro Matsumoto) |
| 3057 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test91.in, |
| 3058 | src/testdir/test91.ok |
| 3059 | |
| 3060 | Patch 7.4.435 |
| 3061 | Problem: Line formatting behaves differently when 'linebreak' is set. |
| 3062 | (mvxxc) |
| 3063 | Solution: Disable 'linebreak' temporarily. (Christian Brabandt) |
| 3064 | Files: src/edit.c |
| 3065 | |
| 3066 | Patch 7.4.436 |
| 3067 | Problem: ml_get error for autocommand that moves the cursor of the current |
| 3068 | window. |
| 3069 | Solution: Check the cursor position after switching back to the current |
| 3070 | buffer. (Christian Brabandt) |
| 3071 | Files: src/fileio.c |
| 3072 | |
| 3073 | Patch 7.4.437 |
| 3074 | Problem: New and old regexp engine are not consistent. |
| 3075 | Solution: Also give an error for "\ze*" for the old regexp engine. |
| 3076 | Files: src/regexp.c, src/regexp_nfa.c |
| 3077 | |
| 3078 | Patch 7.4.438 |
| 3079 | Problem: Cached values for 'cino' not reset for ":set all&". |
| 3080 | Solution: Call parse_cino(). (Yukihiro Nakadaira) |
| 3081 | Files: src/option.c |
| 3082 | |
| 3083 | Patch 7.4.439 |
| 3084 | Problem: Duplicate message in message history. Some quickfix messages |
| 3085 | appear twice. (Gary Johnson) |
| 3086 | Solution: Do not reset keep_msg too early. (Hirohito Higashi) |
| 3087 | Files: src/main.c |
| 3088 | |
| 3089 | Patch 7.4.440 |
| 3090 | Problem: Omni complete popup drawn incorrectly. |
| 3091 | Solution: Call validate_cursor() instead of check_cursor(). (Hirohito |
| 3092 | Higashi) |
| 3093 | Files: src/edit.c |
| 3094 | |
| 3095 | Patch 7.4.441 |
| 3096 | Problem: Endless loop and other problems when 'cedit' is set to CTRL-C. |
| 3097 | Solution: Do not call ex_window() when ex_normal_busy or got_int was set. |
| 3098 | (Yasuhiro Matsumoto) |
| 3099 | Files: src/ex_getln.c |
| 3100 | |
| 3101 | Patch 7.4.442 (after 7.4.434) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3102 | Problem: Using uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3103 | Solution: Pass the first window of the tabpage. |
| 3104 | Files: src/eval.c |
| 3105 | |
| 3106 | Patch 7.4.443 |
| 3107 | Problem: Error reported by ubsan when running test 72. |
| 3108 | Solution: Add type cast to unsigned. (Dominique Pelle) |
| 3109 | Files: src/undo.c |
| 3110 | |
| 3111 | Patch 7.4.444 |
| 3112 | Problem: Reversed question mark not recognized as punctuation. (Issue 258) |
| 3113 | Solution: Add the Supplemental Punctuation range. |
| 3114 | Files: src/mbyte.c |
| 3115 | |
| 3116 | Patch 7.4.445 |
| 3117 | Problem: Clipboard may be cleared on startup. |
| 3118 | Solution: Set clip_did_set_selection to -1 during startup. (Christian |
| 3119 | Brabandt) |
| 3120 | Files: src/main.c, src/ui.c |
| 3121 | |
| 3122 | Patch 7.4.446 |
| 3123 | Problem: In some situations, when setting up an environment to trigger an |
| 3124 | autocommand, the environment is not properly restored. |
| 3125 | Solution: Check the return value of switch_win() and call restore_win() |
| 3126 | always. (Daniel Hahler) |
| 3127 | Files: src/eval.c, src/misc2.c, src/window.c |
| 3128 | |
| 3129 | Patch 7.4.447 |
| 3130 | Problem: Spell files from Hunspell may generate a lot of errors. |
| 3131 | Solution: Add the IGNOREEXTRA flag. |
| 3132 | Files: src/spell.c, runtime/doc/spell.txt |
| 3133 | |
| 3134 | Patch 7.4.448 |
| 3135 | Problem: Using ETO_IGNORELANGUAGE causes problems. |
| 3136 | Solution: Remove this flag. (Paul Moore) |
| 3137 | Files: src/gui_w32.c |
| 3138 | |
| 3139 | Patch 7.4.449 |
| 3140 | Problem: Can't easily close the help window. (Chris Gaal) |
| 3141 | Solution: Add ":helpclose". (Christian Brabandt) |
| 3142 | Files: runtime/doc/helphelp.txt, runtime/doc/index.txt, src/ex_cmds.c, |
| 3143 | src/ex_cmds.h, src/proto/ex_cmds.pro |
| 3144 | |
| 3145 | Patch 7.4.450 |
| 3146 | Problem: Not all commands that edit another buffer support the +cmd |
| 3147 | argument. |
| 3148 | Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski) |
| 3149 | Files: runtime/doc/windows.txt, src/ex_cmds.h, src/ex_docmd.c |
| 3150 | |
| 3151 | Patch 7.4.451 |
| 3152 | Problem: Calling system() with empty input gives an error for writing the |
| 3153 | temp file. |
| 3154 | Solution: Do not try writing if the string length is zero. (Olaf Dabrunz) |
| 3155 | Files: src/eval.c |
| 3156 | |
| 3157 | Patch 7.4.452 |
| 3158 | Problem: Can't build with tiny features. (Tony Mechelynck) |
| 3159 | Solution: Use "return" instead of "break". |
| 3160 | Files: src/ex_cmds.c |
| 3161 | |
| 3162 | Patch 7.4.453 |
| 3163 | Problem: Still can't build with tiny features. |
| 3164 | Solution: Add #ifdef. |
| 3165 | Files: src/ex_cmds.c |
| 3166 | |
| 3167 | Patch 7.4.454 |
| 3168 | Problem: When using a Visual selection of multiple words and doing CTRL-W_] |
| 3169 | it jumps to the tag matching the word under the cursor, not the |
| 3170 | selected text. (Patrick hemmer) |
| 3171 | Solution: Do not reset Visual mode. (idea by Christian Brabandt) |
| 3172 | Files: src/window.c |
| 3173 | |
| 3174 | Patch 7.4.455 |
| 3175 | Problem: Completion for :buf does not use 'wildignorecase'. (Akshay H) |
| 3176 | Solution: Pass the 'wildignorecase' flag around. |
| 3177 | Files: src/buffer.c |
| 3178 | |
| 3179 | Patch 7.4.456 |
| 3180 | Problem: 'backupcopy' is global, cannot write only some files in a |
| 3181 | different way. |
| 3182 | Solution: Make 'backupcopy' global-local. (Christian Brabandt) |
| 3183 | Files: runtime/doc/options.txt, src/buffer.c, src/fileio.c, src/option.c, |
| 3184 | src/option.h, src/proto/option.pro, src/structs.h |
| 3185 | |
| 3186 | Patch 7.4.457 |
| 3187 | Problem: Using getchar() in an expression mapping may result in |
| 3188 | K_CURSORHOLD, which can't be recognized. |
| 3189 | Solution: Add the <CursorHold> key. (Hirohito Higashi) |
| 3190 | Files: src/misc2.c |
| 3191 | |
| 3192 | Patch 7.4.458 |
| 3193 | Problem: Issue 252: Cursor moves in a zero-height window. |
| 3194 | Solution: Check for zero height. (idea by Christian Brabandt) |
| 3195 | Files: src/move.c |
| 3196 | |
| 3197 | Patch 7.4.459 |
| 3198 | Problem: Can't change the icon after building Vim. |
| 3199 | Solution: Load the icon from a file on startup. (Yasuhiro Matsumoto) |
| 3200 | Files: src/gui_w32.c, src/os_mswin.c, src/os_win32.c, |
| 3201 | src/proto/os_mswin.pro |
| 3202 | |
| 3203 | Patch 7.4.460 (after 7.4.454) |
| 3204 | Problem: Can't build without the quickfix feature. (Erik Falor) |
| 3205 | Solution: Add a #ifdef. |
| 3206 | Files: src/window.c |
| 3207 | |
| 3208 | Patch 7.4.461 |
| 3209 | Problem: MS-Windows: When collate is on the number of copies is too high. |
| 3210 | Solution: Only set the collated/uncollated count when collate is on. |
| 3211 | (Yasuhiro Matsumoto) |
| 3212 | Files: src/os_mswin.c |
| 3213 | |
| 3214 | Patch 7.4.462 |
| 3215 | Problem: Setting the local value of 'backupcopy' empty gives an error. |
| 3216 | (Peter Mattern) |
| 3217 | Solution: When using an empty value set the flags to zero. (Hirohito |
| 3218 | Higashi) |
| 3219 | Files: src/option.c |
| 3220 | |
| 3221 | Patch 7.4.463 |
| 3222 | Problem: Test 86 and 87 may hang on MS-Windows. |
| 3223 | Solution: Call inputrestore() after inputsave(). (Ken Takata) |
| 3224 | Files: src/testdir/test86.in, src/testdir/test87.in |
| 3225 | |
| 3226 | Patch 7.4.464 (after 7.4.459) |
| 3227 | Problem: Compiler warning. |
| 3228 | Solution: Add type cast. (Ken Takata) |
| 3229 | Files: src/gui_w32.c |
| 3230 | |
| 3231 | Patch 7.4.465 (after 7.4.016) |
| 3232 | Problem: Crash when expanding a very long string. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3233 | Solution: Use wcsncpy() instead of wcscpy(). (Ken Takata) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3234 | Files: src/os_win32.c |
| 3235 | |
| 3236 | Patch 7.4.466 (after 7.4.460) |
| 3237 | Problem: CTRL-W } does not open preview window. (Erik Falor) |
| 3238 | Solution: Don't set g_do_tagpreview for CTRL-W }. |
| 3239 | Files: src/window.c |
| 3240 | |
| 3241 | Patch 7.4.467 |
| 3242 | Problem: 'linebreak' does not work well together with Visual mode. |
| 3243 | Solution: Disable 'linebreak' while applying an operator. Fix the test. |
| 3244 | (Christian Brabandt) |
| 3245 | Files: src/normal.c, src/screen.c, src/testdir/test_listlbr.in, |
| 3246 | src/testdir/test_listlbr.ok |
| 3247 | |
| 3248 | Patch 7.4.468 |
| 3249 | Problem: Issue 26: CTRL-C does not interrupt after it was mapped and then |
| 3250 | unmapped. |
| 3251 | Solution: Reset mapped_ctrl_c. (Christian Brabandt) |
| 3252 | Files: src/getchar.c |
| 3253 | |
| 3254 | Patch 7.4.469 (after 7.4.467) |
| 3255 | Problem: Can't build with MSVC. (Ken Takata) |
| 3256 | Solution: Move the assignment after the declarations. |
| 3257 | Files: src/normal.c |
| 3258 | |
| 3259 | Patch 7.4.470 |
| 3260 | Problem: Test 11 and 100 do not work properly on Windows. |
| 3261 | Solution: Avoid using feedkeys(). (Ken Takata) |
| 3262 | Files: src/testdir/Make_dos.mak, src/testdir/test11.in, |
| 3263 | src/testdir/test100.in |
| 3264 | |
| 3265 | Patch 7.4.471 |
| 3266 | Problem: MS-Windows: When printer name contains multi-byte, the name is |
| 3267 | displayed as ???. |
| 3268 | Solution: Convert the printer name from the active codepage to 'encoding'. |
| 3269 | (Yasuhiro Matsumoto) |
| 3270 | Files: src/os_mswin.c |
| 3271 | |
| 3272 | Patch 7.4.472 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3273 | Problem: The "precedes" entry in 'listchar' will be drawn when 'showbreak' |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3274 | is set and 'list' is not. |
| 3275 | Solution: Only draw this character when 'list' is on. (Christian Brabandt) |
| 3276 | Files: src/screen.c |
| 3277 | |
| 3278 | Patch 7.4.473 |
| 3279 | Problem: Cursor movement is incorrect when there is a number/sign/fold |
| 3280 | column and 'sbr' is displayed. |
| 3281 | Solution: Adjust the column for 'sbr'. (Christian Brabandt) |
| 3282 | Files: src/charset.c |
| 3283 | |
| 3284 | Patch 7.4.474 |
| 3285 | Problem: AIX compiler can't handle // comment. Issue 265. |
| 3286 | Solution: Remove that line. |
| 3287 | Files: src/regexp_nfa.c |
| 3288 | |
| 3289 | Patch 7.4.475 |
| 3290 | Problem: Can't compile on a system where Xutf8SetWMProperties() is not in |
| 3291 | the X11 library. Issue 265. |
| 3292 | Solution: Add a configure check. |
| 3293 | Files: src/configure.in, src/auto/configure, src/config.h.in, |
| 3294 | src/os_unix.c |
| 3295 | |
| 3296 | Patch 7.4.476 |
| 3297 | Problem: MingW: compiling with "XPM=no" doesn't work. |
| 3298 | Solution: Check for the "no" value. (KF Leong) Also for Cygwin. (Ken |
| 3299 | Takata) |
| 3300 | Files: src/Make_ming.mak, src/Make_cyg.mak |
| 3301 | |
| 3302 | Patch 7.4.477 |
| 3303 | Problem: When using ":%diffput" and the other file is empty an extra empty |
| 3304 | line remains. |
| 3305 | Solution: Set the buf_empty flag. |
| 3306 | Files: src/diff.c |
| 3307 | |
| 3308 | Patch 7.4.478 |
| 3309 | Problem: Using byte length instead of character length for 'showbreak'. |
| 3310 | Solution: Compute the character length. (Marco Hinz) |
| 3311 | Files: src/charset.c |
| 3312 | |
| 3313 | Patch 7.4.479 |
| 3314 | Problem: MS-Windows: The console title can be wrong. |
| 3315 | Solution: Take the encoding into account. When restoring the title use the |
| 3316 | right function. (Yasuhiro Matsumoto) |
| 3317 | Files: src/os_mswin.c, src/os_win32.c |
| 3318 | |
| 3319 | Patch 7.4.480 (after 7.4.479) |
| 3320 | Problem: MS-Windows: Can't build. |
| 3321 | Solution: Remove goto, use a flag instead. |
| 3322 | Files: src/os_win32.c |
| 3323 | |
| 3324 | Patch 7.4.481 (after 7.4.471) |
| 3325 | Problem: Compiler warning on MS-Windows. |
| 3326 | Solution: Add type casts. (Ken Takata) |
| 3327 | Files: src/os_mswin.c |
| 3328 | |
| 3329 | Patch 7.4.482 |
| 3330 | Problem: When 'balloonexpr' results in a list, the text has a trailing |
| 3331 | newline. (Lcd) |
| 3332 | Solution: Remove one trailing newline. |
| 3333 | Files: src/gui_beval.c |
| 3334 | |
| 3335 | Patch 7.4.483 |
| 3336 | Problem: A 0x80 byte is not handled correctly in abbreviations. |
| 3337 | Solution: Unescape special characters. Add a test. (Christian Brabandt) |
| 3338 | Files: src/getchar.c, src/testdir/Make_amiga.mak, |
| 3339 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3340 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3341 | src/testdir/Makefile, src/testdir/test_mapping.in, |
| 3342 | src/testdir/test_mapping.ok |
| 3343 | |
| 3344 | Patch 7.4.484 (after 7.4.483) |
| 3345 | Problem: Compiler warning on MS-Windows. (Ken Takata) |
| 3346 | Solution: Add type cast. |
| 3347 | Files: src/getchar.c |
| 3348 | |
| 3349 | Patch 7.4.485 (after 7.4.484) |
| 3350 | Problem: Abbreviations don't work. (Toothpik) |
| 3351 | Solution: Move the length computation inside the for loop. Compare against |
| 3352 | the unescaped key. |
| 3353 | Files: src/getchar.c |
| 3354 | |
| 3355 | Patch 7.4.486 |
| 3356 | Problem: Check for writing to a yank register is wrong. |
| 3357 | Solution: Negate the check. (Zyx). Also clean up the #ifdefs. |
| 3358 | Files: src/ex_docmd.c, src/ex_cmds.h |
| 3359 | |
| 3360 | Patch 7.4.487 |
| 3361 | Problem: ":sign jump" may use another window even though the file is |
| 3362 | already edited in the current window. |
| 3363 | Solution: First check if the file is in the current window. (James McCoy) |
| 3364 | Files: src/window.c, src/testdir/Make_amiga.mak, |
| 3365 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3366 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3367 | src/testdir/Makefile, src/testdir/test_signs.in, |
| 3368 | src/testdir/test_signs.ok |
| 3369 | |
| 3370 | Patch 7.4.488 |
| 3371 | Problem: test_mapping fails for some people. |
| 3372 | Solution: Set the 'encoding' option. (Ken Takata) |
| 3373 | Files: src/testdir/test_mapping.in |
| 3374 | |
| 3375 | Patch 7.4.489 |
| 3376 | Problem: Cursor movement still wrong when 'lbr' is set and there is a |
| 3377 | number column. (Hirohito Higashi) |
| 3378 | Solution: Add correction for number column. (Hiroyuki Takagi) |
| 3379 | Files: src/charset.c |
| 3380 | |
| 3381 | Patch 7.4.490 |
| 3382 | Problem: Cannot specify the buffer to use for "do" and "dp", making them |
| 3383 | useless for three-way diff. |
| 3384 | Solution: Use the count as the buffer number. (James McCoy) |
| 3385 | Files: runtime/doc/diff.txt, src/diff.c, src/normal.c, src/proto/diff.pro |
| 3386 | |
| 3387 | Patch 7.4.491 |
| 3388 | Problem: When winrestview() has a negative "topline" value there are |
| 3389 | display errors. |
| 3390 | Solution: Correct a negative value to 1. (Hirohito Higashi) |
| 3391 | Files: src/eval.c |
| 3392 | |
| 3393 | Patch 7.4.492 |
| 3394 | Problem: In Insert mode, after inserting a newline that inserts a comment |
| 3395 | leader, CTRL-O moves to the right. (ZyX) Issue 57. |
| 3396 | Solution: Correct the condition for moving the cursor back to the NUL. |
| 3397 | (Christian Brabandt) |
| 3398 | Files: src/edit.c, src/testdir/test4.in, src/testdir/test4.ok |
| 3399 | |
| 3400 | Patch 7.4.493 |
| 3401 | Problem: A TextChanged autocommand is triggered when saving a file. |
| 3402 | (William Gardner) |
| 3403 | Solution: Update last_changedtick after calling unchanged(). (Christian |
| 3404 | Brabandt) |
| 3405 | Files: src/fileio.c |
| 3406 | |
| 3407 | Patch 7.4.494 |
| 3408 | Problem: Cursor shape is wrong after a CompleteDone autocommand. |
| 3409 | Solution: Update the cursor and mouse shape after ":normal" restores the |
| 3410 | state. (Jacob Niehus) |
| 3411 | Files: src/ex_docmd.c |
| 3412 | |
| 3413 | Patch 7.4.495 |
| 3414 | Problem: XPM isn't used correctly in the Cygwin Makefile. |
| 3415 | Solution: Include the rules like in Make_ming.mak. (Ken Takata) |
| 3416 | Files: src/Make_cyg.mak |
| 3417 | |
| 3418 | Patch 7.4.496 |
| 3419 | Problem: Many lines are both in Make_cyg.mak and Make_ming.mak |
| 3420 | Solution: Move the common parts to one file. (Ken Takata) |
| 3421 | Files: src/INSTALLpc.txt, src/Make_cyg.mak, src/Make_cyg_ming.mak, |
| 3422 | src/Make_ming.mak, src/Make_mvc.mak, Filelist |
| 3423 | |
| 3424 | Patch 7.4.497 |
| 3425 | Problem: With some regexp patterns the NFA engine uses many states and |
| 3426 | becomes very slow. To the user it looks like Vim freezes. |
| 3427 | Solution: When the number of states reaches a limit fall back to the old |
| 3428 | engine. (Christian Brabandt) |
| 3429 | Files: runtime/doc/options.txt, src/Makefile, src/regexp.c, src/regexp.h, |
| 3430 | src/regexp_nfa.c, src/testdir/Make_dos.mak, |
| 3431 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 3432 | src/testdir/Makefile, src/testdir/samples/re.freeze.txt, |
| 3433 | src/testdir/bench_re_freeze.in, src/testdir/bench_re_freeze.vim, |
| 3434 | Filelist |
| 3435 | |
| 3436 | Patch 7.4.498 (after 7.4.497) |
| 3437 | Problem: Typo in DOS makefile. |
| 3438 | Solution: Change exists to exist. (Ken Takata) |
Bram Moolenaar | 214641f | 2017-03-05 17:04:09 +0100 | [diff] [blame] | 3439 | Files: src/testdir/Make_dos.mak |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3440 | |
| 3441 | Patch 7.4.499 |
| 3442 | Problem: substitute() can be slow with long strings. |
| 3443 | Solution: Store a pointer to the end, instead of calling strlen() every |
| 3444 | time. (Ozaki Kiichi) |
| 3445 | Files: src/eval.c |
| 3446 | |
| 3447 | Patch 7.4.500 |
| 3448 | Problem: Test 72 still fails once in a while. |
| 3449 | Solution: Don't set 'fileformat' to unix, reset it. (Ken Takata) |
| 3450 | Files: src/testdir/test72.in |
| 3451 | |
| 3452 | Patch 7.4.501 (after 7.4.497) |
| 3453 | Problem: Typo in file pattern. |
| 3454 | Solution: Insert a slash and remove a dot. |
| 3455 | Files: Filelist |
| 3456 | |
| 3457 | Patch 7.4.502 |
| 3458 | Problem: Language mapping also applies to mapped characters. |
| 3459 | Solution: Add the 'langnoremap' option, when on 'langmap' does not apply to |
| 3460 | mapped characters. (Christian Brabandt) |
| 3461 | Files: runtime/doc/options.txt, runtime/vimrc_example.vim, src/macros.h, |
| 3462 | src/option.c, src/option.h |
| 3463 | |
| 3464 | Patch 7.4.503 |
| 3465 | Problem: Cannot append a list of lines to a file. |
| 3466 | Solution: Add the append option to writefile(). (Yasuhiro Matsumoto) |
| 3467 | Files: runtime/doc/eval.txt, src/Makefile, src/eval.c, |
| 3468 | src/testdir/test_writefile.in, src/testdir/test_writefile.ok |
| 3469 | |
| 3470 | Patch 7.4.504 |
| 3471 | Problem: Restriction of the MS-Windows installer that the path must end in |
| 3472 | "Vim" prevents installing more than one version. |
| 3473 | Solution: Remove the restriction. (Tim Lebedkov) |
| 3474 | Files: nsis/gvim.nsi |
| 3475 | |
| 3476 | Patch 7.4.505 |
| 3477 | Problem: On MS-Windows when 'encoding' is a double-byte encoding a file |
| 3478 | name longer than MAX_PATH bytes but shorter than that in |
| 3479 | characters causes problems. |
| 3480 | Solution: Fail on file names longer than MAX_PATH bytes. (Ken Takata) |
| 3481 | Files: src/os_win32.c |
| 3482 | |
| 3483 | Patch 7.4.506 |
| 3484 | Problem: MS-Windows: Cannot open a file with 259 characters. |
| 3485 | Solution: Fix off-by-one error. (Ken Takata) |
| 3486 | Files: src/os_mswin.c |
| 3487 | |
| 3488 | Patch 7.4.507 (after 7.4.496) |
| 3489 | Problem: Building with MingW and Perl. |
| 3490 | Solution: Remove quotes. (Ken Takata) |
| 3491 | Files: src/Make_cyg_ming.mak |
| 3492 | |
| 3493 | Patch 7.4.508 |
| 3494 | Problem: When generating ja.sjis.po the header is not correctly adjusted. |
| 3495 | Solution: Check for the right header string. (Ken Takata) |
| 3496 | Files: src/po/sjiscorr.c |
| 3497 | |
| 3498 | Patch 7.4.509 |
| 3499 | Problem: Users are not aware their encryption is weak. |
| 3500 | Solution: Give a warning when prompting for the key. |
| 3501 | Files: src/crypt.c, src/ex_docmd.c, src/fileio.c, src/main.c, |
| 3502 | src/proto/crypt.pro |
| 3503 | |
| 3504 | Patch 7.4.510 |
| 3505 | Problem: "-fwrapv" argument breaks use of cproto. |
| 3506 | Solution: Remove the alphabetic arguments in a drastic way. |
| 3507 | Files: src/Makefile |
| 3508 | |
| 3509 | Patch 7.4.511 |
| 3510 | Problem: Generating proto for if_ruby.c uses type not defined elsewhere. |
| 3511 | Solution: Do not generate a prototype for |
| 3512 | rb_gc_writebarrier_unprotect_promoted() |
| 3513 | Files: src/if_ruby.c |
| 3514 | |
| 3515 | Patch 7.4.512 |
| 3516 | Problem: Cannot generate prototypes for Win32 files and VMS. |
| 3517 | Solution: Add typedefs and #ifdef |
| 3518 | Files: src/os_win32.c, src/gui_w32.c, src/os_vms.c |
| 3519 | |
| 3520 | Patch 7.4.513 |
| 3521 | Problem: Crash because reference count is wrong for list returned by |
| 3522 | getreg(). |
| 3523 | Solution: Increment the reference count. (Kimmy Lindvall) |
| 3524 | Files: src/eval.c |
| 3525 | |
| 3526 | Patch 7.4.514 (after 7.4.492) |
| 3527 | Problem: Memory access error. (Dominique Pelle) |
| 3528 | Solution: Update tpos. (Christian Brabandt) |
| 3529 | Files: src/edit.c |
| 3530 | |
| 3531 | Patch 7.4.515 |
| 3532 | Problem: In a help buffer the global 'foldmethod' is used. (Paul Marshall) |
| 3533 | Solution: Reset 'foldmethod' when starting to edit a help file. Move the |
| 3534 | code to a separate function. |
| 3535 | Files: src/ex_cmds.c |
| 3536 | |
| 3537 | Patch 7.4.516 |
| 3538 | Problem: Completing a function name containing a # does not work. Issue |
| 3539 | 253. |
| 3540 | Solution: Recognize the # character. (Christian Brabandt) |
| 3541 | Files: src/eval.c |
| 3542 | |
| 3543 | Patch 7.4.517 |
| 3544 | Problem: With a wrapping line the cursor may not end up in the right place. |
| 3545 | (Nazri Ramliy) |
| 3546 | Solution: Adjust n_extra for a Tab that wraps. (Christian Brabandt) |
| 3547 | Files: src/screen.c |
| 3548 | |
| 3549 | Patch 7.4.518 |
| 3550 | Problem: Using status line height in width computations. |
| 3551 | Solution: Use one instead. (Hirohito Higashi) |
| 3552 | Files: src/window.c |
| 3553 | |
| 3554 | Patch 7.4.519 (after 7.4.497) |
| 3555 | Problem: Crash when using syntax highlighting. |
| 3556 | Solution: When regprog is freed and replaced, store the result. |
| 3557 | Files: src/buffer.c, src/regexp.c, src/syntax.c, src/spell.c, |
| 3558 | src/ex_cmds2.c, src/fileio.c, src/proto/fileio.pro, |
| 3559 | src/proto/regexp.pro, src/os_unix.c |
| 3560 | |
| 3561 | Patch 7.4.520 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3562 | Problem: Sun PCK locale is not recognized. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3563 | Solution: Add PCK in the table. (Keiichi Oono) |
| 3564 | Files: src/mbyte.c |
| 3565 | |
| 3566 | Patch 7.4.521 |
| 3567 | Problem: When using "vep" a mark is moved to the next line. (Maxi Padulo, |
| 3568 | Issue 283) |
| 3569 | Solution: Decrement the line number. (Christian Brabandt) |
| 3570 | Files: src/ops.c |
| 3571 | |
| 3572 | Patch 7.4.522 |
| 3573 | Problem: Specifying wrong buffer size for GetLongPathName(). |
| 3574 | Solution: Use the actual size. (Ken Takata) |
| 3575 | Files: src/eval.c |
| 3576 | |
| 3577 | Patch 7.4.523 |
| 3578 | Problem: When the X11 server is stopped and restarted, while Vim is kept in |
| 3579 | the background, copy/paste no longer works. (Issue 203) |
| 3580 | Solution: Setup the clipboard again. (Christian Brabandt) |
| 3581 | Files: src/os_unix.c |
| 3582 | |
| 3583 | Patch 7.4.524 |
| 3584 | Problem: When using ":ownsyntax" spell checking is messed up. (Issue 78) |
| 3585 | Solution: Use the window-local option values. (Christian Brabandt) |
| 3586 | Files: src/option.c, src/syntax.c |
| 3587 | |
| 3588 | Patch 7.4.525 |
| 3589 | Problem: map() leaks memory when there is an error in the expression. |
| 3590 | Solution: Call clear_tv(). (Christian Brabandt) |
| 3591 | Files: src/eval.c |
| 3592 | |
| 3593 | Patch 7.4.526 |
| 3594 | Problem: matchstr() fails on long text. (Daniel Hahler) |
| 3595 | Solution: Return NFA_TOO_EXPENSIVE from regexec_nl(). (Christian Brabandt) |
| 3596 | Files: src/regexp.c |
| 3597 | |
| 3598 | Patch 7.4.527 |
| 3599 | Problem: Still confusing regexp failure and NFA_TOO_EXPENSIVE. |
| 3600 | Solution: NFA changes equivalent of 7.4.526. |
| 3601 | Files: src/regexp_nfa.c |
| 3602 | |
| 3603 | Patch 7.4.528 |
| 3604 | Problem: Crash when using matchadd() (Yasuhiro Matsumoto) |
| 3605 | Solution: Copy the match regprog. |
| 3606 | Files: src/screen.c |
| 3607 | |
| 3608 | Patch 7.4.529 |
| 3609 | Problem: No test for what 7.4.517 fixes. |
| 3610 | Solution: Adjust the tests for breakindent. (Christian Brabandt) |
| 3611 | Files: src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok |
| 3612 | |
| 3613 | Patch 7.4.530 |
| 3614 | Problem: Many commands take a count or range that is not using line |
| 3615 | numbers. |
| 3616 | Solution: For each command specify what kind of count it uses. For windows, |
| 3617 | buffers and arguments have "$" and "." have a relevant meaning. |
| 3618 | (Marcin Szamotulski) |
| 3619 | Files: runtime/doc/editing.txt, runtime/doc/tabpage.txt, |
| 3620 | runtime/doc/windows.txt, src/Makefile, src/ex_cmds.h, |
| 3621 | src/ex_docmd.c, src/testdir/Make_amiga.mak |
| 3622 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3623 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3624 | src/testdir/Makefile, src/testdir/test_argument_count.in, |
| 3625 | src/testdir/test_argument_count.ok, |
| 3626 | src/testdir/test_close_count.in, src/testdir/test_close_count.ok, |
| 3627 | src/window.c |
| 3628 | |
| 3629 | Patch 7.4.531 |
| 3630 | Problem: Comments about parsing an Ex command are wrong. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3631 | Solution: Correct the step numbers. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3632 | Files: src/ex_docmd.c |
| 3633 | |
| 3634 | Patch 7.4.532 |
| 3635 | Problem: When using 'incsearch' "2/pattern/e" highlights the first match. |
| 3636 | Solution: Move the code to set extra_col inside the loop for count. (Ozaki |
| 3637 | Kiichi) |
| 3638 | Files: src/search.c |
| 3639 | |
| 3640 | Patch 7.4.533 |
| 3641 | Problem: ":hardcopy" leaks memory in case of errors. |
| 3642 | Solution: Free memory in all code paths. (Christian Brabandt) |
| 3643 | Files: src/hardcopy.c |
| 3644 | |
| 3645 | Patch 7.4.534 |
| 3646 | Problem: Warnings when compiling if_ruby.c. |
| 3647 | Solution: Avoid the warnings. (Ken Takata) |
| 3648 | Files: src/if_ruby.c |
| 3649 | |
| 3650 | Patch 7.4.535 (after 7.4.530) |
| 3651 | Problem: Can't build with tiny features. |
| 3652 | Solution: Add #ifdefs and skip a test. |
| 3653 | Files: src/ex_docmd.c, src/testdir/test_argument_count.in |
| 3654 | |
| 3655 | Patch 7.4.536 |
| 3656 | Problem: Test 63 fails when using a black&white terminal. |
| 3657 | Solution: Add attributes for a non-color terminal. (Christian Brabandt) |
| 3658 | Files: src/testdir/test63.in |
| 3659 | |
| 3660 | Patch 7.4.537 |
| 3661 | Problem: Value of v:hlsearch reflects an internal variable. |
| 3662 | Solution: Make the value reflect whether search highlighting is actually |
| 3663 | displayed. (Christian Brabandt) |
| 3664 | Files: runtime/doc/eval.txt, src/testdir/test101.in, |
| 3665 | src/testdir/test101.ok, src/vim.h |
| 3666 | |
| 3667 | Patch 7.4.538 |
| 3668 | Problem: Tests fail with small features plus Python. |
| 3669 | Solution: Disallow weird combination of options. Do not set "fdm" when |
| 3670 | folding is disabled. |
| 3671 | Files: src/option.c, src/ex_cmds.c, src/configure.in, src/auto/configure, |
| 3672 | src/feature.h |
| 3673 | |
| 3674 | Patch 7.4.539 (after 7.4.530) |
| 3675 | Problem: Crash when computing buffer count. Problem with range for user |
| 3676 | commands. Line range wrong in Visual area. |
| 3677 | Solution: Avoid segfault in compute_buffer_local_count(). Check for |
| 3678 | CMD_USER when checking type of range. (Marcin Szamotulski) |
| 3679 | Files: runtime/doc/windows.txt, src/ex_docmd.c |
| 3680 | |
| 3681 | Patch 7.4.540 (after 7.4.539) |
| 3682 | Problem: Cannot build with tiny and small features. (Taro Muraoka) |
| 3683 | Solution: Add #ifdef around CMD_USER. |
| 3684 | Files: src/ex_docmd.c |
| 3685 | |
| 3686 | Patch 7.4.541 |
| 3687 | Problem: Crash when doing a range assign. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3688 | Solution: Check for NULL pointer. (Yukihiro Nakadaira) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3689 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok |
| 3690 | |
| 3691 | Patch 7.4.542 |
| 3692 | Problem: Using a range for window and buffer commands has a few problems. |
| 3693 | Cannot specify the type of range for a user command. |
| 3694 | Solution: Add the -addr argument for user commands. Fix problems. (Marcin |
| 3695 | Szamotulski) |
| 3696 | Files: src/testdir/test_command_count.in, |
| 3697 | src/testdir/test_command_count.ok src/testdir/Make_amiga.mak |
| 3698 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3699 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3700 | src/testdir/Makefile, runtime/doc/map.txt, src/Makefile, |
| 3701 | src/ex_cmds.h, src/ex_docmd.c, src/ex_getln.c, |
| 3702 | src/proto/ex_docmd.pro, src/vim.h, |
| 3703 | |
| 3704 | Patch 7.4.543 |
| 3705 | Problem: Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three. |
| 3706 | (Eliseo MartÃnez) Issue 287 |
| 3707 | Solution: Correct the line count. (Christian Brabandt) |
| 3708 | Also set the last used search pattern. |
| 3709 | Files: src/ex_cmds.c, src/search.c, src/proto/search.pro |
| 3710 | |
| 3711 | Patch 7.4.544 |
| 3712 | Problem: Warnings for unused arguments when compiling with a combination of |
| 3713 | features. |
| 3714 | Solution: Add "UNUSED". |
| 3715 | Files: src/if_cscope.c |
| 3716 | |
| 3717 | Patch 7.4.545 |
| 3718 | Problem: Highlighting for multi-line matches is not correct. |
| 3719 | Solution: Stop highlight at the end of the match. (Hirohito Higashi) |
| 3720 | Files: src/screen.c |
| 3721 | |
| 3722 | Patch 7.4.546 |
| 3723 | Problem: Repeated use of vim_snprintf() with a number. |
| 3724 | Solution: Move these vim_snprintf() calls into a function. |
| 3725 | Files: src/window.c |
| 3726 | |
| 3727 | Patch 7.4.547 |
| 3728 | Problem: Using "vit" does not select a multi-byte character at the end |
| 3729 | correctly. |
| 3730 | Solution: Advance the cursor over the multi-byte character. (Christian |
| 3731 | Brabandt) |
| 3732 | Files: src/search.c |
| 3733 | |
| 3734 | Patch 7.4.548 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3735 | Problem: Compilation fails with native version of MinGW-w64, because |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3736 | it doesn't have x86_64-w64-mingw32-windres.exe. |
| 3737 | Solution: Use windres instead. (Ken Takata) |
| 3738 | Files: src/Make_cyg_ming.mak |
| 3739 | |
| 3740 | Patch 7.4.549 |
| 3741 | Problem: Function name not recognized correctly when inside a function. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3742 | Solution: Don't check for an alpha character. (Ozaki Kiichi) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3743 | Files: src/eval.c, src/testdir/test_nested_function.in, |
| 3744 | src/testdir/test_nested_function.ok, src/testdir/Make_amiga.mak, |
| 3745 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3746 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3747 | src/testdir/Makefile |
| 3748 | |
| 3749 | Patch 7.4.550 |
| 3750 | Problem: curs_rows() function is always called with the second argument |
| 3751 | false. |
| 3752 | Solution: Remove the argument. (Christian Brabandt) |
| 3753 | validate_botline_win() can then also be removed. |
| 3754 | Files: src/move.c |
| 3755 | |
| 3756 | Patch 7.4.551 |
| 3757 | Problem: "ygn" may yank too much. (Fritzophrenic) Issue 295. |
| 3758 | Solution: Check the width of the next match. (Christian Brabandt) |
| 3759 | Files: src/search.c, src/testdir/test53.in, src/testdir/test53.ok |
| 3760 | |
| 3761 | Patch 7.4.552 |
| 3762 | Problem: Langmap applies to Insert mode expression mappings. |
| 3763 | Solution: Check for Insert mode. (Daniel Hahler) |
| 3764 | Files: src/getchar.c, src/testdir/test_mapping.in, |
| 3765 | src/testdir/test_mapping.ok |
| 3766 | |
| 3767 | Patch 7.4.553 |
| 3768 | Problem: Various small issues. |
| 3769 | Solution: Fix those issues. |
| 3770 | Files: src/ex_cmds.h, src/gui.h, src/message.c, src/testdir/test39.in, |
| 3771 | src/proto/eval.pro, src/proto/misc1.pro, src/proto/ops.pro, |
| 3772 | src/proto/screen.pro, src/proto/window.pro. src/os_unix.c, |
| 3773 | src/Make_vms.mms, src/proto/os_vms.pro, src/INSTALL |
| 3774 | |
| 3775 | Patch 7.4.554 |
| 3776 | Problem: Missing part of patch 7.4.519. |
| 3777 | Solution: Copy back regprog after calling vim_regexec. |
| 3778 | Files: src/quickfix.c |
| 3779 | |
| 3780 | Patch 7.4.555 |
| 3781 | Problem: test_close_count may fail for some combination of features. |
| 3782 | Solution: Require normal features. |
| 3783 | Files: src/testdir/test_close_count.in |
| 3784 | |
| 3785 | Patch 7.4.556 |
| 3786 | Problem: Failed commands in Python interface not handled correctly. |
| 3787 | Solution: Restore window and buffer on failure. |
| 3788 | Files: src/if_py_both.h |
| 3789 | |
| 3790 | Patch 7.4.557 |
| 3791 | Problem: One more small issue. |
| 3792 | Solution: Update function proto. |
| 3793 | Files: src/proto/window.pro |
| 3794 | |
| 3795 | Patch 7.4.558 |
| 3796 | Problem: When the X server restarts Vim may get stuck. |
| 3797 | Solution: Destroy the application context and create it again. (Issue 203) |
| 3798 | Files: src/os_unix.c |
| 3799 | |
| 3800 | Patch 7.4.559 |
| 3801 | Problem: Appending a block in the middle of a tab does not work correctly |
| 3802 | when virtualedit is set. |
| 3803 | Solution: Decrement spaces and count, don't reset them. (James McCoy) |
| 3804 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 3805 | |
| 3806 | Patch 7.4.560 |
| 3807 | Problem: Memory leak using :wviminfo. Issue 296. |
| 3808 | Solution: Free memory when needed. (idea by Christian Brabandt) |
| 3809 | Files: src/ops.c |
| 3810 | |
| 3811 | Patch 7.4.561 |
| 3812 | Problem: Ex range handling is wrong for buffer-local user commands. |
| 3813 | Solution: Check for CMD_USER_BUF. (Marcin Szamotulski) |
| 3814 | Files: src/ex_docmd.c, src/testdir/test_command_count.in, |
| 3815 | src/testdir/test_command_count.ok |
| 3816 | |
| 3817 | Patch 7.4.562 |
| 3818 | Problem: Segfault with wide screen and error in 'rulerformat'. (Ingo Karkat) |
| 3819 | Solution: Check there is enough space. (Christian Brabandt) |
| 3820 | Files: src/buffer.c, src/screen.c |
| 3821 | |
| 3822 | Patch 7.4.563 |
| 3823 | Problem: No test for replacing on a tab in Virtual replace mode. |
| 3824 | Solution: Add a test. (Elias Diem) |
| 3825 | Files: src/testdir/test48.in, src/testdir/test48.ok |
| 3826 | |
| 3827 | Patch 7.4.564 |
| 3828 | Problem: FEAT_OSFILETYPE is used even though it's never defined. |
| 3829 | Solution: Remove the code. (Christian Brabandt) |
| 3830 | Files: src/fileio.c |
| 3831 | |
| 3832 | Patch 7.4.565 |
| 3833 | Problem: Ranges for arguments, buffers, tabs, etc. are not checked to be |
| 3834 | valid but limited to the maximum. This can cause the wrong thing |
| 3835 | to happen. |
| 3836 | Solution: Give an error for an invalid value. (Marcin Szamotulski) |
| 3837 | Use windows range for ":wincmd". |
| 3838 | Files: src/ex_docmd.c, src/ex_cmds.h, src/testdir/test62.in, |
| 3839 | src/testdir/test_argument_count.in, |
| 3840 | src/testdir/test_argument_count.ok, |
| 3841 | src/testdir/test_close_count.in, |
| 3842 | src/testdir/test_command_count.in, |
| 3843 | src/testdir/test_command_count.ok |
| 3844 | |
| 3845 | Patch 7.4.566 |
| 3846 | Problem: :argdo, :bufdo, :windo and :tabdo don't take a range. |
| 3847 | Solution: Support the range. (Marcin Szamotulski) |
| 3848 | Files: runtime/doc/editing.txt, runtime/doc/tabpage.txt, |
| 3849 | runtime/doc/windows.txt, src/ex_cmds.h, src/ex_cmds2.c, |
| 3850 | src/testdir/test_command_count.in, |
| 3851 | src/testdir/test_command_count.ok |
| 3852 | |
| 3853 | Patch 7.4.567 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3854 | Problem: Non-ascii vertical separator characters are always redrawn. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3855 | Solution: Compare only the one byte that's stored. (Thiago Padilha) |
| 3856 | Files: src/screen.c |
| 3857 | |
| 3858 | Patch 7.4.568 |
| 3859 | Problem: Giving an error for ":0wincmd w" is a problem for some plugins. |
| 3860 | Solution: Allow the zero in the range. (Marcin Szamotulski) |
| 3861 | Files: src/ex_docmd.c, src/testdir/test_command_count.ok |
| 3862 | |
| 3863 | Patch 7.4.569 (after 7.4.468) |
| 3864 | Problem: Having CTRL-C interrupt or not does not check the mode of the |
| 3865 | mapping. (Ingo Karkat) |
| 3866 | Solution: Use a bitmask with the map mode. (Christian Brabandt) |
| 3867 | Files: src/getchar.c, src/structs.h, src/testdir/test_mapping.in, |
| 3868 | src/testdir/test_mapping.ok, src/ui.c, src/globals.h |
| 3869 | |
| 3870 | Patch 7.4.570 |
| 3871 | Problem: Building with dynamic library does not work for Ruby 2.2.0 |
| 3872 | Solution: Change #ifdefs and #defines. (Ken Takata) |
| 3873 | Files: src/if_ruby.c |
| 3874 | |
| 3875 | Patch 7.4.571 (after 7.4.569) |
| 3876 | Problem: Can't build with tiny features. (Ike Devolder) |
| 3877 | Solution: Add #ifdef. |
| 3878 | Files: src/getchar.c |
| 3879 | |
| 3880 | Patch 7.4.572 |
| 3881 | Problem: Address type of :wincmd depends on the argument. |
| 3882 | Solution: Check the argument. |
| 3883 | Files: src/ex_docmd.c, src/window.c, src/proto/window.pro |
| 3884 | |
| 3885 | Patch 7.4.573 (after 7.4.569) |
| 3886 | Problem: Mapping CTRL-C in Visual mode doesn't work. (Ingo Karkat) |
| 3887 | Solution: Call get_real_state() instead of using State directly. |
| 3888 | Files: src/ui.c, src/testdir/test_mapping.in, src/testdir/test_mapping.ok |
| 3889 | |
| 3890 | Patch 7.4.574 |
| 3891 | Problem: No error for eval('$'). |
| 3892 | Solution: Check for empty name. (Yasuhiro Matsumoto) |
| 3893 | Files: src/eval.c |
| 3894 | |
| 3895 | Patch 7.4.575 |
| 3896 | Problem: Unicode character properties are outdated. |
| 3897 | Solution: Update the tables with the latest version. |
| 3898 | Files: src/mbyte.c |
| 3899 | |
| 3900 | Patch 7.4.576 |
| 3901 | Problem: Redrawing problem with 'relativenumber' and 'linebreak'. |
| 3902 | Solution: Temporarily reset 'linebreak' and restore it in more places. |
| 3903 | (Christian Brabandt) |
| 3904 | Files: src/normal.c |
| 3905 | |
| 3906 | Patch 7.4.577 |
| 3907 | Problem: Matching with a virtual column has a lot of overhead on very long |
| 3908 | lines. (Issue 310) |
| 3909 | Solution: Bail out early if there can't be a match. (Christian Brabandt) |
| 3910 | Also check for CTRL-C at every position. |
| 3911 | Files: src/regexp_nfa.c |
| 3912 | |
| 3913 | Patch 7.4.578 |
| 3914 | Problem: Using getcurpos() after "$" in an empty line returns a negative |
| 3915 | number. |
| 3916 | Solution: Don't add one when this would overflow. (Hirohito Higashi) |
| 3917 | Files: src/eval.c |
| 3918 | |
| 3919 | Patch 7.4.579 |
| 3920 | Problem: Wrong cursor positioning when 'linebreak' is set and lines wrap. |
| 3921 | Solution: Fix it. (Christian Brabandt) |
| 3922 | Files: src/charset.c, src/screen.c |
| 3923 | |
| 3924 | Patch 7.4.580 |
| 3925 | Problem: ":52wincmd v" still gives an invalid range error. (Charles |
| 3926 | Campbell) |
| 3927 | Solution: Skip over white space. |
| 3928 | Files: src/ex_docmd.c |
| 3929 | |
| 3930 | Patch 7.4.581 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3931 | Problem: Compiler warnings for uninitialized variables. (John Little) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3932 | Solution: Initialize the variables. |
| 3933 | Files: src/ops.c |
| 3934 | |
| 3935 | Patch 7.4.582 (after 7.4.577) |
| 3936 | Problem: Can't match "%>80v" properly. (Axel Bender) |
| 3937 | Solution: Correctly handle ">". (Christian Brabandt) |
| 3938 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 3939 | |
| 3940 | Patch 7.4.583 |
| 3941 | Problem: With tiny features test 16 may fail. |
| 3942 | Solution: Source small.vim. (Christian Brabandt) |
| 3943 | Files: src/testdir/test16.in |
| 3944 | |
| 3945 | Patch 7.4.584 |
| 3946 | Problem: With tiny features test_command_count may fail. |
| 3947 | Solution: Source small.vim. (Christian Brabandt) |
| 3948 | Files: src/testdir/test_command_count.in |
| 3949 | |
| 3950 | Patch 7.4.585 |
| 3951 | Problem: Range for :bdelete does not work. (Ronald Schild) |
| 3952 | Solution: Also allow unloaded buffers. |
| 3953 | Files: src/ex_cmds.h, src/testdir/test_command_count.in, |
| 3954 | src/testdir/test_command_count.ok |
| 3955 | |
| 3956 | Patch 7.4.586 |
| 3957 | Problem: Parallel building of the documentation html files is not reliable. |
| 3958 | Solution: Remove a cyclic dependency. (Reiner Herrmann) |
| 3959 | Files: runtime/doc/Makefile |
| 3960 | |
| 3961 | Patch 7.4.587 |
| 3962 | Problem: Conceal does not work properly with 'linebreak'. (cs86661) |
| 3963 | Solution: Save and restore boguscols. (Christian Brabandt) |
| 3964 | Files: src/screen.c, src/testdir/test_listlbr_utf8.in, |
| 3965 | src/testdir/test_listlbr_utf8.ok |
| 3966 | |
| 3967 | Patch 7.4.588 |
| 3968 | Problem: ":0argedit foo" puts the new argument in the second place instead |
| 3969 | of the first. |
| 3970 | Solution: Adjust the range type. (Ingo Karkat) |
| 3971 | Files: src/ex_cmds.h, src/testdir/Make_amiga.mak, |
| 3972 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3973 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3974 | src/testdir/Makefile, src/testdir/test_argument_0count.in, |
| 3975 | src/testdir/test_argument_0count.ok |
| 3976 | |
| 3977 | Patch 7.4.589 |
| 3978 | Problem: In the MS-Windows console Vim can't handle greek characters when |
| 3979 | encoding is utf-8. |
| 3980 | Solution: Escape K_NUL. (Yasuhiro Matsumoto) |
| 3981 | Files: src/os_win32.c |
| 3982 | |
| 3983 | Patch 7.4.590 |
| 3984 | Problem: Using ctrl_x_mode as if it contains flags. |
| 3985 | Solution: Don't use AND with CTRL_X_OMNI. (Hirohito Higashi) |
| 3986 | Files: src/edit.c |
| 3987 | |
| 3988 | Patch 7.4.591 (after 7.4.587) |
| 3989 | Problem: test_listlbr_utf8 fails when the conceal feature is not available. |
| 3990 | Solution: Check for the conceal feature. (Kazunobu Kuriyama) |
| 3991 | Files: src/testdir/test_listlbr_utf8.in |
| 3992 | |
| 3993 | Patch 7.4.592 |
| 3994 | Problem: When doing ":e foobar" when already editing "foobar" and 'buftype' |
| 3995 | is "nofile" the buffer is cleared. (Xavier de Gaye) |
| 3996 | Solution: Do no clear the buffer. |
| 3997 | Files: src/ex_cmds.c |
| 3998 | |
| 3999 | Patch 7.4.593 |
| 4000 | Problem: Crash when searching for "x\{0,90000}". (Dominique Pelle) |
| 4001 | Solution: Bail out from the NFA engine when the max limit is much higher |
| 4002 | than the min limit. |
| 4003 | Files: src/regexp_nfa.c, src/regexp.c, src/vim.h |
| 4004 | |
| 4005 | Patch 7.4.594 |
| 4006 | Problem: Using a block delete while 'breakindent' is set does not work |
| 4007 | properly. |
| 4008 | Solution: Use "line" instead of "prev_pend" as the first argument to |
| 4009 | lbr_chartabsize_adv(). (Hirohito Higashi) |
| 4010 | Files: src/ops.c, src/testdir/test_breakindent.in, |
| 4011 | src/testdir/test_breakindent.ok |
| 4012 | |
| 4013 | Patch 7.4.595 |
| 4014 | Problem: The test_command_count test fails when using Japanese. |
| 4015 | Solution: Force the language to C. (Hirohito Higashi) |
| 4016 | Files: src/testdir/test_command_count.in |
| 4017 | |
| 4018 | Patch 7.4.596 (after 7.4.592) |
| 4019 | Problem: Tiny build doesn't compile. (Ike Devolder) |
| 4020 | Solution: Add #ifdef. |
| 4021 | Files: src/ex_cmds.c |
| 4022 | |
| 4023 | Patch 7.4.597 |
| 4024 | Problem: Cannot change the result of systemlist(). |
| 4025 | Solution: Initialize v_lock. (Yukihiro Nakadaira) |
| 4026 | Files: src/eval.c |
| 4027 | |
| 4028 | Patch 7.4.598 |
| 4029 | Problem: ":tabdo windo echo 'hi'" causes "* register not to be changed. |
| 4030 | (Salman Halim) |
| 4031 | Solution: Change how clip_did_set_selection is used and add |
| 4032 | clipboard_needs_update and global_change_count. (Christian |
| 4033 | Brabandt) |
| 4034 | Files: src/main.c, src/ui.c, src/testdir/test_eval.in, |
| 4035 | src/testdir/test_eval.ok |
| 4036 | |
| 4037 | Patch 7.4.599 |
| 4038 | Problem: Out-of-memory error. |
| 4039 | Solution: Avoid trying to allocate a negative amount of memory, use size_t |
| 4040 | instead of int. (Dominique Pelle) |
| 4041 | Files: src/regexp_nfa.c |
| 4042 | |
| 4043 | Patch 7.4.600 |
| 4044 | Problem: Memory wasted in struct because of aligning. |
| 4045 | Solution: Split pos in lnum and col. (Dominique Pelle) |
| 4046 | Files: src/regexp_nfa.c |
| 4047 | |
| 4048 | Patch 7.4.601 |
| 4049 | Problem: It is not possible to have feedkeys() insert characters. |
| 4050 | Solution: Add the 'i' flag. |
| 4051 | Files: src/eval.c, runtime/doc/eval.txt |
| 4052 | |
| 4053 | Patch 7.4.602 |
| 4054 | Problem: ":set" does not accept hex numbers as documented. |
| 4055 | Solution: Use vim_str2nr(). (ZyX) |
| 4056 | Files: src/option.c, runtime/doc/options.txt |
| 4057 | |
| 4058 | Patch 7.4.603 |
| 4059 | Problem: 'foldcolumn' may be set such that it fills the whole window, not |
| 4060 | leaving space for text. |
| 4061 | Solution: Reduce the foldcolumn width when there is not sufficient room. |
| 4062 | (idea by Christian Brabandt) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4063 | Files: src/screen.c |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4064 | |
| 4065 | Patch 7.4.604 |
| 4066 | Problem: Running tests changes viminfo. |
| 4067 | Solution: Disable viminfo. |
| 4068 | Files: src/testdir/test_breakindent.in |
| 4069 | |
| 4070 | Patch 7.4.605 |
| 4071 | Problem: The # register is not writable, it cannot be restored after |
| 4072 | jumping around. |
| 4073 | Solution: Make the # register writable. (Marcin Szamotulski) |
| 4074 | Files: runtime/doc/change.txt, src/ops.c, src/buffer.c, src/globals.h |
| 4075 | |
| 4076 | Patch 7.4.606 |
| 4077 | Problem: May crash when using a small window. |
| 4078 | Solution: Avoid dividing by zero. (Christian Brabandt) |
| 4079 | Files: src/normal.c |
| 4080 | |
| 4081 | Patch 7.4.607 (after 7.4.598) |
| 4082 | Problem: Compiler warnings for unused variables. |
| 4083 | Solution: Move them inside #ifdef. (Kazunobu Kuriyama) |
| 4084 | Files: src/ui.c |
| 4085 | |
| 4086 | Patch 7.4.608 (after 7.4.598) |
| 4087 | Problem: test_eval fails when the clipboard feature is missing. |
| 4088 | Solution: Skip part of the test. Reduce the text used. |
| 4089 | Files: src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 4090 | |
| 4091 | Patch 7.4.609 |
| 4092 | Problem: For complicated list and dict use the garbage collector can run |
| 4093 | out of stack space. |
| 4094 | Solution: Use a stack of dicts and lists to be marked, thus making it |
| 4095 | iterative instead of recursive. (Ben Fritz) |
| 4096 | Files: src/eval.c, src/if_lua.c, src/if_py_both.h, src/if_python.c, |
| 4097 | src/if_python3.c, src/proto/eval.pro, src/proto/if_lua.pro, |
| 4098 | src/proto/if_python.pro, src/proto/if_python3.pro, src/structs.h |
| 4099 | |
| 4100 | Patch 7.4.610 |
| 4101 | Problem: Some function headers may be missing from generated .pro files. |
| 4102 | Solution: Add PROTO to the #ifdef. |
| 4103 | Files: src/option.c, src/syntax.c |
| 4104 | |
| 4105 | Patch 7.4.611 (after 7.4.609) |
| 4106 | Problem: Syntax error. |
| 4107 | Solution: Change statement to return. |
| 4108 | Files: src/if_python3.c |
| 4109 | |
| 4110 | Patch 7.4.612 |
| 4111 | Problem: test_eval fails on Mac. |
| 4112 | Solution: Use the * register instead of the + register. (Jun Takimoto) |
| 4113 | Files: src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 4114 | |
| 4115 | Patch 7.4.613 |
| 4116 | Problem: The NFA engine does not implement the 'redrawtime' time limit. |
| 4117 | Solution: Implement the time limit. |
| 4118 | Files: src/regexp_nfa.c |
| 4119 | |
| 4120 | Patch 7.4.614 |
| 4121 | Problem: There is no test for what patch 7.4.601 fixes. |
| 4122 | Solution: Add a test. (Christian Brabandt) |
| 4123 | Files: src/testdir/test_mapping.in, src/testdir/test_mapping.ok |
| 4124 | |
| 4125 | Patch 7.4.615 |
| 4126 | Problem: Vim hangs when freeing a lot of objects. |
| 4127 | Solution: Do not go back to the start of the list every time. (Yasuhiro |
| 4128 | Matsumoto and Ariya Mizutani) |
| 4129 | Files: src/eval.c |
| 4130 | |
| 4131 | Patch 7.4.616 |
| 4132 | Problem: Cannot insert a tab in front of a block. |
| 4133 | Solution: Correctly compute aop->start. (Christian Brabandt) |
| 4134 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 4135 | |
| 4136 | Patch 7.4.617 |
| 4137 | Problem: Wrong ":argdo" range does not cause an error. |
| 4138 | Solution: Reset "cmd" to NULL. (Marcin Szamotulski, Ingo Karkat) |
| 4139 | Files: src/ex_docmd.c |
| 4140 | |
| 4141 | Patch 7.4.618 (after 7.4.609) |
| 4142 | Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi) |
| 4143 | Solution: Put the return statement back. |
| 4144 | Files: src/if_lua.c |
| 4145 | |
| 4146 | Patch 7.4.619 (after 7.4.618) |
| 4147 | Problem: luaV_setref() not returning the correct value. |
| 4148 | Solution: Return one. |
| 4149 | Files: src/if_lua.c |
| 4150 | |
| 4151 | Patch 7.4.620 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4152 | Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4153 | Solution: Initialize "did_free". (Ben Fritz) |
| 4154 | Files: src/eval.c |
| 4155 | |
| 4156 | Patch 7.4.621 (after 7.4.619) |
| 4157 | Problem: Returning 1 in the wrong function. (Raymond Ko) |
| 4158 | Solution: Return 1 in the right function (hopefully). |
| 4159 | Files: src/if_lua.c |
| 4160 | |
| 4161 | Patch 7.4.622 |
| 4162 | Problem: Compiler warning for unused argument. |
| 4163 | Solution: Add UNUSED. |
| 4164 | Files: src/regexp_nfa.c |
| 4165 | |
| 4166 | Patch 7.4.623 |
| 4167 | Problem: Crash with pattern: \(\)\{80000} (Dominique Pelle) |
| 4168 | Solution: When the max limit is large fall back to the old engine. |
| 4169 | Files: src/regexp_nfa.c |
| 4170 | |
| 4171 | Patch 7.4.624 |
| 4172 | Problem: May leak memory or crash when vim_realloc() returns NULL. |
| 4173 | Solution: Handle a NULL value properly. (Mike Williams) |
| 4174 | Files: src/if_cscope.c, src/memline.c, src/misc1.c, src/netbeans.c |
| 4175 | |
| 4176 | Patch 7.4.625 |
| 4177 | Problem: Possible NULL pointer dereference. |
| 4178 | Solution: Check for NULL before using it. (Mike Williams) |
| 4179 | Files: src/if_py_both.h |
| 4180 | |
| 4181 | Patch 7.4.626 |
| 4182 | Problem: MSVC with W4 gives useless warnings. |
| 4183 | Solution: Disable more warnings. (Mike Williams) |
| 4184 | Files: src/vim.h |
| 4185 | |
| 4186 | Patch 7.4.627 |
| 4187 | Problem: The last screen cell is not updated. |
| 4188 | Solution: Respect the "tn" termcap feature. (Hayaki Saito) |
| 4189 | Files: runtime/doc/term.txt, src/option.c, src/screen.c, src/term.c, |
| 4190 | src/term.h |
| 4191 | |
| 4192 | Patch 7.4.628 |
| 4193 | Problem: Compiler warning for variable might be clobbered by longjmp. |
| 4194 | Solution: Add volatile. (Michael Jarvis) |
| 4195 | Files: src/main.c |
| 4196 | |
| 4197 | Patch 7.4.629 |
| 4198 | Problem: Coverity warning for Out-of-bounds read. |
| 4199 | Solution: Increase MAXWLEN to 254. (Eliseo MartÃnez) |
| 4200 | Files: src/spell.c |
| 4201 | |
| 4202 | Patch 7.4.630 |
| 4203 | Problem: When using Insert mode completion combined with autocommands the |
| 4204 | redo command may not work. |
| 4205 | Solution: Do not save the redo buffer when executing autocommands. (Yasuhiro |
| 4206 | Matsumoto) |
| 4207 | Files: src/fileio.c |
| 4208 | |
| 4209 | Patch 7.4.631 |
| 4210 | Problem: The default conceal character is documented to be a space but it's |
| 4211 | initially a dash. (Christian Brabandt) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4212 | Solution: Make the initial value a space. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4213 | Files: src/globals.h |
| 4214 | |
| 4215 | Patch 7.4.632 (after 7.4.592) |
| 4216 | Problem: 7.4.592 breaks the netrw plugin, because the autocommands are |
| 4217 | skipped. |
| 4218 | Solution: Roll back the change. |
| 4219 | Files: src/ex_cmds.c |
| 4220 | |
| 4221 | Patch 7.4.633 |
| 4222 | Problem: After 7.4.630 the problem persists. |
| 4223 | Solution: Also skip redo when calling a user function. |
| 4224 | Files: src/eval.c |
| 4225 | |
| 4226 | Patch 7.4.634 |
| 4227 | Problem: Marks are not restored after redo + undo. |
| 4228 | Solution: Fix the way marks are restored. (Olaf Dabrunz) |
| 4229 | Files: src/undo.c, src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 4230 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 4231 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 4232 | src/testdir/test_marks.in, src/testdir/test_marks.ok |
| 4233 | |
| 4234 | Patch 7.4.635 |
| 4235 | Problem: If no NL or CR is found in the first block of a file then the |
| 4236 | 'fileformat' may be set to "mac". (Issue 77) |
| 4237 | Solution: Check if a CR was found. (eswald) |
| 4238 | Files: src/fileio.c |
| 4239 | |
| 4240 | Patch 7.4.636 |
| 4241 | Problem: A search with end offset gets stuck at end of file. (Gary Johnson) |
| 4242 | Solution: When a search doesn't move the cursor repeat it with a higher |
| 4243 | count. (Christian Brabandt) |
| 4244 | Files: src/normal.c, src/testdir/test44.in, src/testdir/test44.ok |
| 4245 | |
| 4246 | Patch 7.4.637 |
| 4247 | Problem: Incorrectly read the number of buffer for which an autocommand |
| 4248 | should be registered. |
| 4249 | Solution: Reverse check for "<buffer=abuf>". (Lech Lorens) |
| 4250 | Files: src/fileio.c |
| 4251 | |
| 4252 | Patch 7.4.638 |
| 4253 | Problem: Can't build with Lua 5.3 on Windows. |
| 4254 | Solution: use luaL_optinteger() instead of LuaL_optlong(). (Ken Takata) |
| 4255 | Files: src/if_lua.c |
| 4256 | |
| 4257 | Patch 7.4.639 |
| 4258 | Problem: Combination of linebreak and conceal doesn't work well. |
| 4259 | Solution: Fix the display problems. (Christian Brabandt) |
| 4260 | Files: src/screen.c, src/testdir/test88.in, src/testdir/test88.ok, |
| 4261 | src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok |
| 4262 | |
| 4263 | Patch 7.4.640 |
| 4264 | Problem: After deleting characters in Insert mode such that lines are |
| 4265 | joined undo does not work properly. (issue 324) |
| 4266 | Solution: Use Insstart instead of Insstart_orig. (Christian Brabandt) |
| 4267 | Files: src/edit.c |
| 4268 | |
| 4269 | Patch 7.4.641 |
| 4270 | Problem: The tabline menu was using ":999tabnew" which is now invalid. |
| 4271 | Solution: Use ":$tabnew" instead. (Florian Degner) |
| 4272 | Files: src/normal.c |
| 4273 | |
| 4274 | Patch 7.4.642 |
| 4275 | Problem: When using "gf" escaped spaces are not handled. |
| 4276 | Solution: Recognize escaped spaces. |
| 4277 | Files: src/vim.h, src/normal.h, src/window.c, src/misc2.c |
| 4278 | |
| 4279 | Patch 7.4.643 |
| 4280 | Problem: Using the default file format for Mac files. (Issue 77) |
| 4281 | Solution: Reset the try_mac counter in the right place. (Oswald) |
| 4282 | Files: src/fileio.c, src/testdir/test30.in, src/testdir/test30.ok |
| 4283 | |
| 4284 | Patch 7.4.644 |
| 4285 | Problem: Stratus VOS doesn't have sync(). |
| 4286 | Solution: Use fflush(). (Karli Aurelia) |
| 4287 | Files: src/memfile.c |
| 4288 | |
| 4289 | Patch 7.4.645 |
| 4290 | Problem: When splitting the window in a BufAdd autocommand while still in |
| 4291 | the first, empty buffer the window count is wrong. |
| 4292 | Solution: Do not reset b_nwindows to zero and don't increment it. |
| 4293 | Files: src/buffer.c, src/ex_cmds.c |
| 4294 | |
| 4295 | Patch 7.4.646 |
| 4296 | Problem: ":bufdo" may start at a deleted buffer. |
| 4297 | Solution: Find the first not deleted buffer. (Shane Harper) |
| 4298 | Files: src/ex_cmds2.c, src/testdir/test_command_count.in, |
| 4299 | src/testdir/test_command_count.ok |
| 4300 | |
| 4301 | Patch 7.4.647 |
| 4302 | Problem: After running the tests on MS-Windows many files differ from their |
| 4303 | originals as they were checked out. |
| 4304 | Solution: Use a temp directory for executing the tests. (Ken Takata, Taro |
| 4305 | Muraoka) |
| 4306 | Files: src/testdir/Make_dos.mak |
| 4307 | |
| 4308 | Patch 7.4.648 (after 7.4.647) |
| 4309 | Problem: Tests broken on MS-Windows. |
| 4310 | Solution: Delete wrong copy line. (Ken Takata) |
| 4311 | Files: src/testdir/Make_dos.mak |
| 4312 | |
| 4313 | Patch 7.4.649 |
| 4314 | Problem: Compiler complains about ignoring return value of fwrite(). |
| 4315 | (Michael Jarvis) |
| 4316 | Solution: Add (void). |
| 4317 | Files: src/misc2.c |
| 4318 | |
| 4319 | Patch 7.4.650 |
| 4320 | Problem: Configure check may fail because the dl library is not used. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 4321 | Solution: Put "-ldl" in LIBS rather than LDFLAGS. (Ozaki Kiichi) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4322 | Files: src/configure.in, src/auto/configure |
| 4323 | |
| 4324 | Patch 7.4.651 (after 7.4.582) |
| 4325 | Problem: Can't match "%>80v" properly for multi-byte characters. |
| 4326 | Solution: Multiply the character number by the maximum number of bytes in a |
| 4327 | character. (Yasuhiro Matsumoto) |
| 4328 | Files: src/regexp_nfa.c |
| 4329 | |
| 4330 | Patch 7.4.652 |
| 4331 | Problem: Xxd lacks a few features. |
| 4332 | Solution: Use 8 characters for the file position. Add the -e and -o |
| 4333 | arguments. (Vadim Vygonets) |
| 4334 | Files: src/xxd/xxd.c, runtime/doc/xxd.1 |
| 4335 | |
| 4336 | Patch 7.4.653 |
| 4337 | Problem: Insert mode completion with complete() may have CTRL-L work like |
| 4338 | CTRL-P. |
| 4339 | Solution: Handle completion with complete() differently. (Yasuhiro |
| 4340 | Matsumoto, Christian Brabandt, Hirohito Higashi) |
| 4341 | Files: src/edit.c |
| 4342 | |
| 4343 | Patch 7.4.654 |
| 4344 | Problem: glob() and globpath() cannot include links to non-existing files. |
| 4345 | (Charles Campbell) |
| 4346 | Solution: Add an argument to include all links with glob(). (James McCoy) |
| 4347 | Also for globpath(). |
| 4348 | Files: src/vim.h, src/eval.c, src/ex_getln.c |
| 4349 | |
| 4350 | Patch 7.4.655 |
| 4351 | Problem: Text deleted by "dit" depends on indent of closing tag. |
| 4352 | (Jan Parthey) |
| 4353 | Solution: Do not adjust oap->end in do_pending_operator(). (Christian |
| 4354 | Brabandt) |
| 4355 | Files: src/normal.c, src/search.c, src/testdir/test53.in, |
| 4356 | src/testdir/test53.ok |
| 4357 | |
| 4358 | Patch 7.4.656 (after 7.4.654) |
| 4359 | Problem: Missing changes for glob() in one file. |
| 4360 | Solution: Add the missing changes. |
| 4361 | Files: src/misc1.c |
| 4362 | |
| 4363 | Patch 7.4.657 (after 7.4.656) |
| 4364 | Problem: Compiler warnings for pointer mismatch. |
| 4365 | Solution: Add a typecast. (John Marriott) |
| 4366 | Files: src/misc1.c |
| 4367 | |
| 4368 | Patch 7.4.658 |
| 4369 | Problem: 'formatexpr' is evaluated too often. |
| 4370 | Solution: Only invoke it when beyond the 'textwidth' column, as it is |
| 4371 | documented. (James McCoy) |
| 4372 | Files: src/edit.c |
| 4373 | |
| 4374 | Patch 7.4.659 |
| 4375 | Problem: When 'ruler' is set the preferred column is reset. (Issue 339) |
| 4376 | Solution: Don't set curswant when redrawing the status lines. |
| 4377 | Files: src/option.c |
| 4378 | |
| 4379 | Patch 7.4.660 |
| 4380 | Problem: Using freed memory when g:colors_name is changed in the colors |
| 4381 | script. (oni-link) |
| 4382 | Solution: Make a copy of the variable value. |
| 4383 | Files: src/syntax.c |
| 4384 | |
| 4385 | Patch 7.4.661 |
| 4386 | Problem: Using "0 CTRL-D" in Insert mode may have CursorHoldI interfere. |
| 4387 | (Gary Johnson) |
| 4388 | Solution: Don't store K_CURSORHOLD as the last character. (Christian |
| 4389 | Brabandt) |
| 4390 | Files: src/edit.c |
| 4391 | |
| 4392 | Patch 7.4.662 |
| 4393 | Problem: When 'M' is in the 'cpo' option then selecting a text object in |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4394 | parentheses does not work correctly. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4395 | Solution: Keep 'M' in 'cpo' when finding a match. (Hirohito Higashi) |
| 4396 | Files: src/search.c, src/testdir/Make_amiga.mak, |
| 4397 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 4398 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 4399 | src/testdir/Makefile, src/testdir/test_textobjects.in, |
| 4400 | src/testdir/test_textobjects.ok |
| 4401 | |
| 4402 | Patch 7.4.663 |
| 4403 | Problem: When using netbeans a buffer is not found in another tab. |
| 4404 | Solution: When 'switchbuf' is set to "usetab" then switch to another tab |
| 4405 | when possible. (Xavier de Gaye) |
| 4406 | Files: src/netbeans.c |
| 4407 | |
| 4408 | Patch 7.4.664 |
| 4409 | Problem: When 'compatible' is reset 'numberwidth' is set to 4, but the |
| 4410 | effect doesn't show until a change is made. |
| 4411 | Solution: Check if 'numberwidth' changed. (Christian Brabandt) |
| 4412 | Files: src/screen.c, src/structs.h |
| 4413 | |
| 4414 | Patch 7.4.665 |
| 4415 | Problem: 'linebreak' does not work properly with multi-byte characters. |
| 4416 | Solution: Compute the pointer offset with mb_head_off(). (Yasuhiro |
| 4417 | Matsumoto) |
| 4418 | Files: src/screen.c |
| 4419 | |
| 4420 | Patch 7.4.666 |
| 4421 | Problem: There is a chance that Vim may lock up. |
| 4422 | Solution: Handle timer events differently. (Aaron Burrow) |
| 4423 | Files: src/os_unix.c |
| 4424 | |
| 4425 | Patch 7.4.667 |
| 4426 | Problem: 'colorcolumn' isn't drawn in a closed fold while 'cursorcolumn' |
| 4427 | is. (Carlos Pita) |
| 4428 | Solution: Make it consistent. (Christian Brabandt) |
| 4429 | Files: src/screen.c |
| 4430 | |
| 4431 | Patch 7.4.668 |
| 4432 | Problem: Can't use a glob pattern as a regexp pattern. |
| 4433 | Solution: Add glob2regpat(). (Christian Brabandt) |
| 4434 | Files: src/eval.c, runtime/doc/eval.txt |
| 4435 | |
| 4436 | Patch 7.4.669 |
| 4437 | Problem: When netbeans is active the sign column always shows up. |
| 4438 | Solution: Only show the sign column once a sign has been added. (Xavier de |
| 4439 | Gaye) |
| 4440 | Files: src/buffer.c, src/edit.c, src/move.c, src/netbeans.c, |
| 4441 | src/screen.c, src/structs.h |
| 4442 | |
| 4443 | Patch 7.4.670 |
| 4444 | Problem: Using 'cindent' for Javascript is less than perfect. |
| 4445 | Solution: Improve indenting of continuation lines. (Hirohito Higashi) |
| 4446 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 4447 | |
| 4448 | Patch 7.4.671 (after 7.4.665) |
| 4449 | Problem: Warning for shadowing a variable. |
| 4450 | Solution: Rename off to mb_off. (Kazunobu Kuriyama) |
| 4451 | Files: src/screen.c |
| 4452 | |
| 4453 | Patch 7.4.672 |
| 4454 | Problem: When completing a shell command, directories in the current |
| 4455 | directory are not listed. |
| 4456 | Solution: When "." is not in $PATH also look in the current directory for |
| 4457 | directories. |
| 4458 | Files: src/ex_getln.c, src/vim.h, src/misc1.c, src/eval.c, |
| 4459 | src/os_amiga.c, src/os_msdos.c, src/os_unix.c, src/os_vms.c, |
| 4460 | src/proto/os_amiga.pro, src/proto/os_msdos.pro, |
| 4461 | src/proto/os_unix.pro, src/proto/os_win32.pro |
| 4462 | |
| 4463 | Patch 7.4.673 |
| 4464 | Problem: The first syntax entry gets sequence number zero, which doesn't |
| 4465 | work. (Clinton McKay) |
| 4466 | Solution: Start at number one. (Bjorn Linse) |
| 4467 | Files: src/syntax.c |
| 4468 | |
| 4469 | Patch 7.4.674 (after 7.4.672) |
| 4470 | Problem: Missing changes in one file. |
| 4471 | Solution: Also change the win32 file. |
| 4472 | Files: src/os_win32.c |
| 4473 | |
| 4474 | Patch 7.4.675 |
| 4475 | Problem: When a FileReadPost autocommand moves the cursor inside a line it |
| 4476 | gets moved back. |
| 4477 | Solution: When checking whether an autocommand moved the cursor store the |
| 4478 | column as well. (Christian Brabandt) |
| 4479 | Files: src/ex_cmds.c |
| 4480 | |
| 4481 | Patch 7.4.676 |
| 4482 | Problem: On Mac, when not using the default Python framework configure |
| 4483 | doesn't do the right thing. |
| 4484 | Solution: Use a linker search path. (Kazunobu Kuriyama) |
| 4485 | Files: src/configure.in, src/auto/configure |
| 4486 | |
| 4487 | Patch 7.4.677 (after 7.4.676) |
| 4488 | Problem: Configure fails when specifying a python-config-dir. (Lcd) |
| 4489 | Solution: Check if PYTHONFRAMEWORKPREFIX is set. |
| 4490 | Files: src/configure.in, src/auto/configure |
| 4491 | |
| 4492 | Patch 7.4.678 |
| 4493 | Problem: When using --remote the directory may end up being wrong. |
| 4494 | Solution: Use localdir() to find out what to do. (Xaizek) |
| 4495 | Files: src/main.c |
| 4496 | |
| 4497 | Patch 7.4.679 |
| 4498 | Problem: Color values greater than 255 cause problems on MS-Windows. |
| 4499 | Solution: Truncate to 255 colors. (Yasuhiro Matsumoto) |
| 4500 | Files: src/os_win32.c |
| 4501 | |
| 4502 | Patch 7.4.680 |
| 4503 | Problem: CTRL-W in Insert mode does not work well for multi-byte |
| 4504 | characters. |
| 4505 | Solution: Use mb_get_class(). (Yasuhiro Matsumoto) |
| 4506 | Files: src/edit.c, src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 4507 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 4508 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 4509 | src/testdir/test_erasebackword.in, |
| 4510 | src/testdir/test_erasebackword.ok, |
| 4511 | |
| 4512 | Patch 7.4.681 |
| 4513 | Problem: MS-Windows: When Vim is minimized the window height is computed |
| 4514 | incorrectly. |
| 4515 | Solution: When minimized use the previously computed size. (Ingo Karkat) |
| 4516 | Files: src/gui_w32.c |
| 4517 | |
| 4518 | Patch 7.4.682 |
| 4519 | Problem: The search highlighting and match highlighting replaces the |
| 4520 | cursorline highlighting, this doesn't look good. |
| 4521 | Solution: Combine the highlighting. (Yasuhiro Matsumoto) |
| 4522 | Files: src/screen.c |
| 4523 | |
| 4524 | Patch 7.4.683 |
| 4525 | Problem: Typo in the vimtutor command. |
| 4526 | Solution: Fix the typo. (Corey Farwell, github pull 349) |
| 4527 | Files: vimtutor.com |
| 4528 | |
| 4529 | Patch 7.4.684 |
| 4530 | Problem: When starting several Vim instances in diff mode, the temp files |
| 4531 | used may not be unique. (Issue 353) |
| 4532 | Solution: Add an argument to vim_tempname() to keep the file. |
| 4533 | Files: src/diff.c, src/eval.c, src/ex_cmds.c, src/fileio.c, |
| 4534 | src/hardcopy.c, src/proto/fileio.pro, src/if_cscope.c, |
| 4535 | src/memline.c, src/misc1.c, src/os_unix.c, src/quickfix.c, |
| 4536 | src/spell.c |
| 4537 | |
| 4538 | Patch 7.4.685 |
| 4539 | Problem: When there are illegal utf-8 characters the old regexp engine may |
| 4540 | go past the end of a string. |
| 4541 | Solution: Only advance to the end of the string. (Dominique Pelle) |
| 4542 | Files: src/regexp.c |
| 4543 | |
| 4544 | Patch 7.4.686 |
| 4545 | Problem: "zr" and "zm" do not take a count. |
| 4546 | Solution: Implement the count, restrict the fold level to the maximum |
| 4547 | nesting depth. (Marcin Szamotulski) |
| 4548 | Files: runtime/doc/fold.txt, src/normal.c |
| 4549 | |
| 4550 | Patch 7.4.687 |
| 4551 | Problem: There is no way to use a different in Replace mode for a terminal. |
| 4552 | Solution: Add t_SR. (Omar Sandoval) |
| 4553 | Files: runtime/doc/options.txt, runtime/doc/term.txt, |
| 4554 | runtime/syntax/vim.vim, src/option.c, src/term.c, src/term.h |
| 4555 | |
| 4556 | Patch 7.4.688 |
| 4557 | Problem: When "$" is in 'cpo' the popup menu isn't undrawn correctly. |
| 4558 | (Issue 166) |
| 4559 | Solution: When using the popup menu remove the "$". |
| 4560 | Files: src/edit.c |
| 4561 | |
| 4562 | Patch 7.4.689 |
| 4563 | Problem: On MS-Windows, when 'autochdir' is set, diff mode with files in |
| 4564 | different directories does not work. (Axel Bender) |
| 4565 | Solution: Remember the current directory and use it where needed. (Christian |
| 4566 | Brabandt) |
| 4567 | Files: src/main.c |
| 4568 | |
| 4569 | Patch 7.4.690 |
| 4570 | Problem: Memory access errors when changing indent in Ex mode. Also missing |
| 4571 | redraw when using CTRL-U. (Knil Ino) |
| 4572 | Solution: Update pointers after calling ga_grow(). |
| 4573 | Files: src/ex_getln.c |
| 4574 | |
| 4575 | Patch 7.4.691 (after 7.4.689) |
| 4576 | Problem: Can't build with MzScheme. |
| 4577 | Solution: Change "cwd" into the global variable "start_dir". |
| 4578 | Files: src/main.c |
| 4579 | |
| 4580 | Patch 7.4.692 |
| 4581 | Problem: Defining SOLARIS for no good reason. (Danek Duvall) |
| 4582 | Solution: Remove it. |
| 4583 | Files: src/os_unix.h |
| 4584 | |
| 4585 | Patch 7.4.693 |
| 4586 | Problem: Session file is not correct when there are multiple tab pages. |
| 4587 | Solution: Reset the current window number for each tab page. (Jacob Niehus) |
| 4588 | Files: src/ex_docmd.c |
| 4589 | |
| 4590 | Patch 7.4.694 |
| 4591 | Problem: Running tests changes the .viminfo file. |
| 4592 | Solution: Disable viminfo in the text objects test. |
| 4593 | Files: src/testdir/test_textobjects.in |
| 4594 | |
| 4595 | Patch 7.4.695 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4596 | Problem: Out-of-bounds read, detected by Coverity. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4597 | Solution: Remember the value of cmap for the first matching encoding. Reset |
| 4598 | cmap to that value if first matching encoding is going to be used. |
| 4599 | (Eliseo MartÃnez) |
| 4600 | Files: src/hardcopy.c |
| 4601 | |
| 4602 | Patch 7.4.696 |
| 4603 | Problem: Not freeing memory when encountering an error. |
| 4604 | Solution: Free the stack before returning. (Eliseo MartÃnez) |
| 4605 | Files: src/regexp_nfa.c |
| 4606 | |
| 4607 | Patch 7.4.697 |
| 4608 | Problem: The filename used for ":profile" must be given literally. |
| 4609 | Solution: Expand "~" and environment variables. (Marco Hinz) |
| 4610 | Files: src/ex_cmds2.c |
| 4611 | |
| 4612 | Patch 7.4.698 |
| 4613 | Problem: Various problems with locked and fixed lists and dictionaries. |
| 4614 | Solution: Disallow changing locked items, fix a crash, add tests. (Olaf |
| 4615 | Dabrunz) |
| 4616 | Files: src/structs.h, src/eval.c, src/testdir/test55.in, |
| 4617 | src/testdir/test55.ok |
| 4618 | |
| 4619 | Patch 7.4.699 |
| 4620 | Problem: E315 when trying to delete a fold. (Yutao Yuan) |
| 4621 | Solution: Make sure the fold doesn't go beyond the last buffer line. |
| 4622 | (Christian Brabandt) |
| 4623 | Files: src/fold.c |
| 4624 | |
| 4625 | Patch 7.4.700 |
| 4626 | Problem: Fold can't be opened after ":move". (Ein Brown) |
| 4627 | Solution: Delete the folding information and update it afterwards. |
| 4628 | (Christian Brabandt) |
| 4629 | Files: src/ex_cmds.c, src/fold.c, src/testdir/test45.in, |
| 4630 | src/testdir/test45.ok |
| 4631 | |
| 4632 | Patch 7.4.701 |
| 4633 | Problem: Compiler warning for using uninitialized variable. (Yasuhiro |
| 4634 | Matsumoto) |
| 4635 | Solution: Initialize it. |
| 4636 | Files: src/hardcopy.c |
| 4637 | |
| 4638 | Patch 7.4.702 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4639 | Problem: Joining an empty list does unnecessary work. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4640 | Solution: Let join() return early. (Marco Hinz) |
| 4641 | Files: src/eval.c |
| 4642 | |
| 4643 | Patch 7.4.703 |
| 4644 | Problem: Compiler warning for start_dir unused when building unittests. |
| 4645 | Solution: Move start_dir inside the #ifdef. |
| 4646 | Files: src/main.c |
| 4647 | |
| 4648 | Patch 7.4.704 |
| 4649 | Problem: Searching for a character matches an illegal byte and causes |
| 4650 | invalid memory access. (Dominique Pelle) |
| 4651 | Solution: Do not match an invalid byte when search for a character in a |
| 4652 | string. Fix equivalence classes using negative numbers, which |
| 4653 | result in illegal bytes. |
| 4654 | Files: src/misc2.c, src/regexp.c, src/testdir/test44.in |
| 4655 | |
| 4656 | Patch 7.4.705 |
| 4657 | Problem: Can't build with Ruby 2.2. |
| 4658 | Solution: Add #ifdefs to handle the incompatible change. (Andrei Olsen) |
| 4659 | Files: src/if_ruby.c |
| 4660 | |
| 4661 | Patch 7.4.706 |
| 4662 | Problem: Window drawn wrong when 'laststatus' is zero and there is a |
| 4663 | command-line window. (Yclept Nemo) |
| 4664 | Solution: Set the status height a bit later. (Christian Brabandt) |
| 4665 | Files: src/window.c |
| 4666 | |
| 4667 | Patch 7.4.707 |
| 4668 | Problem: Undo files can have their executable bit set. |
| 4669 | Solution: Strip of the executable bit. (Mikael Berthe) |
| 4670 | Files: src/undo.c |
| 4671 | |
| 4672 | Patch 7.4.708 |
| 4673 | Problem: gettext() is called too often. |
| 4674 | Solution: Do not call gettext() for messages until they are actually used. |
| 4675 | (idea by Yasuhiro Matsumoto) |
| 4676 | Files: src/eval.c |
| 4677 | |
| 4678 | Patch 7.4.709 |
| 4679 | Problem: ":tabmove" does not work as documented. |
| 4680 | Solution: Make it work consistently. Update documentation and add tests. |
| 4681 | (Hirohito Higashi) |
| 4682 | Files: src/window.c, runtime/doc/tabpage.txt, src/ex_docmd.c, |
| 4683 | src/testdir/test62.in, src/testdir/test62.ok |
| 4684 | |
| 4685 | Patch 7.4.710 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4686 | Problem: It is not possible to make spaces visible in list mode. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4687 | Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350) |
| 4688 | Files: runtime/doc/options.txt, src/globals.h, src/message.h, |
| 4689 | src/screen.c, src/testdir/test_listchars.in, |
| 4690 | src/testdir/test_listchars.ok, src/testdir/Make_amiga.mak, |
| 4691 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 4692 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 4693 | src/testdir/Makefile |
| 4694 | |
| 4695 | Patch 7.4.711 (after 7.4.710) |
| 4696 | Problem: Missing change in one file. |
| 4697 | Solution: Also change option.c |
| 4698 | Files: src/option.c |
| 4699 | |
| 4700 | Patch 7.4.712 (after 7.4.710) |
| 4701 | Problem: Missing change in another file. |
| 4702 | Solution: Also change message.c |
| 4703 | Files: src/message.c |
| 4704 | |
| 4705 | Patch 7.4.713 |
| 4706 | Problem: Wrong condition for #ifdef. |
| 4707 | Solution: Change USR_EXRC_FILE2 to USR_VIMRC_FILE2. (Mikael Fourrier) |
| 4708 | Files: src/os_unix.h |
| 4709 | |
| 4710 | Patch 7.4.714 |
| 4711 | Problem: Illegal memory access when there are illegal bytes. |
| 4712 | Solution: Check the byte length of the character. (Dominique Pelle) |
| 4713 | Files: src/regexp.c |
| 4714 | |
| 4715 | Patch 7.4.715 |
| 4716 | Problem: Invalid memory access when there are illegal bytes. |
| 4717 | Solution: Get the length from the text, not from the character. (Dominique |
| 4718 | Pelle) |
| 4719 | Files: src/regexp_nfa.c |
| 4720 | |
| 4721 | Patch 7.4.716 |
| 4722 | Problem: When using the 'c' flag of ":substitute" and selecting "a" or "l" |
| 4723 | at the prompt the flags are not remembered for ":&&". (Ingo |
| 4724 | Karkat) |
| 4725 | Solution: Save the flag values and restore them. (Hirohito Higashi) |
| 4726 | Files: src/ex_cmds.c |
| 4727 | |
| 4728 | Patch 7.4.717 |
| 4729 | Problem: ":let list += list" can change a locked list. |
| 4730 | Solution: Check for the lock earlier. (Olaf Dabrunz) |
| 4731 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok |
| 4732 | |
| 4733 | Patch 7.4.718 |
| 4734 | Problem: Autocommands triggered by quickfix cannot get the current title |
| 4735 | value. |
| 4736 | Solution: Set w:quickfix_title earlier. (Yannick) |
| 4737 | Also move the check for a title into the function. |
| 4738 | Files: src/quickfix.c |
| 4739 | |
| 4740 | Patch 7.4.719 |
| 4741 | Problem: Overflow when adding MAXCOL to a pointer. |
| 4742 | Solution: Subtract pointers instead. (James McCoy) |
| 4743 | Files: src/screen.c |
| 4744 | |
| 4745 | Patch 7.4.720 |
| 4746 | Problem: Can't build with Visual Studio 2015. |
| 4747 | Solution: Recognize the "version 14" numbers and omit /nodefaultlib when |
| 4748 | appropriate. (Paul Moore) |
| 4749 | Files: src/Make_mvc.mak |
| 4750 | |
| 4751 | Patch 7.4.721 |
| 4752 | Problem: When 'list' is set Visual mode does not highlight anything in |
| 4753 | empty lines. (mgaleski) |
| 4754 | Solution: Check the value of lcs_eol in another place. (Christian Brabandt) |
| 4755 | Files: src/screen.c |
| 4756 | |
| 4757 | Patch 7.4.722 |
| 4758 | Problem: 0x202f is not recognized as a non-breaking space character. |
| 4759 | Solution: Add 0x202f to the list. (Christian Brabandt) |
| 4760 | Files: runtime/doc/options.txt, src/message.c, src/screen.c |
| 4761 | |
| 4762 | Patch 7.4.723 |
| 4763 | Problem: For indenting, finding the C++ baseclass can be slow. |
| 4764 | Solution: Cache the result. (Hirohito Higashi) |
| 4765 | Files: src/misc1.c |
| 4766 | |
| 4767 | Patch 7.4.724 |
| 4768 | Problem: Vim icon does not show in Windows context menu. (issue 249) |
| 4769 | Solution: Load the icon in GvimExt. |
| 4770 | Files: src/GvimExt/gvimext.cpp, src/GvimExt/gvimext.h |
| 4771 | |
| 4772 | Patch 7.4.725 |
| 4773 | Problem: ":call setreg('"', [])" reports an internal error. |
| 4774 | Solution: Make the register empty. (Yasuhiro Matsumoto) |
| 4775 | Files: src/ops.c |
| 4776 | |
| 4777 | Patch 7.4.726 (after 7.4.724) |
| 4778 | Problem: Cannot build GvimExt. |
| 4779 | Solution: Set APPVER to 5.0. (KF Leong) |
| 4780 | Files: src/GvimExt/Makefile |
| 4781 | |
| 4782 | Patch 7.4.727 (after 7.4.724) |
| 4783 | Problem: Cannot build GvimExt with MingW. |
| 4784 | Solution: Add -lgdi32. (KF Leong) |
| 4785 | Files: src/GvimExt/Make_ming.mak |
| 4786 | |
| 4787 | Patch 7.4.728 |
| 4788 | Problem: Can't build with some version of Visual Studio 2015. |
| 4789 | Solution: Recognize another version 14 number. (Sinan) |
| 4790 | Files: src/Make_mvc.mak |
| 4791 | |
| 4792 | Patch 7.4.729 (after 7.4.721) |
| 4793 | Problem: Occasional crash with 'list' set. |
| 4794 | Solution: Fix off-by-one error. (Christian Brabandt) |
| 4795 | Files: src/screen.c |
| 4796 | |
| 4797 | Patch 7.4.730 |
| 4798 | Problem: When setting the crypt key and using a swap file, text may be |
| 4799 | encrypted twice or unencrypted text remains in the swap file. |
| 4800 | (Issue 369) |
| 4801 | Solution: Call ml_preserve() before re-encrypting. Set correct index for |
| 4802 | next pointer block. |
| 4803 | Files: src/memfile.c, src/memline.c, src/proto/memline.pro, src/option.c |
| 4804 | |
| 4805 | Patch 7.4.731 |
| 4806 | Problem: The tab menu shows "Close tab" even when it doesn't work. |
| 4807 | Solution: Don't show "Close tab" for the last tab. (John Marriott) |
| 4808 | Files: src/gui_w48.c, src/gui_gtk_x11.c, src/gui_mac.c, src/gui_motif.c |
| 4809 | |
| 4810 | Patch 7.4.732 |
| 4811 | Problem: The cursor line is not always updated for the "O" command. |
| 4812 | Solution: Reset the VALID_CROW flag. (Christian Brabandt) |
| 4813 | Files: src/normal.c |
| 4814 | |
| 4815 | Patch 7.4.733 |
| 4816 | Problem: test_listchars breaks on MS-Windows. (Kenichi Ito) |
| 4817 | Solution: Set fileformat to "unix". (Christian Brabandt) |
| 4818 | Files: src/testdir/test_listchars.in |
| 4819 | |
| 4820 | Patch 7.4.734 |
| 4821 | Problem: ml_get error when using "p" in a Visual selection in the last |
| 4822 | line. |
| 4823 | Solution: Change the behavior at the last line. (Yukihiro Nakadaira) |
| 4824 | Files: src/normal.c, src/ops.c, src/testdir/test94.in, |
| 4825 | src/testdir/test94.ok |
| 4826 | |
| 4827 | Patch 7.4.735 |
| 4828 | Problem: Wrong argument for sizeof(). |
| 4829 | Solution: Use a pointer argument. (Chris Hall) |
| 4830 | Files: src/eval.c |
| 4831 | |
| 4832 | Patch 7.4.736 |
| 4833 | Problem: Invalid memory access. |
| 4834 | Solution: Avoid going over the end of a NUL terminated string. (Dominique |
| 4835 | Pelle) |
| 4836 | Files: src/regexp.c |
| 4837 | |
| 4838 | Patch 7.4.737 |
| 4839 | Problem: On MS-Windows vimgrep over arglist doesn't work (Issue 361) |
| 4840 | Solution: Only escape backslashes in ## expansion when it is not used as the |
| 4841 | path separator. (James McCoy) |
| 4842 | Files: src/ex_docmd.c |
| 4843 | |
| 4844 | Patch 7.4.738 (after 7.4.732) |
| 4845 | Problem: Can't compile without the syntax highlighting feature. |
| 4846 | Solution: Add #ifdef around use of w_p_cul. (Hirohito Higashi) |
| 4847 | Files: src/normal.c, src/screen.c |
| 4848 | |
| 4849 | Patch 7.4.739 |
| 4850 | Problem: In a string "\U" only takes 4 digits, while after CTRL-V U eight |
| 4851 | digits can be used. |
| 4852 | Solution: Make "\U" also take eight digits. (Christian Brabandt) |
| 4853 | Files: src/eval.c |
| 4854 | |
| 4855 | Patch 7.4.740 |
| 4856 | Problem: ":1quit" works like ":.quit". (Bohr Shaw) |
| 4857 | Solution: Don't exit Vim when a range is specified. (Christian Brabandt) |
| 4858 | Files: src/ex_docmd.c, src/testdir/test13.in, src/testdir/test13.ok |
| 4859 | |
| 4860 | Patch 7.4.741 |
| 4861 | Problem: When using += with ":set" a trailing comma is not recognized. |
| 4862 | (Issue 365) |
| 4863 | Solution: Don't add a second comma. Add a test. (partly by Christian |
| 4864 | Brabandt) |
| 4865 | Files: src/option.c, src/testdir/test_set.in, src/testdir/test_set.ok, |
| 4866 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 4867 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 4868 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 4869 | |
| 4870 | Patch 7.4.742 |
| 4871 | Problem: Cannot specify a vertical split when loading a buffer for a |
| 4872 | quickfix command. |
| 4873 | Solution: Add the "vsplit" value to 'switchbuf'. (Brook Hong) |
| 4874 | Files: runtime/doc/options.txt, src/buffer.c, src/option.h |
| 4875 | |
| 4876 | Patch 7.4.743 |
| 4877 | Problem: "p" in Visual mode causes an unexpected line split. |
| 4878 | Solution: Advance the cursor first. (Yukihiro Nakadaira) |
| 4879 | Files: src/ops.c, src/testdir/test94.in, src/testdir/test94.ok |
| 4880 | |
| 4881 | Patch 7.4.744 |
| 4882 | Problem: No tests for Ruby and Perl. |
| 4883 | Solution: Add minimal tests. (Ken Takata) |
| 4884 | Files: src/testdir/test_perl.in, src/testdir/test_perl.ok, |
| 4885 | src/testdir/test_ruby.in, src/testdir/test_ruby.ok, |
| 4886 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 4887 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 4888 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 4889 | |
| 4890 | Patch 7.4.745 |
| 4891 | Problem: The entries added by matchaddpos() are returned by getmatches() |
| 4892 | but can't be set with setmatches(). (Lcd) |
| 4893 | Solution: Fix setmatches(). (Christian Brabandt) |
| 4894 | Files: src/eval.c, src/testdir/test63.in, src/testdir/test63.ok |
| 4895 | |
| 4896 | Patch 7.4.746 |
| 4897 | Problem: ":[count]tag" is not always working. (cs86661) |
| 4898 | Solution: Set cur_match a bit later. (Hirohito Higashi) |
| 4899 | Files: src/tag.c, |
| 4900 | |
| 4901 | Patch 7.4.747 |
| 4902 | Problem: ":cnext" may jump to the wrong column when setting |
| 4903 | 'virtualedit=all' (cs86661) |
| 4904 | Solution: Reset the coladd field. (Hirohito Higashi) |
| 4905 | Files: src/quickfix.c |
| 4906 | |
| 4907 | Patch 7.4.748 (after 7.4.745) |
| 4908 | Problem: Buffer overflow. |
| 4909 | Solution: Make the buffer larger. (Kazunobu Kuriyama) |
| 4910 | Files: src/eval.c |
| 4911 | |
| 4912 | Patch 7.4.749 (after 7.4.741) |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 4913 | Problem: For some options two consecutive commas are OK. (Nikolai Pavlov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4914 | Solution: Add the P_ONECOMMA flag. |
| 4915 | Files: src/option.c |
| 4916 | |
| 4917 | Patch 7.4.750 |
| 4918 | Problem: Cannot build with clang 3.5 on Cygwin with perl enabled. |
| 4919 | Solution: Strip "-fdebug-prefix-map" in configure. (Ken Takata) |
| 4920 | Files: src/configure.in, src/auto/configure |
| 4921 | |
| 4922 | Patch 7.4.751 |
| 4923 | Problem: It is not obvious how to enable the address sanitizer. |
| 4924 | Solution: Add commented-out flags in the Makefile. (Dominique Pelle) |
| 4925 | Also add missing test targets. |
| 4926 | Files: src/Makefile |
| 4927 | |
| 4928 | Patch 7.4.752 |
| 4929 | Problem: Unicode 8.0 not supported. |
| 4930 | Solution: Update tables for Unicode 8.0. Avoid E36 when running the script. |
| 4931 | (James McCoy) |
| 4932 | Files: runtime/tools/unicode.vim, src/mbyte.c |
| 4933 | |
| 4934 | Patch 7.4.753 |
| 4935 | Problem: Appending in Visual mode with 'linebreak' set does not work |
| 4936 | properly. Also when 'selection' is "exclusive". (Ingo Karkat) |
| 4937 | Solution: Recalculate virtual columns. (Christian Brabandt) |
| 4938 | Files: src/normal.c, src/testdir/test_listlbr.in, |
| 4939 | src/testdir/test_listlbr.ok, src/testdir/test_listlbr_utf8.in, |
| 4940 | src/testdir/test_listlbr_utf8.ok |
| 4941 | |
| 4942 | Patch 7.4.754 |
| 4943 | Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson) |
| 4944 | Solution: Make it increment all numbers in the Visual area. (Christian |
| 4945 | Brabandt) |
| 4946 | Files: runtime/doc/change.txt, src/normal.c, src/ops.c, |
| 4947 | src/proto/ops.pro, src/testdir/Make_amiga.mak, |
| 4948 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 4949 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 4950 | src/testdir/Makefile, src/testdir/test_increment.in, |
| 4951 | src/testdir/test_increment.ok |
| 4952 | |
| 4953 | Patch 7.4.755 |
| 4954 | Problem: It is not easy to count the number of characters. |
| 4955 | Solution: Add the skipcc argument to strchars(). (Hirohito Higashi, Ken |
| 4956 | Takata) |
| 4957 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_utf8.in, |
| 4958 | src/testdir/test_utf8.ok |
| 4959 | |
| 4960 | Patch 7.4.756 |
| 4961 | Problem: Can't use strawberry Perl 5.22 x64 on MS-Windows. |
| 4962 | Solution: Add new defines and #if. (Ken Takata) |
| 4963 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak, src/if_perl.xs |
| 4964 | |
| 4965 | Patch 7.4.757 |
| 4966 | Problem: Cannot detect the background color of a terminal. |
| 4967 | Solution: Add T_RBG to request the background color if possible. (Lubomir |
| 4968 | Rintel) |
| 4969 | Files: src/main.c, src/term.c, src/term.h, src/proto/term.pro |
| 4970 | |
| 4971 | Patch 7.4.758 |
| 4972 | Problem: When 'conceallevel' is 1 and quitting the command-line window with |
| 4973 | CTRL-C the first character ':' is erased. |
| 4974 | Solution: Reset 'conceallevel' in the command-line window. (Hirohito |
| 4975 | Higashi) |
| 4976 | Files: src/ex_getln.c |
| 4977 | |
| 4978 | Patch 7.4.759 |
| 4979 | Problem: Building with Lua 5.3 doesn't work, symbols have changed. |
| 4980 | Solution: Use the new names for the new version. (Felix Schnizlein) |
| 4981 | Files: src/if_lua.c |
| 4982 | |
| 4983 | Patch 7.4.760 |
| 4984 | Problem: Spelling mistakes are not displayed after ":syn spell". |
| 4985 | Solution: Force a redraw after ":syn spell" command. (Christian Brabandt) |
| 4986 | Files: src/syntax.c |
| 4987 | |
| 4988 | Patch 7.4.761 (after 7.4.757) |
| 4989 | Problem: The request-background termcode implementation is incomplete. |
| 4990 | Solution: Add the missing pieces. |
| 4991 | Files: src/option.c, src/term.c |
| 4992 | |
| 4993 | Patch 7.4.762 (after 7.4.757) |
| 4994 | Problem: Comment for may_req_bg_color() is wrong. (Christ van Willegen) |
| 4995 | Solution: Rewrite the comment. |
| 4996 | Files: src/term.c |
| 4997 | |
| 4998 | Patch 7.4.763 (after 7.4.759) |
| 4999 | Problem: Building with Lua 5.1 doesn't work. |
| 5000 | Solution: Define lua_replace and lua_remove. (KF Leong) |
| 5001 | Files: src/if_lua.c |
| 5002 | |
| 5003 | Patch 7.4.764 (after 7.4.754) |
| 5004 | Problem: test_increment fails on MS-Windows. (Ken Takata) |
| 5005 | Solution: Clear Visual mappings. (Taro Muraoka) |
| 5006 | Files: src/testdir/test_increment.in |
| 5007 | |
| 5008 | Patch 7.4.765 (after 7.4.754) |
| 5009 | Problem: CTRL-A and CTRL-X in Visual mode do not always work well. |
| 5010 | Solution: Improvements for increment and decrement. (Christian Brabandt) |
| 5011 | Files: src/normal.c, src/ops.c, src/testdir/test_increment.in, |
| 5012 | src/testdir/test_increment.ok |
| 5013 | |
| 5014 | Patch 7.4.766 (after 7.4.757) |
| 5015 | Problem: Background color check does not work on Tera Term. |
| 5016 | Solution: Also recognize ST as a termination character. (Hirohito Higashi) |
| 5017 | Files: src/term.c |
| 5018 | |
| 5019 | Patch 7.4.767 |
| 5020 | Problem: --remote-tab-silent can fail on MS-Windows. |
| 5021 | Solution: Use single quotes to avoid problems with backslashes. (Idea by |
| 5022 | Weiyong Mao) |
| 5023 | Files: src/main.c |
| 5024 | |
| 5025 | Patch 7.4.768 |
| 5026 | Problem: :diffoff only works properly once. |
| 5027 | Solution: Also make :diffoff work when used a second time. (Olaf Dabrunz) |
| 5028 | Files: src/diff.c |
| 5029 | |
| 5030 | Patch 7.4.769 (after 7.4 768) |
| 5031 | Problem: Behavior of :diffoff is not tested. |
| 5032 | Solution: Add a bit of testing. (Olaf Dabrunz) |
| 5033 | Files: src/testdir/test47.in, src/testdir/test47.ok |
| 5034 | |
| 5035 | Patch 7.4.770 (after 7.4.766) |
| 5036 | Problem: Background color response with transparency is not ignored. |
| 5037 | Solution: Change the way escape sequences are recognized. (partly by |
| 5038 | Hirohito Higashi) |
| 5039 | Files: src/ascii.h, src/term.c |
| 5040 | |
| 5041 | Patch 7.4.771 |
| 5042 | Problem: Search does not handle multi-byte character at the start position |
| 5043 | correctly. |
| 5044 | Solution: Take byte size of character into account. (Yukihiro Nakadaira) |
| 5045 | Files: src/search.c, src/testdir/Make_amiga.mak, |
| 5046 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 5047 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 5048 | src/testdir/Makefile, src/testdir/test_search_mbyte.in, |
| 5049 | src/testdir/test_search_mbyte.ok |
| 5050 | |
| 5051 | Patch 7.4.772 |
| 5052 | Problem: Racket 6.2 is not supported on MS-Windows. |
| 5053 | Solution: Check for the "racket" subdirectory. (Weiyong Mao) |
| 5054 | Files: src/Make_mvc.mak, src/if_mzsch.c |
| 5055 | |
| 5056 | Patch 7.4.773 |
| 5057 | Problem: 'langmap' is used in command-line mode when checking for mappings. |
| 5058 | Issue 376. |
| 5059 | Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez) |
| 5060 | Files: src/getchar.c, src/testdir/test_mapping.in, |
| 5061 | src/testdir/test_mapping.ok |
| 5062 | |
| 5063 | Patch 7.4.774 |
| 5064 | Problem: When using the CompleteDone autocommand event it's difficult to |
| 5065 | get to the completed items. |
| 5066 | Solution: Add the v:completed_items variable. (Shougo Matsu) |
| 5067 | Files: runtime/doc/autocmd.txt, runtime/doc/eval.txt, src/edit.c, |
| 5068 | src/eval.c, src/macros.h, src/proto/eval.pro, src/vim.h |
| 5069 | |
| 5070 | Patch 7.4.775 |
| 5071 | Problem: It is not possible to avoid using the first item of completion. |
| 5072 | Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo |
| 5073 | Matsu) |
| 5074 | Files: runtime/doc/options.txt, src/edit.c, src/option.c |
| 5075 | |
| 5076 | Patch 7.4.776 |
| 5077 | Problem: Equivalence class for 'd' does not work correctly. |
| 5078 | Solution: Fix 0x1e0f and 0x1d0b. (Dominique Pelle) |
| 5079 | Files: src/regexp.c, src/regexp_nfa.c |
| 5080 | |
| 5081 | Patch 7.4.777 |
| 5082 | Problem: The README file doesn't look nice on github. |
| 5083 | Solution: Add a markdown version of the README file. |
| 5084 | Files: Filelist, README.md |
| 5085 | |
| 5086 | Patch 7.4.778 |
| 5087 | Problem: Coverity warns for uninitialized variable. |
| 5088 | Solution: Change condition of assignment. |
| 5089 | Files: src/ops.c |
| 5090 | |
| 5091 | Patch 7.4.779 |
| 5092 | Problem: Using CTRL-A in a line without a number moves the cursor. May |
| 5093 | cause a crash when at the start of the line. (Urtica Dioica) |
| 5094 | Solution: Do not move the cursor if no number was changed. |
| 5095 | Files: src/ops.c |
| 5096 | |
| 5097 | Patch 7.4.780 |
| 5098 | Problem: Compiler complains about uninitialized variable and clobbered |
| 5099 | variables. |
| 5100 | Solution: Add Initialization. Make variables static. |
| 5101 | Files: src/ops.c, src/main.c |
| 5102 | |
| 5103 | Patch 7.4.781 |
| 5104 | Problem: line2byte() returns one less when 'bin' and 'noeol' are set. |
| 5105 | Solution: Only adjust the size for the last line. (Rob Wu) |
| 5106 | Files: src/memline.c |
| 5107 | |
| 5108 | Patch 7.4.782 |
| 5109 | Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode. |
| 5110 | Solution: Fix the reported problems. (Christian Brabandt) |
| 5111 | Files: src/charset.c, src/eval.c, src/ex_cmds.c, src/ex_getln.c, |
| 5112 | src/misc2.c, src/normal.c, src/ops.c, src/option.c, |
| 5113 | src/proto/charset.pro, src/testdir/test_increment.in, |
| 5114 | src/testdir/test_increment.ok |
| 5115 | |
| 5116 | Patch 7.4.783 |
| 5117 | Problem: copy_chars() and copy_spaces() are inefficient. |
| 5118 | Solution: Use memset() instead. (Dominique Pelle) |
| 5119 | Files: src/ex_getln.c, src/misc2.c, src/ops.c, src/proto/misc2.pro, |
| 5120 | src/screen.c |
| 5121 | |
| 5122 | Patch 7.4.784 |
| 5123 | Problem: Using both "noinsert" and "noselect" in 'completeopt' does not |
| 5124 | work properly. |
| 5125 | Solution: Change the ins_complete() calls. (Ozaki Kiichi) |
| 5126 | Files: src/edit.c |
| 5127 | |
| 5128 | Patch 7.4.785 |
| 5129 | Problem: On some systems automatically adding the missing EOL causes |
| 5130 | problems. Setting 'binary' has too many side effects. |
| 5131 | Solution: Add the 'fixeol' option, default on. (Pavel Samarkin) |
| 5132 | Files: src/buffer.c, src/fileio.c, src/memline.c, src/netbeans.c, |
| 5133 | src/ops.c, src/option.c, src/option.h, src/os_unix.c, |
| 5134 | src/os_win32.c, src/structs.h, src/testdir/Make_amiga.mak, |
| 5135 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 5136 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 5137 | src/testdir/Makefile, src/testdir/test_fixeol.in, |
| 5138 | src/testdir/test_fixeol.ok, runtime/doc/options.txt, |
| 5139 | runtime/optwin.vim |
| 5140 | |
| 5141 | Patch 7.4.786 |
| 5142 | Problem: It is not possible for a plugin to adjust to a changed setting. |
| 5143 | Solution: Add the OptionSet autocommand event. (Christian Brabandt) |
| 5144 | Files: runtime/doc/autocmd.txt, runtime/doc/eval.txt, src/eval.c, |
| 5145 | src/fileio.c, src/option.c, src/proto/eval.pro, |
| 5146 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 5147 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 5148 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 5149 | src/testdir/test_autocmd_option.in, |
| 5150 | src/testdir/test_autocmd_option.ok, src/vim.h |
| 5151 | |
| 5152 | Patch 7.4.787 (after 7.4.786) |
| 5153 | Problem: snprintf() isn't available everywhere. |
| 5154 | Solution: Use vim_snprintf(). (Ken Takata) |
| 5155 | Files: src/option.c |
| 5156 | |
| 5157 | Patch 7.4.788 (after 7.4.787) |
| 5158 | Problem: Can't build without the crypt feature. (John Marriott) |
| 5159 | Solution: Add #ifdef's. |
| 5160 | Files: src/option.c |
| 5161 | |
| 5162 | Patch 7.4.789 (after 7.4.788) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5163 | Problem: Using freed memory and crash. (Dominique Pelle) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5164 | Solution: Correct use of pointers. (Hirohito Higashi) |
| 5165 | Files: src/option.c |
| 5166 | |
| 5167 | Patch 7.4.790 (after 7.4.786) |
| 5168 | Problem: Test fails when the autochdir feature is not available. Test |
| 5169 | output contains the test script. |
| 5170 | Solution: Check for the autochdir feature. (Kazunobu Kuriyama) Only write |
| 5171 | the relevant test output. |
| 5172 | Files: src/testdir/test_autocmd_option.in, |
| 5173 | src/testdir/test_autocmd_option.ok |
| 5174 | |
| 5175 | Patch 7.4.791 |
| 5176 | Problem: The buffer list can be very long. |
| 5177 | Solution: Add an argument to ":ls" to specify the type of buffer to list. |
| 5178 | (Marcin Szamotulski) |
| 5179 | Files: runtime/doc/windows.txt, src/buffer.c, src/ex_cmds.h |
| 5180 | |
| 5181 | Patch 7.4.792 |
| 5182 | Problem: Can only conceal text by defining syntax items. |
| 5183 | Solution: Use matchadd() to define concealing. (Christian Brabandt) |
| 5184 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_docmd.c, |
| 5185 | src/proto/window.pro, src/screen.c, src/structs.h, |
| 5186 | src/testdir/Make_amiga.mak, |
| 5187 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 5188 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 5189 | src/testdir/Makefile, src/testdir/test_match_conceal.in, |
| 5190 | src/testdir/test_match_conceal.ok, src/window.c |
| 5191 | |
| 5192 | Patch 7.4.793 |
| 5193 | Problem: Can't specify when not to ring the bell. |
| 5194 | Solution: Add the 'belloff' option. (Christian Brabandt) |
| 5195 | Files: runtime/doc/options.txt, src/edit.c, src/ex_getln.c, |
| 5196 | src/hangulin.c, src/if_lua.c, src/if_mzsch.c, src/if_tcl.c, |
| 5197 | src/message.c, src/misc1.c, src/normal.c, src/option.c, |
| 5198 | src/option.h, src/proto/misc1.pro, src/search.c, src/spell.c |
| 5199 | |
| 5200 | Patch 7.4.794 |
| 5201 | Problem: Visual Studio 2015 is not recognized. |
| 5202 | Solution: Add the version numbers to the makefile. (Taro Muraoka) |
| 5203 | Files: src/Make_mvc.mak |
| 5204 | |
| 5205 | Patch 7.4.795 |
| 5206 | Problem: The 'fixeol' option is not copied to a new window. |
| 5207 | Solution: Copy the option value. (Yasuhiro Matsumoto) |
| 5208 | Files: src/option.c |
| 5209 | |
| 5210 | Patch 7.4.796 |
| 5211 | Problem: Warning from 64 bit compiler. |
| 5212 | Solution: Add type cast. (Mike Williams) |
| 5213 | Files: src/ops.c |
| 5214 | |
| 5215 | Patch 7.4.797 |
| 5216 | Problem: Crash when using more lines for the command line than |
| 5217 | 'maxcombine'. |
| 5218 | Solution: Use the correct array index. Also, do not try redrawing when |
| 5219 | exiting. And use screen_Columns instead of Columns. |
| 5220 | Files: src/screen.c |
| 5221 | |
| 5222 | Patch 7.4.798 (after 7.4.753) |
| 5223 | Problem: Repeating a change in Visual mode does not work as expected. |
| 5224 | (Urtica Dioica) |
| 5225 | Solution: Make redo in Visual mode work better. (Christian Brabandt) |
| 5226 | Files: src/normal.c, src/testdir/test_listlbr.in, |
| 5227 | src/testdir/test_listlbr.ok |
| 5228 | |
| 5229 | Patch 7.4.799 |
| 5230 | Problem: Accessing memory before an allocated block. |
| 5231 | Solution: Check for not going before the start of a pattern. (Dominique |
| 5232 | Pelle) |
| 5233 | Files: src/fileio.c |
| 5234 | |
| 5235 | Patch 7.4.800 |
| 5236 | Problem: Using freed memory when triggering CmdUndefined autocommands. |
| 5237 | Solution: Set pointer to NULL. (Dominique Pelle) |
| 5238 | Files: src/ex_docmd.c |
| 5239 | |
| 5240 | Patch 7.4.801 (after 7.4.769) |
| 5241 | Problem: Test for ":diffoff" doesn't catch all potential problems. |
| 5242 | Solution: Add a :diffthis and a :diffoff command. (Olaf Dabrunz) |
| 5243 | Files: src/testdir/test47.in |
| 5244 | |
| 5245 | Patch 7.4.802 |
| 5246 | Problem: Using "A" in Visual mode while 'linebreak' is set is not tested. |
| 5247 | Solution: Add a test for this, verifies the problem is fixed. (Ingo Karkat) |
| 5248 | Files: src/testdir/test39.in, src/testdir/test39.ok |
| 5249 | |
| 5250 | Patch 7.4.803 |
| 5251 | Problem: C indent does not support C11 raw strings. (Mark Lodato) |
| 5252 | Solution: Do not change indent inside the raw string. |
| 5253 | Files: src/search.c, src/misc1.c, src/edit.c, src/ops.c, |
| 5254 | src/testdir/test3.in, src/testdir/test3.ok |
| 5255 | |
| 5256 | Patch 7.4.804 |
| 5257 | Problem: Xxd doesn't have a license notice. |
| 5258 | Solution: Add license as indicated by Juergen. |
| 5259 | Files: src/xxd/xxd.c |
| 5260 | |
| 5261 | Patch 7.4.805 |
| 5262 | Problem: The ruler shows "Bot" even when there are only filler lines |
| 5263 | missing. (Gary Johnson) |
| 5264 | Solution: Use "All" when the first line and one filler line are visible. |
| 5265 | Files: src/buffer.c |
| 5266 | |
| 5267 | Patch 7.4.806 |
| 5268 | Problem: CTRL-A in Visual mode doesn't work properly with "alpha" in |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 5269 | 'nrformats'. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5270 | Solution: Make it work. (Christian Brabandt) |
| 5271 | Files: src/ops.c, src/testdir/test_increment.in, |
| 5272 | src/testdir/test_increment.ok |
| 5273 | |
| 5274 | Patch 7.4.807 (after 7.4.798) |
| 5275 | Problem: After CTRL-V CTRL-A mode isn't updated. (Hirohito Higashi) |
| 5276 | Solution: Clear the command line or update the displayed command. |
| 5277 | Files: src/normal.c |
| 5278 | |
| 5279 | Patch 7.4.808 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5280 | Problem: On MS-Windows 8 IME input doesn't work correctly. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5281 | Solution: Read console input before calling MsgWaitForMultipleObjects(). |
| 5282 | (vim-jp, Nobuhiro Takasaki) |
| 5283 | Files: src/os_win32.c |
| 5284 | |
| 5285 | Patch 7.4.809 (after 7.4.802) |
| 5286 | Problem: Test is duplicated. |
| 5287 | Solution: Roll back 7.4.802. |
| 5288 | Files: src/testdir/test39.in, src/testdir/test39.ok |
| 5289 | |
| 5290 | Patch 7.4.810 |
| 5291 | Problem: With a sequence of commands using buffers in diff mode E749 is |
| 5292 | given. (itchyny) |
| 5293 | Solution: Skip unloaded buffer. (Hirohito Higashi) |
| 5294 | Files: src/diff.c |
| 5295 | |
| 5296 | Patch 7.4.811 |
| 5297 | Problem: Invalid memory access when using "exe 'sc'". |
| 5298 | Solution: Avoid going over the end of the string. (Dominique Pelle) |
| 5299 | Files: src/ex_docmd.c |
| 5300 | |
| 5301 | Patch 7.4.812 |
| 5302 | Problem: Gcc sanitizer complains about using a NULL pointer to memmove(). |
| 5303 | Solution: Only call memmove when there is something to move. (Vittorio |
| 5304 | Zecca) |
| 5305 | Files: src/memline.c |
| 5306 | |
| 5307 | Patch 7.4.813 |
| 5308 | Problem: It is not possible to save and restore character search state. |
| 5309 | Solution: Add getcharsearch() and setcharsearch(). (James McCoy) |
| 5310 | Files: runtime/doc/eval.txt, src/eval.c, src/proto/search.pro, |
| 5311 | src/search.c, src/testdir/test_charsearch.in, |
| 5312 | src/testdir/test_charsearch.ok, src/testdir/Makefile, |
| 5313 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 5314 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 5315 | src/testdir/Make_vms.mms |
| 5316 | |
| 5317 | Patch 7.4.814 |
| 5318 | Problem: Illegal memory access with "sy match a fold". |
| 5319 | Solution: Check for empty string. (Dominique Pelle) |
| 5320 | Files: src/syntax.c |
| 5321 | |
| 5322 | Patch 7.4.815 |
| 5323 | Problem: Invalid memory access when doing ":call g:". |
| 5324 | Solution: Check for an empty name. (Dominique Pelle) |
| 5325 | Files: src/eval.c |
| 5326 | |
| 5327 | Patch 7.4.816 |
| 5328 | Problem: Invalid memory access when doing ":fun X(". |
| 5329 | Solution: Check for missing ')'. (Dominique Pelle) |
| 5330 | Files: src/eval.c |
| 5331 | |
| 5332 | Patch 7.4.817 |
| 5333 | Problem: Invalid memory access in file_pat_to_reg_pat(). |
| 5334 | Solution: Use vim_isspace() instead of checking for a space only. (Dominique |
| 5335 | Pelle) |
| 5336 | Files: src/fileio.c |
| 5337 | |
| 5338 | Patch 7.4.818 |
| 5339 | Problem: 'linebreak' breaks c% if the last Visual selection was block. |
| 5340 | (Chris Morganiser, Issue 389) |
| 5341 | Solution: Handle Visual block mode differently. (Christian Brabandt) |
| 5342 | Files: src/normal.c, src/testdir/test_listlbr.in, |
| 5343 | src/testdir/test_listlbr.ok |
| 5344 | |
| 5345 | Patch 7.4.819 |
| 5346 | Problem: Beeping when running the tests. |
| 5347 | Solution: Fix 41 beeps. (Roland Eggner) |
| 5348 | Files: src/testdir/test17.in, src/testdir/test29.in, |
| 5349 | src/testdir/test4.in, src/testdir/test61.in, |
| 5350 | src/testdir/test82.in, src/testdir/test83.in, |
| 5351 | src/testdir/test90.in, src/testdir/test95.in, |
| 5352 | src/testdir/test_autoformat_join.in |
| 5353 | |
| 5354 | Patch 7.4.820 |
| 5355 | Problem: Invalid memory access in file_pat_to_reg_pat. |
| 5356 | Solution: Avoid looking before the start of a string. (Dominique Pelle) |
| 5357 | Files: src/fileio.c |
| 5358 | |
| 5359 | Patch 7.4.821 |
| 5360 | Problem: Coverity reports a few problems. |
| 5361 | Solution: Avoid the warnings. (Christian Brabandt) |
| 5362 | Files: src/ex_docmd.c, src/option.c, src/screen.c |
| 5363 | |
| 5364 | Patch 7.4.822 |
| 5365 | Problem: More problems reported by coverity. |
| 5366 | Solution: Avoid the warnings. (Christian Brabandt) |
| 5367 | Files: src/os_unix.c, src/eval.c, src/ex_cmds.c, src/ex_cmds2.c, |
| 5368 | src/ex_getln.c, src/fold.c, src/gui.c, src/gui_w16.c, |
| 5369 | src/gui_w32.c, src/if_cscope.c, src/if_xcmdsrv.c, src/move.c, |
| 5370 | src/normal.c, src/regexp.c, src/syntax.c, src/ui.c, src/window.c |
| 5371 | |
| 5372 | Patch 7.4.823 |
| 5373 | Problem: Cursor moves after CTRL-A on alphabetic character. |
| 5374 | Solution: (Hirohito Higashi, test by Christian Brabandt) |
| 5375 | Files: src/testdir/test_increment.in, src/testdir/test_increment.ok, |
| 5376 | src/ops.c |
| 5377 | |
| 5378 | Patch 7.4.824 (after 7.4.813) |
| 5379 | Problem: Can't compile without the multi-byte feature. (John Marriott) |
| 5380 | Solution: Add #ifdef. |
| 5381 | Files: src/eval.c |
| 5382 | |
| 5383 | Patch 7.4.825 |
| 5384 | Problem: Invalid memory access for ":syn keyword x a[". |
| 5385 | Solution: Do not skip over the NUL. (Dominique Pelle) |
| 5386 | Files: src/syntax.c |
| 5387 | |
| 5388 | Patch 7.4.826 |
| 5389 | Problem: Compiler warnings and errors. |
| 5390 | Solution: Make it build properly without the multi-byte feature. |
| 5391 | Files: src/eval.c, src/search.c |
| 5392 | |
| 5393 | Patch 7.4.827 |
| 5394 | Problem: Not all test targets are in the Makefile. |
| 5395 | Solution: Add the missing targets. |
| 5396 | Files: src/Makefile |
| 5397 | |
| 5398 | Patch 7.4.828 |
| 5399 | Problem: Crash when using "syn keyword x c". (Dominique Pelle) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5400 | Solution: Initialize the keyword table. (Raymond Ko, PR 397) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5401 | Files: src/syntax.c |
| 5402 | |
| 5403 | Patch 7.4.829 |
| 5404 | Problem: Crash when clicking in beval balloon. (Travis Lebsock) |
| 5405 | Solution: Use PostMessage() instead of DestroyWindow(). (Raymond Ko, PR 298) |
| 5406 | Files: src/gui_w32.c |
| 5407 | |
| 5408 | Patch 7.4.830 |
| 5409 | Problem: Resetting 'encoding' when doing ":set all&" causes problems. |
| 5410 | (Bjorn Linse) Display is not updated. |
| 5411 | Solution: Do not reset 'encoding'. Do a full redraw. |
| 5412 | Files: src/option.c |
| 5413 | |
| 5414 | Patch 7.4.831 |
| 5415 | Problem: When expanding `=expr` on the command line and encountering an |
| 5416 | error, the command is executed anyway. |
| 5417 | Solution: Bail out when an error is detected. |
| 5418 | Files: src/misc1.c |
| 5419 | |
| 5420 | Patch 7.4.832 |
| 5421 | Problem: $HOME in `=$HOME . '/.vimrc'` is expanded too early. |
| 5422 | Solution: Skip over `=expr` when expanding environment names. |
| 5423 | Files: src/misc1.c |
| 5424 | |
| 5425 | Patch 7.4.833 |
| 5426 | Problem: More side effects of ":set all&" are missing. (Björn Linse) |
| 5427 | Solution: Call didset_options() and add didset_options2() to collect more |
| 5428 | side effects to take care of. Still not everything... |
| 5429 | Files: src/option.c |
| 5430 | |
| 5431 | Patch 7.4.834 |
| 5432 | Problem: gettabvar() doesn't work after Vim start. (Szymon Wrozynski) |
| 5433 | Solution: Handle first window in tab still being NULL. (Christian Brabandt) |
| 5434 | Files: src/eval.c, src/testdir/test91.in, src/testdir/test91.ok |
| 5435 | |
| 5436 | Patch 7.4.835 |
| 5437 | Problem: Comparing utf-8 sequences does not handle different byte sizes |
| 5438 | correctly. |
| 5439 | Solution: Get the byte size of each character. (Dominique Pelle) |
| 5440 | Files: src/misc2.c |
| 5441 | |
| 5442 | Patch 7.4.836 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5443 | Problem: Accessing uninitialized memory. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5444 | Solution: Add missing calls to init_tv(). (Dominique Pelle) |
| 5445 | Files: src/eval.c |
| 5446 | |
| 5447 | Patch 7.4.837 |
| 5448 | Problem: Compiler warning with MSVC compiler when using +sniff. |
| 5449 | Solution: Use Sleep() instead of _sleep(). (Tux) |
| 5450 | Files: src/if_sniff.c |
| 5451 | |
| 5452 | Patch 7.4.838 (after 7.4.833) |
| 5453 | Problem: Can't compile without the crypt feature. (John Marriott) |
| 5454 | Solution: Add #ifdef. |
| 5455 | Files: src/option.c |
| 5456 | |
| 5457 | Patch 7.4.839 |
| 5458 | Problem: Compiler warning on 64-bit system. |
| 5459 | Solution: Add cast to int. (Mike Williams) |
| 5460 | Files: src/search.c |
| 5461 | |
| 5462 | Patch 7.4.840 (after 7.4.829) |
| 5463 | Problem: Tooltip window stays open. |
| 5464 | Solution: Send a WM_CLOSE message. (Jurgen Kramer) |
| 5465 | Files: src/gui_w32.c |
| 5466 | |
| 5467 | Patch 7.4.841 |
| 5468 | Problem: Can't compile without the multi-byte feature. (John Marriott) |
| 5469 | Solution: Add more #ifdef's. |
| 5470 | Files: src/option.c |
| 5471 | |
| 5472 | Patch 7.4.842 (after 7.4.840) |
| 5473 | Problem: Sending too many messages to close the balloon. |
| 5474 | Solution: Only send a WM_CLOSE message. (Jurgen Kramer) |
| 5475 | Files: src/gui_w32.c |
| 5476 | |
| 5477 | Patch 7.4.843 (after 7.4.835) |
| 5478 | Problem: Still possible to go beyond the end of a string. |
| 5479 | Solution: Check for NUL also in second string. (Dominique Pelle) |
| 5480 | Files: src/misc2.c |
| 5481 | |
| 5482 | Patch 7.4.844 |
| 5483 | Problem: When '#' is in 'isident' the is# comparator doesn't work. |
| 5484 | Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto) |
| 5485 | Files: src/eval.c, src/testdir/test_comparators.in, |
| 5486 | src/testdir/test_comparators.ok, src/testdir/Makefile, |
| 5487 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 5488 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 5489 | src/testdir/Make_vms.mms |
| 5490 | |
| 5491 | Patch 7.4.845 |
| 5492 | Problem: Compiler warning for possible loss of data. |
| 5493 | Solution: Add a type cast. (Erich Ritz) |
| 5494 | Files: src/misc1.c |
| 5495 | |
| 5496 | Patch 7.4.846 |
| 5497 | Problem: Some GitHub users don't know how to use issues. |
| 5498 | Solution: Add a file that explains the basics of contributing. |
| 5499 | Files: Filelist, CONTRIBUTING.md |
| 5500 | |
| 5501 | Patch 7.4.847 |
| 5502 | Problem: "vi)d" may leave a character behind. |
| 5503 | Solution: Skip over multi-byte character. (Christian Brabandt) |
| 5504 | Files: src/search.c |
| 5505 | |
| 5506 | Patch 7.4.848 |
| 5507 | Problem: CTRL-A on hex number in Visual block mode is incorrect. |
| 5508 | Solution: Account for the "0x". (Hirohito Higashi) |
| 5509 | Files: src/charset.c, src/testdir/test_increment.in, |
| 5510 | src/testdir/test_increment.ok |
| 5511 | |
| 5512 | Patch 7.4.849 |
| 5513 | Problem: Moving the cursor in Insert mode starts new undo sequence. |
| 5514 | Solution: Add CTRL-G U to keep the undo sequence for the following cursor |
| 5515 | movement command. (Christian Brabandt) |
| 5516 | Files: runtime/doc/insert.txt, src/edit.c, src/testdir/test_mapping.in, |
| 5517 | src/testdir/test_mapping.ok |
| 5518 | |
| 5519 | Patch 7.4.850 (after 7.4.846) |
| 5520 | Problem: <Esc> does not show up. |
| 5521 | Solution: Use > and <. (Kazunobu Kuriyama) |
| 5522 | Files: CONTRIBUTING.md |
| 5523 | |
| 5524 | Patch 7.4.851 |
| 5525 | Problem: Saving and restoring the console buffer does not work properly. |
| 5526 | Solution: Instead of ReadConsoleOutputA/WriteConsoleOutputA use |
| 5527 | CreateConsoleScreenBuffer and SetConsoleActiveScreenBuffer. |
| 5528 | (Ken Takata) |
| 5529 | Files: src/os_win32.c |
| 5530 | |
| 5531 | Patch 7.4.852 |
| 5532 | Problem: On MS-Windows console Vim uses ANSI APIs for keyboard input and |
| 5533 | console output, it cannot input/output Unicode characters. |
| 5534 | Solution: Use Unicode APIs for console I/O. (Ken Takata, Yasuhiro Matsumoto) |
| 5535 | Files: src/os_win32.c, src/ui.c, runtime/doc/options.txt |
| 5536 | |
| 5537 | Patch 7.4.853 |
| 5538 | Problem: "zt" in diff mode does not always work properly. (Gary Johnson) |
| 5539 | Solution: Don't count filler lines twice. (Christian Brabandt) |
| 5540 | Files: src/move.c |
| 5541 | |
| 5542 | Patch 7.4.854 (after 7.4.850) |
| 5543 | Problem: Missing information about runtime files. |
| 5544 | Solution: Add section about runtime files. (Christian Brabandt) |
| 5545 | Files: CONTRIBUTING.md |
| 5546 | |
| 5547 | Patch 7.4.855 |
| 5548 | Problem: GTK: font glitches for combining characters |
| 5549 | Solution: Use pango_shape_full() instead of pango_shape(). (luchr, PR #393) |
| 5550 | Files: src/gui_gtk_x11.c |
| 5551 | |
| 5552 | Patch 7.4.856 |
| 5553 | Problem: "zt" still doesn't work well with filler lines. (Gary Johnson) |
| 5554 | Solution: Check for filler lines above the cursor. (Christian Brabandt) |
| 5555 | Files: src/move.c |
| 5556 | |
| 5557 | Patch 7.4.857 |
| 5558 | Problem: Dragging the current tab with the mouse doesn't work properly. |
| 5559 | Solution: Take the current tabpage index into account. (Hirohito Higashi) |
| 5560 | Files: src/normal.c |
| 5561 | |
| 5562 | Patch 7.4.858 |
| 5563 | Problem: It's a bit clumsy to execute a command on a list of matches. |
| 5564 | Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan |
| 5565 | Lakshmanan) |
| 5566 | Files: runtime/doc/cmdline.txt, runtime/doc/editing.txt, |
| 5567 | runtime/doc/index.txt, runtime/doc/quickfix.txt, |
| 5568 | runtime/doc/tabpage.txt, runtime/doc/windows.txt, src/ex_cmds.h, |
| 5569 | src/ex_cmds2.c, src/ex_docmd.c, src/proto/quickfix.pro, |
| 5570 | src/quickfix.c, src/testdir/Make_amiga.mak, |
| 5571 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 5572 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 5573 | src/testdir/Makefile, src/testdir/test_cdo.in, |
| 5574 | src/testdir/test_cdo.ok |
| 5575 | |
| 5576 | Patch 7.4.859 |
| 5577 | Problem: Vim doesn't recognize all htmldjango files. |
| 5578 | Solution: Recognize a comment. (Daniel Hahler, PR #410) |
| 5579 | Files: runtime/filetype.vim |
| 5580 | |
| 5581 | Patch 7.4.860 |
| 5582 | Problem: Filetype detection is outdated. |
| 5583 | Solution: Include all recent and not-so-recent changes. |
| 5584 | Files: runtime/filetype.vim |
| 5585 | |
| 5586 | Patch 7.4.861 (after 7.4.855) |
| 5587 | Problem: pango_shape_full() is not always available. |
| 5588 | Solution: Add a configure check. |
| 5589 | Files: src/configure.in, src/auto/configure, src/config.h.in, |
| 5590 | src/gui_gtk_x11.c |
| 5591 | |
| 5592 | Patch 7.4.862 (after 7.4.861) |
| 5593 | Problem: Still problems with pango_shape_full() not available. |
| 5594 | Solution: Change AC_TRY_COMPILE to AC_TRY_LINK. |
| 5595 | Files: src/configure.in, src/auto/configure |
| 5596 | |
| 5597 | Patch 7.4.863 (after 7.4.856) |
| 5598 | Problem: plines_nofill() used without the diff feature. |
| 5599 | Solution: Define PLINES_NOFILL(). |
| 5600 | Files: src/macros.h, src/move.c |
| 5601 | |
| 5602 | Patch 7.4.864 (after 7.4.858) |
| 5603 | Problem: Tiny build fails. |
| 5604 | Solution: Put qf_ items inside #ifdef. |
| 5605 | Files: src/ex_docmd.c |
| 5606 | |
| 5607 | Patch 7.4.865 |
| 5608 | Problem: Compiler warning for uninitialized variable. |
| 5609 | Solution: Initialize. |
| 5610 | Files: src/ex_cmds2.c |
| 5611 | |
| 5612 | Patch 7.4.866 |
| 5613 | Problem: Crash when changing the 'tags' option from a remote command. |
| 5614 | (Benjamin Fritz) |
| 5615 | Solution: Instead of executing messages immediately, use a queue, like for |
| 5616 | netbeans. (James Kolb) |
| 5617 | Files: src/ex_docmd.c, src/getchar.c, src/gui_gtk_x11.c, src/gui_w48.c, |
| 5618 | src/gui_x11.c, src/if_xcmdsrv.c, src/misc2.c, src/os_unix.c, |
| 5619 | src/proto/if_xcmdsrv.pro, src/proto/misc2.pro, src/macros.h |
| 5620 | |
| 5621 | Patch 7.4.867 (after 7.4.866) |
| 5622 | Problem: Can't build on MS-Windows. (Taro Muraoka) |
| 5623 | Solution: Adjust #ifdef. |
| 5624 | Files: src/misc2.c |
| 5625 | |
| 5626 | Patch 7.4.868 |
| 5627 | Problem: 'smarttab' is also effective when 'paste' is enabled. (Alexander |
| 5628 | Monakov) |
| 5629 | Solution: Disable 'smarttab' when 'paste' is set. (Christian Brabandt) |
| 5630 | Do the same for 'expandtab'. |
| 5631 | Files: src/option.c, src/structs.h |
| 5632 | |
| 5633 | Patch 7.4.869 |
| 5634 | Problem: MS-Windows: scrolling may cause text to disappear when using an |
| 5635 | Intel GPU. |
| 5636 | Solution: Call GetPixel(). (Yohei Endo) |
| 5637 | Files: src/gui_w48.c |
| 5638 | |
| 5639 | Patch 7.4.870 |
| 5640 | Problem: May get into an invalid state when using getchar() in an |
| 5641 | expression mapping. |
| 5642 | Solution: Anticipate mod_mask to change. (idea by Yukihiro Nakadaira) |
| 5643 | Files: src/getchar.c |
| 5644 | |
| 5645 | Patch 7.4.871 |
| 5646 | Problem: Vim leaks memory, when 'wildignore' filters out all matches. |
| 5647 | Solution: Free the files array when it becomes empty. |
| 5648 | Files: src/misc1.c |
| 5649 | |
| 5650 | Patch 7.4.872 |
| 5651 | Problem: Not using CI services available. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5652 | Solution: Add configuration files for travis and appveyor. (Ken Takata, |
| 5653 | vim-jp, PR #401) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5654 | Files: .travis.yml, appveyor.yml, Filelist |
| 5655 | |
| 5656 | Patch 7.4.873 (after 7.4.866) |
| 5657 | Problem: Compiler warning for unused variable. (Tony Mechelynck) |
| 5658 | Solution: Remove the variable. Also fix int vs long_u mixup. |
| 5659 | Files: src/if_xcmdsrv.c |
| 5660 | |
| 5661 | Patch 7.4.874 |
| 5662 | Problem: MS-Windows: When Vim runs inside another application, the size |
| 5663 | isn't right. |
| 5664 | Solution: When in child mode compute the size differently. (Agorgianitis |
| 5665 | Loukas) |
| 5666 | Files: src/gui_w48.c |
| 5667 | |
| 5668 | Patch 7.4.875 |
| 5669 | Problem: Not obvious how to contribute. |
| 5670 | Solution: Add a remark about CONTRIBUTING.md to README.md |
| 5671 | Files: README.md |
| 5672 | |
| 5673 | Patch 7.4.876 |
| 5674 | Problem: Windows7: when using vim.exe with msys or msys2, conhost.exe |
| 5675 | (console window provider on Windows7) will freeze or crash. |
| 5676 | Solution: Make original screen buffer active, before executing external |
| 5677 | program. And when the program is finished, revert to vim's one. |
| 5678 | (Taro Muraoka) |
| 5679 | Files: src/os_win32.c |
| 5680 | |
| 5681 | Patch 7.4.877 (after 7.4.843) |
| 5682 | Problem: ":find" sometimes fails. (Excanoe) |
| 5683 | Solution: Compare current characters instead of previous ones. |
| 5684 | Files: src/misc2.c |
| 5685 | |
| 5686 | Patch 7.4.878 |
| 5687 | Problem: Coverity error for clearing only one byte of struct. |
| 5688 | Solution: Clear the whole struct. (Dominique Pelle) |
| 5689 | Files: src/ex_docmd.c |
| 5690 | |
| 5691 | Patch 7.4.879 |
| 5692 | Problem: Can't see line numbers in nested function calls. |
| 5693 | Solution: Add line number to the file name. (Alberto Fanjul) |
| 5694 | Files: src/eval.c |
| 5695 | |
| 5696 | Patch 7.4.880 |
| 5697 | Problem: No build and coverage status. |
| 5698 | Solution: Add links to the README file. (Christian Brabandt) |
| 5699 | Files: README.md |
| 5700 | |
| 5701 | Patch 7.4.881 (after 7.4.879) |
| 5702 | Problem: Test 49 fails. |
| 5703 | Solution: Add line number to check of call stack. |
| 5704 | Files: src/testdir/test49.vim |
| 5705 | |
| 5706 | Patch 7.4.882 |
| 5707 | Problem: When leaving the command line window with CTRL-C while a |
| 5708 | completion menu is displayed the menu isn't removed. |
| 5709 | Solution: Force a screen update. (Hirohito Higashi) |
| 5710 | Files: src/edit.c |
| 5711 | |
| 5712 | Patch 7.4.883 (after 7.4.818) |
| 5713 | Problem: Block-mode replace works characterwise instead of blockwise after |
| 5714 | column 147. (Issue #422) |
| 5715 | Solution: Set Visual mode. (Christian Brabandt) |
| 5716 | Files: src/normal.c, src/testdir/test_listlbr.in, |
| 5717 | src/testdir/test_listlbr.ok |
| 5718 | |
| 5719 | Patch 7.4.884 |
| 5720 | Problem: Travis also builds on a tag push. |
| 5721 | Solution: Filter out tag pushes. (Kenichi Ito) |
| 5722 | Files: .travis.yml |
| 5723 | |
| 5724 | Patch 7.4.885 |
| 5725 | Problem: When doing an upwards search without wildcards the search fails if |
| 5726 | the initial directory doesn't exist. |
| 5727 | Solution: Fix the non-wildcard case. (Stefan Kempf) |
| 5728 | Files: src/misc2.c |
| 5729 | |
| 5730 | Patch 7.4.886 (after 7.4.876) |
| 5731 | Problem: Windows7: Switching screen buffer causes flicker when using |
| 5732 | system(). |
| 5733 | Solution: Instead of actually switching screen buffer, duplicate the handle. |
| 5734 | (Yasuhiro Matsumoto) |
| 5735 | Files: src/os_win32.c |
| 5736 | |
| 5737 | Patch 7.4.887 |
| 5738 | Problem: Using uninitialized memory for regexp with back reference. |
| 5739 | (Dominique Pelle) |
| 5740 | Solution: Initialize end_lnum. |
| 5741 | Files: src/regexp_nfa.c |
| 5742 | |
| 5743 | Patch 7.4.888 |
| 5744 | Problem: The OptionSet autocommands are not triggered from setwinvar(). |
| 5745 | Solution: Do not use switch_win() when not needed. (Hirohito Higashi) |
| 5746 | Files: src/eval.c |
| 5747 | |
| 5748 | Patch 7.4.889 |
| 5749 | Problem: Triggering OptionSet from setwinvar() isn't tested. |
| 5750 | Solution: Add a test. (Christian Brabandt) |
| 5751 | Files: src/testdir/test_autocmd_option.in, |
| 5752 | src/testdir/test_autocmd_option.ok |
| 5753 | |
| 5754 | Patch 7.4.890 |
| 5755 | Problem: Build failure when using dynamic python but not python3. |
| 5756 | Solution: Adjust the #if to also include DYNAMIC_PYTHON3 and UNIX. |
| 5757 | Files: src/if_python3.c |
| 5758 | |
| 5759 | Patch 7.4.891 |
| 5760 | Problem: Indentation of array initializer is wrong. |
| 5761 | Solution: Avoid that calling find_start_rawstring() changes the position |
| 5762 | returned by find_start_comment(), add a test. (Hirohito Higashi) |
| 5763 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 5764 | |
| 5765 | Patch 7.4.892 |
| 5766 | Problem: On MS-Windows the iconv DLL may have a different name. |
| 5767 | Solution: Also try libiconv2.dll and libiconv-2.dll. (Yasuhiro Matsumoto) |
| 5768 | Files: src/mbyte.c |
| 5769 | |
| 5770 | Patch 7.4.893 |
| 5771 | Problem: C indenting is wrong below a "case (foo):" because it is |
| 5772 | recognized as a C++ base class construct. Issue #38. |
| 5773 | Solution: Check for the case keyword. |
| 5774 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 5775 | |
| 5776 | Patch 7.4.894 |
| 5777 | Problem: vimrun.exe is picky about the number of spaces before -s. |
| 5778 | Solution: Skip all spaces. (Cam Sinclair) |
| 5779 | Files: src/vimrun.c |
| 5780 | |
| 5781 | Patch 7.4.895 |
| 5782 | Problem: Custom command line completion does not work for a command |
| 5783 | containing digits. |
| 5784 | Solution: Skip over the digits. (suggested by Yasuhiro Matsumoto) |
| 5785 | Files: src/ex_docmd.c |
| 5786 | |
| 5787 | Patch 7.4.896 |
| 5788 | Problem: Editing a URL, which netrw should handle, doesn't work. |
| 5789 | Solution: Avoid changing slashes to backslashes. (Yasuhiro Matsumoto) |
| 5790 | Files: src/fileio.c, src/os_mswin.c |
| 5791 | |
| 5792 | Patch 7.4.897 |
| 5793 | Problem: Freeze and crash when there is a sleep in a remote command. |
| 5794 | (Karl Yngve Lervåg) |
| 5795 | Solution: Remove a message from the queue before dealing with it. (James |
| 5796 | Kolb) |
| 5797 | Files: src/if_xcmdsrv.c |
| 5798 | |
| 5799 | Patch 7.4.898 |
| 5800 | Problem: The 'fixendofline' option is set on with ":edit". |
| 5801 | Solution: Don't set the option when clearing a buffer. (Yasuhiro Matsumoto) |
| 5802 | Files: src/buffer.c |
| 5803 | |
| 5804 | Patch 7.4.899 |
| 5805 | Problem: README file is not optimal. |
| 5806 | Solution: Move buttons, update some text. (closes #460) |
| 5807 | Files: README.txt, README.md |
| 5808 | |
| 5809 | Patch 7.4.900 (after 7.4.899) |
| 5810 | Problem: README file can still be improved |
| 5811 | Solution: Add a couple of links. (Christian Brabandt) |
| 5812 | Files: README.md |
| 5813 | |
| 5814 | Patch 7.4.901 |
| 5815 | Problem: When a BufLeave autocommand changes folding in a way it syncs |
| 5816 | undo, undo can be corrupted. |
| 5817 | Solution: Prevent undo sync. (Jacob Niehus) |
| 5818 | Files: src/popupmnu.c |
| 5819 | |
| 5820 | Patch 7.4.902 |
| 5821 | Problem: Problems with using the MS-Windows console. |
| 5822 | Solution: Revert patches 7.4.851, 7.4.876 and 7.4.886 until we find a better |
| 5823 | solution. (suggested by Ken Takata) |
| 5824 | Files: src/os_win32.c |
| 5825 | |
| 5826 | Patch 7.4.903 |
| 5827 | Problem: MS-Windows: When 'encoding' differs from the current code page, |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5828 | expanding wildcards may cause illegal memory access. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5829 | Solution: Allocate a longer buffer. (Ken Takata) |
| 5830 | Files: src/misc1.c |
| 5831 | |
| 5832 | Patch 7.4.904 |
| 5833 | Problem: Vim does not provide .desktop files. |
| 5834 | Solution: Include and install .desktop files. (James McCoy, closes #455) |
| 5835 | Files: Filelist, runtime/vim.desktop, runtime/gvim.desktop, src/Makefile |
| 5836 | |
| 5837 | Patch 7.4.905 |
| 5838 | Problem: Python interface can produce error "vim.message' object has no |
| 5839 | attribute 'isatty'". |
| 5840 | Solution: Add dummy isatty(), readable(), etc. (closes #464) |
| 5841 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok, |
| 5842 | src/testdir/test87.in, src/testdir/test87.ok |
| 5843 | |
| 5844 | Patch 7.4.906 |
| 5845 | Problem: On MS-Windows the viminfo file is (always) given the hidden |
| 5846 | attribute. (raulnac) |
| 5847 | Solution: Check the hidden attribute in a different way. (Ken Takata) |
| 5848 | Files: src/ex_cmds.c, src/os_win32.c, src/os_win32.pro |
| 5849 | |
| 5850 | Patch 7.4.907 |
| 5851 | Problem: Libraries for dynamically loading interfaces can only be defined |
| 5852 | at compile time. |
| 5853 | Solution: Add options to specify the dll names. (Kazuki Sakamoto, |
| 5854 | closes #452) |
| 5855 | Files: runtime/doc/if_lua.txt, runtime/doc/if_perl.txt, |
| 5856 | runtime/doc/if_pyth.txt, runtime/doc/if_ruby.txt, |
| 5857 | runtime/doc/options.txt, src/if_lua.c, src/if_perl.xs, |
| 5858 | src/if_python.c, src/if_python3.c, src/if_ruby.c, src/option.c, |
| 5859 | src/option.h |
| 5860 | |
| 5861 | Patch 7.4.908 (after 7.4.907) |
| 5862 | Problem: Build error with MingW compiler. (Cesar Romani) |
| 5863 | Solution: Change #if into #ifdef. |
| 5864 | Files: src/if_perl.xs |
| 5865 | |
| 5866 | Patch 7.4.909 (after 7.4.905) |
| 5867 | Problem: "make install" fails. |
| 5868 | Solution: Only try installing desktop files if the destination directory |
| 5869 | exists. |
| 5870 | Files: src/Makefile |
| 5871 | |
| 5872 | Patch 7.4.910 (after 7.4.905) |
| 5873 | Problem: Compiler complains about type punned pointer. |
| 5874 | Solution: Use another way to increment the ref count. |
| 5875 | Files: src/if_py_both.h |
| 5876 | |
| 5877 | Patch 7.4.911 |
| 5878 | Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi) |
| 5879 | Solution: Define the options. |
| 5880 | Files: src/option.c |
| 5881 | |
| 5882 | Patch 7.4.912 |
| 5883 | Problem: Wrong indenting for C++ constructor. |
| 5884 | Solution: Recognize ::. (Anhong) |
| 5885 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 5886 | |
| 5887 | Patch 7.4.913 |
| 5888 | Problem: No utf-8 support for the hangul input feature. |
| 5889 | Solution: Add utf-8 support. (Namsh) |
| 5890 | Files: src/gui.c, src/hangulin.c, src/proto/hangulin.pro, src/screen.c, |
| 5891 | src/ui.c, runtime/doc/hangulin.txt, src/feature.h |
| 5892 | |
| 5893 | Patch 7.4.914 |
| 5894 | Problem: New compiler warning: logical-not-parentheses |
| 5895 | Solution: Silence the warning. |
| 5896 | Files: src/term.c |
| 5897 | |
| 5898 | Patch 7.4.915 |
| 5899 | Problem: When removing from 'path' and then adding, a comma may go missing. |
| 5900 | (Malcolm Rowe) |
| 5901 | Solution: Fix the check for P_ONECOMMA. (closes #471) |
| 5902 | Files: src/option.c, src/testdir/test_options.in, |
| 5903 | src/testdir/test_options.ok |
| 5904 | |
| 5905 | Patch 7.4.916 |
| 5906 | Problem: When running out of memory while copying a dict memory may be |
| 5907 | freed twice. (ZyX) |
| 5908 | Solution: Do not call the garbage collector when running out of memory. |
| 5909 | Files: src/misc2.c |
| 5910 | |
| 5911 | Patch 7.4.917 |
| 5912 | Problem: Compiler warning for comparing signed and unsigned. |
| 5913 | Solution: Add a type cast. |
| 5914 | Files: src/hangulin.c |
| 5915 | |
| 5916 | Patch 7.4.918 |
| 5917 | Problem: A digit in an option name has problems. |
| 5918 | Solution: Rename 'python3dll' to 'pythonthreedll'. |
| 5919 | Files: src/option.c, src/option.h, runtime/doc/options.txt |
| 5920 | |
| 5921 | Patch 7.4.919 |
| 5922 | Problem: The dll options are not in the options window. |
| 5923 | Solution: Add the dll options. And other fixes. |
| 5924 | Files: runtime/optwin.vim |
| 5925 | |
| 5926 | Patch 7.4.920 |
| 5927 | Problem: The rubydll option is not in the options window. |
| 5928 | Solution: Add the rubydll option. |
| 5929 | Files: runtime/optwin.vim |
| 5930 | |
| 5931 | Patch 7.4.921 (after 7.4.906) |
| 5932 | Problem: Missing proto file update. (Randall W. Morris) |
| 5933 | Solution: Add the missing line for mch_ishidden. |
| 5934 | Files: src/proto/os_win32.pro |
| 5935 | |
| 5936 | Patch 7.4.922 |
| 5937 | Problem: Leaking memory with ":helpt {dir-not-exists}". |
| 5938 | Solution: Free dirname. (Dominique Pelle) |
| 5939 | Files: src/ex_cmds.c |
| 5940 | |
| 5941 | Patch 7.4.923 |
| 5942 | Problem: Prototypes not always generated. |
| 5943 | Solution: Change #if to OR with PROTO. |
| 5944 | Files: src/window.c |
| 5945 | |
| 5946 | Patch 7.4.924 |
| 5947 | Problem: DEVELOPER_DIR gets reset by configure. |
| 5948 | Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir |
| 5949 | argument. (Kazuki Sakamoto, closes #482) |
| 5950 | Files: src/configure.in, src/auto/configure |
| 5951 | |
| 5952 | Patch 7.4.925 |
| 5953 | Problem: User may yank or put using the register being recorded in. |
| 5954 | Solution: Add the recording register in the message. (Christian Brabandt, |
| 5955 | closes #470) |
| 5956 | Files: runtime/doc/options.txt, runtime/doc/repeat.txt, src/ops.c, |
| 5957 | src/option.h, src/screen.c |
| 5958 | |
| 5959 | Patch 7.4.926 |
| 5960 | Problem: Completing the longest match doesn't work properly with multi-byte |
| 5961 | characters. |
| 5962 | Solution: When using multi-byte characters use another way to find the |
| 5963 | longest match. (Hirohito Higashi) |
| 5964 | Files: src/ex_getln.c, src/testdir/test_utf8.in, src/testdir/test_utf8.ok |
| 5965 | |
| 5966 | Patch 7.4.927 |
| 5967 | Problem: Ruby crashes when there is a runtime error. |
| 5968 | Solution: Use ruby_options() instead of ruby_process_options(). (Damien) |
| 5969 | Files: src/if_ruby.c |
| 5970 | |
| 5971 | Patch 7.4.928 |
| 5972 | Problem: A clientserver message interrupts handling keys of a mapping. |
| 5973 | Solution: Have mch_inchar() send control back to WaitForChar when it is |
| 5974 | interrupted by server message. (James Kolb) |
| 5975 | Files: src/os_unix.c |
| 5976 | |
| 5977 | Patch 7.4.929 |
| 5978 | Problem: "gv" after paste selects one character less if 'selection' is |
| 5979 | "exclusive". |
| 5980 | Solution: Increment the end position. (Christian Brabandt) |
| 5981 | Files: src/normal.c, src/testdir/test94.in, src/testdir/test94.ok |
| 5982 | |
| 5983 | Patch 7.4.930 |
| 5984 | Problem: MS-Windows: Most users appear not to like the window border. |
| 5985 | Solution: Remove WS_EX_CLIENTEDGE. (Ian Halliday) |
| 5986 | Files: src/gui_w32.c |
| 5987 | |
| 5988 | Patch 7.4.931 (after 7.4.929) |
| 5989 | Problem: Test 94 fails on some systems. |
| 5990 | Solution: Set 'encoding' to utf-8. |
| 5991 | Files: src/testdir/test94.in |
| 5992 | |
| 5993 | Patch 7.4.932 (after 7.4.926) |
| 5994 | Problem: test_utf8 has confusing dummy command. |
| 5995 | Solution: Use a real command instead of a colon. |
| 5996 | Files: src/testdir/test_utf8.in |
| 5997 | |
| 5998 | Patch 7.4.933 (after 7.4.926) |
| 5999 | Problem: Crash when using longest completion match. |
| 6000 | Solution: Fix array index. |
| 6001 | Files: src/ex_getln.c |
| 6002 | |
| 6003 | Patch 7.4.934 |
| 6004 | Problem: Appveyor also builds on a tag push. |
| 6005 | Solution: Add a skip_tags line. (Kenichi Ito, closes #489) |
| 6006 | Files: appveyor.yml |
| 6007 | |
| 6008 | Patch 7.4.935 (after 7.4.932) |
| 6009 | Problem: test_utf8 fails on MS-Windows when executed with gvim. |
| 6010 | Solution: Use the insert flag on feedkeys() to put the string before the |
| 6011 | ":" that was already read when checking for available chars. |
| 6012 | Files: src/testdir/test_utf8.in |
| 6013 | |
| 6014 | Patch 7.4.936 |
| 6015 | Problem: Crash when dragging with the mouse. |
| 6016 | Solution: Add safety check for NULL pointer. Check mouse position for valid |
| 6017 | value. (Hirohito Higashi) |
| 6018 | Files: src/window.c, src/term.c |
| 6019 | |
| 6020 | Patch 7.4.937 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6021 | Problem: Segfault reading uninitialized memory. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6022 | Solution: Do not read match \z0, it does not exist. (Marius Gedminas, closes |
| 6023 | #497) |
| 6024 | Files: src/regexp_nfa.c |
| 6025 | |
| 6026 | Patch 7.4.938 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6027 | Problem: X11 and GTK have more mouse buttons than Vim supports. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6028 | Solution: Recognize more mouse buttons. (Benoit Pierre, closes #498) |
| 6029 | Files: src/gui_gtk_x11.c, src/gui_x11.c |
| 6030 | |
| 6031 | Patch 7.4.939 |
| 6032 | Problem: Memory leak when encountering a syntax error. |
| 6033 | Solution: Free the memory. (Dominique Pelle) |
| 6034 | Files: src/ex_docmd.c |
| 6035 | |
| 6036 | Patch 7.4.940 |
| 6037 | Problem: vt52 terminal codes are not correct. |
| 6038 | Solution: Move entries outside of #if. (Random) Adjustments based on |
| 6039 | documented codes. |
| 6040 | Files: src/term.c |
| 6041 | |
| 6042 | Patch 7.4.941 |
| 6043 | Problem: There is no way to ignore case only for tag searches. |
| 6044 | Solution: Add the 'tagcase' option. (Gary Johnson) |
| 6045 | Files: runtime/doc/options.txt, runtime/doc/quickref.txt, |
| 6046 | runtime/doc/tagsrch.txt, runtime/doc/usr_29.txt, |
| 6047 | runtime/optwin.vim, src/Makefile, src/buffer.c, src/option.c, |
| 6048 | src/option.h, src/structs.h, src/tag.c, |
| 6049 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6050 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6051 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 6052 | src/testdir/test_tagcase.in, src/testdir/test_tagcase.ok |
| 6053 | |
| 6054 | Patch 7.4.942 (after 7.4.941) |
| 6055 | Problem: test_tagcase breaks for small builds. |
| 6056 | Solution: Bail out of the test early. (Hirohito Higashi) |
| 6057 | Files: src/testdir/test_tagcase.in |
| 6058 | |
| 6059 | Patch 7.4.943 |
| 6060 | Problem: Tests are not run. |
| 6061 | Solution: Add test_writefile to makefiles. (Ken Takata) |
| 6062 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6063 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6064 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 6065 | |
| 6066 | Patch 7.4.944 |
| 6067 | Problem: Writing tests for Vim script is hard. |
| 6068 | Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add |
| 6069 | the v:errors variable. Add the runtest script. Add a first new |
| 6070 | style test script. |
| 6071 | Files: src/eval.c, src/vim.h, src/misc2.c, src/testdir/Makefile, |
| 6072 | src/testdir/runtest.vim, src/testdir/test_assert.vim, |
| 6073 | runtime/doc/eval.txt |
| 6074 | |
| 6075 | Patch 7.4.945 (after 7.4.944) |
| 6076 | Problem: New style testing is incomplete. |
| 6077 | Solution: Add the runtest script to the list of distributed files. |
| 6078 | Add the new functions to the function overview. |
| 6079 | Rename the functions to match Vim function style. |
| 6080 | Move undolevels testing into a new style test script. |
| 6081 | Files: Filelist, runtime/doc/usr_41.txt, runtime/doc/eval.txt, |
| 6082 | src/testdir/test_assert.vim, src/testdir/Makefile, |
| 6083 | src/testdir/test_undolevels.vim, src/testdir/test100.in, |
| 6084 | src/testdir/test100.ok |
| 6085 | |
| 6086 | Patch 7.4.946 (after 7.4.945) |
| 6087 | Problem: Missing changes in source file. |
| 6088 | Solution: Include changes to the eval.c file. |
| 6089 | Files: src/eval.c |
| 6090 | |
| 6091 | Patch 7.4.947 |
| 6092 | Problem: Test_listchars fails with MingW. (Michael Soyka) |
| 6093 | Solution: Add the test to the ones that need the fileformat fixed. |
| 6094 | (Christian Brabandt) |
| 6095 | Files: src/testdir/Make_ming.mak |
| 6096 | |
| 6097 | Patch 7.4.948 |
| 6098 | Problem: Can't build when the insert_expand feature is disabled. |
| 6099 | Solution: Add #ifdefs. (Dan Pasanen, closes #499) |
| 6100 | Files: src/eval.c, src/fileio.c |
| 6101 | |
| 6102 | Patch 7.4.949 |
| 6103 | Problem: When using 'colorcolumn' and there is a sign with a fullwidth |
| 6104 | character the highlighting is wrong. (Andrew Stewart) |
| 6105 | Solution: Only increment vcol when in the right state. (Christian Brabandt) |
| 6106 | Files: src/screen.c, src/testdir/test_listlbr_utf8.in, |
| 6107 | src/testdir/test_listlbr_utf8.ok |
| 6108 | |
| 6109 | Patch 7.4.950 |
| 6110 | Problem: v:errors is not initialized. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6111 | Solution: Initialize it to an empty list. (Thinca) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6112 | Files: src/eval.c |
| 6113 | |
| 6114 | Patch 7.4.951 |
| 6115 | Problem: Sorting number strings does not work as expected. (Luc Hermitte) |
Bram Moolenaar | abd468e | 2016-09-08 22:22:43 +0200 | [diff] [blame] | 6116 | Solution: Add the "N" argument to sort() |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6117 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim, |
| 6118 | src/testdir/test_sort.vim, src/testdir/Makefile |
| 6119 | |
| 6120 | Patch 7.4.952 |
| 6121 | Problem: 'lispwords' is tested in the old way. |
| 6122 | Solution: Make a new style test for 'lispwords'. |
| 6123 | Files: src/testdir/test_alot.vim, src/testdir/test_lispwords.vim, |
| 6124 | src/testdir/test100.in, src/testdir/test100.ok, |
| 6125 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6126 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6127 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 6128 | |
| 6129 | Patch 7.4.953 |
| 6130 | Problem: When a test script navigates to another buffer the .res file is |
| 6131 | created with the wrong name. |
| 6132 | Solution: Use the "testname" for the .res file. (Damien) |
| 6133 | Files: src/testdir/runtest.vim |
| 6134 | |
| 6135 | Patch 7.4.954 |
| 6136 | Problem: When using Lua there may be a crash. (issue #468) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6137 | Solution: Avoid using an uninitialized tv. (Yukihiro Nakadaira) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6138 | Files: src/if_lua.c |
| 6139 | |
| 6140 | Patch 7.4.955 |
| 6141 | Problem: Vim doesn't recognize .pl6 and .pod6 files. |
| 6142 | Solution: Recognize them as perl6 and pod6. (Mike Eve, closes #511) |
| 6143 | Files: runtime/filetype.vim |
| 6144 | |
| 6145 | Patch 7.4.956 |
| 6146 | Problem: A few more file name extensions not recognized. |
| 6147 | Solution: Add .asciidoc, .bzl, .gradle, etc. |
| 6148 | Files: runtime/filetype.vim |
| 6149 | |
| 6150 | Patch 7.4.957 |
| 6151 | Problem: Test_tagcase fails when using another language than English. |
| 6152 | Solution: Set the messages language to C. (Kenichi Ito) |
| 6153 | Files: src/testdir/test_tagcase.in |
| 6154 | |
| 6155 | Patch 7.4.958 |
| 6156 | Problem: Vim checks if the directory "$TMPDIR" exists. |
| 6157 | Solution: Do not check if the name starts with "$". |
| 6158 | Files: src/fileio.c |
| 6159 | |
| 6160 | Patch 7.4.959 |
| 6161 | Problem: When setting 'term' the clipboard ownership is lost. |
| 6162 | Solution: Do not call clip_init(). (James McCoy) |
| 6163 | Files: src/term.c |
| 6164 | |
| 6165 | Patch 7.4.960 |
| 6166 | Problem: Detecting every version of nmake is clumsy. |
| 6167 | Solution: Use a tiny C program to get the version of _MSC_VER. (Ken Takata) |
| 6168 | Files: src/Make_mvc.mak |
| 6169 | |
| 6170 | Patch 7.4.961 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6171 | Problem: Test107 fails in some circumstances. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6172 | Solution: When using "zt", "zb" and "z=" recompute the fraction. |
| 6173 | Files: src/normal.c, src/window.c, src/proto/window.pro |
| 6174 | |
| 6175 | Patch 7.4.962 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6176 | Problem: Cannot run the tests with gvim. Cannot run individual new tests. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6177 | Solution: Add the -f flag. Add new test targets in Makefile. |
| 6178 | Files: src/Makefile, src/testdir/Makefile |
| 6179 | |
| 6180 | Patch 7.4.963 |
| 6181 | Problem: test_listlbr_utf8 sometimes fails. |
| 6182 | Solution: Don't use a literal multibyte character but <C-V>uXXXX. Do not |
| 6183 | dump the screen highlighting. (Christian Brabandt, closes #518) |
| 6184 | Files: src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok |
| 6185 | |
| 6186 | Patch 7.4.964 |
| 6187 | Problem: Test 87 doesn't work in a shadow directory. |
| 6188 | Solution: Handle the extra subdirectory. (James McCoy, closes #515) |
| 6189 | Files: src/testdir/test87.in |
| 6190 | |
| 6191 | Patch 7.4.965 |
| 6192 | Problem: On FreeBSD /dev/fd/ files are special. |
| 6193 | Solution: Use is_dev_fd_file() also for FreeBSD. (Derek Schrock, closes #521) |
| 6194 | Files: src/fileio.c |
| 6195 | |
| 6196 | Patch 7.4.966 |
| 6197 | Problem: Configure doesn't work with a space in a path. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 6198 | Solution: Put paths in quotes. (James McCoy, closes #525) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6199 | Files: src/configure.in, src/auto/configure |
| 6200 | |
| 6201 | Patch 7.4.967 |
| 6202 | Problem: Cross compilation on MS-windows doesn't work well. |
| 6203 | Solution: Tidy up cross compilation across architectures with Visual Studio. |
| 6204 | (Mike Williams) |
| 6205 | Files: src/Make_mvc.mak |
| 6206 | |
| 6207 | Patch 7.4.968 |
| 6208 | Problem: test86 and test87 are flaky in Appveyor. |
| 6209 | Solution: Reduce the count from 8 to 7. (suggested by ZyX) |
| 6210 | Files: src/testdir/test86.in, src/testdir/test87.in |
| 6211 | |
| 6212 | Patch 7.4.969 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6213 | Problem: Compiler warnings on Windows x64 build. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6214 | Solution: Add type casts. (Mike Williams) |
| 6215 | Files: src/option.c |
| 6216 | |
| 6217 | Patch 7.4.970 |
| 6218 | Problem: Rare crash in getvcol(). (Timo Mihaljov) |
| 6219 | Solution: Check for the buffer being NULL in init_preedit_start_col. |
| 6220 | (Hirohito Higashi, Christian Brabandt) |
| 6221 | Files: src/mbyte.c |
| 6222 | |
| 6223 | Patch 7.4.971 |
| 6224 | Problem: The asin() function can't be used. |
| 6225 | Solution: Sort the function table properly. (Watiko) |
| 6226 | Files: src/eval.c |
| 6227 | |
| 6228 | Patch 7.4.972 |
| 6229 | Problem: Memory leak when there is an error in setting an option. |
| 6230 | Solution: Free the saved value (Christian Brabandt) |
| 6231 | Files: src/option.c |
| 6232 | |
| 6233 | Patch 7.4.973 |
| 6234 | Problem: When pasting on the command line line breaks result in literal |
| 6235 | <CR> characters. This makes pasting a long file name difficult. |
| 6236 | Solution: Skip the characters. |
| 6237 | Files: src/ex_getln.c, src/ops.c |
| 6238 | |
| 6239 | Patch 7.4.974 |
| 6240 | Problem: When using :diffsplit the cursor jumps to the first line. |
| 6241 | Solution: Put the cursor on the line related to where the cursor was before |
| 6242 | the split. |
| 6243 | Files: src/diff.c |
| 6244 | |
| 6245 | Patch 7.4.975 |
| 6246 | Problem: Using ":sort" on a very big file sometimes causes text to be |
| 6247 | corrupted. (John Beckett) |
| 6248 | Solution: Copy the line into a buffer before calling ml_append(). |
| 6249 | Files: src/ex_cmds.c |
| 6250 | |
| 6251 | Patch 7.4.976 |
| 6252 | Problem: When compiling Vim for MSYS2 (linked with msys-2.0.dll), the Win32 |
| 6253 | clipboard is not enabled. |
| 6254 | Solution: Recognize MSYS like CYGWIN. (Ken Takata) |
| 6255 | Files: src/configure.in, src/auto/configure |
| 6256 | |
| 6257 | Patch 7.4.977 |
| 6258 | Problem: 'linebreak' does not work properly when using "space" in |
| 6259 | 'listchars'. |
| 6260 | Solution: (Hirohito Higashi, Christian Brabandt) |
| 6261 | Files: src/screen.c, src/testdir/test_listlbr.in, |
| 6262 | src/testdir/test_listlbr.ok |
| 6263 | |
| 6264 | Patch 7.4.978 |
| 6265 | Problem: test_cdo fails when using another language than English. |
| 6266 | Solution: Set the language to C. (Dominique Pelle, Kenichi Ito) |
| 6267 | Files: src/testdir/test_cdo.in |
| 6268 | |
| 6269 | Patch 7.4.979 |
| 6270 | Problem: When changing the crypt key the blocks read from disk are not |
| 6271 | decrypted. |
| 6272 | Solution: Also call ml_decrypt_data() when mf_old_key is set. (Ken Takata) |
| 6273 | Files: src/memfile.c |
| 6274 | |
| 6275 | Patch 7.4.980 |
| 6276 | Problem: Tests for :cdo, :ldo, etc. are outdated. |
| 6277 | Solution: Add new style tests for these commands. (Yegappan Lakshmanan) |
| 6278 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6279 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6280 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 6281 | src/testdir/test_cdo.in, src/testdir/test_cdo.ok, |
| 6282 | src/testdir/test_cdo.vim |
| 6283 | |
| 6284 | Patch 7.4.981 |
| 6285 | Problem: An error in a test script goes unnoticed. |
| 6286 | Solution: Source the test script inside try/catch. (Hirohito Higashi) |
| 6287 | Files: src/testdir/runtest.vim |
| 6288 | |
| 6289 | Patch 7.4.982 |
| 6290 | Problem: Keeping the list of tests updated is a hassle. |
| 6291 | Solution: Move the list to a separate file, so that it only needs to be |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6292 | updated in one place. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6293 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6294 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6295 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 6296 | src/testdir/Make_all.mak |
| 6297 | |
| 6298 | Patch 7.4.983 |
| 6299 | Problem: Executing one test after "make testclean" doesn't work. |
| 6300 | Solution: Add a dependency on test1.out. |
| 6301 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6302 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6303 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 6304 | src/testdir/Make_all.mak |
| 6305 | |
| 6306 | Patch 7.4.984 |
| 6307 | Problem: searchpos() always starts searching in the first column, which is |
| 6308 | not what some people expect. (Brett Stahlman) |
| 6309 | Solution: Add the 'z' flag: start at the specified column. |
| 6310 | Files: src/vim.h, src/eval.c, src/search.c, |
| 6311 | src/testdir/test_searchpos.vim, src/testdir/test_alot.vim, |
| 6312 | runtime/doc/eval.txt |
| 6313 | |
| 6314 | Patch 7.4.985 |
| 6315 | Problem: Can't build with Ruby 2.3.0. |
| 6316 | Solution: Use the new TypedData_XXX macro family instead of Data_XXX. Use |
| 6317 | TypedData. (Ken Takata) |
| 6318 | Files: src/if_ruby.c |
| 6319 | |
| 6320 | Patch 7.4.986 |
| 6321 | Problem: Test49 doesn't work on MS-Windows. test70 is listed twice. |
| 6322 | Solution: Move test49 to the group not used on Amiga and MS-Windows. |
| 6323 | Remove test70 from SCRIPTS_WIN32. |
| 6324 | Files: src/testdir/Make_all.mak, src/testdir/Make_dos.mak |
| 6325 | |
| 6326 | Patch 7.4.987 (after 7.4.985) |
| 6327 | Problem: Can't build with Ruby 1.9.2. |
| 6328 | Solution: Require Rub 2.0 for defining USE_TYPEDDATA. |
| 6329 | Files: src/if_ruby.c |
| 6330 | |
| 6331 | Patch 7.4.988 (after 7.4.982) |
| 6332 | Problem: Default test target is test49.out. |
| 6333 | Solution: Add a build rule before including Make_all.mak. |
| 6334 | Files: src/testdir/Make_dos.mak, src/testdir/Make_amiga.mak, |
| 6335 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6336 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 6337 | |
| 6338 | Patch 7.4.989 |
| 6339 | Problem: Leaking memory when hash_add() fails. Coverity error 99126. |
| 6340 | Solution: When hash_add() fails free the memory. |
| 6341 | Files: src/eval.c |
| 6342 | |
| 6343 | Patch 7.4.990 |
| 6344 | Problem: Test 86 fails on AppVeyor. |
| 6345 | Solution: Do some registry magic. (Ken Takata) |
| 6346 | Files: appveyor.yml |
| 6347 | |
| 6348 | Patch 7.4.991 |
| 6349 | Problem: When running new style tests the output is not visible. |
| 6350 | Solution: Add the testdir/messages file and show it. Update the list of |
| 6351 | test names. |
| 6352 | Files: src/Makefile, src/testdir/Makefile, src/testdir/runtest.vim |
| 6353 | |
| 6354 | Patch 7.4.992 |
| 6355 | Problem: Makefiles for MS-Windows in src/po are outdated. |
| 6356 | Solution: Make them work. (Ken Takata, Taro Muraoka) |
| 6357 | Files: src/po/Make_cyg.mak, src/po/Make_ming.mak, src/po/Make_mvc.mak, |
| 6358 | src/po/README_mingw.txt, src/po/README_mvc.txt |
| 6359 | |
| 6360 | Patch 7.4.993 |
| 6361 | Problem: Test 87 is flaky on AppVeyor. |
| 6362 | Solution: Reduce the minimum background thread count. |
| 6363 | Files: src/testdir/test86.in, src/testdir/test87.in |
| 6364 | |
| 6365 | Patch 7.4.994 |
| 6366 | Problem: New style tests are not run on MS-Windows. |
| 6367 | Solution: Add the new style tests. |
| 6368 | Files: src/testdir/Make_dos.mak |
| 6369 | |
| 6370 | Patch 7.4.995 |
| 6371 | Problem: gdk_pixbuf_new_from_inline() is deprecated. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 6372 | Solution: Generate auto/gui_gtk_gresources.c. (Kazunobu Kuriyama, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6373 | closes #507) |
| 6374 | Files: src/Makefile, src/auto/configure, src/config.h.in, |
| 6375 | src/config.mk.in, src/configure.in, src/gui_gtk.c, |
| 6376 | src/gui_gtk_gresources.xml, src/gui_gtk_x11.c, |
| 6377 | src/proto/gui_gtk_gresources.pro, |
| 6378 | pixmaps/stock_vim_build_tags.png, pixmaps/stock_vim_find_help.png, |
| 6379 | pixmaps/stock_vim_save_all.png, |
| 6380 | pixmaps/stock_vim_session_load.png, |
| 6381 | pixmaps/stock_vim_session_new.png, |
| 6382 | pixmaps/stock_vim_session_save.png, pixmaps/stock_vim_shell.png, |
| 6383 | pixmaps/stock_vim_window_maximize.png, |
| 6384 | pixmaps/stock_vim_window_maximize_width.png, |
| 6385 | pixmaps/stock_vim_window_minimize.png, |
| 6386 | pixmaps/stock_vim_window_minimize_width.png, |
| 6387 | pixmaps/stock_vim_window_split.png, |
| 6388 | pixmaps/stock_vim_window_split_vertical.png |
| 6389 | |
| 6390 | Patch 7.4.996 |
| 6391 | Problem: New GDK files and testdir/Make_all.mak missing from distribution. |
| 6392 | PC build instructions are outdated. |
| 6393 | Solution: Add the file to the list. Update PC build instructions. |
| 6394 | Files: Filelist, Makefile |
| 6395 | |
| 6396 | Patch 7.4.997 |
| 6397 | Problem: "make shadow" was sometimes broken. |
| 6398 | Solution: Add a test for it. (James McCoy, closes #520) |
| 6399 | Files: .travis.yml |
| 6400 | |
| 6401 | Patch 7.4.998 |
| 6402 | Problem: Running tests in shadow directory fails. Test 49 fails. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6403 | Solution: Link more files for the shadow directory. Make test 49 ends up in |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6404 | the right buffer. |
| 6405 | Files: src/Makefile, src/testdir/test49.in |
| 6406 | |
| 6407 | Patch 7.4.999 |
| 6408 | Problem: "make shadow" creates a broken link. (Tony Mechelynck) |
| 6409 | Solution: Remove vimrc.unix from the list. |
| 6410 | Files: src/Makefile |
| 6411 | |
| 6412 | Patch 7.4.1000 |
| 6413 | Problem: Test 49 is slow and doesn't work on MS-Windows. |
| 6414 | Solution: Start moving parts of test 49 to test_viml. |
| 6415 | Files: src/Makefile, src/testdir/runtest.vim, src/testdir/test_viml.vim, |
| 6416 | src/testdir/test49.vim, src/testdir/test49.ok |
| 6417 | |
| 6418 | Patch 7.4.1001 (after 7.4.1000) |
| 6419 | Problem: test_viml isn't run. |
| 6420 | Solution: Include change in makefile. |
| 6421 | Files: src/testdir/Make_all.mak |
| 6422 | |
| 6423 | Patch 7.4.1002 |
| 6424 | Problem: Cannot run an individual test on MS-Windows. |
| 6425 | Solution: Move the rule to run test1 downwards. (Ken Takata) |
| 6426 | Files: src/testdir/Make_dos.mak |
| 6427 | |
| 6428 | Patch 7.4.1003 |
| 6429 | Problem: Travis could check a few more things. |
| 6430 | Solution: Run autoconf on one of the builds. (James McCoy, closes #510) |
| 6431 | Also build with normal features. |
| 6432 | Files: .travis.yml |
| 6433 | |
| 6434 | Patch 7.4.1004 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6435 | Problem: Using Makefile when auto/config.mk does not exist results in |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6436 | warnings. |
| 6437 | Solution: Use default values for essential variables. |
| 6438 | Files: src/Makefile |
| 6439 | |
| 6440 | Patch 7.4.1005 |
| 6441 | Problem: Vim users are not always happy. |
| 6442 | Solution: Make them happy. |
| 6443 | Files: src/ex_cmds.h, src/ex_cmds.c, src/proto/ex_cmds.pro |
| 6444 | |
| 6445 | Patch 7.4.1006 |
| 6446 | Problem: The fix in patch 7.3.192 is not tested. |
| 6447 | Solution: Add a test, one for each regexp engine. (Elias Diem) |
| 6448 | Files: src/testdir/test44.in, src/testdir/test44.ok, |
| 6449 | src/testdir/test99.in, src/testdir/test99.ok |
| 6450 | |
| 6451 | Patch 7.4.1007 |
| 6452 | Problem: When a symbolic link points to a file in the root directory, the |
| 6453 | swapfile is not correct. |
| 6454 | Solution: Do not try getting the full name of a file in the root directory. |
| 6455 | (Milly, closes #501) |
| 6456 | Files: src/os_unix.c |
| 6457 | |
| 6458 | Patch 7.4.1008 |
| 6459 | Problem: The OS/2 code pollutes the source while nobody uses it these days. |
| 6460 | Solution: Drop the support for OS/2. |
| 6461 | Files: src/feature.h, src/globals.h, src/macros.h, src/option.h, |
| 6462 | src/os_unix.c, src/os_unix.h, src/proto/os_unix.pro, src/vim.h, |
| 6463 | src/digraph.c, src/eval.c, src/ex_cmds.c, src/ex_docmd.c, |
| 6464 | src/ex_getln.c, src/fileio.c, src/getchar.c, src/memline.c, |
| 6465 | src/misc1.c, src/misc2.c, src/netbeans.c, src/option.c, |
| 6466 | src/term.c, src/ui.c, src/window.c, src/os_os2_cfg.h, |
| 6467 | src/Make_os2.mak, src/testdir/Make_os2.mak, src/testdir/os2.vim, |
| 6468 | src/INSTALL, runtime/doc/os_os2.txt |
| 6469 | |
| 6470 | Patch 7.4.1009 |
| 6471 | Problem: There are still #ifdefs for ARCHIE. |
| 6472 | Solution: Remove references to ARCHIE, the code was removed in Vim 5. |
| 6473 | Files: src/ex_cmds.c, src/ex_docmd.c, src/fileio.c, src/main.c, |
| 6474 | src/memline.c, src/option.c, src/term.c |
| 6475 | |
| 6476 | Patch 7.4.1010 |
| 6477 | Problem: Some developers are unhappy while running tests. |
| 6478 | Solution: Add a test and some color. |
| 6479 | Files: src/ex_cmds.c, src/testdir/test_assert.vim |
| 6480 | |
| 6481 | Patch 7.4.1011 |
| 6482 | Problem: Can't build with Strawberry Perl. |
| 6483 | Solution: Include stdbool.h. (Ken Takata, closes #328) |
| 6484 | Files: Filelist, src/Make_mvc.mak, src/if_perl_msvc/stdbool.h |
| 6485 | |
| 6486 | Patch 7.4.1012 |
| 6487 | Problem: Vim overwrites the value of $PYTHONHOME. |
| 6488 | Solution: Do not set $PYTHONHOME if it is already set. (Kazuki Sakamoto, |
| 6489 | closes #500) |
| 6490 | Files: src/if_python.c, src/if_python3.c |
| 6491 | |
| 6492 | Patch 7.4.1013 |
| 6493 | Problem: The local value of 'errorformat' is not used for ":lexpr" and |
| 6494 | ":cexpr". |
| 6495 | Solution: Use the local value if it exists. (Christian Brabandt) Adjust the |
| 6496 | help for this. |
| 6497 | Files: runtime/doc/quickfix.txt, src/quickfix.c |
| 6498 | |
| 6499 | Patch 7.4.1014 |
| 6500 | Problem: `fnamemodify('.', ':.')` returns an empty string in Cygwin. |
| 6501 | Solution: Use CCP_RELATIVE in the call to cygwin_conv_path. (Jacob Niehus, |
| 6502 | closes #505) |
| 6503 | Files: src/os_unix.c |
| 6504 | |
| 6505 | Patch 7.4.1015 |
| 6506 | Problem: The column is not restored properly when the matchparen plugin is |
| 6507 | used in Insert mode and the cursor is after the end of the line. |
| 6508 | Solution: Set the curswant flag. (Christian Brabandt). Also fix |
| 6509 | highlighting the match of the character before the cursor. |
| 6510 | Files: src/eval.c, runtime/plugin/matchparen.vim |
| 6511 | |
| 6512 | Patch 7.4.1016 |
| 6513 | Problem: Still a few OS/2 pieces remain. |
| 6514 | Solution: Delete more. |
| 6515 | Files: Filelist, README_os2.txt, testdir/todos.vim, src/xxd/Make_os2.mak |
| 6516 | |
| 6517 | Patch 7.4.1017 |
| 6518 | Problem: When there is a backslash in an option ":set -=" doesn't work. |
| 6519 | Solution: Handle a backslash better. (Jacob Niehus) Add a new test, merge |
| 6520 | in old test. |
| 6521 | Files: src/testdir/test_cdo.vim, src/testdir/test_set.vim, |
| 6522 | src/testdir/test_alot.vim, src/option.c, src/testdir/test_set.in, |
| 6523 | src/testdir/test_set.ok, src/Makefile |
| 6524 | |
| 6525 | Patch 7.4.1018 (after 7.4.1017) |
| 6526 | Problem: Failure running tests. |
| 6527 | Solution: Add missing change to list of old style tests. |
| 6528 | Files: src/testdir/Make_all.mak |
| 6529 | |
| 6530 | Patch 7.4.1019 |
| 6531 | Problem: Directory listing of "src" is too long. |
| 6532 | Solution: Rename the resources file to make it shorter. |
| 6533 | Files: src/gui_gtk_gresources.xml, src/gui_gtk_res.xml, src/Makefile, |
| 6534 | Filelist |
| 6535 | |
| 6536 | Patch 7.4.1020 |
| 6537 | Problem: On MS-Windows there is no target to run tests with gvim. |
| 6538 | Solution: Add the testgvim target. |
| 6539 | Files: src/Make_mvc.mak |
| 6540 | |
| 6541 | Patch 7.4.1021 |
| 6542 | Problem: Some makefiles are outdated. |
| 6543 | Solution: Add a note to warn developers. |
| 6544 | Files: src/Make_manx.mak, src/Make_bc3.mak, src/Make_bc5.mak, |
| 6545 | src/Make_djg.mak, src/Make_w16.mak |
| 6546 | |
| 6547 | Patch 7.4.1022 |
| 6548 | Problem: The README file contains some outdated information. |
| 6549 | Solution: Update the information about supported systems. |
| 6550 | Files: README.txt, README.md |
| 6551 | |
| 6552 | Patch 7.4.1023 |
| 6553 | Problem: The distribution files for MS-Windows use CR-LF, which is |
| 6554 | inconsistent with what one gets from github. |
| 6555 | Solution: Use LF in the distribution files. |
| 6556 | Files: Makefile |
| 6557 | |
| 6558 | Patch 7.4.1024 |
| 6559 | Problem: Interfaces for MS-Windows are outdated. |
| 6560 | Solution: Use Python 2.7.10, Python 3.4.4, Perl 5.22, TCL 8.6. |
| 6561 | Files: src/bigvim.bat |
| 6562 | |
| 6563 | Patch 7.4.1025 |
| 6564 | Problem: Version in installer needs to be updated manually. |
| 6565 | Solution: Generate a file with the version number. (Guopeng Wen) |
| 6566 | Files: Makefile, nsis/gvim.nsi, nsis/gvim_version.nsh |
| 6567 | |
| 6568 | Patch 7.4.1026 |
| 6569 | Problem: When using MingW the tests do not clean up all files. E.g. test |
| 6570 | 17 leaves Xdir1 behind. (Michael Soyka) |
| 6571 | Solution: Also delete directories, like Make_dos.mak. Delete files after |
| 6572 | directories to reduce warnings. |
| 6573 | Files: src/testdir/Make_ming.mak, src/testdir/Make_dos.mak |
| 6574 | |
| 6575 | Patch 7.4.1027 |
| 6576 | Problem: No support for binary numbers. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 6577 | Solution: Add "bin" to 'nrformats'. (Jason Schulz) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6578 | Files: runtime/doc/change.txt, runtime/doc/eval.txt, |
| 6579 | runtime/doc/version7.txt, src/charset.c, src/eval.c, |
| 6580 | src/ex_cmds.c, src/ex_getln.c, src/misc2.c, src/ops.c, |
| 6581 | src/option.c, src/proto/charset.pro, src/spell.c, |
| 6582 | src/testdir/test57.in, src/testdir/test57.ok, |
| 6583 | src/testdir/test58.in, src/testdir/test58.ok, |
| 6584 | src/testdir/test_increment.in, src/testdir/test_increment.ok, |
| 6585 | src/vim.h |
| 6586 | |
| 6587 | Patch 7.4.1028 |
| 6588 | Problem: Nsis version file missing from the distribution. |
| 6589 | Solution: Add the file to the list. |
| 6590 | Files: Filelist |
| 6591 | |
| 6592 | Patch 7.4.1029 (after 7.4.1027) |
| 6593 | Problem: test_increment fails on systems with 32 bit long. |
| 6594 | Solution: Only test with 32 bits. |
| 6595 | Files: src/testdir/test_increment.in, src/testdir/test_increment.ok |
| 6596 | |
| 6597 | Patch 7.4.1030 |
| 6598 | Problem: test49 is still slow. |
| 6599 | Solution: Move more tests from old to new style. |
| 6600 | Files: src/testdir/test_viml.vim, src/testdir/test49.vim, |
| 6601 | src/testdir/test49.ok, src/testdir/runtest.vim |
| 6602 | |
| 6603 | Patch 7.4.1031 |
| 6604 | Problem: Can't build with Python interface using MingW. |
| 6605 | Solution: Update the Makefile. (Yasuhiro Matsumoto) |
| 6606 | Files: src/INSTALLpc.txt, src/Make_cyg_ming.mak |
| 6607 | |
| 6608 | Patch 7.4.1032 |
| 6609 | Problem: message from assert_false() does not look nice. |
| 6610 | Solution: Handle missing sourcing_name. Use right number of spaces. (Watiko) |
| 6611 | Don't use line number if it's zero. |
| 6612 | Files: src/eval.c |
| 6613 | |
| 6614 | Patch 7.4.1033 |
| 6615 | Problem: Memory use on MS-Windows is very conservative. |
| 6616 | Solution: Use the global memory status to estimate amount of memory. |
| 6617 | (Mike Williams) |
| 6618 | Files: src/os_win32.c, src/os_win32.h, src/proto/os_win32.pro |
| 6619 | |
| 6620 | Patch 7.4.1034 |
| 6621 | Problem: There is no test for the 'backspace' option behavior. |
| 6622 | Solution: Add a test. (Hirohito Higashi) |
| 6623 | Files: src/testdir/test_alot.vim, src/testdir/test_backspace_opt.vim |
| 6624 | |
| 6625 | Patch 7.4.1035 |
| 6626 | Problem: An Ex range gets adjusted for folded lines even when the range is |
| 6627 | not using line numbers. |
| 6628 | Solution: Only adjust line numbers for folding. (Christian Brabandt) |
| 6629 | Files: runtime/doc/fold.txt, src/ex_docmd.c |
| 6630 | |
| 6631 | Patch 7.4.1036 |
| 6632 | Problem: Only terminals with up to 256 colors work properly. |
| 6633 | Solution: Use the 256 color behavior for all terminals with 256 or more |
| 6634 | colors. (Robert de Bath, closes #504) |
| 6635 | Files: src/syntax.c |
| 6636 | |
| 6637 | Patch 7.4.1037 |
| 6638 | Problem: Using "q!" when there is a modified hidden buffer does not unload |
| 6639 | the current buffer, resulting in the need to abandon it again. |
| 6640 | Solution: When using "q!" unload the current buffer when needed. (Yasuhiro |
| 6641 | Matsumoto, Hirohito Higashi) |
| 6642 | Files: src/testdir/test31.in, src/testdir/test31.ok, |
| 6643 | runtime/doc/editing.txt, src/ex_cmds2.c, src/ex_docmd.c, |
| 6644 | src/gui.c, src/gui_gtk_x11.c, src/os_unix.c, |
| 6645 | src/proto/ex_cmds2.pro |
| 6646 | |
| 6647 | Patch 7.4.1038 |
| 6648 | Problem: Still get a warning for a deprecated function with gdk-pixbuf |
| 6649 | 2.31. |
| 6650 | Solution: Change minimum minor version from 32 to 31. |
| 6651 | Files: src/configure.in, src/auto/configure |
| 6652 | |
| 6653 | Patch 7.4.1039 (after 7.4.1037) |
| 6654 | Problem: Test 31 fails with small build. |
| 6655 | Solution: Bail out for small build. (Hirohito Higashi) |
| 6656 | Files: src/testdir/test31.in |
| 6657 | |
| 6658 | Patch 7.4.1040 |
| 6659 | Problem: The tee command is not available on MS-Windows. |
| 6660 | Solution: Adjust tee.c for MSVC and add a makefile. (Yasuhiro Matsumoto) |
| 6661 | Files: src/tee/tee.c, src/tee/Make_mvc.mak, src/Make_mvc.mak |
| 6662 | |
| 6663 | Patch 7.4.1041 |
| 6664 | Problem: Various small things. |
| 6665 | Solution: Add file to list of distributed files. Adjust README. Fix typo. |
| 6666 | Files: Filelist, src/testdir/README.txt, src/testdir/test_charsearch.in, |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 6667 | src/INSTALLmac.txt |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6668 | |
| 6669 | Patch 7.4.1042 |
| 6670 | Problem: g-CTRL-G shows the word count, but there is no way to get the word |
| 6671 | count in a script. |
| 6672 | Solution: Add the wordcount() function. (Christian Brabandt) |
| 6673 | Files: runtime/doc/editing.txt, runtime/doc/eval.txt, |
| 6674 | runtime/doc/usr_41.txt, src/eval.c, src/normal.c, src/ops.c, |
| 6675 | src/proto/ops.pro, src/testdir/test_wordcount.in, |
| 6676 | src/testdir/test_wordcount.ok, src/testdir/Make_all.mak |
| 6677 | |
| 6678 | Patch 7.4.1043 |
| 6679 | Problem: Another small thing. |
| 6680 | Solution: Now really update the Mac install text. |
| 6681 | Files: src/INSTALLmac.txt |
| 6682 | |
| 6683 | Patch 7.4.1044 (after 7.4.1042) |
| 6684 | Problem: Can't build without the +eval feature. |
| 6685 | Solution: Add #ifdef. |
| 6686 | Files: src/ops.c |
| 6687 | |
| 6688 | Patch 7.4.1045 |
| 6689 | Problem: Having shadow and coverage on the same build results in the source |
| 6690 | files not being available in the coverage view. |
| 6691 | Solution: Move using shadow to the normal build. |
| 6692 | Files: .travis.yml |
| 6693 | |
| 6694 | Patch 7.4.1046 |
| 6695 | Problem: No test coverage for menus. |
| 6696 | Solution: Load the standard menus and check there is no error. |
| 6697 | Files: testdir/test_menu.vim, testdir/test_alot.vim |
| 6698 | |
| 6699 | Patch 7.4.1047 (after patch 7.4.1042) |
| 6700 | Problem: Tests fail on MS-Windows. |
| 6701 | Solution: Set 'selection' to inclusive. |
| 6702 | Files: src/testdir/test_wordcount.in |
| 6703 | |
| 6704 | Patch 7.4.1048 (after patch 7.4.1047) |
| 6705 | Problem: Wordcount test still fail on MS-Windows. |
| 6706 | Solution: Set 'fileformat' to "unix". |
| 6707 | Files: src/testdir/test_wordcount.in |
| 6708 | |
| 6709 | Patch 7.4.1049 (after patch 7.4.1048) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6710 | Problem: Wordcount test still fails on MS-Windows. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6711 | Solution: Set 'fileformats' to "unix". |
| 6712 | Files: src/testdir/test_wordcount.in |
| 6713 | |
| 6714 | Patch 7.4.1050 |
| 6715 | Problem: Warning for unused var with tiny features. (Tony Mechelynck) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6716 | Solution: Add #ifdef. Use vim_snprintf(). Reduce number of statements. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6717 | Files: src/ops.c |
| 6718 | |
| 6719 | Patch 7.4.1051 |
| 6720 | Problem: Segfault when unletting "count". |
| 6721 | Solution: Check for readonly and locked first. (Dominique Pelle) |
| 6722 | Add a test. |
| 6723 | Files: src/eval.c, src/testdir/test_alot.vim, src/testdir/test_unlet.vim |
| 6724 | |
| 6725 | Patch 7.4.1052 |
| 6726 | Problem: Illegal memory access with weird syntax command. (Dominique Pelle) |
| 6727 | Solution: Check for column past end of line. |
| 6728 | Files: src/syntax.c |
| 6729 | |
| 6730 | Patch 7.4.1053 |
| 6731 | Problem: Insufficient testing for quickfix commands. |
| 6732 | Solution: Add a new style quickfix test. (Yegappan Lakshmanan) |
| 6733 | Files: src/testdir/Make_all.mak, src/testdir/test_quickfix.vim |
| 6734 | |
| 6735 | Patch 7.4.1054 |
| 6736 | Problem: Illegal memory access. |
| 6737 | Solution: Check for missing pattern. (Dominique Pelle) |
| 6738 | Files: src/syntax.c |
| 6739 | |
| 6740 | Patch 7.4.1055 |
| 6741 | Problem: Running "make newtests" in src/testdir has no output. |
| 6742 | Solution: List the messages file when a test fails. (Christian Brabandt) |
| 6743 | Update the list of tests. |
| 6744 | Files: src/Makefile, src/testdir/Makefile |
| 6745 | |
| 6746 | Patch 7.4.1056 |
| 6747 | Problem: Don't know why finding spell suggestions is slow. |
| 6748 | Solution: Add some code to gather profiling information. |
| 6749 | Files: src/spell.c |
| 6750 | |
| 6751 | Patch 7.4.1057 |
| 6752 | Problem: Typos in the :options window. |
| 6753 | Solution: Fix the typos. (Dominique Pelle) |
| 6754 | Files: runtime/optwin.vim |
| 6755 | |
| 6756 | Patch 7.4.1058 |
| 6757 | Problem: It is not possible to test code that is only reached when memory |
| 6758 | allocation fails. |
| 6759 | Solution: Add the alloc_fail() function. Try it out with :vimgrep. |
| 6760 | Files: runtime/doc/eval.txt, src/globals.h, src/eval.c, src/quickfix.c, |
| 6761 | src/misc2.c, src/proto/misc2.pro, src/testdir/test_quickfix.vim |
| 6762 | |
| 6763 | Patch 7.4.1059 |
| 6764 | Problem: Code will never be executed. |
| 6765 | Solution: Remove the code. |
| 6766 | Files: src/quickfix.c |
| 6767 | |
| 6768 | Patch 7.4.1060 |
| 6769 | Problem: Instructions for writing tests are outdated. |
| 6770 | Solution: Mention Make_all.mak. Add steps for new style tests. |
| 6771 | Files: src/testdir/README.txt |
| 6772 | |
| 6773 | Patch 7.4.1061 |
| 6774 | Problem: Compiler warning for ignoring return value of fwrite(). |
| 6775 | Solution: Do use the return value. (idea: Charles Campbell) |
| 6776 | Files: src/misc2.c, src/proto/misc2.pro |
| 6777 | |
| 6778 | Patch 7.4.1062 |
| 6779 | Problem: Building with Ruby on MS-Windows requires a lot of arguments. |
| 6780 | Solution: Make it simpler. (Ken Takata) |
| 6781 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 6782 | |
| 6783 | Patch 7.4.1063 |
| 6784 | Problem: TCL_VER_LONG and DYNAMIC_TCL_VER are not set when building with |
| 6785 | Cygwin and MingW. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6786 | Solution: Add TCL_VER_LONG and DYNAMIC_TCL_VER to the makefile. (Ken Takata) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6787 | Files: src/Make_cyg_ming.mak |
| 6788 | |
| 6789 | Patch 7.4.1064 |
| 6790 | Problem: When a spell file has single letter compounding creating |
| 6791 | suggestions takes an awful long time. |
| 6792 | Solution: Add the NOCOMPOUNDSUGS flag. |
| 6793 | Files: runtime/doc/spell.txt, src/spell.c |
| 6794 | |
| 6795 | Patch 7.4.1065 |
| 6796 | Problem: Cannot use the "dll" options on MS-Windows. |
| 6797 | Solution: Support the options on all platforms. Use the built-in name as |
| 6798 | the default, so that it's clear what Vim is looking for. |
| 6799 | Files: src/if_python.c, src/if_python3.c, src/if_lua.c, src/if_perl.xs, |
| 6800 | src/if_ruby.c, src/option.c, runtime/doc/options.txt, src/Makefile |
| 6801 | |
| 6802 | Patch 7.4.1066 (after 7.4.1065) |
| 6803 | Problem: Build fails on MS-Windows. |
| 6804 | Solution: Adjust the #ifdefs for "dll" options. |
| 6805 | Files: src/option.h |
| 6806 | |
| 6807 | Patch 7.4.1067 (after 7.4.1065) |
| 6808 | Problem: Can't build with MingW and Python on MS-Windows. |
| 6809 | Solution: Move the build flags to CFLAGS. |
| 6810 | Files: src/Make_cyg_ming.mak |
| 6811 | |
| 6812 | Patch 7.4.1068 |
| 6813 | Problem: Wrong way to check for unletting internal variables. |
| 6814 | Solution: Use a better way. (Olaf Dabrunz) |
| 6815 | Files: src/testdir/test_unlet.c, src/eval.c |
| 6816 | |
| 6817 | Patch 7.4.1069 |
| 6818 | Problem: Compiler warning for unused argument. |
| 6819 | Solution: Add UNUSED. |
| 6820 | Files: src/misc2.c |
| 6821 | |
| 6822 | Patch 7.4.1070 |
| 6823 | Problem: The Tcl interface can't be loaded dynamically on Unix. |
| 6824 | Solution: Make it possible to load it dynamically. (Ken Takata) |
| 6825 | Files: runtime/doc/if_tcl.txt, runtime/doc/options.txt, |
| 6826 | runtime/doc/quickref.txt, runtime/optwin.vim, src/Makefile, |
| 6827 | src/config.h.in, src/configure.in, src/auto/configure, |
| 6828 | src/if_tcl.c, src/option.c, src/option.h |
| 6829 | |
| 6830 | Patch 7.4.1071 |
| 6831 | Problem: New style tests are executed in arbitrary order. |
| 6832 | Solution: Sort the test function names. (Hirohito Higashi) |
| 6833 | Fix the quickfix test that depended on the order. |
| 6834 | Files: src/testdir/runtest.vim, src/testdir/test_quickfix.vim |
| 6835 | |
| 6836 | Patch 7.4.1072 |
| 6837 | Problem: Increment test is old style. |
| 6838 | Solution: Make the increment test a new style test. (Hirohito Higashi) |
| 6839 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 6840 | src/testdir/test_increment.in, src/testdir/test_increment.ok, |
| 6841 | src/testdir/test_increment.vim |
| 6842 | |
| 6843 | Patch 7.4.1073 |
| 6844 | Problem: Alloc_id depends on numbers, may use the same one twice. It's not |
| 6845 | clear from the number what it's for. |
| 6846 | Solution: Use an enum. Add a function to lookup the enum value from the |
| 6847 | name. |
| 6848 | Files: src/misc2.c, src/vim.h, src/alloc.h, src/globals.h, |
| 6849 | src/testdir/runtest.vim, src/proto/misc2.pro, |
| 6850 | src/testdir/test_quickfix.vim |
| 6851 | |
| 6852 | Patch 7.4.1074 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6853 | Problem: Warning from VC2015 compiler. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6854 | Solution: Add a type cast. (Mike Williams) |
| 6855 | Files: src/gui_dwrite.cpp |
| 6856 | |
| 6857 | Patch 7.4.1075 |
| 6858 | Problem: Crash when using an invalid command. |
| 6859 | Solution: Fix generating the error message. (Dominique Pelle) |
| 6860 | Files: src/ex_docmd.c |
| 6861 | |
| 6862 | Patch 7.4.1076 |
| 6863 | Problem: CTRL-A does not work well in right-left mode. |
| 6864 | Solution: Remove reversing the line, add a test. (Hirohito Higashi) |
| 6865 | Files: src/ops.c, src/testdir/test_increment.vim |
| 6866 | |
| 6867 | Patch 7.4.1077 |
| 6868 | Problem: The build instructions for MS-Windows are incomplete. |
| 6869 | Solution: Add explanations for how to build with various interfaces. (Ken |
| 6870 | Takata) |
| 6871 | Files: src/INSTALLpc.txt |
| 6872 | |
| 6873 | Patch 7.4.1078 |
| 6874 | Problem: MSVC: "make clean" doesn't cleanup in the tee directory. |
| 6875 | Solution: Add the commands to cleanup tee. (Erich Ritz) |
| 6876 | Files: src/Make_mvc.mak |
| 6877 | |
| 6878 | Patch 7.4.1079 (after 7.4.1073) |
| 6879 | Problem: New include file missing from distribution. Missing changes to |
| 6880 | quickfix code. |
| 6881 | Solution: Add alloc.h to the list of distributed files. Use the enum in |
| 6882 | quickfix code. |
| 6883 | Files: Filelist, src/quickfix.c |
| 6884 | |
| 6885 | Patch 7.4.1080 |
| 6886 | Problem: VS2015 has a function HandleToLong() that is shadowed by the macro |
| 6887 | that Vim defines. |
| 6888 | Solution: Do not define HandleToLong() for MSVC version 1400 and later. |
| 6889 | (Mike Williams) |
| 6890 | Files: src/gui_w32.c |
| 6891 | |
| 6892 | Patch 7.4.1081 |
| 6893 | Problem: No test for what previously caused a crash. |
| 6894 | Solution: Add test for unletting errmsg. |
| 6895 | Files: src/testdir/test_unlet.vim |
| 6896 | |
| 6897 | Patch 7.4.1082 |
| 6898 | Problem: The Tcl interface is always skipping memory free on exit. |
| 6899 | Solution: Only skip for dynamically loaded Tcl. |
| 6900 | Files: src/if_tcl.c |
| 6901 | |
| 6902 | Patch 7.4.1083 |
| 6903 | Problem: Building GvimExt with VS2015 may fail. |
| 6904 | Solution: Adjust the makefile. (Mike Williams) |
| 6905 | Files: src/GvimExt/Makefile |
| 6906 | |
| 6907 | Patch 7.4.1084 |
| 6908 | Problem: Using "." to repeat CTRL-A in Visual mode increments the wrong |
| 6909 | numbers. |
| 6910 | Solution: Append right size to the redo buffer. (Ozaki Kiichi) |
| 6911 | Files: src/normal.c, src/testdir/test_increment.vim |
| 6912 | |
| 6913 | Patch 7.4.1085 |
| 6914 | Problem: The CTRL-A and CTRL-X commands do not update the '[ and '] marks. |
| 6915 | Solution: (Yukihiro Nakadaira) |
| 6916 | Files: src/ops.c, src/testdir/test_marks.in, src/testdir/test_marks.ok |
| 6917 | |
| 6918 | Patch 7.4.1086 |
| 6919 | Problem: Crash with an extremely long buffer name. |
| 6920 | Solution: Limit the return value of vim_snprintf(). (Dominique Pelle) |
| 6921 | Files: src/buffer.c |
| 6922 | |
| 6923 | Patch 7.4.1087 |
| 6924 | Problem: CTRL-A and CTRL-X do not work properly with blockwise visual |
| 6925 | selection if there is a mix of Tab and spaces. |
| 6926 | Solution: Add OP_NR_ADD and OP_NR_SUB. (Hirohito Higashi) |
| 6927 | Files: src/testdir/test_increment.vim, src/normal.c, src/ops.c, |
| 6928 | src/proto/ops.pro, src/vim.h |
| 6929 | |
| 6930 | Patch 7.4.1088 |
| 6931 | Problem: Coverity warns for uninitialized variables. Only one is an actual |
| 6932 | problem. |
| 6933 | Solution: Move the conditions. Don't use endpos if handling an error. |
| 6934 | Files: src/ops.c |
| 6935 | |
| 6936 | Patch 7.4.1089 |
| 6937 | Problem: Repeating CTRL-A doesn't work. |
| 6938 | Solution: Call prep_redo_cmd(). (Hirohito Higashi) |
| 6939 | Files: src/normal.c, src/testdir/test_increment.vim |
| 6940 | |
| 6941 | Patch 7.4.1090 |
| 6942 | Problem: No tests for :hardcopy and related options. |
| 6943 | Solution: Add test_hardcopy. |
| 6944 | Files: src/testdir/test_hardcopy.vim, src/Makefile, |
| 6945 | src/testdir/Make_all.mak |
| 6946 | |
| 6947 | Patch 7.4.1091 |
| 6948 | Problem: When making a change while need_wait_return is set there is a two |
| 6949 | second delay. |
| 6950 | Solution: Do not assume the ATTENTION prompt was given when need_wait_return |
| 6951 | was set already. |
| 6952 | Files: src/misc1.c |
| 6953 | |
| 6954 | Patch 7.4.1092 |
| 6955 | Problem: It is not simple to test for an exception and give a proper error |
| 6956 | message. |
| 6957 | Solution: Add assert_exception(). |
| 6958 | Files: src/eval.c, runtime/doc/eval.txt |
| 6959 | |
| 6960 | Patch 7.4.1093 |
| 6961 | Problem: Typo in test goes unnoticed. |
| 6962 | Solution: Fix the typo. Give error for wrong arguments to cursor(). |
| 6963 | (partly by Hirohito Higashi) Add a test for cursor(). |
| 6964 | Files: src/testdir/test_searchpos.vim, src/testdir/test_cursor_func.vim, |
| 6965 | src/eval.c, src/testdir/test_alot.vim |
| 6966 | |
| 6967 | Patch 7.4.1094 |
| 6968 | Problem: Test for :hardcopy fails on MS-Windows. |
| 6969 | Solution: Check for the +postscript feature. |
| 6970 | Files: src/testdir/test_hardcopy.vim |
| 6971 | |
| 6972 | Patch 7.4.1095 |
| 6973 | Problem: Can't build GvimExt with SDK 7.1. |
| 6974 | Solution: Support using setenv.bat instead of vcvars32.bat. (Ken Takata) |
| 6975 | Files: src/Make_mvc.mak, src/GvimExt/Makefile |
| 6976 | |
| 6977 | Patch 7.4.1096 |
| 6978 | Problem: Need several lines to verify a command produces an error. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 6979 | Solution: Add assert_fails(). (suggested by Nikolai Pavlov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6980 | Make the quickfix alloc test actually work. |
| 6981 | Files: src/testdir/test_quickfix.vim, src/eval.c, runtime/doc/eval.txt, |
| 6982 | src/misc2.c, src/alloc.h |
| 6983 | |
| 6984 | Patch 7.4.1097 |
| 6985 | Problem: Looking up the alloc ID for tests fails. |
| 6986 | Solution: Fix the line computation. Use assert_fails() for unlet test. |
| 6987 | Files: src/testdir/runtest.vim, src/testdir/test_unlet.vim |
| 6988 | |
| 6989 | Patch 7.4.1098 |
| 6990 | Problem: Still using old style C function declarations. |
| 6991 | Solution: Always define __ARGS() to include types. Turn a few functions |
| 6992 | into ANSI style to find out if this causes problems for anyone. |
| 6993 | Files: src/vim.h, src/os_unix.h, src/eval.c, src/main.c |
| 6994 | |
| 6995 | Patch 7.4.1099 |
| 6996 | Problem: It's not easy to know if Vim supports blowfish. (Smu Johnson) |
| 6997 | Solution: Add has('crypt-blowfish') and has('crypt-blowfish2'). |
| 6998 | Files: src/eval.c |
| 6999 | |
| 7000 | Patch 7.4.1100 |
| 7001 | Problem: Cygwin makefiles are unused. |
| 7002 | Solution: Remove them. |
| 7003 | Files: src/GvimExt/Make_ming.mak, src/GvimExt/Make_cyg.mak, |
| 7004 | src/xxd/Make_ming.mak, src/xxd/Make_cyg.mak |
| 7005 | |
| 7006 | Patch 7.4.1101 |
| 7007 | Problem: With 'rightleft' and concealing the cursor may move to the wrong |
| 7008 | position. |
| 7009 | Solution: Compute the column differently when 'rightleft' is set. (Hirohito |
| 7010 | Higashi) |
| 7011 | Files: src/screen.c |
| 7012 | |
| 7013 | Patch 7.4.1102 |
| 7014 | Problem: Debugger has no stack backtrace support. |
| 7015 | Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto |
| 7016 | Fanjul, closes #433) |
| 7017 | Files: runtime/doc/repeat.txt, src/eval.c, src/ex_cmds2.c, src/globals.h, |
| 7018 | src/testdir/Make_all.mak, src/testdir/test108.in, |
| 7019 | src/testdir/test108.ok |
| 7020 | |
| 7021 | Patch 7.4.1103 (after 7.4.1100) |
| 7022 | Problem: Removed file still in distribution. |
| 7023 | Solution: Remove Make_cyg.mak from the list of files. |
| 7024 | Files: Filelist |
| 7025 | |
| 7026 | Patch 7.4.1104 |
| 7027 | Problem: Various problems building with MzScheme/Racket. |
| 7028 | Solution: Make it work with new versions of Racket. (Yukihiro Nakadaira, Ken |
| 7029 | Takata) |
| 7030 | Files: runtime/doc/if_mzsch.txt, src/INSTALLpc.txt, |
| 7031 | src/Make_cyg_ming.mak, src/Make_mvc.mak, src/auto/configure, |
| 7032 | src/configure.in, src/if_mzsch.c |
| 7033 | |
| 7034 | Patch 7.4.1105 |
| 7035 | Problem: When using slices there is a mixup of variable name and namespace. |
| 7036 | Solution: Recognize variables that can't be a namespace. (Hirohito Higashi) |
| 7037 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 7038 | |
| 7039 | Patch 7.4.1106 |
| 7040 | Problem: The nsis script can't be used from the appveyor build. |
| 7041 | Solution: Add "ifndef" to allow for variables to be set from the command |
| 7042 | line. Remove duplicate SetCompressor command. Support using other |
| 7043 | gettext binaries. (Ken Takata) Update build instructions to use |
| 7044 | libintl-8.dll. |
| 7045 | Files: Makefile, nsis/gvim.nsi, src/os_win32.c, src/proto/os_win32.pro, |
| 7046 | src/main.c, os_w32exe.c |
| 7047 | |
| 7048 | Patch 7.4.1107 |
| 7049 | Problem: Vim can create a directory but not delete it. |
| 7050 | Solution: Add an argument to delete() to make it possible to delete a |
| 7051 | directory, also recursively. |
| 7052 | Files: src/fileio.c, src/eval.c, src/proto/fileio.pro, |
| 7053 | src/testdir/test_delete.vim, src/testdir/test_alot.vim, |
| 7054 | runtime/doc/eval.txt |
| 7055 | |
| 7056 | Patch 7.4.1108 |
| 7057 | Problem: Expanding "~" halfway a file name. |
| 7058 | Solution: Handle the file name as one name. (Marco Hinz) Add a test. |
| 7059 | Closes #564. |
| 7060 | Files: src/testdir/test27.in, src/testdir/test27.ok, |
| 7061 | src/testdir/test_expand.vim, src/testdir/test_alot.vim, |
| 7062 | src/Makefile, src/misc2.c |
| 7063 | |
| 7064 | Patch 7.4.1109 (after 7.4.1107) |
| 7065 | Problem: MS-Windows doesn't have rmdir(). |
| 7066 | Solution: Add mch_rmdir(). |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 7067 | Files: src/os_win32.c, src/proto/os_win32.pro |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7068 | |
| 7069 | Patch 7.4.1110 |
| 7070 | Problem: Test 108 fails when language is French. |
| 7071 | Solution: Force English messages. (Dominique Pelle) |
| 7072 | Files: src/testdir/test108.in |
| 7073 | |
| 7074 | Patch 7.4.1111 |
| 7075 | Problem: test_expand fails on MS-Windows. |
| 7076 | Solution: Always use forward slashes. Remove references to test27. |
| 7077 | Files: src/testdir/runtest.vim, src/testdir/test_expand.vim, |
| 7078 | src/testdir/Make_dos.mak, src/testdir/Make_all.mak, |
| 7079 | src/testdir/Make_amiga.mak, src/testdir/Make_ming.mak |
| 7080 | |
| 7081 | Patch 7.4.1112 |
| 7082 | Problem: When using ":next" with an illegal file name no error is reported. |
| 7083 | Solution: Give an error message. |
| 7084 | Files: src/ex_cmds2.c |
| 7085 | |
| 7086 | Patch 7.4.1113 (after 7.4.1105) |
| 7087 | Problem: Using {ns} in variable name does not work. (lilydjwg) |
| 7088 | Solution: Fix recognizing colon. Add a test. |
| 7089 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7090 | |
| 7091 | Patch 7.4.1114 (after 7.4.1107) |
| 7092 | Problem: delete() does not work well with symbolic links. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7093 | Solution: Recognize symbolic links. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7094 | Files: src/eval.c, src/fileio.c, src/os_unix.c, src/proto/os_unix.pro, |
| 7095 | src/testdir/test_delete.vim, runtime/doc/eval.txt |
| 7096 | |
| 7097 | Patch 7.4.1115 |
| 7098 | Problem: MS-Windows: make clean in testdir doesn't clean everything. |
| 7099 | Solution: Add command to delete X* directories. (Ken Takata) |
| 7100 | Files: src/testdir/Make_dos.mak |
| 7101 | |
| 7102 | Patch 7.4.1116 |
| 7103 | Problem: delete(x, 'rf') does not delete files starting with a dot. |
| 7104 | Solution: Also delete files starting with a dot. |
| 7105 | Files: src/misc1.c, src/fileio.c, src/vim.h |
| 7106 | |
| 7107 | Patch 7.4.1117 (after 7.4.1116) |
| 7108 | Problem: No longer get "." and ".." in directory list. |
| 7109 | Solution: Do not skip "." and ".." unless EW_DODOT is set. |
| 7110 | Files: src/mics1.c |
| 7111 | |
| 7112 | Patch 7.4.1118 |
| 7113 | Problem: Tests hang in 24 line terminal. |
| 7114 | Solution: Set the 'more' option off. |
| 7115 | Files: src/testdir/runtest.vim |
| 7116 | |
| 7117 | Patch 7.4.1119 |
| 7118 | Problem: argidx() has a wrong value after ":%argdelete". (Yegappan |
| 7119 | Lakshmanan) |
| 7120 | Solution: Correct the value of w_arg_idx. Add a test. |
| 7121 | Files: src/ex_cmds2.c, src/testdir/test_arglist.vim, |
| 7122 | src/testdir/Make_all.mak |
| 7123 | |
| 7124 | Patch 7.4.1120 |
| 7125 | Problem: delete(x, 'rf') fails if a directory is empty. (Lcd) |
| 7126 | Solution: Ignore not finding matches in an empty directory. |
| 7127 | Files: src/fileio.c, src/misc1.c, src/vim.h, src/testdir/test_delete.vim |
| 7128 | |
| 7129 | Patch 7.4.1121 |
| 7130 | Problem: test_expand leaves files behind. |
| 7131 | Solution: Edit another file before deleting, otherwise the swap file |
| 7132 | remains. |
| 7133 | Files: src/testdir/test_expand.vim |
| 7134 | |
| 7135 | Patch 7.4.1122 |
| 7136 | Problem: Test 92 and 93 fail when using gvim on a system with a non utf-8 |
| 7137 | locale. |
| 7138 | Solution: Avoid using .gvimrc by adding -U NONE. (Yukihiro Nakadaira) |
| 7139 | Files: src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 7140 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 7141 | |
| 7142 | Patch 7.4.1123 |
| 7143 | Problem: Using ":argadd" when there are no arguments results in the second |
| 7144 | argument to be the current one. (Yegappan Lakshmanan) |
| 7145 | Solution: Correct the w_arg_idx value. |
| 7146 | Files: src/ex_cmds2.c, src/testdir/test_arglist.vim |
| 7147 | |
| 7148 | Patch 7.4.1124 |
| 7149 | Problem: MS-Windows: dead key behavior is not ideal. |
| 7150 | Solution: Handle dead keys differently when not in Insert or Select mode. |
| 7151 | (John Wellesz, closes #399) |
| 7152 | Files: src/gui_w48.c |
| 7153 | |
| 7154 | Patch 7.4.1125 |
| 7155 | Problem: There is no perleval(). |
| 7156 | Solution: Add perleval(). (Damien) |
| 7157 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c, |
| 7158 | src/if_perl.xs, src/proto/if_perl.pro, src/testdir/Make_all.mak, |
| 7159 | src/testdir/test_perl.vim |
| 7160 | |
| 7161 | Patch 7.4.1126 |
| 7162 | Problem: Can only get the directory of the current window. |
| 7163 | Solution: Add window and tab arguments to getcwd() and haslocaldir(). |
| 7164 | (Thinca, Hirohito Higashi) |
| 7165 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 7166 | src/testdir/test_getcwd.in, src/testdir/test_getcwd.ok, |
| 7167 | runtime/doc/eval.txt, patching file src/eval.c |
| 7168 | |
| 7169 | Patch 7.4.1127 |
| 7170 | Problem: Both old and new style tests for Perl. |
| 7171 | Solution: Merge the old tests with the new style tests. |
| 7172 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_perl.in, |
| 7173 | src/testdir/test_perl.ok, src/testdir/test_perl.vim |
| 7174 | |
| 7175 | Patch 7.4.1128 |
| 7176 | Problem: MS-Windows: delete() does not recognize junctions. |
| 7177 | Solution: Add mch_isrealdir() for MS-Windows. Update mch_is_symbolic_link(). |
| 7178 | (Ken Takata) |
| 7179 | Files: src/fileio.c, src/os_win32.c, src/proto/os_win32.pro |
| 7180 | |
| 7181 | Patch 7.4.1129 |
| 7182 | Problem: Python None value can't be converted to a Vim value. |
| 7183 | Solution: Just use zero. (Damien) |
| 7184 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok, |
| 7185 | src/testdir/test87.in, src/testdir/test87.ok, |
| 7186 | |
| 7187 | Patch 7.4.1130 |
| 7188 | Problem: Memory leak in :vimgrep. |
| 7189 | Solution: Call FreeWild(). (Yegappan Lakshmanan) |
| 7190 | Files: src/quickfix.c |
| 7191 | |
| 7192 | Patch 7.4.1131 |
| 7193 | Problem: New lines in the viminfo file are dropped. |
| 7194 | Solution: Copy lines starting with "|". Fix that when using :rviminfo in a |
| 7195 | function global variables were restored as function-local |
| 7196 | variables. |
| 7197 | Files: src/eval.c, src/structs.h, src/ex_cmds.c, src/misc2.c, |
| 7198 | src/proto/misc2.pro, src/testdir/test_viminfo.vim, |
| 7199 | src/testdir/Make_all.mak, src/testdir/test74.in, |
| 7200 | src/testdir/test74.ok |
| 7201 | |
| 7202 | Patch 7.4.1132 |
| 7203 | Problem: Old style tests for the argument list. |
| 7204 | Solution: Add more new style tests. (Yegappan Lakshmanan) |
| 7205 | Files: src/testdir/test_arglist.vim, src/testdir/test_argument_0count.in, |
| 7206 | src/testdir/test_argument_0count.ok, |
| 7207 | src/testdir/test_argument_count.in, src/Makefile, |
| 7208 | src/testdir/test_argument_count.ok, src/testdir/Make_all.mak |
| 7209 | |
| 7210 | Patch 7.4.1133 |
| 7211 | Problem: Generated function prototypes still have __ARGS(). |
| 7212 | Solution: Generate function prototypes without __ARGS(). |
| 7213 | Files: src/Makefile, src/if_ruby.c, src/os_win32.c, |
| 7214 | src/proto/blowfish.pro, src/proto/buffer.pro, |
| 7215 | src/proto/charset.pro, src/proto/crypt.pro, |
| 7216 | src/proto/crypt_zip.pro, src/proto/diff.pro, |
| 7217 | src/proto/digraph.pro, src/proto/edit.pro, src/proto/eval.pro, |
| 7218 | src/proto/ex_cmds2.pro, src/proto/ex_cmds.pro, |
| 7219 | src/proto/ex_docmd.pro, src/proto/ex_eval.pro, |
| 7220 | src/proto/ex_getln.pro, src/proto/fileio.pro, src/proto/fold.pro, |
| 7221 | src/proto/getchar.pro, src/proto/gui_athena.pro, |
| 7222 | src/proto/gui_beval.pro, src/proto/gui_gtk_gresources.pro, |
| 7223 | src/proto/gui_gtk.pro, src/proto/gui_gtk_x11.pro, |
| 7224 | src/proto/gui_mac.pro, src/proto/gui_motif.pro, |
| 7225 | src/proto/gui_photon.pro, src/proto/gui.pro, |
| 7226 | src/proto/gui_w16.pro, src/proto/gui_w32.pro, |
| 7227 | src/proto/gui_x11.pro, src/proto/gui_xmdlg.pro, |
| 7228 | src/proto/hangulin.pro, src/proto/hardcopy.pro, |
| 7229 | src/proto/hashtab.pro, src/proto/if_cscope.pro, |
| 7230 | src/proto/if_lua.pro, src/proto/if_mzsch.pro, |
| 7231 | src/proto/if_ole.pro, src/proto/if_perl.pro, |
| 7232 | src/proto/if_perlsfio.pro, src/proto/if_python3.pro, |
| 7233 | src/proto/if_python.pro, src/proto/if_ruby.pro, |
| 7234 | src/proto/if_tcl.pro, src/proto/if_xcmdsrv.pro, |
| 7235 | src/proto/main.pro, src/proto/mark.pro, src/proto/mbyte.pro, |
| 7236 | src/proto/memfile.pro, src/proto/memline.pro, src/proto/menu.pro, |
| 7237 | src/proto/message.pro, src/proto/misc1.pro, src/proto/misc2.pro, |
| 7238 | src/proto/move.pro, src/proto/netbeans.pro, src/proto/normal.pro, |
| 7239 | src/proto/ops.pro, src/proto/option.pro, src/proto/os_amiga.pro, |
| 7240 | src/proto/os_beos.pro, src/proto/os_mac_conv.pro, |
| 7241 | src/proto/os_msdos.pro, src/proto/os_mswin.pro, |
| 7242 | src/proto/os_qnx.pro, src/proto/os_unix.pro, src/proto/os_vms.pro, |
| 7243 | src/proto/os_win16.pro, src/proto/os_win32.pro, |
| 7244 | src/proto/popupmnu.pro, src/proto/pty.pro, src/proto/quickfix.pro, |
| 7245 | src/proto/regexp.pro, src/proto/screen.pro, src/proto/search.pro, |
| 7246 | src/proto/sha256.pro, src/proto/spell.pro, src/proto/syntax.pro, |
| 7247 | src/proto/tag.pro, src/proto/termlib.pro, src/proto/term.pro, |
| 7248 | src/proto/ui.pro, src/proto/undo.pro, src/proto/version.pro, |
| 7249 | src/proto/winclip.pro, src/proto/window.pro, |
| 7250 | src/proto/workshop.pro |
| 7251 | |
| 7252 | Patch 7.4.1134 |
| 7253 | Problem: The arglist test fails on MS-Windows. |
| 7254 | Solution: Only check for failure of argedit on Unix. |
| 7255 | Files: src/testdir/test_arglist.vim |
| 7256 | |
| 7257 | Patch 7.4.1135 |
| 7258 | Problem: One more arglist test fails on MS-Windows. |
| 7259 | Solution: Don't edit "Y" after editing "y". |
| 7260 | Files: src/testdir/test_arglist.vim |
| 7261 | |
| 7262 | Patch 7.4.1136 |
| 7263 | Problem: Wrong argument to assert_exception() causes a crash. (reported by |
| 7264 | Coverity) |
| 7265 | Solution: Check for NULL pointer. Add a test. |
| 7266 | Files: src/eval.c, src/testdir/test_assert.vim |
| 7267 | |
| 7268 | Patch 7.4.1137 |
| 7269 | Problem: Illegal memory access when using :copen and :cclose. |
| 7270 | Solution: Avoid that curbuf is invalid. (suggestion by Justin M. Keyes) |
| 7271 | Add a test. |
| 7272 | Files: src/window.c, src/testdir/test_quickfix.vim |
| 7273 | |
| 7274 | Patch 7.4.1138 |
| 7275 | Problem: When running gvim in the foreground some icons are missing. |
| 7276 | (Taylor Venable) |
| 7277 | Solution: Move the call to gui_gtk_register_resource(). (Kazunobu Kuriyama) |
| 7278 | Files: src/gui_gtk_x11.c |
| 7279 | |
| 7280 | Patch 7.4.1139 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7281 | Problem: MS-Windows: getftype() returns "file" for symlink to directory. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7282 | Solution: Make it return "dir". (Ken Takata) |
| 7283 | Files: src/os_mswin.c |
| 7284 | |
| 7285 | Patch 7.4.1140 |
| 7286 | Problem: Recognizing <sid> does not work when the language is Turkish. |
| 7287 | (Christian Brabandt) |
| 7288 | Solution: Use MB_STNICMP() instead of STNICMP(). |
| 7289 | Files: src/eval.c |
| 7290 | |
| 7291 | Patch 7.4.1141 |
| 7292 | Problem: Using searchpair() with a skip expression that uses syntax |
| 7293 | highlighting sometimes doesn't work. (David Fishburn) |
| 7294 | Solution: Reset next_match_idx. (Christian Brabandt) |
| 7295 | Files: src/syntax.c |
| 7296 | |
| 7297 | Patch 7.4.1142 |
| 7298 | Problem: Cannot define keyword characters for a syntax file. |
| 7299 | Solution: Add the ":syn iskeyword" command. (Christian Brabandt) |
| 7300 | Files: runtime/doc/options.txt, runtime/doc/syntax.txt, src/buffer.c, |
| 7301 | src/option.c, src/structs.h, src/syntax.c, |
| 7302 | src/testdir/Make_all.mak, src/testdir/test_syntax.vim |
| 7303 | |
| 7304 | Patch 7.4.1143 |
| 7305 | Problem: Can't sort on floating point numbers. |
| 7306 | Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" |
| 7307 | flag to sort(). |
| 7308 | Files: runtime/doc/change.txt, src/ex_cmds.c, src/testdir/test_sort.vim, |
| 7309 | src/testdir/test57.in, src/testdir/test57.ok, src/eval.c |
| 7310 | |
| 7311 | Patch 7.4.1144 (after 7.4.1143) |
| 7312 | Problem: Can't build on several systems. |
| 7313 | Solution: Include float.h. (Christian Robinson, closes #570 #571) |
| 7314 | Files: src/ex_cmds.c |
| 7315 | |
| 7316 | Patch 7.4.1145 |
| 7317 | Problem: Default features are conservative. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7318 | Solution: Make the default feature set for most of today's systems "huge". |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7319 | Files: src/feature.h, src/configure.in, src/auto/configure |
| 7320 | |
| 7321 | Patch 7.4.1146 |
| 7322 | Problem: Can't build with Python 3 interface using MingW. |
| 7323 | Solution: Update the Makefile. (Yasuhiro Matsumoto, Ken Takata) |
| 7324 | Files: src/Make_cyg_ming.mak |
| 7325 | |
| 7326 | Patch 7.4.1147 |
| 7327 | Problem: Conflict for "chartab". (Kazunobu Kuriyama) |
| 7328 | Solution: Rename the global one to something less obvious. Move it into |
| 7329 | src/chartab.c. |
| 7330 | Files: src/macros.h, src/globals.h, src/charset.c, src/main.c, |
| 7331 | src/option.c, src/screen.c, src/vim.h |
| 7332 | |
| 7333 | Patch 7.4.1148 |
| 7334 | Problem: Default for MingW and Cygwin is still "normal". |
| 7335 | Solution: Use "huge" as default. (Ken Takata) |
| 7336 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 7337 | |
| 7338 | Patch 7.4.1149 (after 7.4.1013) |
| 7339 | Problem: Using the local value of 'errorformat' causes more problems than |
| 7340 | it solves. |
| 7341 | Solution: Revert 7.4.1013. |
| 7342 | Files: runtime/doc/quickfix.txt, src/quickfix.c |
| 7343 | |
| 7344 | Patch 7.4.1150 |
| 7345 | Problem: 'langmap' applies to the first character typed in Select mode. |
| 7346 | (David Watson) |
| 7347 | Solution: Check for SELECTMODE. (Christian Brabandt, closes #572) |
| 7348 | Add the 'x' flag to feedkeys(). |
| 7349 | Files: src/getchar.c, src/normal.c, src/testdir/test_langmap.vim, |
| 7350 | src/ex_docmd.c, src/proto/ex_docmd.pro, src/testdir/Make_all.mak, |
| 7351 | runtime/doc/eval.txt |
| 7352 | |
| 7353 | Patch 7.4.1151 (after 7.4.1150) |
| 7354 | Problem: Missing change to eval.c |
| 7355 | Solution: Also change feedkeys(). |
| 7356 | Files: src/eval.c |
| 7357 | |
| 7358 | Patch 7.4.1152 |
| 7359 | Problem: Langmap test fails with normal build. |
| 7360 | Solution: Check for +langmap feature. |
| 7361 | Files: src/testdir/test_langmap.vim |
| 7362 | |
| 7363 | Patch 7.4.1153 |
| 7364 | Problem: Autocommands triggered by quickfix cannot always get the current |
| 7365 | title value. |
| 7366 | Solution: Call qf_fill_buffer() later. (Christian Brabandt) |
| 7367 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 7368 | |
| 7369 | Patch 7.4.1154 |
| 7370 | Problem: No support for JSON. |
| 7371 | Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true, |
| 7372 | v:null and v:none. |
| 7373 | Files: src/json.c, src/eval.c, src/proto.h, src/structs.h, src/vim.h, |
| 7374 | src/if_lua.c, src/if_mzsch.c, src/if_ruby.c, src/if_py_both.h, |
| 7375 | src/globals.h, src/Makefile, src/Make_bc3.mak, src/Make_bc5.mak, |
| 7376 | src/Make_cyg_ming.mak, src/Make_dice.mak, src/Make_ivc.mak, |
| 7377 | src/Make_manx.mak, src/Make_morph.mak, src/Make_mvc.mak, |
| 7378 | src/Make_sas.mak, src/Make_vms.mms, src/proto/json.pro, |
| 7379 | src/proto/eval.pro, src/testdir/test_json.vim, |
| 7380 | src/testdir/test_alot.vim, Filelist, runtime/doc/eval.txt |
| 7381 | |
| 7382 | Patch 7.4.1155 |
| 7383 | Problem: Build with normal features fails. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7384 | Solution: Always define dict_lookup(). |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7385 | Files: src/eval.c |
| 7386 | |
| 7387 | Patch 7.4.1156 |
| 7388 | Problem: Coverity warns for NULL pointer and ignoring return value. |
| 7389 | Solution: Check for NULL pointer. When dict_add() returns FAIL free the item. |
| 7390 | Files: src/json.c |
| 7391 | |
| 7392 | Patch 7.4.1157 |
| 7393 | Problem: type() does not work for v:true, v:none, etc. |
| 7394 | Solution: Add new type numbers. |
| 7395 | Files: src/eval.c, src/testdir/test_json.vim, src/testdir/test_viml.vim |
| 7396 | |
| 7397 | Patch 7.4.1158 |
| 7398 | Problem: Still using __ARGS(). |
| 7399 | Solution: Remove __ARGS() from eval.c |
| 7400 | Files: src/eval.c |
| 7401 | |
| 7402 | Patch 7.4.1159 |
| 7403 | Problem: Automatically generated function prototypes use __ARGS. |
| 7404 | Solution: Remove __ARGS from osdef.sh. |
| 7405 | Files: src/osdef.sh, src/osdef1.h.in, src/osdef2.h.in |
| 7406 | |
| 7407 | Patch 7.4.1160 |
| 7408 | Problem: No error for jsondecode('"'). |
| 7409 | Solution: Give an error message for missing double quote. |
| 7410 | Files: src/json.c |
| 7411 | |
| 7412 | Patch 7.4.1161 |
| 7413 | Problem: ":argadd" without argument is supposed to add the current buffer |
| 7414 | name to the arglist. |
| 7415 | Solution: Make it work as documented. (Coot, closes #577) |
| 7416 | Files: src/ex_cmds.h, src/ex_cmds2.c, src/testdir/test_arglist.vim |
| 7417 | |
| 7418 | Patch 7.4.1162 |
| 7419 | Problem: Missing error number in MzScheme. (Dominique Pelle) |
| 7420 | Solution: Add a proper error number. |
| 7421 | Files: src/if_mzsch.c |
| 7422 | |
| 7423 | Patch 7.4.1163 |
| 7424 | Problem: Expressions "0 + v:true" and "'' . v:true" cause an error. |
| 7425 | Solution: Return something sensible when using a special variable as a |
| 7426 | number or as a string. (suggested by Damien) |
| 7427 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7428 | |
| 7429 | Patch 7.4.1164 |
| 7430 | Problem: No tests for comparing special variables. Error in jsondecode() |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7431 | not reported. test_json does not work with Japanese system. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7432 | Solution: Set scriptencoding. (Ken Takata) Add a few more tests. Add error. |
| 7433 | Files: src/json.c, src/testdir/test_viml.vim, src/testdir/test_json.vim |
| 7434 | |
| 7435 | Patch 7.4.1165 |
| 7436 | Problem: When defining DYNAMIC_ICONV_DLL in the makefile, the build fails. |
| 7437 | Solution: Add #ifdef's. (Taro Muraoka) Try the newer version first. |
| 7438 | Files: src/mbyte.c, src/os_win32.c |
| 7439 | |
| 7440 | Patch 7.4.1166 |
| 7441 | Problem: Can't encode a Funcref into JSON. jsonencode() doesn't handle the |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 7442 | same list or dict twice properly. (Nikolai Pavlov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7443 | Solution: Give an error. Reset copyID when the list or dict is finished. |
| 7444 | Files: src/json.c, src/proto/json.pro, src/testdir/test_json.vim |
| 7445 | |
| 7446 | Patch 7.4.1167 |
| 7447 | Problem: No tests for "is" and "isnot" with the new variables. |
| 7448 | Solution: Add tests. |
| 7449 | Files: src/testdir/test_viml.vim |
| 7450 | |
| 7451 | Patch 7.4.1168 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 7452 | Problem: This doesn't give the right result: eval(string(v:true)). (Nikolai |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7453 | Pavlov) |
| 7454 | Solution: Make the string "v:true" instead of "true". |
| 7455 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7456 | |
| 7457 | Patch 7.4.1169 |
| 7458 | Problem: The socket I/O is intertwined with the netbeans code. |
| 7459 | Solution: Start refactoring the netbeans communication to split off the |
| 7460 | socket I/O. Add the +channel feature. |
| 7461 | Files: src/channel.c, src/netbeans.c, src/proto/channel.pro, |
| 7462 | src/proto/netbeans.pro, src/proto/gui_w32.pro, src/gui_w32.c, |
| 7463 | src/eval.c, src/os_mswin.c, src/ui.c, src/macros.h, Makefile, |
| 7464 | src/proto.h, src/feature.h, src/os_unix.c, src/vim.h, |
| 7465 | src/configure.in, src/auto/configure, src/config.mk.in, |
| 7466 | src/config.aap.in, src/config.h.in, src/Make_bc5.mak, |
| 7467 | src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 7468 | |
| 7469 | Patch 7.4.1170 (after 7.4.1169) |
| 7470 | Problem: Missing changes in src/Makefile, Filelist. |
| 7471 | Solution: Add the missing changes. |
| 7472 | Files: Filelist, src/Makefile |
| 7473 | |
| 7474 | Patch 7.4.1171 |
| 7475 | Problem: Makefile dependencies are outdated. |
| 7476 | Solution: Run "make depend". Add GTK resource dependencies. |
| 7477 | Files: src/Makefile |
| 7478 | |
| 7479 | Patch 7.4.1172 (after 7.4.1169) |
| 7480 | Problem: Configure is overly positive. |
| 7481 | Solution: Insert "test". |
| 7482 | Files: src/configure.in, src/auto/configure |
| 7483 | |
| 7484 | Patch 7.4.1173 (after 7.4.1168) |
| 7485 | Problem: No test for new behavior of v:true et al. |
| 7486 | Solution: Add a test. |
| 7487 | Files: src/testdir/test_viml.vim |
| 7488 | |
| 7489 | Patch 7.4.1174 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7490 | Problem: Netbeans contains dead code inside #ifndef INIT_SOCKETS. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7491 | Solution: Remove the dead code. |
| 7492 | Files: src/netbeans.c |
| 7493 | |
| 7494 | Patch 7.4.1175 (after 7.4.1169) |
| 7495 | Problem: Can't build with Mingw and Cygwin. |
| 7496 | Solution: Remove extra "endif". (Christian J. Robinson) |
| 7497 | Files: src/Make_cyg_ming.mak |
| 7498 | |
| 7499 | Patch 7.4.1176 |
| 7500 | Problem: Missing change to proto file. |
| 7501 | Solution: Update the proto file. (Charles Cooper) |
| 7502 | Files: src/proto/gui_w32.pro |
| 7503 | |
| 7504 | Patch 7.4.1177 |
| 7505 | Problem: The +channel feature is not in :version output. (Tony Mechelynck) |
| 7506 | Solution: Add the feature string. |
| 7507 | Files: src/version.c |
| 7508 | |
| 7509 | Patch 7.4.1178 |
| 7510 | Problem: empty() doesn't work for the new special variables. |
| 7511 | Solution: Make empty() work. (Damien) |
| 7512 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7513 | |
| 7514 | Patch 7.4.1179 |
| 7515 | Problem: test_writefile and test_viml do not delete the tempfile. |
| 7516 | Solution: Delete the tempfile. (Charles Cooper) Add DeleteTheScript(). |
| 7517 | Files: src/testdir/test_writefile.in, src/testdir/test_viml.vim |
| 7518 | |
| 7519 | Patch 7.4.1180 |
| 7520 | Problem: Crash with invalid argument to glob2regpat(). |
| 7521 | Solution: Check for NULL. (Justin M. Keyes, closes #596) Add a test. |
| 7522 | Files: src/eval.c, src/testdir/test_glob2regpat.vim, |
| 7523 | src/testdir/test_alot.vim |
| 7524 | |
| 7525 | Patch 7.4.1181 |
| 7526 | Problem: free_tv() can't handle special variables. (Damien) |
| 7527 | Solution: Add the variable type. |
| 7528 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7529 | |
| 7530 | Patch 7.4.1182 |
| 7531 | Problem: Still socket code intertwined with netbeans. |
| 7532 | Solution: Move code from netbeans.c to channel.c |
| 7533 | Files: src/channel.c, src/netbeans.c, src/proto/channel.pro, |
| 7534 | src/proto/netbeans.pro, src/gui.c, src/gui_w48.c |
| 7535 | |
| 7536 | Patch 7.4.1183 (after 7.4.1182) |
| 7537 | Problem: MS-Windows build is broken. |
| 7538 | Solution: Remove init in wrong place. |
| 7539 | Files: src/channel.c |
| 7540 | |
| 7541 | Patch 7.4.1184 (after 7.4.1182) |
| 7542 | Problem: MS-Windows build is still broken. |
| 7543 | Solution: Change nbsock to ch_fd. |
| 7544 | Files: src/channel.c |
| 7545 | |
| 7546 | Patch 7.4.1185 |
| 7547 | Problem: Can't build with TCL on some systems. |
| 7548 | Solution: Rename the channel_ functions. |
| 7549 | Files: src/if_tcl.c |
| 7550 | |
| 7551 | Patch 7.4.1186 |
| 7552 | Problem: Error messages for security context are hard to translate. |
| 7553 | Solution: Use one string with %s. (Ken Takata) |
| 7554 | Files: src/os_unix.c |
| 7555 | |
| 7556 | Patch 7.4.1187 |
| 7557 | Problem: MS-Windows channel code only supports one channel. Doesn't build |
| 7558 | without netbeans support. |
| 7559 | Solution: Get the channel index from the socket in the message. Closes #600. |
| 7560 | Files: src/channel.c, src/netbeans.c, src/gui_w48.c, |
| 7561 | src/proto/channel.pro, src/proto/netbeans.pro |
| 7562 | |
| 7563 | Patch 7.4.1188 |
| 7564 | Problem: Using older JSON standard. |
| 7565 | Solution: Update the link. Adjust the text a bit. |
| 7566 | Files: src/json.c, runtime/doc/eval.txt |
| 7567 | |
| 7568 | Patch 7.4.1189 (after 7.4.1165) |
| 7569 | Problem: Using another language on MS-Windows does not work. (Yongwei Wu) |
| 7570 | Solution: Undo the change to try loading libintl-8.dll first. |
| 7571 | Files: src/os_win32.c |
| 7572 | |
| 7573 | Patch 7.4.1190 |
| 7574 | Problem: On OSX the default flag for dlopen() is different. |
| 7575 | Solution: Add RTLD_LOCAL in the configure check. (sv99, closes #604) |
| 7576 | Files: src/configure.in, src/auto/configure |
| 7577 | |
| 7578 | Patch 7.4.1191 |
| 7579 | Problem: The channel feature isn't working yet. |
| 7580 | Solution: Add the connect(), disconnect(), sendexpr() and sendraw() |
| 7581 | functions. Add initial documentation. Add a demo server. |
| 7582 | Files: src/channel.c, src/eval.c, src/proto/channel.pro, |
| 7583 | src/proto/eval.pro, runtime/doc/channel.txt, runtime/doc/eval.txt, |
| 7584 | runtime/doc/Makefile, runtime/tools/demoserver.py |
| 7585 | |
| 7586 | Patch 7.4.1192 |
| 7587 | Problem: Can't build with FEAT_EVAL but without FEAT_MBYTE. (John |
| 7588 | Marriott) |
| 7589 | Solution: Add #ifdef for FEAT_MBYTE. |
| 7590 | Files: src/json.c |
| 7591 | |
| 7592 | Patch 7.4.1193 |
| 7593 | Problem: Can't build the channel feature on MS-Windows. |
| 7594 | Solution: Add #ifdef HAVE_POLL. |
| 7595 | Files: src/channel.c |
| 7596 | |
| 7597 | Patch 7.4.1194 |
| 7598 | Problem: Compiler warning for not using return value of fwrite(). |
| 7599 | Solution: Return OK/FAIL. (Charles Campbell) |
| 7600 | Files: src/channel.c, src/proto/channel.pro |
| 7601 | |
| 7602 | Patch 7.4.1195 |
| 7603 | Problem: The channel feature does not work in the MS-Windows console. |
| 7604 | Solution: Add win32 console support. (Yasuhiro Matsumoto) |
| 7605 | Files: src/channel.c, src/gui_w32.c, src/os_mswin.c, src/os_win32.c, |
| 7606 | src/proto/gui_w32.pro, src/proto/os_mswin.pro, src/vim.h |
| 7607 | |
| 7608 | Patch 7.4.1196 |
| 7609 | Problem: Still using __ARGS. |
| 7610 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7611 | Files: src/arabic.c, src/buffer.c, src/charset.c, src/crypt_zip.c, |
| 7612 | src/diff.c, src/digraph.c, src/edit.c, src/ex_cmds.c, |
| 7613 | src/ex_cmds2.c, src/ex_docmd.c |
| 7614 | |
| 7615 | Patch 7.4.1197 |
| 7616 | Problem: Still using __ARGS. |
| 7617 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7618 | Files: src/ex_eval.c, src/ex_getln.c, src/farsi.c, src/fileio.c, |
| 7619 | src/fold.c, src/getchar.c, src/gui.c, src/gui_at_fs.c, |
| 7620 | gui_at_sb.c, src/gui_athena.c, src/gui_beval.c, src/gui_motif.c, |
| 7621 | src/gui_w32.c, src/gui_w48.c |
| 7622 | |
| 7623 | Patch 7.4.1198 |
| 7624 | Problem: Still using __ARGS. |
| 7625 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7626 | Also remove use of HAVE_STDARG_H. |
| 7627 | Files: src/gui_x11.c, src/hangulin.c, src/hardcopy.c, src/hashtab.c, |
| 7628 | src/if_cscope.c, src/if_python3.c, src/if_sniff.c, |
| 7629 | src/if_xcmdsrv.c, src/main.c, src/mark.c, src/mbyte.c, |
| 7630 | src/memfile.c, src/memfile_test.c, src/memline.c, src/menu.c, |
| 7631 | src/message.c, src/misc1.c, src/misc2.c, src/move.c, |
| 7632 | src/netbeans.c, src/normal.c |
| 7633 | |
| 7634 | Patch 7.4.1199 |
| 7635 | Problem: Still using __ARGS. |
| 7636 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7637 | Files: src/ops.c, src/option.c, src/os_amiga.c, src/os_mac_conv.c, |
| 7638 | src/os_unix.c, src/os_vms.c, src/os_w32exe.c, src/popupmnu.c, |
| 7639 | src/pty.c, src/quickfix.c, src/regexp.c, src/regexp_nfa.c, |
| 7640 | src/screen.c, src/search.c, src/sha256.c, src/spell.c, |
| 7641 | src/syntax.c, src/tag.c, src/term.c, src/termlib.c, src/ui.c, |
| 7642 | src/undo.c, src/version.c, src/window.c |
| 7643 | |
| 7644 | Patch 7.4.1200 |
| 7645 | Problem: Still using __ARGS. |
| 7646 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7647 | Files: src/blowfish.c, src/ex_cmds2.c, src/ex_getln.c, src/fold.c, |
| 7648 | src/gui_beval.c, src/gui_w32.c, src/os_unix.c, src/os_win16.c, |
| 7649 | src/pty.c, src/regexp.c, src/syntax.c, src/xpm_w32.c, |
| 7650 | src/ex_cmds.h, src/globals.h, src/gui_at_sb.h, src/gui_beval.h, |
| 7651 | src/if_cscope.h, src/if_sniff.h, src/nbdebug.h, src/os_unix.h, |
| 7652 | src/proto.h, src/structs.h, src/vim.h, src/xpm_w32.h, |
| 7653 | src/if_perl.xs, src/proto/if_lua.pro, src/proto/pty.pro, |
| 7654 | runtime/tools/xcmdsrv_client.c, |
| 7655 | src/Makefile |
| 7656 | |
| 7657 | Patch 7.4.1201 |
| 7658 | Problem: One more file still using __ARGS. |
| 7659 | Solution: Remove __ARGS in the last file. (script by Hirohito Higashi) |
| 7660 | Files: src/gui_at_sb.c |
| 7661 | |
| 7662 | Patch 7.4.1202 |
| 7663 | Problem: Still one more file still using __ARGS. |
| 7664 | Solution: Remove __ARGS in the last file. (script by Hirohito Higashi) |
| 7665 | (closes #612) |
| 7666 | Files: src/proto/os_mac_conv.pro, src/os_mac_conv.c, src/Makefile |
| 7667 | |
| 7668 | Patch 7.4.1203 |
| 7669 | Problem: Still more files still using __ARGS. |
| 7670 | Solution: Remove __ARGS in really the last files. |
| 7671 | Files: src/proto/if_mzsch.pro, src/if_mzsch.c, src/vim.h, |
| 7672 | src/proto/gui_gtk_gresources.pro, src/proto/gui_mac.pro, |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 7673 | src/proto/if_ole.pro, src/proto/os_qnx.pro, src/Makefile |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7674 | |
| 7675 | Patch 7.4.1204 |
| 7676 | Problem: Latin1 characters cause encoding conversion. |
| 7677 | Solution: Remove the characters. |
| 7678 | Files: src/gui_motif.c |
| 7679 | |
| 7680 | Patch 7.4.1205 |
| 7681 | Problem: Using old style function declarations. |
| 7682 | Solution: Change to new style function declarations. (script by Hirohito |
| 7683 | Higashi) |
| 7684 | Files: src/arabic.c, src/blowfish.c, src/buffer.c, src/channel.c, |
| 7685 | src/charset.c, src/crypt.c, src/crypt_zip.c, src/diff.c, |
| 7686 | src/digraph.c, src/edit.c, src/eval.c |
| 7687 | |
| 7688 | Patch 7.4.1206 |
| 7689 | Problem: Using old style function declarations. |
| 7690 | Solution: Change to new style function declarations. (script by Hirohito |
| 7691 | Higashi) |
| 7692 | Files: src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/ex_eval.c, |
| 7693 | src/ex_getln.c, src/farsi.c, src/fileio.c |
| 7694 | |
| 7695 | Patch 7.4.1207 |
| 7696 | Problem: Using old style function declarations. |
| 7697 | Solution: Change to new style function declarations. (script by Hirohito |
| 7698 | Higashi) |
| 7699 | Files: src/fold.c, src/getchar.c, src/gui_at_fs.c, src/gui_athena.c, |
| 7700 | src/gui_at_sb.c, src/gui_beval.c, src/gui.c, src/gui_gtk.c, |
| 7701 | src/gui_gtk_x11.c, src/gui_mac.c, src/gui_motif.c |
| 7702 | |
| 7703 | Patch 7.4.1208 |
| 7704 | Problem: Using old style function declarations. |
| 7705 | Solution: Change to new style function declarations. (script by Hirohito |
| 7706 | Higashi) |
| 7707 | Files: src/gui_photon.c, src/gui_w32.c, src/gui_w48.c, src/gui_x11.c, |
| 7708 | src/hangulin.c, src/hardcopy.c, src/hashtab.c, src/if_cscope.c, |
| 7709 | src/if_mzsch.c, src/if_perlsfio.c, src/if_python.c, |
| 7710 | src/if_python3.c, src/if_ruby.c, src/if_sniff.c, src/if_tcl.c, |
| 7711 | src/if_xcmdsrv.c, src/integration.c |
| 7712 | |
| 7713 | Patch 7.4.1209 (after 7.4.1207) |
| 7714 | Problem: Can't build with Athena. (Elimar Riesebieter) |
| 7715 | Solution: Fix function declarations. |
| 7716 | Files: src/gui_athena.c, src/gui_x11.c, src/gui_at_sb.c, src/gui_at_fs.c |
| 7717 | |
| 7718 | Patch 7.4.1210 |
| 7719 | Problem: Using old style function declarations. |
| 7720 | Solution: Change to new style function declarations. (script by Hirohito |
| 7721 | Higashi) |
| 7722 | Files: src/main.c, src/mark.c, src/mbyte.c, src/memfile.c, |
| 7723 | src/memfile_test.c, src/memline.c, src/menu.c, src/message.c |
| 7724 | |
| 7725 | Patch 7.4.1211 |
| 7726 | Problem: Using old style function declarations. |
| 7727 | Solution: Change to new style function declarations. (script by Hirohito |
| 7728 | Higashi) |
| 7729 | Files: src/misc1.c, src/misc2.c, src/move.c, src/netbeans.c, |
| 7730 | src/normal.c, src/ops.c, src/option.c |
| 7731 | |
| 7732 | Patch 7.4.1212 (after 7.4.1207) |
| 7733 | Problem: Can't build with Motif. |
| 7734 | Solution: Fix function declaration.(Dominique Pelle) |
| 7735 | Files: src/gui_motif.c |
| 7736 | |
| 7737 | Patch 7.4.1213 |
| 7738 | Problem: Using old style function declarations. |
| 7739 | Solution: Change to new style function declarations. (script by Hirohito |
| 7740 | Higashi) |
| 7741 | Files: src/os_amiga.c, src/os_mac_conv.c, src/os_msdos.d, src/os_mswin.c, |
| 7742 | src/os_qnx.c, src/os_unix.c, src/os_vms.c, src/os_win16.c, |
| 7743 | src/os_win32.c, src/popupmnu.c, src/pty.c, src/quickfix.c, |
| 7744 | src/regexp.c, src/regexp_nfa.c, src/screen.c |
| 7745 | |
| 7746 | Patch 7.4.1214 |
| 7747 | Problem: Using old style function declarations. |
| 7748 | Solution: Change to new style function declarations. (script by Hirohito |
| 7749 | Higashi) |
| 7750 | Files: src/search.c, src/sha256.c, src/spell.c, src/syntax.c, src/tag.c, |
| 7751 | src/term.c, src/termlib.c, src/ui.c, src/undo.c |
| 7752 | |
| 7753 | Patch 7.4.1215 |
| 7754 | Problem: Using old style function declarations. |
| 7755 | Solution: Change to new style function declarations. (script by Hirohito |
| 7756 | Higashi) |
| 7757 | Files: src/version.c, src/winclip.c, src/window.c, src/workshop.c, |
| 7758 | src/xpm_w32.c, runtime/doc/doctags.c, |
| 7759 | runtime/tools/xcmdsrv_client.c, src/po/sjiscorr.c, src/xxd/xxd.c |
| 7760 | |
| 7761 | Patch 7.4.1216 |
| 7762 | Problem: Still using HAVE_STDARG_H. |
| 7763 | Solution: Assume it's always defined. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7764 | Files: src/eval.c, src/misc2.c, src/vim.h, src/proto.h, src/configure.in, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7765 | src/auto/configure, config.h.in, src/os_amiga.h, src/os_msdos.h, |
| 7766 | src/os_vms_conf.h, src/os_win32.h |
| 7767 | |
| 7768 | Patch 7.4.1217 |
| 7769 | Problem: Execution of command on channel doesn't work yet. |
| 7770 | Solution: Implement the "ex" and "normal" commands. |
| 7771 | Files: src/channel.c, src/proto/channel.pro, src/misc2.c, src/eval.c, |
| 7772 | src/ex_docmd.c, src/proto/ex_docmd.pro, src/feature.h |
| 7773 | |
| 7774 | Patch 7.4.1218 |
| 7775 | Problem: Missing change in configure. More changes for function style. |
| 7776 | Solution: Avoid the typos. |
| 7777 | Files: src/configure.in, src/config.h.in, runtime/tools/ccfilter.c, |
| 7778 | src/os_msdos.c |
| 7779 | |
| 7780 | Patch 7.4.1219 |
| 7781 | Problem: Build fails with +channel but without +float. |
| 7782 | Solution: Add #ifdef. |
| 7783 | Files: src/ex_cmds.c |
| 7784 | |
| 7785 | Patch 7.4.1220 |
| 7786 | Problem: Warnings for unused variables in tiny build. (Tony Mechelynck) |
| 7787 | Solution: Move declarations inside #ifdef. (Hirohito Higashi) |
| 7788 | Files: src/ex_cmds.c |
| 7789 | |
| 7790 | Patch 7.4.1221 |
| 7791 | Problem: Including netbeans and channel support in small and tiny builds. |
| 7792 | Build fails with some interfaces. |
| 7793 | Solution: Only include these features in small build and above. Let |
| 7794 | configure fail if trying to enable an interface that won't build. |
| 7795 | Files: src/configure.in, src/auto/configure |
| 7796 | |
| 7797 | Patch 7.4.1222 |
| 7798 | Problem: ":normal" command and others missing in tiny build. |
| 7799 | Solution: Graduate FEAT_EX_EXTRA. |
| 7800 | Files: src/feature.h, src/charset.c, src/eval.c, src/ex_cmds.c, |
| 7801 | src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c, src/getchar.c, |
| 7802 | src/normal.c, src/ui.c, src/version.c, src/globals.h |
| 7803 | |
| 7804 | Patch 7.4.1223 |
| 7805 | Problem: Crash when setting v:errors to a number. |
| 7806 | Solution: Free the typval without assuming its type. (Yasuhiro Matsumoto) |
| 7807 | Files: src/eval.c, src/testdir/test_assert.vim |
| 7808 | |
| 7809 | Patch 7.4.1224 |
| 7810 | Problem: Build problems with GTK on BSD. (Mike Williams) |
| 7811 | Solution: Don't use "$<". Skip building gui_gtk_gresources.h when it doesn't |
| 7812 | work. (Kazunobu Kuriyama) |
| 7813 | Files: src/Makefile |
| 7814 | |
| 7815 | Patch 7.4.1225 |
| 7816 | Problem: Still a few old style function declarations. |
| 7817 | Solution: Make them new style. (Hirohito Higashi) |
| 7818 | Files: runtime/tools/blink.c, src/eval.c, src/ex_cmds2.c, src/ex_getln.c, |
| 7819 | src/fileio.c, src/gui_w32.c, src/gui_x11.c, src/if_perl.xs, |
| 7820 | src/os_unix.c, src/po/sjiscorr.c, src/pty.c |
| 7821 | |
| 7822 | Patch 7.4.1226 |
| 7823 | Problem: GRESOURCE_HDR is unused. |
| 7824 | Solution: Remove it. (Kazunobu Kuriyama) |
| 7825 | Files: src/configure.in, src/auto/configure, src/config.mk.in |
| 7826 | |
| 7827 | Patch 7.4.1227 |
| 7828 | Problem: Compiler warnings. |
| 7829 | Solution: Add UNUSED. Add type cast. (Yegappan Lakshmanan) |
| 7830 | Files: src/getchar.c, src/os_macosx.m |
| 7831 | |
| 7832 | Patch 7.4.1228 |
| 7833 | Problem: copy() and deepcopy() fail with special variables. (Nikolai |
| 7834 | Pavlov) |
| 7835 | Solution: Make it work. Add a test. Closes #614. |
| 7836 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7837 | |
| 7838 | Patch 7.4.1229 |
| 7839 | Problem: "eval" and "expr" channel commands don't work yet. |
| 7840 | Solution: Implement them. Update the error numbers. Also add "redraw". |
| 7841 | Files: src/channel.c, src/eval.c, src/json.c, src/ex_docmd.c, |
| 7842 | src/proto/channel.pro, src/proto/json.pro, src/proto/ex_docmd.pro, |
| 7843 | runtime/doc/channel.txt |
| 7844 | |
| 7845 | Patch 7.4.1230 |
| 7846 | Problem: Win32: opening a channel may hang. Not checking for messages |
| 7847 | while waiting for characters. |
| 7848 | Solution: Add a zero timeout. Call parse_queued_messages(). (Yasuhiro |
| 7849 | Matsumoto) |
| 7850 | Files: src/os_win32.c |
| 7851 | |
| 7852 | Patch 7.4.1231 |
| 7853 | Problem: JSON messages are not parsed properly. |
| 7854 | Solution: Queue received messages. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 7855 | Files: src/eval.c src/channel.c, src/json.c, src/proto/eval.pro, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7856 | src/proto/channel.pro, src/proto/json.pro, src/structs.h |
| 7857 | |
| 7858 | Patch 7.4.1232 |
| 7859 | Problem: Compiler warnings when the Sniff feature is enabled. |
| 7860 | Solution: Add UNUSED. |
| 7861 | Files: src/gui_gtk_x11.c |
| 7862 | |
| 7863 | Patch 7.4.1233 |
| 7864 | Problem: Channel command may cause a crash. |
| 7865 | Solution: Check for NULL argument. (Damien) |
| 7866 | Files: src/channel.c |
| 7867 | |
| 7868 | Patch 7.4.1234 |
| 7869 | Problem: Demo server only runs with Python 2. |
| 7870 | Solution: Make it run with Python 3 as well. (Ken Takata) |
| 7871 | Files: runtime/tools/demoserver.py |
| 7872 | |
| 7873 | Patch 7.4.1235 (after 7.4.1231) |
| 7874 | Problem: Missing change to eval.c. |
| 7875 | Solution: Include that change. |
| 7876 | Files: src/eval.c |
| 7877 | |
| 7878 | Patch 7.4.1236 |
| 7879 | Problem: When "syntax manual" was used switching between buffers removes |
| 7880 | the highlighting. |
| 7881 | Solution: Set the syntax option without changing the value. (Anton |
| 7882 | Lindqvist) |
| 7883 | Files: runtime/syntax/manual.vim |
| 7884 | |
| 7885 | Patch 7.4.1237 |
| 7886 | Problem: Can't translate message without adding a line break. |
| 7887 | Solution: Join the two parts of the message. |
| 7888 | Files: src/memline.c |
| 7889 | |
| 7890 | Patch 7.4.1238 |
| 7891 | Problem: Can't handle two messages right after each other. |
| 7892 | Solution: Find the end of the JSON. Read more when incomplete. Add a C |
| 7893 | test for the JSON decoding. |
| 7894 | Files: src/channel.c, src/json.c, src/proto/json.pro, src/eval.c, |
| 7895 | src/Makefile, src/json_test.c, src/memfile_test.c, src/structs.h |
| 7896 | |
| 7897 | Patch 7.4.1239 |
| 7898 | Problem: JSON message after the first one is dropped. |
| 7899 | Solution: Put remainder of message back in the queue. |
| 7900 | Files: src/channel.c |
| 7901 | |
| 7902 | Patch 7.4.1240 |
| 7903 | Problem: Visual studio tools are noisy. |
| 7904 | Solution: Suppress startup info. (Mike Williams) |
| 7905 | Files: src/GvimExt/Makefile, src/Make_mvc.mak, src/tee/Make_mvc.mak |
| 7906 | |
| 7907 | Patch 7.4.1241 (after 7.4.1238) |
| 7908 | Problem: Missing change in Makefile due to diff mismatch |
| 7909 | Solution: Update the list of object files. |
| 7910 | Files: src/Makefile |
| 7911 | |
| 7912 | Patch 7.4.1242 (after 7.4.1238) |
| 7913 | Problem: json_test fails without the eval feature. |
| 7914 | Solution: Add #ifdef. |
| 7915 | Files: src/json_test.c |
| 7916 | |
| 7917 | Patch 7.4.1243 |
| 7918 | Problem: Compiler warning for uninitialized variable. |
| 7919 | Solution: Initialize it. (Elias Diem) |
| 7920 | Files: src/json.c |
| 7921 | |
| 7922 | Patch 7.4.1244 |
| 7923 | Problem: The channel functions don't sort together. |
| 7924 | Solution: Use a common "ch_" prefix. |
| 7925 | Files: src/eval.c, runtime/doc/eval.txt, runtime/tools/demoserver.py |
| 7926 | |
| 7927 | Patch 7.4.1245 |
| 7928 | Problem: File missing from distribution. |
| 7929 | Solution: Add json_test.c. |
| 7930 | Files: Filelist |
| 7931 | |
| 7932 | Patch 7.4.1246 |
| 7933 | Problem: The channel functionality isn't tested. |
| 7934 | Solution: Add a test using a Python test server. |
| 7935 | Files: src/channel.c, src/proto/channel.pro, |
| 7936 | src/testdir/test_channel.vim, src/testdir/test_channel.py, |
| 7937 | src/testdir/Make_all.mak |
| 7938 | |
| 7939 | Patch 7.4.1247 |
| 7940 | Problem: The channel test doesn't run on MS-Windows. |
| 7941 | Solution: Make it work on the MS-Windows console. (Ken Takata) |
| 7942 | Files: src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 7943 | |
| 7944 | Patch 7.4.1248 |
| 7945 | Problem: Can't reliably stop the channel test server. Can't start the |
| 7946 | server if the python file is not executable. |
| 7947 | Solution: Use "pkill" instead of "killall". Run the python file as an |
| 7948 | argument instead of as an executable. |
| 7949 | Files: src/testdir/test_channel.vim |
| 7950 | |
| 7951 | Patch 7.4.1249 |
| 7952 | Problem: Crash when the process a channel is connected to exits. |
| 7953 | Solution: Use the file descriptor properly. Add a test. (Damien) |
| 7954 | Also add a test for eval(). |
| 7955 | Files: src/channel.c, src/testdir/test_channel.py, |
| 7956 | src/testdir/test_channel.vim |
| 7957 | |
| 7958 | Patch 7.4.1250 |
| 7959 | Problem: Running tests in shadow directory fails. |
| 7960 | Solution: Also link testdir/*.py |
| 7961 | Files: src/Makefile |
| 7962 | |
| 7963 | Patch 7.4.1251 |
| 7964 | Problem: New test file missing from distribution. |
| 7965 | Solution: Add src/testdir/*.py. |
| 7966 | Files: Filelist |
| 7967 | |
| 7968 | Patch 7.4.1252 |
| 7969 | Problem: The channel test server may receive two messages concatenated. |
| 7970 | Solution: Split the messages. |
| 7971 | Files: src/testdir/test_channel.py |
| 7972 | |
| 7973 | Patch 7.4.1253 |
| 7974 | Problem: Python test server not displaying second of two commands. |
| 7975 | Solaris doesn't have "pkill --full". |
| 7976 | Solution: Also echo the second command. Use "pkill -f". |
| 7977 | Files: src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 7978 | |
| 7979 | Patch 7.4.1254 |
| 7980 | Problem: Opening a second channel causes a crash. (Ken Takata) |
| 7981 | Solution: Don't re-allocate the array with channels. |
| 7982 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 7983 | src/testdir/test_channel.py |
| 7984 | |
| 7985 | Patch 7.4.1255 |
| 7986 | Problem: Crash for channel "eval" command without third argument. |
| 7987 | Solution: Check for missing argument. |
| 7988 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 7989 | src/testdir/test_channel.py |
| 7990 | |
| 7991 | Patch 7.4.1256 |
| 7992 | Problem: On Mac sys.exit(0) doesn't kill the test server. |
| 7993 | Solution: Use self.server.shutdown(). (Jun Takimoto) |
| 7994 | Files: src/testdir/test_channel.py |
| 7995 | |
| 7996 | Patch 7.4.1257 |
| 7997 | Problem: Channel test fails in some configurations. |
| 7998 | Solution: Add check for the +channel feature. |
| 7999 | Files: src/testdir/test_channel.vim |
| 8000 | |
| 8001 | Patch 7.4.1258 |
| 8002 | Problem: The channel test can fail if messages arrive later. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 8003 | Solution: Add a short sleep. (Jun Takimoto) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8004 | Files: src/testdir/test_channel.vim |
| 8005 | |
| 8006 | Patch 7.4.1259 |
| 8007 | Problem: No test for what patch 7.3.414 fixed. |
| 8008 | Solution: Add a test. (Elias Diem) |
| 8009 | Files: src/testdir/test_increment.vim |
| 8010 | |
| 8011 | Patch 7.4.1260 |
| 8012 | Problem: The channel feature doesn't work on Win32 GUI. |
| 8013 | Solution: Use WSAGetLastError(). (Ken Takata) |
| 8014 | Files: src/channel.c, src/testdir/test_channel.vim, src/vim.h |
| 8015 | |
| 8016 | Patch 7.4.1261 |
| 8017 | Problem: Pending channel messages are garbage collected. Leaking memory in |
| 8018 | ch_sendexpr(). Leaking memory for a decoded JSON string. |
| 8019 | Solution: Mark the message list as used. Free the encoded JSON. Don't save |
| 8020 | the JSON string. |
| 8021 | Files: src/eval.c, src/channel.c, src/json.c, src/proto/channel.pro |
| 8022 | |
| 8023 | Patch 7.4.1262 |
| 8024 | Problem: The channel callback is not invoked. |
| 8025 | Solution: Make a list of pending callbacks. |
| 8026 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 8027 | src/testdir/test_channel.vim |
| 8028 | |
| 8029 | Patch 7.4.1263 |
| 8030 | Problem: ch_open() hangs when the server isn't running. |
| 8031 | Solution: Add a timeout. Use a dict to pass arguments. (Yasuhiro Matsumoto) |
| 8032 | Files: runtime/doc/eval.txt, runtime/doc/channel.txt, src/channel.c, |
| 8033 | src/eval.c, src/netbeans.c, src/os_win32.c, src/proto/channel.pro, |
| 8034 | src/testdir/test_channel.vim |
| 8035 | |
| 8036 | Patch 7.4.1264 |
| 8037 | Problem: Crash when receiving an empty array. |
| 8038 | Solution: Check for array with wrong number of arguments. (Damien) |
| 8039 | Files: src/channel.c, src/eval.c, src/testdir/test_channel.py, |
| 8040 | src/testdir.test_channel.vim |
| 8041 | |
| 8042 | Patch 7.4.1265 |
| 8043 | Problem: Not all channel commands are tested. |
| 8044 | Solution: Add a test for "normal", "expr" and "redraw". |
| 8045 | Files: src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 8046 | |
| 8047 | Patch 7.4.1266 |
| 8048 | Problem: A BufAdd autocommand may cause an ml_get error (Christian |
| 8049 | Brabandt) |
| 8050 | Solution: Increment RedrawingDisabled earlier. |
| 8051 | Files: src/ex_cmds.c |
| 8052 | |
| 8053 | Patch 7.4.1267 |
| 8054 | Problem: Easy to miss handling all types of variables. |
| 8055 | Solution: Change the variable type into an enum. |
| 8056 | Files: src/structs.h, src/eval.c |
| 8057 | |
| 8058 | Patch 7.4.1268 |
| 8059 | Problem: Waittime is used as seconds instead of milliseconds. (Hirohito |
| 8060 | Higashi) |
| 8061 | Solution: Divide by 1000. |
| 8062 | Files: src/channel.c |
| 8063 | |
| 8064 | Patch 7.4.1269 |
| 8065 | Problem: Encoding {'key':v:none} to JSON doesn't give an error (Tyru) |
| 8066 | Solution: Give an error. |
| 8067 | Files: src/json.c, src/testdir/test_json.vim |
| 8068 | |
| 8069 | Patch 7.4.1270 |
| 8070 | Problem: Warnings for missing values in switch. |
| 8071 | Solution: Change switch to if-else or add values. |
| 8072 | Files: src/if_py_both.h, src/if_python.c, src/if_python3.c |
| 8073 | |
| 8074 | Patch 7.4.1271 |
| 8075 | Problem: assert_false(v:false) reports an error. (Nikolai Pavlov) |
| 8076 | Solution: Recognize v:true and v:false. (Closes #625) |
| 8077 | Files: src/eval.c, src/testdir/test_assert.vim |
| 8078 | |
| 8079 | Patch 7.4.1272 (after 7.4.1270) |
| 8080 | Problem: Using future enum value. |
| 8081 | Solution: Remove it. |
| 8082 | Files: src/if_python.c, src/if_python3.c |
| 8083 | |
| 8084 | Patch 7.4.1273 (after 7.4.1271) |
| 8085 | Problem: assert_false(v:false) still fails. |
| 8086 | Solution: Fix the typo. |
| 8087 | Files: src/eval.c |
| 8088 | |
| 8089 | Patch 7.4.1274 |
| 8090 | Problem: Cannot run a job. |
| 8091 | Solution: Add job_start(), job_status() and job_stop(). Currently only works |
| 8092 | for Unix. |
| 8093 | Files: src/eval.c, src/structs.h, runtime/doc/eval.txt, src/os_unix.c, |
| 8094 | src/proto/os_unix.pro, src/feature.h, src/version.c, |
| 8095 | src/testdir/test_channel.vim |
| 8096 | |
| 8097 | Patch 7.4.1275 (after 7.4.1274) |
| 8098 | Problem: Build fails on MS-Windows. |
| 8099 | Solution: Fix wrong #ifdef. |
| 8100 | Files: src/eval.c |
| 8101 | |
| 8102 | Patch 7.4.1276 |
| 8103 | Problem: Warning for not using return value of fcntl(). |
| 8104 | Solution: Explicitly ignore the return value. |
| 8105 | Files: src/fileio.c, src/channel.c, src/memfile.c, src/memline.c |
| 8106 | |
| 8107 | Patch 7.4.1277 |
| 8108 | Problem: Compiler can complain about missing enum value in switch with some |
| 8109 | combination of features. |
| 8110 | Solution: Remove #ifdefs around case statements. |
| 8111 | Files: src/eval.c |
| 8112 | |
| 8113 | Patch 7.4.1278 |
| 8114 | Problem: When jsonencode() fails it still returns something. |
| 8115 | Solution: Return an empty string on failure. |
| 8116 | Files: src/json.c, src/channel.c, src/testdir/test_json.vim, |
| 8117 | src/testdir/test_channel.vim, src/testdir/test_channel.py |
| 8118 | |
| 8119 | Patch 7.4.1279 |
| 8120 | Problem: jsonencode() is not producing strict JSON. |
| 8121 | Solution: Add jsencode() and jsdecode(). Make jsonencode() and jsondecode() |
| 8122 | strict. |
| 8123 | Files: src/json.c, src/json_test.c, src/proto/json.pro, src/channel.c, |
| 8124 | src/proto/channel.pro, src/eval.c, src/vim.h, src/structs.h, |
| 8125 | runtime/doc/eval.txt, runtime/doc/channel.txt, |
| 8126 | src/testdir/test_json.vim |
| 8127 | |
| 8128 | Patch 7.4.1280 |
| 8129 | Problem: Missing case value. |
| 8130 | Solution: Add VAR_JOB. |
| 8131 | Files: src/if_python.c, src/if_python3.c |
| 8132 | |
| 8133 | Patch 7.4.1281 |
| 8134 | Problem: No test for skipping over code that isn't evaluated. |
| 8135 | Solution: Add a test with code that would fail when not skipped. |
| 8136 | Files: src/testdir/test_viml.vim |
| 8137 | |
| 8138 | Patch 7.4.1282 |
| 8139 | Problem: Crash when evaluating the pattern of ":catch" causes an error. |
| 8140 | (Dominique Pelle) |
| 8141 | Solution: Block error messages at this point. |
| 8142 | Files: src/ex_eval.c |
| 8143 | |
| 8144 | Patch 7.4.1283 |
| 8145 | Problem: The job feature isn't available on MS-Windows. |
| 8146 | Solution: Add the job feature. Fix argument of job_stop(). (Yasuhiro |
| 8147 | Matsumoto) |
| 8148 | Files: src/eval.c, src/feature.h, src/os_win32.c, src/proto/os_win32.pro |
| 8149 | |
| 8150 | Patch 7.4.1284 (after 7.4.1282) |
| 8151 | Problem: Test 49 fails. |
| 8152 | Solution: Check for a different error message. |
| 8153 | Files: src/testdir/test49.vim |
| 8154 | |
| 8155 | Patch 7.4.1285 |
| 8156 | Problem: Cannot measure elapsed time. |
| 8157 | Solution: Add reltimefloat(). |
| 8158 | Files: src/ex_cmds2.c, src/eval.c, src/proto/ex_cmds2.pro, |
| 8159 | src/testdir/test_reltime.vim, src/testdir/test_alot.vim |
| 8160 | |
| 8161 | Patch 7.4.1286 |
| 8162 | Problem: ch_open() with a timeout doesn't work correctly. |
| 8163 | Solution: Change how select() is used. Don't give an error on timeout. |
| 8164 | Add a test for ch_open() failing. |
| 8165 | Files: src/channel.c, src/testdir/test_channel.vim |
| 8166 | |
| 8167 | Patch 7.4.1287 (after 7.4.1286) |
| 8168 | Problem: Channel test fails. |
| 8169 | Solution: Use reltimefloat(). |
| 8170 | Files: src/testdir/test_channel.vim |
| 8171 | |
| 8172 | Patch 7.4.1288 |
| 8173 | Problem: ch_sendexpr() does not use JS encoding. |
| 8174 | Solution: Use the encoding that fits the channel mode. Refuse using |
| 8175 | ch_sendexpr() on a raw channel. |
| 8176 | Files: src/channel.c, src/proto/channel.pro, src/eval.c |
| 8177 | |
| 8178 | Patch 7.4.1289 |
| 8179 | Problem: Channel test fails on MS-Windows, connect() takes too long. |
| 8180 | Solution: Adjust the test for MS-Windows using "waittime". |
| 8181 | Files: src/channel.c, src/testdir/test_channel.vim |
| 8182 | |
| 8183 | Patch 7.4.1290 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8184 | Problem: Coverity complains about unnecessary check for NULL. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8185 | Solution: Remove the check. |
| 8186 | Files: src/eval.c |
| 8187 | |
| 8188 | Patch 7.4.1291 |
| 8189 | Problem: On MS-Windows the channel test server doesn't quit. |
| 8190 | Solution: Use return instead of break. (Ken Takata) |
| 8191 | Files: src/testdir/test_channel.py |
| 8192 | |
| 8193 | Patch 7.4.1292 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8194 | Problem: Some compilers complain about uninitialized variable, even though |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8195 | all possible cases are handled. (Dominique Pelle) |
| 8196 | Solution: Add a default initialization. |
| 8197 | Files: src/eval.c |
| 8198 | |
| 8199 | Patch 7.4.1293 |
| 8200 | Problem: Sometimes a channel may hang waiting for a message that was |
| 8201 | already discarded. (Ken Takata) |
| 8202 | Solution: Store the ID of the message blocking on in the channel. |
| 8203 | Files: src/channel.c |
| 8204 | |
| 8205 | Patch 7.4.1294 |
| 8206 | Problem: job_stop() only kills the started process. |
| 8207 | Solution: Send the signal to the process group. (Olaf Dabrunz) |
| 8208 | Files: src/os_unix.c |
| 8209 | |
| 8210 | Patch 7.4.1295 |
| 8211 | Problem: string(job) doesn't work well on MS-Windows. |
| 8212 | Solution: Use the process ID. (Yasuhiro Matsumoto) |
| 8213 | Files: src/eval.c |
| 8214 | |
| 8215 | Patch 7.4.1296 |
| 8216 | Problem: Cursor changes column with up motion when the matchparen plugin |
| 8217 | saves and restores the cursor position. (Martin Kunev) |
| 8218 | Solution: Make sure curswant is updated before invoking the autocommand. |
| 8219 | Files: src/edit.c |
| 8220 | |
| 8221 | Patch 7.4.1297 |
| 8222 | Problem: On Mac test_channel leaves python instances running. |
| 8223 | Solution: Use a small waittime to make ch_open() work. (Ozaki Kiichi) |
| 8224 | Files: src/testdir/test_channel.vim |
| 8225 | |
| 8226 | Patch 7.4.1298 |
| 8227 | Problem: When the channel test fails in an unexpected way the server keeps |
| 8228 | running. |
| 8229 | Solution: Use try/catch. (Ozaki Kiichi) |
| 8230 | Files: src/testdir/test_channel.vim |
| 8231 | |
| 8232 | Patch 7.4.1299 |
| 8233 | Problem: When the server sends a message with ID zero the channel handler |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 8234 | is not invoked. (Christian J. Robinson) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8235 | Solution: Recognize zero value for the request ID. Add a test for invoking |
| 8236 | the channel handler. |
| 8237 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 8238 | src/testdir/test_channel.py |
| 8239 | |
| 8240 | Patch 7.4.1300 |
| 8241 | Problem: Cannot test CursorMovedI because there is typeahead. |
| 8242 | Solution: Add disable_char_avail_for_testing(). |
| 8243 | Files: src/eval.c, src/getchar.c, src/globals.h, |
| 8244 | src/testdir/test_cursor_func.vim, src/testdir/README.txt |
| 8245 | |
| 8246 | Patch 7.4.1301 |
| 8247 | Problem: Missing options in ch_open(). |
| 8248 | Solution: Add s:chopt like in the other calls. (Ozaki Kiichi) |
| 8249 | Files: src/testdir/test_channel.vim |
| 8250 | |
| 8251 | Patch 7.4.1302 |
| 8252 | Problem: Typo in struct field name. (Ken Takata) |
| 8253 | Solution: Rename jf_pi to jv_pi. |
| 8254 | Files: src/eval.c, src/os_win32.c, src/structs.h |
| 8255 | |
| 8256 | Patch 7.4.1303 |
| 8257 | Problem: A Funcref is not accepted as a callback. |
| 8258 | Solution: Make a Funcref work. (Damien) |
| 8259 | Files: src/eval.c, src/testdir/test_channel.vim |
| 8260 | |
| 8261 | Patch 7.4.1304 |
| 8262 | Problem: Function names are difficult to read. |
| 8263 | Solution: Rename jsonencode to json_encode, jsondecode to json_decode, |
| 8264 | jsencode to js_encode and jsdecode to js_decode. |
| 8265 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_json.vim |
| 8266 | |
| 8267 | Patch 7.4.1305 |
| 8268 | Problem: "\%1l^#.*" does not match on a line starting with "#". |
| 8269 | Solution: Do not clear the start-of-line flag. (Christian Brabandt) |
| 8270 | Files: src/regexp.c, src/regexp_nfa.c, src/testdir/test36.in, |
| 8271 | src/testdir/test36.ok |
| 8272 | |
| 8273 | Patch 7.4.1306 |
| 8274 | Problem: Job control doesn't work well on MS-Windows. |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 8275 | Solution: Various fixes. (Ken Takata, Ozaki Kiichi, Yukihiro Nakadaira, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8276 | Yasuhiro Matsumoto) |
| 8277 | Files: src/Make_mvc.mak, src/eval.c, src/os_unix.c, src/os_win32.c, |
| 8278 | src/proto/os_unix.pro, src/proto/os_win32.pro, src/structs.h |
| 8279 | |
| 8280 | Patch 7.4.1307 |
| 8281 | Problem: Some channel tests fail on MS-Windows. |
| 8282 | Solution: Disable the failing tests temporarily. |
| 8283 | Files: src/testdir/test_channel.vim |
| 8284 | |
| 8285 | Patch 7.4.1308 (after 7.4.1307) |
| 8286 | Problem: Typo in test. |
| 8287 | Solution: Change endf to endif. |
| 8288 | Files: src/testdir/test_channel.vim |
| 8289 | |
| 8290 | Patch 7.4.1309 |
| 8291 | Problem: When a test fails not all relevant info is listed. |
| 8292 | Solution: Add the errors to the messages. |
| 8293 | Files: src/testdir/runtest.vim |
| 8294 | |
| 8295 | Patch 7.4.1310 |
| 8296 | Problem: Jobs don't open a channel. |
| 8297 | Solution: Create pipes and add them to the channel. Add ch_logfile(). |
| 8298 | Only Unix for now. |
| 8299 | Files: src/channel.c, src/eval.c, src/os_unix.c, src/structs.h, |
| 8300 | src/gui_w48.c, src/proto/channel.pro, src/testdir/test_channel.vim, |
| 8301 | src/testdir/test_channel_pipe.py, runtime/doc/eval.txt |
| 8302 | |
| 8303 | Patch 7.4.1311 (after 7.4.1310) |
| 8304 | Problem: sock_T is defined too late. |
| 8305 | Solution: Move it up. |
| 8306 | Files: src/vim.h |
| 8307 | |
| 8308 | Patch 7.4.1312 (after 7.4.1311) |
| 8309 | Problem: sock_T is not defined without the +channel feature. |
| 8310 | Solution: Always define it. |
| 8311 | Files: src/vim.h |
| 8312 | |
| 8313 | Patch 7.4.1313 |
| 8314 | Problem: MS-Windows: Using socket after it was closed causes an exception. |
| 8315 | Solution: Don't give an error when handling WM_NETBEANS. Re-enable tests |
| 8316 | for MS-Windows. |
| 8317 | Files: src/gui_w48.c, src/testdir/test_channel.vim |
| 8318 | |
| 8319 | Patch 7.4.1314 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8320 | Problem: Warning for uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8321 | Solution: Initialize it. (Dominique Pelle) |
| 8322 | Files: src/channel.c |
| 8323 | |
| 8324 | Patch 7.4.1315 |
| 8325 | Problem: Using a channel handle does not allow for freeing it when unused. |
| 8326 | Solution: Add the Channel variable type. |
| 8327 | Files: src/structs.h, src/channel.c, src/misc2.c, src/eval.c, |
| 8328 | src/if_python.c, src/if_python3.c, src/json.c, src/gui_w48.c, |
| 8329 | src/netbeans.c, src/proto/channel.pro, src/os_unix.c, |
| 8330 | src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 8331 | |
| 8332 | Patch 7.4.1316 |
| 8333 | Problem: Can't build MS-Windows console version. (Tux) |
| 8334 | Solution: Add #ifdefs. |
| 8335 | Files: src/eval.c |
| 8336 | |
| 8337 | Patch 7.4.1317 |
| 8338 | Problem: MS-Windows: channel test fails. |
| 8339 | Solution: Temporarily disable Test_connect_waittime(). |
| 8340 | Files: src/testdir/test_channel.vim |
| 8341 | |
| 8342 | Patch 7.4.1318 |
| 8343 | Problem: Channel with pipes doesn't work in GUI. |
| 8344 | Solution: Register input handlers for pipes. |
| 8345 | Files: src/structs.h, src/feature.h, src/channel.c, src/eval.c, |
| 8346 | src/os_unix.c, src/os_win32.c, src/gui_w48.c, src/proto/channel.pro |
| 8347 | |
| 8348 | Patch 7.4.1319 (after 7.4.1318) |
| 8349 | Problem: Tests fail on MS-Windows and on Unix with GUI. |
| 8350 | Solution: Fix unregistering. |
| 8351 | Files: src/structs.h, src/channel.c, src/os_unix.c, src/os_win32.c, |
| 8352 | src/proto/channel.pro |
| 8353 | |
| 8354 | Patch 7.4.1320 |
| 8355 | Problem: Building with Cygwin or MingW with channel but without Netbeans |
| 8356 | doesn't work. |
| 8357 | Solution: Set NETBEANS to "no" when not used. |
| 8358 | Files: src/Make_cyg_ming.mak |
| 8359 | |
| 8360 | Patch 7.4.1321 |
| 8361 | Problem: Compiler complains about missing statement. |
| 8362 | Solution: Add an empty statement. (Andrei Olsen) |
| 8363 | Files: src/os_win32.c |
| 8364 | |
| 8365 | Patch 7.4.1322 |
| 8366 | Problem: Crash when unletting the variable that holds the channel in a |
| 8367 | callback function. (Christian Robinson) |
| 8368 | Solution: Increase the reference count while invoking the callback. |
| 8369 | Files: src/eval.c, src/channel.c, src/proto/eval.pro, |
| 8370 | src/testdir/test_channel.vim |
| 8371 | |
| 8372 | Patch 7.4.1323 |
| 8373 | Problem: Do not get warnings when building with MingW. |
| 8374 | Solution: Remove the -w flag. (Ken Takata) |
| 8375 | Files: src/Make_cyg_ming.mak |
| 8376 | |
| 8377 | Patch 7.4.1324 |
| 8378 | Problem: Channels with pipes don't work on MS-Windows. |
| 8379 | Solution: Add pipe I/O support. (Yasuhiro Matsumoto) |
| 8380 | Files: src/channel.c, src/os_win32.c, src/proto/channel.pro, |
| 8381 | src/structs.h, src/vim.h, src/testdir/test_channel.vim |
| 8382 | |
| 8383 | Patch 7.4.1325 |
| 8384 | Problem: Channel test fails on difference between Unix and DOS line endings. |
| 8385 | Solution: Strip off CR. Make assert show difference better. |
| 8386 | Files: src/eval.c, src/channel.c |
| 8387 | |
| 8388 | Patch 7.4.1326 |
| 8389 | Problem: Build rules are bit too complicated. |
| 8390 | Solution: Remove -lwsock32 from Netbeans, it's already added for the channel |
| 8391 | feature that it depends on. (Tony Mechelynck) |
| 8392 | Files: src/Make_cyg_ming.mak |
| 8393 | |
| 8394 | Patch 7.4.1327 |
| 8395 | Problem: Channel test doesn't work if Python executable is python.exe. |
| 8396 | Solution: Find py.exe or python.exe. (Ken Takata) |
| 8397 | Files: src/testdir/test_channel.vim |
| 8398 | |
| 8399 | Patch 7.4.1328 |
| 8400 | Problem: Can't compile with +job but without +channel. (John Marriott) |
| 8401 | Solution: Add more #ifdefs. |
| 8402 | Files: src/os_unix.c |
| 8403 | |
| 8404 | Patch 7.4.1329 |
| 8405 | Problem: Crash when using channel that failed to open. |
| 8406 | Solution: Check for NULL. Update messages. (Yukihiro Nakadaira) |
| 8407 | Files: src/channel.c, src/eval.c, src/testdir/test_channel.vim |
| 8408 | |
| 8409 | Patch 7.4.1330 |
| 8410 | Problem: fd_read() has an unused argument. |
| 8411 | Solution: Remove the timeout. (Yasuhiro Matsumoto) |
| 8412 | Files: src/channel.c |
| 8413 | |
| 8414 | Patch 7.4.1331 |
| 8415 | Problem: Crash when closing the channel in a callback. (Christian J. |
| 8416 | Robinson) |
| 8417 | Solution: Take the callback out of the list before invoking it. |
| 8418 | Files: src/channel.c, src/testdir/test_channel.vim |
| 8419 | |
| 8420 | Patch 7.4.1332 |
| 8421 | Problem: Problem using Python3 when compiled with MingW. |
| 8422 | Solution: Define PYTHON3_HOME as a wide character string. (Yasuhiro |
| 8423 | Matsumoto) |
| 8424 | Files: src/Make_cyg_ming.mak |
| 8425 | |
| 8426 | Patch 7.4.1333 |
| 8427 | Problem: Channel test fails on non-darwin builds. |
| 8428 | Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama) |
| 8429 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_channel.vim |
| 8430 | |
| 8431 | Patch 7.4.1334 |
| 8432 | Problem: Many compiler warnings with MingW. |
| 8433 | Solution: Add type casts. (Yasuhiro Matsumoto) |
| 8434 | Files: src/channel.c, src/dosinst.h, src/eval.c, src/ex_cmds2.c, |
| 8435 | src/ex_getln.c, src/fileio.c, src/if_cscope.c, src/if_perl.xs, |
| 8436 | src/if_python.c, src/if_python3.c, src/if_ruby.c, src/main.c, |
| 8437 | src/mbyte.c, src/misc1.c, src/option.c, src/os_mswin.c, |
| 8438 | src/os_win32.c |
| 8439 | |
| 8440 | Patch 7.4.1335 |
| 8441 | Problem: Can't build on MS-Windows with +job but without +channel. (Cesar |
| 8442 | Romani) |
| 8443 | Solution: Add #ifdefs. (Yasuhiro Matsumoto) |
| 8444 | Files: src/os_win32.c |
| 8445 | |
| 8446 | Patch 7.4.1336 |
| 8447 | Problem: Channel NL mode is not supported yet. |
| 8448 | Solution: Add NL mode support to channels. |
| 8449 | Files: src/channel.c, src/netbeans.c, src/structs.h, src/os_unix.d, |
| 8450 | src/os_win32.c, src/proto/channel.pro, src/proto/os_unix.pro, |
| 8451 | src/proto/os_win32.pro, src/testdir/test_channel.vim, |
| 8452 | src/testdir/test_channel_pipe.py |
| 8453 | |
| 8454 | Patch 7.4.1337 (after 7.4.1336) |
| 8455 | Problem: Part of the change is missing. |
| 8456 | Solution: Add changes to eval.c |
| 8457 | Files: src/eval.c |
| 8458 | |
| 8459 | |
| 8460 | Patch 7.4.1338 (after 7.4.1336) |
| 8461 | Problem: Another part of the change is missing. |
| 8462 | Solution: Type os_unix.c right this time. |
| 8463 | Files: src/os_unix.c |
| 8464 | |
| 8465 | Patch 7.4.1339 |
| 8466 | Problem: Warnings when building the GUI with MingW. (Cesar Romani) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8467 | Solution: Add type casts. (Yasuhiro Matsumoto) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8468 | Files: src/edit.c, src/gui_w32.c, src/gui_w48.c, src/os_mswin.c, |
| 8469 | src/os_win32.c |
| 8470 | |
| 8471 | Patch 7.4.1340 (after 7.4.1339) |
| 8472 | Problem: Merge left extra #endif behind. |
| 8473 | Solution: Remove the #endif |
| 8474 | Files: src/os_win32.c |
| 8475 | |
| 8476 | Patch 7.4.1341 |
| 8477 | Problem: It's difficult to add more arguments to ch_sendraw() and |
| 8478 | ch_sendexpr(). |
| 8479 | Solution: Make the third option a dictionary. |
| 8480 | Files: src/eval.c, src/structs.h, src/channel.c, src/os_unix.c, |
| 8481 | src/os_win32.c, src/proto/channel.pro, |
| 8482 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 8483 | |
| 8484 | Patch 7.4.1342 |
| 8485 | Problem: On Mac OS/X the waittime must be > 0 for connect to work. |
| 8486 | Solution: Use select() in a different way. (partly by Kazunobu Kuriyama) |
| 8487 | Always use a waittime of 1 or more. |
| 8488 | Files: src/eval.c, src/channel.c, src/testdir/test_channel.vim |
| 8489 | |
| 8490 | Patch 7.4.1343 |
| 8491 | Problem: Can't compile with +job but without +channel. (Andrei Olsen) |
| 8492 | Solution: Move get_job_options up and adjust #ifdef. |
| 8493 | Files: src/eval.c |
| 8494 | |
| 8495 | Patch 7.4.1344 |
| 8496 | Problem: Can't compile Win32 GUI with tiny features. |
| 8497 | Solution: Add #ifdef. (Christian Brabandt) |
| 8498 | Files: src/gui_w32.c |
| 8499 | |
| 8500 | Patch 7.4.1345 |
| 8501 | Problem: A few more compiler warnings. (Axel Bender) |
| 8502 | Solution: Add type casts. |
| 8503 | Files: src/gui_w32.c, src/gui_w48.c |
| 8504 | |
| 8505 | Patch 7.4.1346 |
| 8506 | Problem: Compiler warnings in build with -O2. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8507 | Solution: Add initializations. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8508 | Files: src/eval.c |
| 8509 | |
| 8510 | Patch 7.4.1347 |
| 8511 | Problem: When there is any error Vim will use a non-zero exit code. |
| 8512 | Solution: When using ":silent!" do not set the exit code. (Yasuhiro |
| 8513 | Matsumoto) |
| 8514 | Files: src/message.c |
| 8515 | |
| 8516 | Patch 7.4.1348 |
| 8517 | Problem: More compiler warnings. (John Marriott) |
| 8518 | Solution: Add type casts, remove unused variable. |
| 8519 | Files: src/gui_w32.c |
| 8520 | |
| 8521 | Patch 7.4.1349 |
| 8522 | Problem: And some more MingW compiler warnings. (Cesar Romani) |
| 8523 | Solution: Add type casts. |
| 8524 | Files: src/if_mzsch.c |
| 8525 | |
| 8526 | Patch 7.4.1350 |
| 8527 | Problem: When the test server fails to start Vim hangs. |
| 8528 | Solution: Check that there is actually something to read from the tty fd. |
| 8529 | Files: src/os_unix.c |
| 8530 | |
| 8531 | Patch 7.4.1351 |
| 8532 | Problem: When the port isn't opened yet when ch_open() is called it may |
| 8533 | fail instead of waiting for the specified time. |
| 8534 | Solution: Loop when select() succeeds but when connect() failed. Also use |
| 8535 | channel logging for jobs. Add ch_log(). |
| 8536 | Files: src/channel.c, src/eval.c, src/netbeans.c, src/proto/channel.pro, |
| 8537 | src/testdir/test_channel.vim, src/testdir/test_channel.py |
| 8538 | |
| 8539 | Patch 7.4.1352 |
| 8540 | Problem: The test script lists all functions before executing them. |
| 8541 | Solution: Only list the function currently being executed. |
| 8542 | Files: src/testdir/runtest.vim |
| 8543 | |
| 8544 | Patch 7.4.1353 |
| 8545 | Problem: Test_connect_waittime is skipped for MS-Windows. |
| 8546 | Solution: Add the test back, it works now. |
| 8547 | Files: src/testdir/test_channel.vim |
| 8548 | |
| 8549 | Patch 7.4.1354 |
| 8550 | Problem: MS-Windows: Mismatch between default compile options and what the |
| 8551 | code expects. |
| 8552 | Solution: Change the default WINVER from 0x0500 to 0x0501. (Ken Takata) |
| 8553 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 8554 | |
| 8555 | Patch 7.4.1355 |
| 8556 | Problem: Win32 console and GUI handle channels differently. |
| 8557 | Solution: Consolidate code between Win32 console and GUI. |
| 8558 | Files: src/channel.c, src/eval.c, src/gui_w48.c, src/os_win32.c, |
| 8559 | src/proto/channel.pro |
| 8560 | |
| 8561 | Patch 7.4.1356 |
| 8562 | Problem: Job and channel options parsing is scattered. |
| 8563 | Solution: Move all option value parsing to get_job_options(); |
| 8564 | Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro, |
| 8565 | src/testdir/test_channel.vim |
| 8566 | |
| 8567 | Patch 7.4.1357 (after 7.4.1356) |
| 8568 | Problem: Error for returning value from void function. |
| 8569 | Solution: Don't do that. |
| 8570 | Files: src/eval.c |
| 8571 | |
| 8572 | Patch 7.4.1358 |
| 8573 | Problem: Compiler warning when not building with +crypt. |
| 8574 | Solution: Add #ifdef. (John Marriott) |
| 8575 | Files: src/undo.c |
| 8576 | |
| 8577 | Patch 7.4.1359 (after 7.4.1356) |
| 8578 | Problem: Channel test ch_sendexpr() times out. |
| 8579 | Solution: Increase the timeout |
| 8580 | Files: src/testdir/test_channel.vim |
| 8581 | |
| 8582 | Patch 7.4.1360 |
| 8583 | Problem: Can't remove a callback with ch_setoptions(). |
| 8584 | Solution: When passing zero or an empty string remove the callback. |
| 8585 | Files: src/channel.c, src/proto/channel.pro, src/testdir/test_channel.vim |
| 8586 | |
| 8587 | Patch 7.4.1361 |
| 8588 | Problem: Channel test fails on Solaris. |
| 8589 | Solution: Use the 1 msec waittime for all systems. |
| 8590 | Files: src/channel.c |
| 8591 | |
| 8592 | Patch 7.4.1362 (after 7.4.1356) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8593 | Problem: Using uninitialized value. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8594 | Solution: Initialize jo_set. |
| 8595 | Files: src/eval.c |
| 8596 | |
| 8597 | Patch 7.4.1363 |
| 8598 | Problem: Compiler warnings with tiny build. |
| 8599 | Solution: Add #ifdefs. |
| 8600 | Files: src/gui_w48.c, src/gui_w32.c |
| 8601 | |
| 8602 | Patch 7.4.1364 |
| 8603 | Problem: The Win 16 code is not maintained and unused. |
| 8604 | Solution: Remove the Win 16 support. |
| 8605 | Files: src/gui_w16.c, src/gui_w32.c, src/gui_w48.c, src/Make_w16.mak, |
| 8606 | src/Makefile, src/Make_cyg_ming.mak, src/Make_mvc.mak, |
| 8607 | src/proto/gui_w16.pro, src/proto/os_win16.pro, src/guiw16rc.h, |
| 8608 | src/vim16.rc, src/vim16.def, src/tools16.bmp, src/eval.c, |
| 8609 | src/gui.c, src/misc2.c, src/option.c, src/os_msdos.c, |
| 8610 | src/os_mswin.c, src/os_win16.c, src/os_win16.h, src/version.c, |
| 8611 | src/winclip.c, src/feature.h, src/proto.h, src/vim.h, Filelist |
| 8612 | |
| 8613 | Patch 7.4.1365 |
| 8614 | Problem: Cannot execute a single test function. |
| 8615 | Solution: Add an argument to filter the functions with. (Yasuhiro Matsumoto) |
| 8616 | Files: src/testdir/runtest.vim |
| 8617 | |
| 8618 | Patch 7.4.1366 |
| 8619 | Problem: Typo in test and resulting error in test result. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 8620 | Solution: Fix the typo and correct the result. (James McCoy, closes #650) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8621 | Files: src/testdir/test_charsearch.in, src/testdir/test_charsearch.ok |
| 8622 | |
| 8623 | Patch 7.4.1367 |
| 8624 | Problem: Compiler warning for unreachable code. |
| 8625 | Solution: Remove a "break". (Danek Duvall) |
| 8626 | Files: src/json.c |
| 8627 | |
| 8628 | Patch 7.4.1368 |
| 8629 | Problem: One more Win16 file remains. |
| 8630 | Solution: Delete it. |
| 8631 | Files: src/proto/os_win16.pro |
| 8632 | |
| 8633 | Patch 7.4.1369 |
| 8634 | Problem: Channels don't have a queue for stderr. |
| 8635 | Solution: Have a queue for each part of the channel. |
| 8636 | Files: src/channel.c, src/eval.c, src/structs.h, src/netbeans.c, |
| 8637 | src/gui_w32.c, src/proto/channel.pro |
| 8638 | |
| 8639 | Patch 7.4.1370 |
| 8640 | Problem: The Python test script may keep on running. |
| 8641 | Solution: Join the threads. (Yasuhiro Matsumoto) |
| 8642 | Files: src/testdir/test_channel.py |
| 8643 | |
| 8644 | Patch 7.4.1371 |
| 8645 | Problem: X11 GUI callbacks don't specify the part of the channel. |
| 8646 | Solution: Pass the fd instead of the channel ID. |
| 8647 | Files: src/channel.c |
| 8648 | |
| 8649 | Patch 7.4.1372 |
| 8650 | Problem: channel read implementation is incomplete. |
| 8651 | Solution: Add ch_read() and options for ch_readraw(). |
| 8652 | Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro, |
| 8653 | src/testdir/test_channel.vim |
| 8654 | |
| 8655 | Patch 7.4.1373 |
| 8656 | Problem: Calling a Vim function over a channel requires turning the |
| 8657 | arguments into a string. |
| 8658 | Solution: Add the "call" command. (Damien) Also merge "expr" and "eval" |
| 8659 | into one. |
| 8660 | Files: src/channel.c, src/testdir/test_channel.py, |
| 8661 | src/testdir/test_channel.vim |
| 8662 | |
| 8663 | Patch 7.4.1374 |
| 8664 | Problem: Channel test hangs on MS-Windows. |
| 8665 | Solution: Disable the ch_read() that is supposed to time out. |
| 8666 | Files: src/testdir/test_channel.vim |
| 8667 | |
| 8668 | Patch 7.4.1375 |
| 8669 | Problem: Still some Win16 code. |
| 8670 | Solution: Remove FEAT_GUI_W16.(Hirohito Higashi) |
| 8671 | Files: src/eval.c, src/ex_cmds.h, src/feature.h, src/gui.h, src/menu.c, |
| 8672 | src/misc1.c, src/option.c, src/proto.h, src/structs.h, src/term.c, |
| 8673 | src/vim.h, runtime/doc/gui_w16.txt |
| 8674 | |
| 8675 | Patch 7.4.1376 |
| 8676 | Problem: ch_setoptions() cannot set all options. |
| 8677 | Solution: Support more options. |
| 8678 | Files: src/channel.c, src/eval.c, src/structs.h, runtime/doc/channel.txt, |
| 8679 | src/testdir/test_channel.vim |
| 8680 | |
| 8681 | Patch 7.4.1377 |
| 8682 | Problem: Test_connect_waittime() is flaky. |
| 8683 | Solution: Ignore the "Connection reset by peer" error. |
| 8684 | Files: src/testdir/test_channel.vim |
| 8685 | |
| 8686 | Patch 7.4.1378 |
| 8687 | Problem: Can't change job settings after it started. |
| 8688 | Solution: Add job_setoptions() with the "stoponexit" flag. |
| 8689 | Files: src/eval.c, src/main.c, src/structs.h, src/proto/eval.pro, |
| 8690 | src/testdir/test_channel.vim |
| 8691 | |
| 8692 | Patch 7.4.1379 |
| 8693 | Problem: Channel test fails on Win32 console. |
| 8694 | Solution: Don't sleep when timeout is zero. Call channel_wait() before |
| 8695 | channel_read(). Channels are not polled during ":sleep". (Yukihiro |
| 8696 | Nakadaira) |
| 8697 | Files: src/channel.c, src/misc2.c, src/gui_w32.c, src/os_win32.c |
| 8698 | |
| 8699 | Patch 7.4.1380 |
| 8700 | Problem: The job exit callback is not implemented. |
| 8701 | Solution: Add the "exit-cb" option. |
| 8702 | Files: src/structs.h, src/eval.c, src/channel.c, src/proto/eval.pro, |
| 8703 | src/misc2.c, src/macros.h, src/testdir/test_channel.vim |
| 8704 | |
| 8705 | Patch 7.4.1381 (after 7.4.1380) |
| 8706 | Problem: Exit value not available on MS-Windows. |
| 8707 | Solution: Set the exit value. |
| 8708 | Files: src/structs.h, src/os_win32.c |
| 8709 | |
| 8710 | Patch 7.4.1382 |
| 8711 | Problem: Can't get the job of a channel. |
| 8712 | Solution: Add ch_getjob(). |
| 8713 | Files: src/eval.c, runtime/doc/channel.txt, runtime/doc/eval.txt |
| 8714 | |
| 8715 | Patch 7.4.1383 |
| 8716 | Problem: GvimExt only loads the old libintl.dll. |
| 8717 | Solution: Also try loading libint-8.dll. (Ken Takata, closes #608) |
| 8718 | Files: src/GvimExt/gvimext.cpp, src/GvimExt/gvimext.h |
| 8719 | |
| 8720 | Patch 7.4.1384 |
| 8721 | Problem: It is not easy to use a set of plugins and their dependencies. |
| 8722 | Solution: Add packages, ":loadplugin", 'packpath'. |
| 8723 | Files: src/main.c, src/ex_cmds2.c, src/option.c, src/option.h, |
| 8724 | src/ex_cmds.h, src/eval.c, src/version.c, src/proto/ex_cmds2.pro, |
| 8725 | runtime/doc/repeat.txt, runtime/doc/options.txt, |
| 8726 | runtime/optwin.vim |
| 8727 | |
| 8728 | Patch 7.4.1385 |
| 8729 | Problem: Compiler warning for using array. |
| 8730 | Solution: Use the right member name. (Yegappan Lakshmanan) |
| 8731 | Files: src/eval.c |
| 8732 | |
| 8733 | Patch 7.4.1386 |
| 8734 | Problem: When the Job exit callback is invoked, the job may be freed too |
| 8735 | soon. (Yasuhiro Matsumoto) |
| 8736 | Solution: Increase refcount. |
| 8737 | Files: src/eval.c |
| 8738 | |
| 8739 | Patch 7.4.1387 |
| 8740 | Problem: Win16 docs still referenced. |
| 8741 | Solution: Remove Win16 files from the docs Makefile. (Kenichi Ito) |
| 8742 | Files: runtime/doc/Makefile |
| 8743 | |
| 8744 | Patch 7.4.1388 |
| 8745 | Problem: Compiler warning. (Cesar Romani) |
| 8746 | Solution: Initialize variable. |
| 8747 | Files: src/ex_cmds2.c |
| 8748 | |
| 8749 | Patch 7.4.1389 |
| 8750 | Problem: Incomplete function declaration. |
| 8751 | Solution: Add "void". (Yasuhiro Matsumoto) |
| 8752 | Files: src/eval.c |
| 8753 | |
| 8754 | Patch 7.4.1390 |
| 8755 | Problem: When building with GTK and glib-compile-resources cannot be found |
| 8756 | building Vim fails. (Michael Gehring) |
| 8757 | Solution: Make GLIB_COMPILE_RESOURCES empty instead of leaving it at "no". |
| 8758 | (nuko8, closes #655) |
| 8759 | Files: src/configure.in, src/auto/configure |
| 8760 | |
| 8761 | Patch 7.4.1391 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8762 | Problem: Warning for uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8763 | Solution: Set it to zero. (Christian Brabandt) |
| 8764 | Files: src/eval.c |
| 8765 | |
| 8766 | Patch 7.4.1392 |
| 8767 | Problem: Some tests fail for Win32 console version. |
| 8768 | Solution: Move the tests to SCRIPTS_MORE2. Pass VIMRUNTIME. (Christian |
| 8769 | Brabandt) |
| 8770 | Files: src/testdir/Make_all.mak |
| 8771 | |
| 8772 | Patch 7.4.1393 |
| 8773 | Problem: Starting a job hangs in the GUI. (Takuya Fujiwara) |
| 8774 | Solution: Don't check if ch_job is NULL when checking for an error. |
| 8775 | (Yasuhiro Matsumoto) |
| 8776 | Files: src/channel.c |
| 8777 | |
| 8778 | Patch 7.4.1394 |
| 8779 | Problem: Can't sort inside a sort function. |
| 8780 | Solution: Use a struct to store the sort parameters. (Jacob Niehus) |
| 8781 | Files: src/eval.c, src/testdir/test_sort.vim |
| 8782 | |
| 8783 | Patch 7.4.1395 |
| 8784 | Problem: Using DETACH in quotes is not compatible with the Netbeans |
| 8785 | interface. (Xavier de Gaye) |
| 8786 | Solution: Remove the quotes, only use them for JSON and JS mode. |
| 8787 | Files: src/netbeans.c, src/channel.c |
| 8788 | |
| 8789 | Patch 7.4.1396 |
| 8790 | Problem: Compiler warnings for conversions. |
| 8791 | Solution: Add type cast. |
| 8792 | Files: src/ex_cmds2.c |
| 8793 | |
| 8794 | Patch 7.4.1397 |
| 8795 | Problem: Sort test fails on MS-Windows. |
| 8796 | Solution: Correct the compare function. |
| 8797 | Files: src/testdir/test_sort.vim |
| 8798 | |
| 8799 | Patch 7.4.1398 |
| 8800 | Problem: The close-cb option is not implemented yet. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8801 | Solution: Implement close-cb. (Yasuhiro Matsumoto) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8802 | Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro, |
| 8803 | src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 8804 | |
| 8805 | Patch 7.4.1399 |
| 8806 | Problem: The MS-DOS code does not build. |
| 8807 | Solution: Remove the old MS-DOS code. |
| 8808 | Files: Filelist, src/Make_bc3.mak, src/Make_bc5.mak, src/Make_djg.mak, |
| 8809 | src/Makefile, src/blowfish.c, src/buffer.c, src/diff.c, |
| 8810 | src/digraph.c, src/dosinst.h, src/eval.c, src/ex_cmds.c, |
| 8811 | src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c, src/feature.h, |
| 8812 | src/fileio.c, src/getchar.c, src/globals.h, src/macros.h, |
| 8813 | src/main.c, src/mbyte.c, src/memfile.c, src/memline.c, |
| 8814 | src/misc1.c, src/misc2.c, src/netbeans.c, src/option.c, |
| 8815 | src/option.h, src/os_msdos.c, src/os_msdos.h, src/proto.h, |
| 8816 | src/proto/os_msdos.pro, src/regexp.c, src/screen.c, src/structs.h, |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 8817 | src/syntax.c, src/term.c, src/undo.c, src/uninstal.c, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8818 | src/version.c, src/vim.h, src/window.c, src/xxd/Make_bc3.mak, |
| 8819 | src/xxd/Make_djg.mak |
| 8820 | |
| 8821 | |
| 8822 | Patch 7.4.1400 |
| 8823 | Problem: Perl eval doesn't work properly on 64-bit big-endian machine. |
| 8824 | Solution: Use 32 bit type for the key. (Danek Duvall) |
| 8825 | Files: src/if_perl.xs |
| 8826 | |
| 8827 | Patch 7.4.1401 |
| 8828 | Problem: Having 'autochdir' set during startup and using diff mode doesn't |
| 8829 | work. (Axel Bender) |
| 8830 | Solution: Don't use 'autochdir' while still starting up. (Christian |
| 8831 | Brabandt) |
| 8832 | Files: src/buffer.c |
| 8833 | |
| 8834 | Patch 7.4.1402 |
| 8835 | Problem: GTK 3 is not supported. |
| 8836 | Solution: Add GTK 3 support. (Kazunobu Kuriyama) |
| 8837 | Files: runtime/doc/eval.txt, runtime/doc/gui.txt, |
| 8838 | runtime/doc/gui_x11.txt, src/auto/configure, src/channel.c, |
| 8839 | src/config.h.in, src/configure.in, src/eval.c, src/gui.h, |
| 8840 | src/gui_beval.c, src/gui_beval.h, src/gui_gtk.c, src/gui_gtk_f.c, |
| 8841 | src/gui_gtk_f.h, src/gui_gtk_x11.c, src/if_mzsch.c, src/mbyte.c, |
| 8842 | src/netbeans.c, src/structs.h, src/version.c |
| 8843 | |
| 8844 | Patch 7.4.1403 |
| 8845 | Problem: Can't build without the quickfix feature. |
| 8846 | Solution: Add #ifdefs. Call ex_ni() for unimplemented commands. (Yegappan |
| 8847 | Lakshmanan) |
| 8848 | Files: src/ex_cmds2.c, src/popupmnu.c |
| 8849 | |
| 8850 | Patch 7.4.1404 |
| 8851 | Problem: ch_read() doesn't time out on MS-Windows. |
| 8852 | Solution: Instead of WM_NETBEANS use select(). (Yukihiro Nakadaira) |
| 8853 | Files: src/channel.c, src/gui_w32.c, src/os_win32.c, src/structs.h, |
| 8854 | src/testdir/test_channel.vim, src/vim.h |
| 8855 | |
| 8856 | Patch 7.4.1405 |
| 8857 | Problem: Completion menu flickers. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 8858 | Solution: Delay showing the popup menu. (Shougo Matsu, Justin M. Keyes, |
| 8859 | closes #656) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8860 | Files: src/edit.c |
| 8861 | |
| 8862 | Patch 7.4.1406 |
| 8863 | Problem: Leaking memory in cs_print_tags_priv(). |
| 8864 | Solution: Free tbuf. (idea by Forrest Fleming) |
| 8865 | Files: src/if_cscope.c |
| 8866 | |
| 8867 | Patch 7.4.1407 |
| 8868 | Problem: json_encode() does not handle NaN and inf properly. (David |
| 8869 | Barnett) |
| 8870 | Solution: For JSON turn them into "null". For JS use "NaN" and "Infinity". |
| 8871 | Add isnan(). |
| 8872 | Files: src/eval.c, src/json.c, src/testdir/test_json.vim |
| 8873 | |
| 8874 | Patch 7.4.1408 |
| 8875 | Problem: MS-Windows doesn't have isnan() and isinf(). |
| 8876 | Solution: Use _isnan() and _isinf(). |
| 8877 | Files: src/eval.c, src/json.c |
| 8878 | |
| 8879 | Patch 7.4.1409 (after 7.4.1402) |
| 8880 | Problem: Configure includes GUI despite --disable-gui flag. |
| 8881 | Solution: Add SKIP_GTK3. (Kazunobu Kuriyama) |
| 8882 | Files: src/configure.in, src/auto/configure |
| 8883 | |
| 8884 | Patch 7.4.1410 |
| 8885 | Problem: Leaking memory in cscope interface. |
| 8886 | Solution: Free memory when no tab is found. (Christian Brabandt) |
| 8887 | Files: src/if_cscope.c |
| 8888 | |
| 8889 | Patch 7.4.1411 |
| 8890 | Problem: Compiler warning for indent. (Ajit Thakkar) |
| 8891 | Solution: Indent normally. |
| 8892 | Files: src/ui.c |
| 8893 | |
| 8894 | Patch 7.4.1412 |
| 8895 | Problem: Compiler warning for indent. (Dominique Pelle) |
| 8896 | Solution: Fix the indent. |
| 8897 | Files: src/farsi.c |
| 8898 | |
| 8899 | Patch 7.4.1413 |
| 8900 | Problem: When calling ch_close() the close callback is invoked, even though |
| 8901 | the docs say it isn't. (Christian J. Robinson) |
| 8902 | Solution: Don't call the close callback. |
| 8903 | Files: src/eval.c, src/channel.c, src/netbeans.c, src/proto/channel.pro |
| 8904 | |
| 8905 | Patch 7.4.1414 |
| 8906 | Problem: Appveyor only builds one feature set. |
| 8907 | Solution: Build a combination of features and GUI/console. (Christian |
| 8908 | Brabandt) |
| 8909 | Files: appveyor.yml, src/appveyor.bat |
| 8910 | |
| 8911 | Patch 7.4.1415 (after 7.4.1414) |
| 8912 | Problem: Dropped the skip-tags setting. |
| 8913 | Solution: Put it back. |
| 8914 | Files: appveyor.yml |
| 8915 | |
| 8916 | Patch 7.4.1416 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8917 | Problem: Using "u_char" instead of "char_u", which doesn't work everywhere. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8918 | (Jörg Plate) |
| 8919 | Solution: Use "char_u" always. |
| 8920 | Files: src/integration.c, src/macros.h |
| 8921 | |
| 8922 | Patch 7.4.1417 (after 7.4.1414) |
| 8923 | Problem: Missing appveyor.bat from the distribution. |
| 8924 | Solution: Add it to the list of files. |
| 8925 | Files: Filelist |
| 8926 | |
| 8927 | Patch 7.4.1418 |
| 8928 | Problem: job_stop() on MS-Windows does not really stop the job. |
| 8929 | Solution: Make the default to stop the job forcefully. (Ken Takata) |
| 8930 | Make MS-Windows and Unix more similar. |
| 8931 | Files: src/os_win32.c, src/os_unix.c, runtime/doc/eval.txt |
| 8932 | |
| 8933 | Patch 7.4.1419 |
| 8934 | Problem: Tests slowed down because of the "not a terminal" warning. |
| 8935 | Solution: Add the --not-a-term command line argument. |
| 8936 | Files: src/main.c, src/testdir/Makefile, src/Make_all.mak, |
| 8937 | src/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 8938 | src/testdir/Make_ming.mak, src/testdir/Make_vms.mms, |
| 8939 | runtime/doc/starting.txt |
| 8940 | |
| 8941 | Patch 7.4.1420 (after 7.4.1419) |
| 8942 | Problem: Missing makefile. |
| 8943 | Solution: Type the path correctly. |
| 8944 | Files: src/testdir/Make_all.mak |
| 8945 | |
| 8946 | Patch 7.4.1421 |
| 8947 | Problem: May free a channel when a callback may need to be invoked. |
| 8948 | Solution: Keep the channel when refcount is zero. |
| 8949 | Files: src/eval.c, src/channel.c, src/proto/channel.pro |
| 8950 | |
| 8951 | Patch 7.4.1422 |
| 8952 | Problem: Error when reading fails uses wrong errno. Keeping channel open |
| 8953 | after job stops results in test failing. |
| 8954 | Solution: Move the error up. Add ch_job_killed. |
| 8955 | Files: src/channel.c, src/eval.c, src/structs.h |
| 8956 | |
| 8957 | Patch 7.4.1423 |
| 8958 | Problem: Channel test fails on MS-Windows. |
| 8959 | Solution: Do not give an error message when reading fails, assume the other |
| 8960 | end exited. |
| 8961 | Files: src/channel.c |
| 8962 | |
| 8963 | Patch 7.4.1424 |
| 8964 | Problem: Not using --not-a-term when running tests on MS-Windows. |
| 8965 | Solution: Use NO_PLUGIN. (Christian Brabandt) |
| 8966 | Files: src/testdir/Make_dos.mak |
| 8967 | |
| 8968 | Patch 7.4.1425 |
| 8969 | Problem: There are still references to MS-DOS support. |
| 8970 | Solution: Remove most of the help txt and install instructions. (Ken Takata) |
| 8971 | Files: src/INSTALLpc.txt, runtime/doc/os_msdos.txt, csdpmi4b.zip, |
| 8972 | Filelist |
| 8973 | |
| 8974 | Patch 7.4.1426 |
| 8975 | Problem: The "out-io" option for jobs is not implemented yet. |
| 8976 | Solution: Implement the "buffer" value: append job output to a buffer. |
| 8977 | Files: src/eval.c, src/channel.c, src/structs.h, src/netbeans.c, |
| 8978 | runtime/doc/channel.txt |
| 8979 | |
| 8980 | Patch 7.4.1427 |
| 8981 | Problem: Trailing comma in enums is not ANSI C. |
| 8982 | Solution: Remove the trailing commas. |
| 8983 | Files: src/alloc.h, src/gui_mac.c |
| 8984 | |
| 8985 | Patch 7.4.1428 |
| 8986 | Problem: Compiler warning for non-virtual destructor. |
| 8987 | Solution: Make it virtual. (Yasuhiro Matsumoto) |
| 8988 | Files: src/gui_dwrite.cpp |
| 8989 | |
| 8990 | Patch 7.4.1429 |
| 8991 | Problem: On MS-Windows, when not use renderoptions=type:directx, drawing |
| 8992 | emoji will be broken. |
| 8993 | Solution: Fix usage of unicodepdy. (Yasuhiro Matsumoto) |
| 8994 | Files: src/gui_w32.c |
| 8995 | |
| 8996 | Patch 7.4.1430 |
| 8997 | Problem: When encoding JSON, turning NaN and Infinity into null without |
| 8998 | giving an error is not useful. |
| 8999 | Solution: Pass NaN and Infinity on. If the receiver can't handle them it |
| 9000 | will generate the error. |
| 9001 | Files: src/json.c, src/testdir/test_json.vim, runtime/doc/eval.txt |
| 9002 | |
| 9003 | Patch 7.4.1431 |
| 9004 | Problem: Including header files twice. |
| 9005 | Solution: Remove the extra includes. |
| 9006 | Files: src/if_cscope.h |
| 9007 | |
| 9008 | Patch 7.4.1432 |
| 9009 | Problem: Typo in button text. |
| 9010 | Solution: Fix the typo. (Dominique Pelle) |
| 9011 | Files: src/gui_gtk.c |
| 9012 | |
| 9013 | Patch 7.4.1433 |
| 9014 | Problem: The Sniff interface is no longer useful, the tool has not been |
| 9015 | available for may years. |
| 9016 | Solution: Delete the Sniff interface and related code. |
| 9017 | Files: src/if_sniff.c, src/if_sniff.h, src/charset.c, src/edit.c, |
| 9018 | src/eval.c, src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c, |
| 9019 | src/gui_gtk_x11.c, src/gui_w32.c, src/gui_x11.c, src/normal.c, |
| 9020 | src/os_unix.c, src/os_win32.c, src/term.c, src/ui.c, |
| 9021 | src/version.c, src/ex_cmds.h, src/feature.h, src/keymap.h, |
| 9022 | src/structs.h, src/vim.h, src/Make_mvc.mak, src/Make_vms.mms, |
| 9023 | src/Makefile, src/configure.in, src/auto/configure, |
| 9024 | src/config.h.in, src/config.mk.in, runtime/doc/if_sniff.txt, |
| 9025 | src/config.aap.in, src/main.aap |
| 9026 | |
| 9027 | Patch 7.4.1434 |
| 9028 | Problem: JSON encoding doesn't handle surrogate pair. |
| 9029 | Solution: Improve multi-byte handling of JSON. (Yasuhiro Matsumoto) |
| 9030 | Files: src/json.c, src/testdir/test_json.vim |
| 9031 | |
| 9032 | Patch 7.4.1435 |
| 9033 | Problem: It is confusing that ch_sendexpr() and ch_sendraw() wait for a |
| 9034 | response. |
| 9035 | Solution: Add ch_evalexpr() and ch_evalraw(). |
| 9036 | Files: src/eval.c, runtime/doc/channel.txt, runtime/doc/eval.txt, |
| 9037 | src/testdir/test_channel.vim |
| 9038 | |
| 9039 | Patch 7.4.1436 (after 7.4.1433) |
| 9040 | Problem: Sniff files still referenced in distribution. |
| 9041 | Solution: Remove sniff files from distribution. |
| 9042 | Files: Filelist |
| 9043 | |
| 9044 | Patch 7.4.1437 |
| 9045 | Problem: Old system doesn't have isinf() and NAN. (Ben Fritz) |
| 9046 | Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with |
| 9047 | configure. Use a replacement when missing. (Kazunobu Kuriyama) |
| 9048 | Files: src/eval.c, src/json.c, src/macros.h, src/message.c, |
| 9049 | src/config.h.in, src/configure.in, src/auto/configure |
| 9050 | |
| 9051 | Patch 7.4.1438 |
| 9052 | Problem: Can't get buffer number of a channel. |
| 9053 | Solution: Add ch_getbufnr(). |
| 9054 | Files: src/eval.c, src/channel.c, src/testdir/test_channel.vim, |
| 9055 | runtime/doc/channel.txt, runtime/doc/eval.txt |
| 9056 | |
| 9057 | Patch 7.4.1439 (after 7.4.1434) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9058 | Problem: Using uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9059 | Solution: Initialize vc_type. |
| 9060 | Files: src/json.c |
| 9061 | |
| 9062 | Patch 7.4.1440 (after 7.4.1437) |
| 9063 | Problem: Can't build on Windows. |
| 9064 | Solution: Change #ifdefs. Only define isnan when used. |
| 9065 | Files: src/macros.h, src/eval.c, src/json.c |
| 9066 | |
| 9067 | Patch 7.4.1441 |
| 9068 | Problem: Using empty name instead of no name for channel buffer. |
| 9069 | Solution: Remove the empty name. |
| 9070 | Files: src/channel.c |
| 9071 | |
| 9072 | Patch 7.4.1442 |
| 9073 | Problem: MS-Windows: more compilation warnings for destructor. |
| 9074 | Solution: Add "virtual". (Ken Takata) |
| 9075 | Files: src/if_ole.cpp |
| 9076 | |
| 9077 | Patch 7.4.1443 |
| 9078 | Problem: Can't build GTK3 with small features. |
| 9079 | Solution: Use gtk_widget_get_window(). Fix typos. (Dominique Pelle) |
| 9080 | Files: src/gui_gtk_x11.c |
| 9081 | |
| 9082 | Patch 7.4.1444 |
| 9083 | Problem: Can't build with JSON but without multi-byte. |
| 9084 | Solution: Fix pointer name. |
| 9085 | Files: src/json.c |
| 9086 | |
| 9087 | Patch 7.4.1445 |
| 9088 | Problem: Memory corruption when 'encoding' is not utf-8. |
| 9089 | Solution: Convert decoded string later. |
| 9090 | Files: src/json.c |
| 9091 | |
| 9092 | Patch 7.4.1446 |
| 9093 | Problem: Crash when using json_decode(). |
| 9094 | Solution: Terminate string with a NUL byte. |
| 9095 | Files: src/json.c |
| 9096 | |
| 9097 | Patch 7.4.1447 |
| 9098 | Problem: Memory leak when using ch_read(). (Dominique Pelle) |
| 9099 | No log message when stopping a job and a few other situations. |
| 9100 | Too many "Nothing to read" messages. Channels are not freed. |
| 9101 | Solution: Free the listtv. Add more log messages. Remove "Nothing to read" |
| 9102 | message. Remove the channel from the job when its refcount |
| 9103 | becomes zero. |
| 9104 | Files: src/eval.c, src/channel.c |
| 9105 | |
| 9106 | Patch 7.4.1448 |
| 9107 | Problem: JSON tests fail if 'encoding' is not utf-8. |
| 9108 | Solution: Force encoding to utf-8. |
| 9109 | Files: src/testdir/test_json.vim |
| 9110 | |
| 9111 | Patch 7.4.1449 |
| 9112 | Problem: Build fails with job feature but without channel feature. |
| 9113 | Solution: Add #ifdef. |
| 9114 | Files: src/eval.c |
| 9115 | |
| 9116 | Patch 7.4.1450 |
| 9117 | Problem: Json encoding still fails when encoding is not utf-8. |
| 9118 | Solution: Set 'encoding' before :scriptencoding. Run the json test |
| 9119 | separately to avoid affecting other tests. |
| 9120 | Files: src/testdir/test_json.vim, src/testdir/Make_all.mak, |
| 9121 | src/testdir/test_alot.vim |
| 9122 | |
| 9123 | Patch 7.4.1451 |
| 9124 | Problem: Vim hangs when a channel has a callback but isn't referenced. |
| 9125 | Solution: Have channel_unref() only return TRUE when the channel was |
| 9126 | actually freed. |
| 9127 | Files: src/eval.c, src/channel.c, src/proto/channel.pro |
| 9128 | |
| 9129 | Patch 7.4.1452 |
| 9130 | Problem: When a callback adds a syntax item either the redraw doesn't |
| 9131 | happen right away or in the GUI the cursor is in the wrong |
| 9132 | position for a moment. (Jakson Alves de Aquino) |
| 9133 | Solution: Redraw after the callback was invoked. |
| 9134 | Files: src/channel.c |
| 9135 | |
| 9136 | Patch 7.4.1453 |
| 9137 | Problem: Missing --not-a-term. |
| 9138 | Solution: Add the argument. |
| 9139 | Files: src/testdir/Make_amiga.mak |
| 9140 | |
| 9141 | Patch 7.4.1454 |
| 9142 | Problem: The exit callback test is flaky. |
| 9143 | Solution: Loop to wait for a short time up to a second. |
| 9144 | Files: src/testdir/test_channel.vim |
| 9145 | |
| 9146 | Patch 7.4.1455 |
| 9147 | Problem: JSON decoding test for surrogate pairs is in the wrong place. |
| 9148 | Solution: Move the test lines. (Ken Takata) |
| 9149 | Files: src/testdir/test_json.vim |
| 9150 | |
| 9151 | Patch 7.4.1456 |
| 9152 | Problem: Test 87 fails with Python 3.5. |
| 9153 | Solution: Work around difference. (Taro Muraoka) |
| 9154 | Files: src/testdir/test87.in |
| 9155 | |
| 9156 | Patch 7.4.1457 |
| 9157 | Problem: Opening a channel with select() is not done properly. |
| 9158 | Solution: Also used read-fds. Use getsockopt() to check for errors. (Ozaki |
| 9159 | Kiichi) |
| 9160 | Files: src/channel.c |
| 9161 | |
| 9162 | Patch 7.4.1458 |
| 9163 | Problem: When a JSON channel has a callback it may never be cleared. |
| 9164 | Solution: Do not write "DETACH" into a JS or JSON channel. |
| 9165 | Files: src/channel.c |
| 9166 | |
| 9167 | Patch 7.4.1459 (after 7.4.1457) |
| 9168 | Problem: MS-Windows doesn't know socklen_t. |
| 9169 | Solution: Use previous method for WIN32. |
| 9170 | Files: src/channel.c |
| 9171 | |
| 9172 | Patch 7.4.1460 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9173 | Problem: Syntax error in rarely used code. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9174 | Solution: Fix the mch_rename() declaration. (Ken Takata) |
| 9175 | Files: src/os_unix.c, src/proto/os_unix.pro |
| 9176 | |
| 9177 | Patch 7.4.1461 |
| 9178 | Problem: When starting job on MS-Windows all parts of the command are put |
| 9179 | in quotes. |
| 9180 | Solution: Only use quotes when needed. (Yasuhiro Matsumoto) |
| 9181 | Files: src/eval.c |
| 9182 | |
| 9183 | Patch 7.4.1462 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9184 | Problem: Two more rarely used functions with errors. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9185 | Solution: Add proper argument types. (Dominique Pelle) |
| 9186 | Files: src/misc2.c, src/termlib.c |
| 9187 | |
| 9188 | Patch 7.4.1463 |
| 9189 | Problem: Configure doesn't find isinf() and isnan() on some systems. |
| 9190 | Solution: Use a configure check that includes math.h. |
| 9191 | Files: src/configure.in, src/auto/configure |
| 9192 | |
| 9193 | Patch 7.4.1464 |
| 9194 | Problem: When the argument of sort() is zero or empty it fails. |
| 9195 | Solution: Make zero work as documented. (suggested by Yasuhiro Matsumoto) |
| 9196 | Files: src/eval.c, src/testdir/test_sort.vim |
| 9197 | |
| 9198 | Patch 7.4.1465 |
| 9199 | Problem: Coverity reported possible use of NULL pointer when using buffer |
| 9200 | output with JSON mode. |
| 9201 | Solution: Make it actually possible to use JSON mode with a buffer. |
| 9202 | Re-encode the JSON to append it to the buffer. |
| 9203 | Files: src/channel.c, src/testdir/test_channel.vim |
| 9204 | |
| 9205 | Patch 7.4.1466 |
| 9206 | Problem: Coverity reports dead code. |
| 9207 | Solution: Remove the two lines. |
| 9208 | Files: src/channel.c |
| 9209 | |
| 9210 | Patch 7.4.1467 |
| 9211 | Problem: Can't build without the float feature. |
| 9212 | Solution: Add #ifdefs. (Nick Owens, closes #667) |
| 9213 | Files: src/eval.c, src/json.c |
| 9214 | |
| 9215 | Patch 7.4.1468 |
| 9216 | Problem: Sort test doesn't test with "1" argument. |
| 9217 | Solution: Also test ignore-case sorting. (Yasuhiro Matsumoto) |
| 9218 | Files: src/testdir/test_sort.vim |
| 9219 | |
| 9220 | Patch 7.4.1469 |
| 9221 | Problem: Channel test sometimes fails, especially on OS/X. (Kazunobu |
| 9222 | Kuriyama) |
| 9223 | Solution: Change the && into ||, call getsockopt() in more situations. |
| 9224 | (Ozaki Kiichi) |
| 9225 | Files: src/channel.c |
| 9226 | |
| 9227 | Patch 7.4.1470 |
| 9228 | Problem: Coverity reports missing restore. |
| 9229 | Solution: Move json_encode() call up. |
| 9230 | Files: src/channel.c |
| 9231 | |
| 9232 | Patch 7.4.1471 |
| 9233 | Problem: Missing out-of-memory check. And Coverity warning. |
| 9234 | Solution: Bail out when msg is NULL. |
| 9235 | Files: src/channel.c |
| 9236 | |
| 9237 | Patch 7.4.1472 |
| 9238 | Problem: Coverity warning for not using return value. |
| 9239 | Solution: Add "(void)". |
| 9240 | Files: src/os_unix.c |
| 9241 | |
| 9242 | Patch 7.4.1473 |
| 9243 | Problem: Can't build without the autocommand feature. |
| 9244 | Solution: Add #ifdefs. (Yegappan Lakshmanan) |
| 9245 | Files: src/edit.c, src/main.c, src/syntax.c |
| 9246 | |
| 9247 | Patch 7.4.1474 |
| 9248 | Problem: Compiler warnings without the float feature. |
| 9249 | Solution: Move #ifdefs. (John Marriott) |
| 9250 | Files: src/eval.c |
| 9251 | |
| 9252 | Patch 7.4.1475 |
| 9253 | Problem: When using hangulinput with utf-8 a CSI character is |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9254 | misinterpreted. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9255 | Solution: Convert CSI to K_CSI. (SungHyun Nam) |
| 9256 | Files: src/ui.c |
| 9257 | |
| 9258 | Patch 7.4.1476 |
| 9259 | Problem: Function arguments marked as unused while they are not. |
| 9260 | Solution: Remove UNUSED. (Yegappan Lakshmanan) |
| 9261 | Files: src/diff.c, src/eval.c, src/ex_cmds2.c, src/ex_docmd.c, |
| 9262 | src/window.c |
| 9263 | |
| 9264 | Patch 7.4.1477 |
| 9265 | Problem: Test_reltime is flaky, it depends on timing. |
| 9266 | Solution: When it fails run it a second time. |
| 9267 | Files: src/testdir/runtest.vim |
| 9268 | |
| 9269 | Patch 7.4.1478 |
| 9270 | Problem: ":loadplugin" doesn't take care of ftdetect files. |
| 9271 | Solution: Also load ftdetect scripts when appropriate. |
| 9272 | Files: src/ex_cmds2.c |
| 9273 | |
| 9274 | Patch 7.4.1479 |
| 9275 | Problem: No testfor ":loadplugin". |
| 9276 | Solution: Add a test. Fix how option is being set. |
| 9277 | Files: src/ex_cmds2.c, src/testdir/test_loadplugin.vim, |
| 9278 | src/testdir/Make_all.mak |
| 9279 | |
| 9280 | Patch 7.4.1480 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9281 | Problem: Cannot add a pack directory without loading a plugin. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9282 | Solution: Add the :packadd command. |
| 9283 | Files: src/ex_cmds.h, src/ex_cmds2.c, src/proto/ex_cmds2.pro, |
| 9284 | src/testdir/test_loadplugin.vim, runtime/doc/repeat.txt |
| 9285 | |
| 9286 | Patch 7.4.1481 |
| 9287 | Problem: Can't build with small features. |
| 9288 | Solution: Add #ifdef. |
| 9289 | Files: src/ex_cmds2.c |
| 9290 | |
| 9291 | Patch 7.4.1482 |
| 9292 | Problem: "timeout" option not supported on ch_eval*(). |
| 9293 | Solution: Get and use the timeout option from the argument. |
| 9294 | Files: src/eval.c, src/testdir/test_channel.vim |
| 9295 | |
| 9296 | Patch 7.4.1483 |
| 9297 | Problem: A one-time callback is not used for a raw channel. |
| 9298 | Solution: Use a one-time callback when it exists. |
| 9299 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 9300 | src/testdir/test_channel.py |
| 9301 | |
| 9302 | Patch 7.4.1484 |
| 9303 | Problem: Channel "err-io" value "out" is not supported. |
| 9304 | Solution: Connect stderr to stdout if wanted. |
| 9305 | Files: src/os_unix.c, src/os_win32.c, src/testdir/test_channel.vim, |
| 9306 | src/testdir/test_channel_pipe.py |
| 9307 | |
| 9308 | Patch 7.4.1485 |
| 9309 | Problem: Job input from buffer is not implemented. |
| 9310 | Solution: Implement it. Add "in-top" and "in-bot" options. |
| 9311 | Files: src/structs.h, src/eval.c, src/channel.c, src/proto/channel.pro, |
| 9312 | src/os_unix.c, src/os_win32.c, src/testdir/test_channel.vim |
| 9313 | |
| 9314 | Patch 7.4.1486 |
| 9315 | Problem: ":loadplugin" is not optimal, some people find it confusing. |
| 9316 | Solution: Only use ":packadd" with an optional "!". |
| 9317 | Files: src/ex_cmds.h, src/ex_cmds2.c, src/testdir/test_loadplugin.vim, |
| 9318 | src/testdir/test_packadd.vim, src/testdir/Make_all.mak, |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 9319 | runtime/doc/repeat.txt |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9320 | |
| 9321 | Patch 7.4.1487 |
| 9322 | Problem: For WIN32 isinf() is defined as a macro. |
| 9323 | Solution: Define it as an inline function. (ZyX) |
| 9324 | Files: src/macros.h |
| 9325 | |
| 9326 | Patch 7.4.1488 (after 7.4.1475) |
| 9327 | Problem: Not using key when result from hangul_string_convert() is NULL. |
| 9328 | Solution: Fall back to not converted string. |
| 9329 | Files: src/ui.c |
| 9330 | |
| 9331 | Patch 7.4.1489 (after 7.4.1487) |
| 9332 | Problem: "inline" is not supported by old MSVC. |
| 9333 | Solution: use "__inline". (Ken Takata) |
| 9334 | Files: src/macros.h |
| 9335 | |
| 9336 | Patch 7.4.1490 |
| 9337 | Problem: Compiler warning for unused function. |
| 9338 | Solution: Add #ifdef. (Dominique Pelle) |
| 9339 | Files: src/gui_gtk_x11.c |
| 9340 | |
| 9341 | Patch 7.4.1491 |
| 9342 | Problem: Visual-block shift breaks multi-byte characters. |
| 9343 | Solution: Compute column differently. (Yasuhiro Matsumoto) Add a test. |
| 9344 | Files: src/ops.c, src/testdir/test_visual.vim, src/testdir/Make_all.mak |
| 9345 | |
| 9346 | Patch 7.4.1492 |
| 9347 | Problem: No command line completion for ":packadd". |
| 9348 | Solution: Implement completion. (Hirohito Higashi) |
| 9349 | Files: src/ex_docmd.c, src/ex_getln.c, src/testdir/test_packadd.vim, |
| 9350 | src/vim.h |
| 9351 | |
| 9352 | Patch 7.4.1493 |
| 9353 | Problem: Wrong callback invoked for zero-id messages. |
| 9354 | Solution: Don't use the first one-time callback when the sequence number |
| 9355 | doesn't match. |
| 9356 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 9357 | src/testdir/test_channel.py |
| 9358 | |
| 9359 | Patch 7.4.1494 |
| 9360 | Problem: clr_history() does not work properly. |
| 9361 | Solution: Increment hisptr. Add a test. (Yegappan Lakshmanan) |
| 9362 | Files: src/ex_getln.c, src/testdir/test_history.vim, |
| 9363 | src/testdir/Make_all.mak |
| 9364 | |
| 9365 | Patch 7.4.1495 |
| 9366 | Problem: Compiler warnings when building on Unix with the job feature but |
| 9367 | without the channel feature. |
| 9368 | Solution: Move #ifdefs. (Dominique Pelle) |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 9369 | Files: src/os_unix.c |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9370 | |
| 9371 | Patch 7.4.1496 |
| 9372 | Problem: Crash when built with GUI but it's not active. (Dominique Pelle) |
| 9373 | Solution: Check gui.in_use. |
| 9374 | Files: src/channel.c |
| 9375 | |
| 9376 | Patch 7.4.1497 |
| 9377 | Problem: Cursor drawing problem with GTK 3. |
| 9378 | Solution: Handle blinking differently. (Kazunobu Kuriyama) |
| 9379 | Files: src/gui_gtk_x11.c |
| 9380 | |
| 9381 | Patch 7.4.1498 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 9382 | Problem: Error for locked item when using json_decode(). (Shougo Matsu) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9383 | Solution: Initialize v_lock. |
| 9384 | Files: src/json.c |
| 9385 | |
| 9386 | Patch 7.4.1499 |
| 9387 | Problem: No error message when :packadd does not find anything. |
| 9388 | Solution: Add an error message. (Hirohito Higashi) |
| 9389 | Files: runtime/doc/repeat.txt, src/ex_cmds.h, src/ex_cmds2.c, |
| 9390 | src/globals.h, src/testdir/test_packadd.vim |
| 9391 | |
| 9392 | Patch 7.4.1500 |
| 9393 | Problem: Should_free flag set to FALSE. |
| 9394 | Solution: Set it to TRUE. (Neovim 4415) |
| 9395 | Files: src/ex_eval.c |
| 9396 | |
| 9397 | Patch 7.4.1501 |
| 9398 | Problem: Garbage collection with an open channel is not tested. |
| 9399 | Solution: Call garbagecollect() in the test. |
| 9400 | Files: src/testdir/test_channel.vim |
| 9401 | |
| 9402 | Patch 7.4.1502 |
| 9403 | Problem: Writing last-but-one line of buffer to a channel isn't implemented |
| 9404 | yet. |
| 9405 | Solution: Implement it. Fix leaving a swap file behind. |
| 9406 | Files: src/channel.c, src/structs.h, src/memline.c, src/proto/channel.pro |
| 9407 | |
| 9408 | Patch 7.4.1503 |
| 9409 | Problem: Crash when using ch_getjob(). (Damien) |
| 9410 | Solution: Check for a NULL job. |
| 9411 | Files: src/eval.c, src/testdir/test_channel.vim |
| 9412 | |
| 9413 | Patch 7.4.1504 (after 7.4.1502) |
| 9414 | Problem: No test for reading last-but-one line. |
| 9415 | Solution: Add a test. |
| 9416 | Files: src/testdir/test_channel.vim |
| 9417 | |
| 9418 | Patch 7.4.1505 |
| 9419 | Problem: When channel log is enabled get too many "looking for messages" |
| 9420 | log entries. |
| 9421 | Solution: Only give the message after another message. |
| 9422 | Files: src/channel.c |
| 9423 | |
| 9424 | Patch 7.4.1506 |
| 9425 | Problem: Job cannot read from a file. |
| 9426 | Solution: Implement reading from a file for Unix. |
| 9427 | Files: src/eval.c, src/os_unix.c, src/os_win32.c, |
| 9428 | src/testdir/test_channel.vim |
| 9429 | |
| 9430 | Patch 7.4.1507 |
| 9431 | Problem: Crash when starting a job fails. |
| 9432 | Solution: Check for the channel to be NULL. (idea by Yasuhiro Matsumoto) |
| 9433 | Files: src/eval.c |
| 9434 | |
| 9435 | Patch 7.4.1508 |
| 9436 | Problem: Can't build GvimExt with MingW. |
| 9437 | Solution: Adjust the makefile. (Ben Fritz) |
| 9438 | Files: src/GvimExt/Make_ming.mak |
| 9439 | |
| 9440 | Patch 7.4.1509 |
| 9441 | Problem: Keeping both a variable for a job and the channel it refers to is |
| 9442 | a hassle. |
| 9443 | Solution: Allow passing the job where a channel is expected. (Damien) |
| 9444 | Files: src/eval.c, src/testdir/test_channel.vim |
| 9445 | |
| 9446 | Patch 7.4.1510 |
| 9447 | Problem: Channel test fails on AppVeyor. |
| 9448 | Solution: Wait longer than 10 msec if needed. |
| 9449 | Files: src/testdir/test_channel.vim |
| 9450 | |
| 9451 | Patch 7.4.1511 |
| 9452 | Problem: Statusline highlighting is sometimes wrong. |
| 9453 | Solution: Check for Highlight type. (Christian Brabandt) |
| 9454 | Files: src/buffer.c |
| 9455 | |
| 9456 | Patch 7.4.1512 |
| 9457 | Problem: Channel input from file not supported on MS-Windows. |
| 9458 | Solution: Implement it. (Yasuhiro Matsumoto) |
| 9459 | Files: src/os_win32.c, src/testdir/test_channel.vim |
| 9460 | |
| 9461 | Patch 7.4.1513 |
| 9462 | Problem: "J" fails if there are not enough lines. (Christian Neukirchen) |
| 9463 | Solution: Reduce the count, only fail on the last line. |
| 9464 | Files: src/normal.c, src/testdir/test_join.vim, src/testdir/test_alot.vim |
| 9465 | |
| 9466 | Patch 7.4.1514 |
| 9467 | Problem: Channel output to file not implemented yet. |
| 9468 | Solution: Implement it for Unix. |
| 9469 | Files: src/os_unix.c, src/testdir/test_channel.vim, |
| 9470 | src/testdir/test_channel_pipe.py |
| 9471 | |
| 9472 | Patch 7.4.1515 |
| 9473 | Problem: Channel test is a bit flaky. |
| 9474 | Solution: Instead of a fixed sleep time wait until an expression evaluates |
| 9475 | to true. |
| 9476 | Files: src/testdir/test_channel.vim |
| 9477 | |
| 9478 | Patch 7.4.1516 |
| 9479 | Problem: Cannot change file permissions. |
| 9480 | Solution: Add setfperm(). |
| 9481 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim, |
| 9482 | src/testdir/test_file_perm.vim |
| 9483 | |
| 9484 | Patch 7.4.1517 |
| 9485 | Problem: Compiler warning with 64bit compiler. |
| 9486 | Solution: Add typecast. (Mike Williams) |
| 9487 | Files: src/channel.c |
| 9488 | |
| 9489 | Patch 7.4.1518 |
| 9490 | Problem: Channel with disconnected in/out/err is not supported. |
| 9491 | Solution: Implement it for Unix. |
| 9492 | Files: src/eval.c, src/os_unix.c, src/structs.h, |
| 9493 | src/testdir/test_channel.vim, src/testdir/test_channel_pipe.py |
| 9494 | |
| 9495 | Patch 7.4.1519 (after 7.4.1514) |
| 9496 | Problem: Channel output to file not implemented for MS-Windows. |
| 9497 | Solution: Implement it. (Yasuhiro Matsumoto) |
| 9498 | Files: src/os_win32.c, src/testdir/test_channel.vim |
| 9499 | |
| 9500 | Patch 7.4.1520 |
| 9501 | Problem: Channel test: Waiting for a file to appear doesn't work. |
| 9502 | Solution: In waitFor() ignore errors. |
| 9503 | Files: src/testdir/test_channel.vim |
| 9504 | |
| 9505 | Patch 7.4.1521 (after 7.4.1516) |
| 9506 | Problem: File permission test fails on MS-Windows. |
| 9507 | Solution: Expect a different permission. |
| 9508 | Files: src/testdir/test_file_perm.vim |
| 9509 | |
| 9510 | Patch 7.4.1522 |
| 9511 | Problem: Cannot write channel err to a buffer. |
| 9512 | Solution: Implement it. |
| 9513 | Files: src/channel.c, src/testdir/test_channel.vim |
| 9514 | |
| 9515 | Patch 7.4.1523 |
| 9516 | Problem: Writing channel to a file fails on MS-Windows. |
| 9517 | Solution: Disable it for now. |
| 9518 | Files: src/testdir/test_channel.vim |
| 9519 | |
| 9520 | Patch 7.4.1524 |
| 9521 | Problem: Channel test fails on BSD. |
| 9522 | Solution: Break out of the loop when connect() succeeds. (Ozaki Kiichi) |
| 9523 | Files: src/channel.c |
| 9524 | |
| 9525 | Patch 7.4.1525 |
| 9526 | Problem: On a high resolution screen the toolbar icons are too small. |
| 9527 | Solution: Add "huge" and "giant" to 'toolbariconsize'. (Brian Gix) |
| 9528 | Files: src/gui_gtk_x11.c, src/option.h |
| 9529 | |
| 9530 | Patch 7.4.1526 |
| 9531 | Problem: Writing to file and not connecting a channel doesn't work for |
| 9532 | MS-Windows. |
| 9533 | Solution: Make it work. (Yasuhiro Matsumoto) |
| 9534 | Files: src/os_win32.c, src/testdir/test_channel.vim |
| 9535 | |
| 9536 | Patch 7.4.1527 |
| 9537 | Problem: Channel test is flaky on MS-Windows. |
| 9538 | Solution: Limit the select() timeout to 50 msec and try with a new socket if |
| 9539 | it fails. |
| 9540 | Files: src/channel.c |
| 9541 | |
| 9542 | Patch 7.4.1528 |
| 9543 | Problem: Using "ever" for packages is confusing. |
| 9544 | Solution: Use "start", as it's related to startup. |
| 9545 | Files: src/ex_cmds2.c, runtime/doc/repeat.txt |
| 9546 | |
| 9547 | Patch 7.4.1529 |
| 9548 | Problem: Specifying buffer number for channel not implemented yet. |
| 9549 | Solution: Implement passing a buffer number. |
| 9550 | Files: src/structs.h, src/channel.c, src/eval.c, |
| 9551 | src/testdir/test_channel.vim |
| 9552 | |
| 9553 | Patch 7.4.1530 |
| 9554 | Problem: MS-Windows job_start() closes wrong handle. |
| 9555 | Solution: Close hThread on the process info. (Ken Takata) |
| 9556 | Files: src/os_win32.c |
| 9557 | |
| 9558 | Patch 7.4.1531 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9559 | Problem: Compiler warning for uninitialized variable. (Dominique Pelle) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9560 | Solution: Always give the variable a value. |
| 9561 | Files: src/channel.c |
| 9562 | |
| 9563 | Patch 7.4.1532 |
| 9564 | Problem: MS-Windows channel leaks file descriptor. |
| 9565 | Solution: Use CreateFile with the right options. (Yasuhiro Matsumoto) |
| 9566 | Files: src/os_win32.c |
| 9567 | |
| 9568 | Patch 7.4.1533 |
| 9569 | Problem: Using feedkeys() with an empty string disregards 'x' option. |
| 9570 | Solution: Make 'x' work with an empty string. (Thinca) |
| 9571 | Files: src/eval.c, src/testdir/test_alot.vim, |
| 9572 | src/testdir/test_feedkeys.vim |
| 9573 | |
| 9574 | Patch 7.4.1534 |
| 9575 | Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama) |
| 9576 | Solution: Rename it. |
| 9577 | Files: src/eval.c |
| 9578 | |
| 9579 | Patch 7.4.1535 |
| 9580 | Problem: The feedkeys test has a one second delay. |
| 9581 | Solution: Avoid need_wait_return() to delay. (Hirohito Higashi) |
| 9582 | Files: src/eval.c |
| 9583 | |
| 9584 | Patch 7.4.1536 |
| 9585 | Problem: Cannot re-use a channel for another job. |
| 9586 | Solution: Add the "channel" option to job_start(). |
| 9587 | Files: src/channel.c, src/eval.c, src/structs.h, src/os_unix.c, |
| 9588 | src/os_win32.c, src/proto/channel.pro, |
| 9589 | src/testdir/test_channel.vim |
| 9590 | |
| 9591 | Patch 7.4.1537 |
| 9592 | Problem: Too many feature flags for pipes, jobs and channels. |
| 9593 | Solution: Only use FEAT_JOB_CHANNEL. |
| 9594 | Files: src/structs.h, src/feature.h, src/configure.in, |
| 9595 | src/auto/configure, src/config.h.in, src/channel.c, src/eval.c, |
| 9596 | src/gui.c, src/main.c, src/memline.c, src/misc2.c, src/os_mswin.c, |
| 9597 | src/os_unix.c, src/os_win32.c, src/ui.c, src/version.c, |
| 9598 | src/macros.h, src/proto.h, src/vim.h, src/Make_cyg_ming.mak, |
| 9599 | src/Make_bc5.mak, src/Make_mvc.mak |
| 9600 | |
| 9601 | Patch 7.4.1538 |
| 9602 | Problem: Selection with the mouse does not work in command line mode. |
| 9603 | Solution: Use cairo functions. (Kazunobu Kuriyama) |
| 9604 | Files: src/gui_gtk_x11.c |
| 9605 | |
| 9606 | Patch 7.4.1539 |
| 9607 | Problem: Too much code in eval.c. |
| 9608 | Solution: Move job and channel code to channel.c. |
| 9609 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 9610 | src/proto/eval.pro |
| 9611 | |
| 9612 | Patch 7.4.1540 |
| 9613 | Problem: Channel test is a bit flaky. |
| 9614 | Solution: Increase expected wait time. |
| 9615 | Files: src/testdir/test_channel.vim |
| 9616 | |
| 9617 | Patch 7.4.1541 |
| 9618 | Problem: Missing job_info(). |
| 9619 | Solution: Implement it. |
| 9620 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 9621 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 9622 | |
| 9623 | Patch 7.4.1542 |
| 9624 | Problem: job_start() with a list is not tested. |
| 9625 | Solution: Call job_start() with a list. |
| 9626 | Files: src/testdir/test_channel.vim |
| 9627 | |
| 9628 | Patch 7.4.1543 |
| 9629 | Problem: Channel log methods are not tested. |
| 9630 | Solution: Log job activity and check it. |
| 9631 | Files: src/testdir/test_channel.vim |
| 9632 | |
| 9633 | Patch 7.4.1544 |
| 9634 | Problem: On Win32 escaping the command does not work properly. |
| 9635 | Solution: Reset 'ssl' when escaping the command. (Yasuhiro Matsumoto) |
| 9636 | Files: src/channel.c |
| 9637 | |
| 9638 | Patch 7.4.1545 |
| 9639 | Problem: GTK3: horizontal cursor movement in Visual selection not good. |
| 9640 | Solution: Make it work better. (Kazunobu Kuriyama) |
| 9641 | Files: src/gui_gtk_x11.c |
| 9642 | |
| 9643 | Patch 7.4.1546 |
| 9644 | Problem: Sticky type checking is more annoying than useful. |
| 9645 | Solution: Remove the error for changing a variable type. |
| 9646 | Files: src/eval.c, src/testdir/test_assign.vim, |
| 9647 | src/testdir/test_alot.vim, runtime/doc/eval.txt |
| 9648 | |
| 9649 | Patch 7.4.1547 |
| 9650 | Problem: Getting a cterm highlight attribute that is not set results in the |
| 9651 | string "-1". |
| 9652 | Solution: Return an empty string. (Taro Muraoka) |
| 9653 | Files: src/syntax.c, src/testdir/test_alot.vim, |
| 9654 | src/testdir/test_syn_attr.vim |
| 9655 | |
| 9656 | Patch 7.4.1548 (after 7.4.1546) |
| 9657 | Problem: Two tests fail. |
| 9658 | Solution: Adjust the expected error number. Remove check for type. |
| 9659 | Files: src/testdir/test101.ok, src/testdir/test55.in, |
| 9660 | src/testdir/test55.ok |
| 9661 | |
| 9662 | Patch 7.4.1549 (after 7.4.1547) |
| 9663 | Problem: Test for syntax attributes fails in Win32 GUI. |
| 9664 | Solution: Use an existing font name. |
| 9665 | Files: src/testdir/test_syn_attr.vim |
| 9666 | |
| 9667 | Patch 7.4.1550 |
| 9668 | Problem: Cannot load packages early. |
| 9669 | Solution: Add the ":packloadall" command. |
| 9670 | Files: src/ex_cmds.h, src/ex_cmds2.c, src/main.c, |
| 9671 | src/proto/ex_cmds2.pro, src/testdir/test_packadd.vim |
| 9672 | |
| 9673 | Patch 7.4.1551 |
| 9674 | Problem: Cannot generate help tags in all doc directories. |
| 9675 | Solution: Make ":helptags ALL" work. |
| 9676 | Files: src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/ex_cmds.c, src/vim.h |
| 9677 | src/testdir/test_packadd.vim |
| 9678 | |
| 9679 | Patch 7.4.1552 |
| 9680 | Problem: ":colorscheme" does not use 'packpath'. |
| 9681 | Solution: Also use in "start" and "opt" directories in 'packpath'. |
| 9682 | Files: src/ex_cmds2.c, src/gui.c, src/hardcopy.c, src/os_mswin.c, |
| 9683 | src/spell.c, src/tag.c, src/if_py_both.h, src/vim.h, |
| 9684 | src/digraph.c, src/eval.c, src/ex_docmd.c, src/main.c, |
| 9685 | src/option.c, src/syntax.c, src/testdir/test_packadd.vim |
| 9686 | |
| 9687 | Patch 7.4.1553 |
| 9688 | Problem: ":runtime" does not use 'packpath'. |
| 9689 | Solution: Add "what" argument. |
| 9690 | Files: src/ex_cmds2.c, src/vim.h, runtime/doc/repeat.txt, |
| 9691 | src/testdir/test_packadd.vim |
| 9692 | |
| 9693 | Patch 7.4.1554 |
| 9694 | Problem: Completion for :colorscheme does not use 'packpath'. |
| 9695 | Solution: Make it work, add a test. (Hirohito Higashi) |
| 9696 | Files: src/ex_getln.c, src/testdir/test_packadd.vim |
| 9697 | |
| 9698 | Patch 7.4.1555 |
| 9699 | Problem: List of test targets incomplete. |
| 9700 | Solution: Add newly added tests. |
| 9701 | Files: src/Makefile |
| 9702 | |
| 9703 | Patch 7.4.1556 |
| 9704 | Problem: "make install" changes the help tags file, causing it to differ |
| 9705 | from the repository. |
| 9706 | Solution: Move it aside and restore it. |
| 9707 | Files: src/Makefile |
| 9708 | |
| 9709 | Patch 7.4.1557 |
| 9710 | Problem: Windows cannot be identified. |
| 9711 | Solution: Add a unique window number to each window and functions to use it. |
| 9712 | Files: src/structs.h, src/window.c, src/eval.c, src/proto/eval.pro, |
| 9713 | src/proto/window.pro, src/testdir/test_window_id.vim, |
| 9714 | src/testdir/Make_all.mak, runtime/doc/eval.txt |
| 9715 | |
| 9716 | Patch 7.4.1558 |
| 9717 | Problem: It is not easy to find out what windows display a buffer. |
| 9718 | Solution: Add win_findbuf(). |
| 9719 | Files: src/eval.c, src/window.c, src/proto/window.pro, |
| 9720 | src/testdir/test_window_id.vim, runtime/doc/eval.txt |
| 9721 | |
| 9722 | Patch 7.4.1559 |
| 9723 | Problem: Passing cookie to a callback is clumsy. |
| 9724 | Solution: Change function() to take arguments and return a partial. |
| 9725 | Files: src/structs.h, src/channel.c, src/eval.c, src/if_python.c, |
| 9726 | src/if_python3.c, src/if_py_both.h, src/json.c, |
| 9727 | src/proto/eval.pro, src/testdir/test_partial.vim, |
| 9728 | src/testdir/test_alot.vim, runtime/doc/eval.txt |
| 9729 | |
| 9730 | Patch 7.4.1560 |
| 9731 | Problem: Dict options with a dash are more difficult to use. |
| 9732 | Solution: Use an underscore, so that dict.err_io can be used. |
| 9733 | Files: src/channel.c, src/structs.h, src/testdir/test_channel.vim, |
| 9734 | runtime/doc/channel.txt |
| 9735 | |
| 9736 | Patch 7.4.1561 (after 7.4.1559) |
| 9737 | Problem: Missing update to proto file. |
| 9738 | Solution: Change the proto file. |
| 9739 | Files: src/proto/channel.pro |
| 9740 | |
| 9741 | Patch 7.4.1562 |
| 9742 | Problem: ":helptags ALL" crashes. (Lcd) |
| 9743 | Solution: Don't free twice. |
| 9744 | Files: src/ex_cmds.c |
| 9745 | |
| 9746 | Patch 7.4.1563 |
| 9747 | Problem: Partial test fails on windows. |
| 9748 | Solution: Return 1 or -1 from compare function. |
| 9749 | Files: src/testdir/test_partial.vim |
| 9750 | |
| 9751 | Patch 7.4.1564 |
| 9752 | Problem: An empty list in function() causes an error. |
| 9753 | Solution: Handle an empty list like there is no list of arguments. |
| 9754 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9755 | |
| 9756 | Patch 7.4.1565 |
| 9757 | Problem: Crash when assert_equal() runs into a NULL string. |
| 9758 | Solution: Check for NULL. (Dominique) Add a test. |
| 9759 | Files: src/eval.c, src/testdir/test_assert.vim |
| 9760 | |
| 9761 | Patch 7.4.1566 |
| 9762 | Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama) |
| 9763 | Solution: Remove the inner one. |
| 9764 | Files: src/eval.c |
| 9765 | |
| 9766 | Patch 7.4.1567 |
| 9767 | Problem: Crash in assert_fails(). |
| 9768 | Solution: Check for NULL. (Dominique Pelle) Add a test. |
| 9769 | Files: src/eval.c, src/testdir/test_assert.vim |
| 9770 | |
| 9771 | Patch 7.4.1568 |
| 9772 | Problem: Using CTRL-] in help on option in parentheses doesn't work. |
| 9773 | Solution: Skip the "(" in "('". (Hirohito Higashi) |
| 9774 | Files: src/ex_cmds.c |
| 9775 | |
| 9776 | Patch 7.4.1569 |
| 9777 | Problem: Using old style tests for quickfix. |
| 9778 | Solution: Change them to new style tests. (Yegappan Lakshmanan) |
| 9779 | Files: src/testdir/Make_all.mak, src/testdir/test106.in, |
| 9780 | src/testdir/test106.ok, src/testdir/test_qf_title.in, |
| 9781 | src/testdir/test_qf_title.ok, src/testdir/test_quickfix.vim |
| 9782 | |
| 9783 | Patch 7.4.1570 |
| 9784 | Problem: There is no way to avoid the message when editing a file. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 9785 | Solution: Add the "F" flag to 'shortmess'. (Shougo Matsu, closes #686) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9786 | Files: runtime/doc/options.txt, src/buffer.c, src/ex_cmds.c, |
| 9787 | src/option.h |
| 9788 | |
| 9789 | Patch 7.4.1571 |
| 9790 | Problem: No test for ":help". |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9791 | Solution: Add a test for what 7.4.1568 fixed. (Hirohito Higashi) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9792 | Files: src/testdir/test_alot.vim, src/testdir/test_help_tagjump.vim |
| 9793 | |
| 9794 | Patch 7.4.1572 |
| 9795 | Problem: Setting 'compatible' in test influences following tests. |
| 9796 | Solution: Turn 'compatible' off again. |
| 9797 | Files: src/testdir/test_backspace_opt.vim |
| 9798 | |
| 9799 | Patch 7.4.1573 |
| 9800 | Problem: Tests get stuck at the more prompt. |
| 9801 | Solution: Move the backspace test out of test_alot. |
| 9802 | Files: src/testdir/test_alot.vim, src/testdir/Make_all.mak |
| 9803 | |
| 9804 | Patch 7.4.1574 |
| 9805 | Problem: ":undo 0" does not work. (Florent Fayolle) |
| 9806 | Solution: Make it undo all the way. (closes #688) |
| 9807 | Files: src/undo.c, src/testdir/test_undolevels.vim, |
| 9808 | src/testdir/test_ex_undo.vim, src/testdir/test_alot.vim |
| 9809 | |
| 9810 | Patch 7.4.1575 |
| 9811 | Problem: Using wrong size for struct. |
| 9812 | Solution: Use the size for wide API. (Ken Takata) |
| 9813 | Files: src/gui_w32.c |
| 9814 | |
| 9815 | Patch 7.4.1576 |
| 9816 | Problem: Write error of viminfo file is not handled properly. (Christian |
| 9817 | Neukirchen) |
| 9818 | Solution: Check the return value of fclose(). (closes #682) |
| 9819 | Files: src/ex_cmds.c |
| 9820 | |
| 9821 | Patch 7.4.1577 |
| 9822 | Problem: Cannot pass "dict.Myfunc" around as a partial. |
| 9823 | Solution: Create a partial when expected. |
| 9824 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9825 | |
| 9826 | Patch 7.4.1578 |
| 9827 | Problem: There is no way to invoke a function later or periodically. |
| 9828 | Solution: Add timer support. |
| 9829 | Files: src/eval.c, src/ex_cmds2.c, src/screen.c, src/ex_docmd.c, |
| 9830 | src/feature.h, src/gui.c, src/proto/eval.pro, |
| 9831 | src/proto/ex_cmds2.pro, src/proto/screen.pro, src/structs.h, |
| 9832 | src/version.c, src/testdir/test_alot.vim, |
| 9833 | src/testdir/test_timers.vim, runtime/doc/eval.txt |
| 9834 | |
| 9835 | Patch 7.4.1579 (after 7.4.1578) |
| 9836 | Problem: Missing changes in channel.c |
| 9837 | Solution: Include the changes. |
| 9838 | Files: src/channel.c |
| 9839 | |
| 9840 | Patch 7.4.1580 |
| 9841 | Problem: Crash when using function reference. (Luchr) |
| 9842 | Solution: Set initial refcount. (Ken Takata, closes #690) |
| 9843 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9844 | |
| 9845 | Patch 7.4.1581 |
| 9846 | Problem: Using ":call dict.func()" where the function is a partial does |
| 9847 | not work. Using "dict.func()" where the function does not take a |
| 9848 | Dictionary does not work. |
| 9849 | Solution: Handle partial properly in ":call". (Yasuhiro Matsumoto) |
| 9850 | Files: src/eval.c, src/testdir/test_partial.vim, src/testdir/test55.ok |
| 9851 | |
| 9852 | Patch 7.4.1582 |
| 9853 | Problem: Get E923 when using function(dict.func, [], dict). (Kent Sibilev) |
| 9854 | Storing a function with a dict in a variable drops the dict if the |
| 9855 | function is script-local. |
| 9856 | Solution: Translate the function name. Use dict arg if present. |
| 9857 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9858 | |
| 9859 | Patch 7.4.1583 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9860 | Problem: Warning for uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9861 | Solution: Initialize it. (Dominique) |
| 9862 | Files: src/ex_cmds2.c |
| 9863 | |
| 9864 | Patch 7.4.1584 |
| 9865 | Problem: Timers don't work for Win32 console. |
| 9866 | Solution: Add check_due_timer() in WaitForChar(). |
| 9867 | Files: src/os_win32.c |
| 9868 | |
| 9869 | Patch 7.4.1585 |
| 9870 | Problem: Partial is not recognized everywhere. |
| 9871 | Solution: Check for partial in trans_function_name(). (Yasuhiro Matsumoto) |
| 9872 | Add a test. |
| 9873 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9874 | |
| 9875 | Patch 7.4.1586 |
| 9876 | Problem: Nesting partials doesn't work. |
| 9877 | Solution: Append arguments. (Ken Takata) |
| 9878 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9879 | |
| 9880 | Patch 7.4.1587 |
| 9881 | Problem: Compiler warnings with 64 bit compiler. |
| 9882 | Solution: Add type casts. (Mike Williams) |
| 9883 | Files: src/ex_cmds2.c |
| 9884 | |
| 9885 | Patch 7.4.1588 |
| 9886 | Problem: Old style test for quickfix. |
| 9887 | Solution: Turn test 96 into a new style test. |
| 9888 | Files: src/testdir/Make_all.mak, src/testdir/test96.in, |
| 9889 | src/testdir/test96.ok, src/testdir/test_quickfix.vim |
| 9890 | |
| 9891 | Patch 7.4.1589 |
| 9892 | Problem: Combining dict and args with partial doesn't always work. |
| 9893 | Solution: Use the arguments from the partial. |
| 9894 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9895 | |
| 9896 | Patch 7.4.1590 |
| 9897 | Problem: Warning for shadowed variable. (Christian Brabandt) |
| 9898 | Solution: Move the variable into a local block. |
| 9899 | Files: src/eval.c |
| 9900 | |
| 9901 | Patch 7.4.1591 |
| 9902 | Problem: The quickfix title is truncated. |
| 9903 | Solution: Save the command before it is truncated. (Anton Lindqvist) |
| 9904 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 9905 | |
| 9906 | Patch 7.4.1592 |
| 9907 | Problem: Quickfix code using memory after being freed. (Dominique Pelle) |
| 9908 | Solution: Detect that the window was closed. (Hirohito Higashi) |
| 9909 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 9910 | |
| 9911 | Patch 7.4.1593 |
| 9912 | Problem: Using channel timeout instead of request timeout. (Coverity) |
| 9913 | Solution: Remove the extra assignment. |
| 9914 | Files: src/channel.c |
| 9915 | |
| 9916 | Patch 7.4.1594 |
| 9917 | Problem: Timers don't work on Unix. |
| 9918 | Solution: Add missing code. |
| 9919 | Files: src/os_unix.c |
| 9920 | |
| 9921 | Patch 7.4.1595 |
| 9922 | Problem: Not checking for failed open(). (Coverity) |
| 9923 | Solution: Check file descriptor not being negative. |
| 9924 | Files: src/os_unix.c |
| 9925 | |
| 9926 | Patch 7.4.1596 |
| 9927 | Problem: Memory leak. (Coverity) |
| 9928 | Solution: Free the pattern. |
| 9929 | Files: src/ex_cmds2.c |
| 9930 | |
| 9931 | Patch 7.4.1597 |
| 9932 | Problem: Memory leak when out of memory. (Coverity) |
| 9933 | Solution: Free the name. |
| 9934 | Files: src/eval.c |
| 9935 | |
| 9936 | Patch 7.4.1598 |
| 9937 | Problem: When starting the GUI fails a swap file is left behind. (Joerg |
| 9938 | Plate) |
| 9939 | Solution: Preserve files before exiting. (closes #692) |
| 9940 | Files: src/main.c, src/gui.c |
| 9941 | |
| 9942 | Patch 7.4.1599 |
| 9943 | Problem: No link to Coverity. |
| 9944 | Solution: Add Coverity badge in README. |
| 9945 | Files: README.md |
| 9946 | |
| 9947 | Patch 7.4.1600 |
| 9948 | Problem: libs directory is not useful. |
| 9949 | Solution: Remove arp.library, it was only for very old Amiga versions. |
| 9950 | Files: libs/arp.library, Filelist |
| 9951 | |
| 9952 | Patch 7.4.1601 |
| 9953 | Problem: README files take a lot of space in the top directory. |
| 9954 | Solution: Move most of them to "READMEdir". |
| 9955 | Files: Filelist, Makefile, README.txt.info, README_ami.txt, |
| 9956 | README_ami.txt.info, README_amibin.txt, README_amibin.txt.info, |
| 9957 | README_amisrc.txt, README_amisrc.txt.info, README_bindos.txt, |
| 9958 | README_dos.txt, README_extra.txt, README_mac.txt, README_ole.txt, |
| 9959 | README_os2.txt, README_os390.txt, README_src.txt, |
| 9960 | README_srcdos.txt, README_unix.txt, README_vms.txt, |
| 9961 | README_w32s.txt, READMEdir/README.txt.info, |
| 9962 | READMEdir/README_ami.txt, READMEdir/README_ami.txt.info, |
| 9963 | READMEdir/README_amibin.txt, READMEdir/README_amibin.txt.info, |
| 9964 | READMEdir/README_amisrc.txt, READMEdir/README_amisrc.txt.info, |
| 9965 | READMEdir/README_bindos.txt, READMEdir/README_dos.txt, |
| 9966 | READMEdir/README_extra.txt, READMEdir/README_mac.txt, |
| 9967 | READMEdir/README_ole.txt, READMEdir/README_os2.txt, |
| 9968 | READMEdir/README_os390.txt, READMEdir/README_src.txt, |
| 9969 | READMEdir/README_srcdos.txt, READMEdir/README_unix.txt, |
| 9970 | READMEdir/README_vms.txt, READMEdir/README_w32s.txt, |
| 9971 | |
| 9972 | Patch 7.4.1602 |
| 9973 | Problem: Info files take space in the top directory. |
| 9974 | Solution: Move them to "READMEdir". |
| 9975 | Files: Filelist, src.info, Contents.info, runtime.info, vimdir.info, |
| 9976 | Vim.info, Xxd.info, READMEdir/src.info, READMEdir/Contents.info, |
| 9977 | READMEdir/runtime.info, READMEdir/vimdir.info, READMEdir/Vim.info, |
| 9978 | READMEdir/Xxd.info |
| 9979 | |
| 9980 | Patch 7.4.1603 |
| 9981 | Problem: Timer with an ":echo" command messes up display. |
| 9982 | Solution: Redraw depending on the mode. (Hirohito Higashi) Avoid the more |
| 9983 | prompt being used recursively. |
| 9984 | Files: src/screen.c, src/message.c |
| 9985 | |
| 9986 | Patch 7.4.1604 |
| 9987 | Problem: Although emoji characters are ambiguous width, best is to treat |
| 9988 | them as full width. |
| 9989 | Solution: Update the Unicode character tables. Add the 'emoji' options. |
| 9990 | (Yasuhiro Matsumoto) |
| 9991 | Files: runtime/doc/options.txt, runtime/optwin.vim, |
| 9992 | runtime/tools/unicode.vim, src/mbyte.c, src/option.c, src/option.h |
| 9993 | |
| 9994 | Patch 7.4.1605 |
| 9995 | Problem: Catching exception that won't be thrown. |
| 9996 | Solution: Remove try/catch. |
| 9997 | Files: src/testdir/test55.in |
| 9998 | |
| 9999 | Patch 7.4.1606 |
| 10000 | Problem: Having type() handle a Funcref that is or isn't a partial |
| 10001 | differently causes problems for existing scripts. |
| 10002 | Solution: Make type() return the same value. (Thinca) |
| 10003 | Files: src/eval.c, src/testdir/test_viml.vim |
| 10004 | |
| 10005 | Patch 7.4.1607 |
| 10006 | Problem: Comparing a function that exists on two dicts is not backwards |
| 10007 | compatible. (Thinca) |
| 10008 | Solution: Only compare the function, not what the partial adds. |
| 10009 | Files: src/eval.c, src/testdir/test_alot.vim, src/testdir/test_expr.vim |
| 10010 | |
| 10011 | Patch 7.4.1608 |
| 10012 | Problem: string() doesn't handle a partial. |
| 10013 | Solution: Make a string from a partial. |
| 10014 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10015 | |
| 10016 | Patch 7.4.1609 |
| 10017 | Problem: Contents file is only for Amiga distro. |
| 10018 | Solution: Move it to "READMEdir". Update some info. |
| 10019 | Files: Filelist, Contents, READMEdir/Contents |
| 10020 | |
| 10021 | Patch 7.4.1610 |
| 10022 | Problem: Compiler warnings for non-virtual destructor. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10023 | Solution: Mark the classes final. (Ken Takata) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10024 | Files: src/Make_cyg_ming.mak, src/gui_dwrite.cpp, src/if_ole.cpp |
| 10025 | |
| 10026 | Patch 7.4.1611 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10027 | Problem: The versplit feature makes the code unnecessary complicated. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10028 | Solution: Remove FEAT_VERTSPLIT, always support vertical splits when |
| 10029 | FEAT_WINDOWS is defined. |
| 10030 | Files: src/buffer.c, src/charset.c, src/eval.c, src/ex_cmds.c, |
| 10031 | src/ex_docmd.c, src/ex_getln.c, src/gui.c, src/if_lua.c, |
| 10032 | src/if_mzsch.c, src/if_ruby.c, src/main.c, src/misc1.c, |
| 10033 | src/misc2.c, src/move.c, src/normal.c, src/option.c, |
| 10034 | src/quickfix.c, src/screen.c, src/syntax.c, src/term.c, src/ui.c, |
| 10035 | src/window.c, src/globals.h, src/gui.h, src/if_py_both.h, |
| 10036 | src/option.h, src/structs.h, src/term.h |
| 10037 | src/feature.h, src/vim.h, src/version.c |
| 10038 | |
| 10039 | Patch 7.4.1612 (after 7.4.1611) |
| 10040 | Problem: Can't build with small features. |
| 10041 | Solution: Move code and #ifdefs. |
| 10042 | Files: src/ex_getln.c |
| 10043 | |
| 10044 | Patch 7.4.1613 (after 7.4.1612) |
| 10045 | Problem: Still can't build with small features. |
| 10046 | Solution: Adjust #ifdefs. |
| 10047 | Files: src/ex_getln.c |
| 10048 | |
| 10049 | Patch 7.4.1614 |
| 10050 | Problem: Still quickfix test in old style. |
| 10051 | Solution: Turn test 10 into a new style test. |
| 10052 | Files: src/testdir/Make_all.mak, src/testdir/Make_vms.mms, |
| 10053 | src/testdir/main.aap, src/testdir/test10.in, |
| 10054 | src/testdir/test10.ok, src/testdir/test_quickfix.vim, |
| 10055 | src/testdir/test10a.in, src/testdir/test10a.ok |
| 10056 | |
| 10057 | Patch 7.4.1615 |
| 10058 | Problem: Build fails with tiny features. |
| 10059 | Solution: Adjust #ifdefs. |
| 10060 | Files: src/normal.c, src/window.c |
| 10061 | |
| 10062 | Patch 7.4.1616 |
| 10063 | Problem: Malformed channel request causes a hang. |
| 10064 | Solution: Drop malformed message. (Damien) |
| 10065 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 10066 | src/testdir/test_channel.py |
| 10067 | |
| 10068 | Patch 7.4.1617 |
| 10069 | Problem: When a JSON message is split it isn't decoded. |
| 10070 | Solution: Wait a short time for the rest of the message to arrive. |
| 10071 | Files: src/channel.c, src/json.c, src/structs.h, |
| 10072 | src/testdir/test_channel.vim, src/testdir/test_channel.py |
| 10073 | |
| 10074 | Patch 7.4.1618 |
| 10075 | Problem: Starting job with output to buffer changes options in the current |
| 10076 | buffer. |
| 10077 | Solution: Set "curbuf" earlier. (Yasuhiro Matsumoto) |
| 10078 | Files: src/channel.c |
| 10079 | |
| 10080 | Patch 7.4.1619 |
| 10081 | Problem: When 'fileformats' is set in the vimrc it applies to new buffers |
| 10082 | but not the initial buffer. |
| 10083 | Solution: Set 'fileformat' when starting up. (Mike Williams) |
| 10084 | Files: src/option.c |
| 10085 | |
| 10086 | Patch 7.4.1620 |
| 10087 | Problem: Emoji characters are not considered as a kind of word character. |
| 10088 | Solution: Give emoji characters a word class number. (Yasuhiro Matsumoto) |
| 10089 | Files: src/mbyte.c |
| 10090 | |
| 10091 | Patch 7.4.1621 |
| 10092 | Problem: Channel test doesn't work with Python 2.6. |
| 10093 | Solution: Add number in formatting placeholder. (Wiredool) |
| 10094 | Files: src/testdir/test_channel.py |
| 10095 | |
| 10096 | Patch 7.4.1622 |
| 10097 | Problem: Channel demo doesn't work with Python 2.6. |
| 10098 | Solution: Add number in formatting placeholder |
| 10099 | Files: runtime/tools/demoserver.py |
| 10100 | |
| 10101 | Patch 7.4.1623 |
| 10102 | Problem: All Channels share the message ID, it keeps getting bigger. |
| 10103 | Solution: Use a message ID per channel. |
| 10104 | Files: src/channel.c, src/proto/channel.pro, src/structs.h |
| 10105 | |
| 10106 | Patch 7.4.1624 |
| 10107 | Problem: Can't get info about a channel. |
| 10108 | Solution: Add ch_info(). |
| 10109 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 10110 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 10111 | |
| 10112 | Patch 7.4.1625 |
| 10113 | Problem: Trying to close file descriptor that isn't open. |
| 10114 | Solution: Check for negative number. |
| 10115 | Files: src/os_unix.c |
| 10116 | |
| 10117 | Patch 7.4.1626 (after 7.4.1624) |
| 10118 | Problem: Missing changes to structs. |
| 10119 | Solution: Include the changes. |
| 10120 | Files: src/structs.h |
| 10121 | |
| 10122 | Patch 7.4.1627 |
| 10123 | Problem: Channel out_cb and err_cb are not tested. |
| 10124 | Solution: Add a test. |
| 10125 | Files: src/testdir/test_channel.vim |
| 10126 | |
| 10127 | Patch 7.4.1628 |
| 10128 | Problem: 64-bit Compiler warning. |
| 10129 | Solution: Change type of variable. (Mike Williams) |
| 10130 | Files: src/channel.c |
| 10131 | |
| 10132 | Patch 7.4.1629 |
| 10133 | Problem: Handling emoji characters as full width has problems with |
| 10134 | backwards compatibility. |
| 10135 | Solution: Remove ambiguous and double width characters from the emoji table. |
| 10136 | Use a separate table for the character class. |
| 10137 | (partly by Yasuhiro Matsumoto) |
| 10138 | Files: runtime/tools/unicode.vim, src/mbyte.c |
| 10139 | |
| 10140 | Patch 7.4.1630 |
| 10141 | Problem: Unicode table for double width is outdated. |
| 10142 | Solution: Update to the latest Unicode standard. |
| 10143 | Files: src/mbyte.c |
| 10144 | |
| 10145 | Patch 7.4.1631 |
| 10146 | Problem: Compiler doesn't understand switch on all enum values. (Tony |
| 10147 | Mechelynck) |
| 10148 | Solution: Initialize variable. |
| 10149 | Files: src/channel.c |
| 10150 | |
| 10151 | Patch 7.4.1632 |
| 10152 | Problem: List of test targets is outdated. |
| 10153 | Solution: Update to current list of test targets. |
| 10154 | Files: src/Makefile |
| 10155 | |
| 10156 | Patch 7.4.1633 |
| 10157 | Problem: If the help tags file was removed "make install" fails. (Tony |
| 10158 | Mechelynck) |
| 10159 | Solution: Only try moving the file if it exists. |
| 10160 | Files: src/Makefile |
| 10161 | |
| 10162 | Patch 7.4.1634 |
| 10163 | Problem: Vertical movement after CTRL-A ends up in the wrong column. |
| 10164 | (Urtica Dioica) |
| 10165 | Solution: Set curswant when appropriate. (Hirohito Higashi) |
| 10166 | Files: src/ops.c, src/testdir/test_increment.vim |
| 10167 | |
| 10168 | Patch 7.4.1635 |
| 10169 | Problem: Channel test is a bit flaky. |
| 10170 | Solution: Remove 'DETACH' if it's there. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 10171 | Files: src/testdir/test_channel.vim |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10172 | |
| 10173 | Patch 7.4.1636 |
| 10174 | Problem: When 'F' is in 'shortmess' the prompt for the encryption key isn't |
| 10175 | displayed. (Toothpik) |
| 10176 | Solution: Reset msg_silent. |
| 10177 | Files: src/ex_getln.c |
| 10178 | |
| 10179 | Patch 7.4.1637 |
| 10180 | Problem: Can't build with older MinGW compiler. |
| 10181 | Solution: Change option from c++11 to gnu++11. (Ken Takata) |
| 10182 | Files: src/Make_cyg_ming.mak |
| 10183 | |
| 10184 | Patch 7.4.1638 |
| 10185 | Problem: When binding a function to a dict the reference count is wrong. |
| 10186 | Solution: Decrement dict reference count, only reference the function when |
| 10187 | actually making a copy. (Ken Takata) |
| 10188 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10189 | |
| 10190 | Patch 7.4.1639 |
| 10191 | Problem: Invoking garbage collection may cause a double free. |
| 10192 | Solution: Don't free the dict in a partial when recursive is FALSE. |
| 10193 | Files: src/eval.c |
| 10194 | |
| 10195 | Patch 7.4.1640 |
| 10196 | Problem: Crash when an autocommand changes a quickfix list. (Dominique) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10197 | Solution: Check whether an entry is still valid. (Yegappan Lakshmanan, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10198 | Hirohito Higashi) |
| 10199 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 10200 | |
| 10201 | Patch 7.4.1641 |
| 10202 | Problem: Using unterminated string. |
| 10203 | Solution: Add NUL before calling vim_strsave_shellescape(). (James McCoy) |
| 10204 | Files: src/eval.c, src/testdir/test105.in, src/testdir/test105.ok |
| 10205 | |
| 10206 | Patch 7.4.1642 |
| 10207 | Problem: Handling emoji characters as full width has problems with |
| 10208 | backwards compatibility. |
| 10209 | Solution: Only put characters in the 1f000 range in the emoji table. |
| 10210 | Files: runtime/tools/unicode.vim, src/mbyte.c |
| 10211 | |
| 10212 | Patch 7.4.1643 (after 7.4.1641) |
| 10213 | Problem: Terminating file name has side effects. |
| 10214 | Solution: Restore the character. (mostly by James McCoy, closes #713) |
| 10215 | Files: src/eval.c, src/testdir/test105.in, src/testdir/test105.ok |
| 10216 | |
| 10217 | Patch 7.4.1644 |
| 10218 | Problem: Using string() on a partial that exists in the dictionary it binds |
| 10219 | results in an error. (Nikolai Pavlov) |
| 10220 | Solution: Make string() not fail on a recursively nested structure. (Ken |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10221 | Takata) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10222 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10223 | |
| 10224 | Patch 7.4.1645 |
| 10225 | Problem: When a dict contains a partial it can't be redefined as a |
| 10226 | function. (Nikolai Pavlov) |
| 10227 | Solution: Remove the partial when overwriting with a function. |
| 10228 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10229 | |
| 10230 | Patch 7.4.1646 |
| 10231 | Problem: Using Python vim.bindeval() on a partial doesn't work. (Nikolai |
| 10232 | Pavlov) |
| 10233 | Solution: Add VAR_PARTIAL support in Python. |
| 10234 | Files: src/if_py_both.h, src/testdir/test_partial.vim |
| 10235 | |
| 10236 | Patch 7.4.1647 |
| 10237 | Problem: Using freed memory after setqflist() and ":caddbuffer". (Dominique) |
| 10238 | Solution: Set qf_ptr when adding the first item to the quickfix list. |
| 10239 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 10240 | |
| 10241 | Patch 7.4.1648 |
| 10242 | Problem: Compiler has a problem copying a string into di_key[]. (Yegappan |
| 10243 | Lakshmanan) |
| 10244 | Solution: Add dictitem16_T. |
| 10245 | Files: src/structs.h, src/eval.c |
| 10246 | |
| 10247 | Patch 7.4.1649 |
| 10248 | Problem: The matchit plugin needs to be copied to be used. |
| 10249 | Solution: Put the matchit plugin in an optional package. |
| 10250 | Files: Filelist, runtime/macros/matchit.vim, runtime/macros/matchit.txt, |
| 10251 | runtime/macros/README.txt, src/Makefile, |
| 10252 | runtime/pack/dist/opt/matchit/plugin/matchit.vim, |
| 10253 | runtime/pack/dist/opt/matchit/doc/matchit.txt, |
| 10254 | runtime/pack/dist/opt/matchit/doc/tags, |
| 10255 | runtime/doc/usr_05.txt, runtime/doc/usr_toc.txt |
| 10256 | |
| 10257 | Patch 7.4.1650 |
| 10258 | Problem: Quickfix test fails. |
| 10259 | Solution: Accept any number of matches. |
| 10260 | Files: src/testdir/test_quickfix.vim |
| 10261 | |
| 10262 | Patch 7.4.1651 |
| 10263 | Problem: Some dead (MSDOS) code remains. |
| 10264 | Solution: Remove the unused lines. (Ken Takata) |
| 10265 | Files: src/misc1.c |
| 10266 | |
| 10267 | Patch 7.4.1652 |
| 10268 | Problem: Old style test for fnamemodify(). |
| 10269 | Solution: Turn it into a new style test. |
| 10270 | Files: src/testdir/test105.in, src/testdir/test105.ok, |
| 10271 | src/testdir/test_fnamemodify.vim, src/testdir/test_alot.vim, |
| 10272 | src/testdir/Make_all.mak |
| 10273 | |
| 10274 | Patch 7.4.1653 (after 7.4.1649) |
| 10275 | Problem: Users who loaded matchit.vim manually have to change their |
| 10276 | startup. (Gary Johnson) |
| 10277 | Solution: Add a file in the old location that loads the package. |
| 10278 | Files: runtime/macros/matchit.vim, Filelist |
| 10279 | |
| 10280 | Patch 7.4.1654 |
| 10281 | Problem: Crash when using expand('%:S') in a buffer without a name. |
| 10282 | Solution: Don't set a NUL. (James McCoy, closes #714) |
| 10283 | Files: src/eval.c, src/testdir/test_fnamemodify.vim |
| 10284 | |
| 10285 | Patch 7.4.1655 |
| 10286 | Problem: remote_expr() hangs. (Ramel) |
| 10287 | Solution: Check for messages in the waiting loop. |
| 10288 | Files: src/if_xcmdsrv.c |
| 10289 | |
| 10290 | Patch 7.4.1656 |
| 10291 | Problem: Crash when using partial with a timer. |
| 10292 | Solution: Increment partial reference count. (Hirohito Higashi) |
| 10293 | Files: src/eval.c, src/testdir/test_timers.vim |
| 10294 | |
| 10295 | Patch 7.4.1657 |
| 10296 | Problem: On Unix in a terminal: channel messages are not handled right away. |
| 10297 | (Jackson Alves de Aquino) |
| 10298 | Solution: Break the loop for timers when something was received. |
| 10299 | Files: src/os_unix.c |
| 10300 | |
| 10301 | Patch 7.4.1658 |
| 10302 | Problem: A plugin does not know when VimEnter autocommands were already |
| 10303 | triggered. |
| 10304 | Solution: Add the v:vim_did_enter variable. |
| 10305 | Files: src/eval.c, src/main.c, src/vim.h, src/testdir/test_autocmd.vim, |
| 10306 | src/testdir/test_alot.vim, runtime/doc/autocmd.txt, |
| 10307 | runtime/doc/eval.txt |
| 10308 | |
| 10309 | Patch 7.4.1659 (after 7.4.1657) |
| 10310 | Problem: Compiler warning for argument type. (Manuel Ortega) |
| 10311 | Solution: Remove "&". |
| 10312 | Files: src/os_unix.c |
| 10313 | |
| 10314 | Patch 7.4.1660 |
| 10315 | Problem: has('patch-7.4.1') doesn't work. |
| 10316 | Solution: Fix off-by-one error. (Thinca) |
| 10317 | Files: src/eval.c, src/testdir/test_expr.vim, src/testdir/test60.in, |
| 10318 | src/testdir/test60.ok |
| 10319 | |
| 10320 | Patch 7.4.1661 |
| 10321 | Problem: No test for special characters in channel eval command. |
| 10322 | Solution: Testing sending and receiving text with special characters. |
| 10323 | Files: src/testdir/test_channel.vim, src/testdir/test_channel.py |
| 10324 | |
| 10325 | Patch 7.4.1662 |
| 10326 | Problem: No test for an invalid Ex command on a channel. |
| 10327 | Solution: Test handling an invalid command gracefully. Avoid getting an |
| 10328 | error message, do write it to the channel log. |
| 10329 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 10330 | src/testdir/test_channel.py |
| 10331 | |
| 10332 | Patch 7.4.1663 |
| 10333 | Problem: In tests it's often useful to check if a pattern matches. |
| 10334 | Solution: Add assert_match(). |
| 10335 | Files: src/eval.c, src/testdir/test_assert.vim, |
| 10336 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 10337 | |
| 10338 | Patch 7.4.1664 |
| 10339 | Problem: Crash in :cgetexpr. |
| 10340 | Solution: Check for NULL pointer. (Dominique) Add a test. |
| 10341 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 10342 | |
| 10343 | Patch 7.4.1665 |
| 10344 | Problem: Crash when calling job_start() with a NULL string. (Dominique) |
| 10345 | Solution: Check for an invalid argument. |
| 10346 | Files: src/channel.c, src/testdir/test_channel.vim |
| 10347 | |
| 10348 | Patch 7.4.1666 |
| 10349 | Problem: When reading JSON from a channel all readahead is used. |
| 10350 | Solution: Use the fill function to reduce overhead. |
| 10351 | Files: src/channel.c, src/json.c, src/structs.h |
| 10352 | |
| 10353 | Patch 7.4.1667 |
| 10354 | Problem: Win32: waiting on a pipe with fixed sleep time. |
| 10355 | Solution: Start with a short delay and increase it when looping. |
| 10356 | Files: src/channel.c |
| 10357 | |
| 10358 | Patch 7.4.1668 |
| 10359 | Problem: channel_get_all() does multiple allocations. |
| 10360 | Solution: Compute the size and allocate once. |
| 10361 | Files: src/channel.c |
| 10362 | |
| 10363 | Patch 7.4.1669 |
| 10364 | Problem: When writing buffer lines to a pipe Vim may block. |
| 10365 | Solution: Avoid blocking, write more lines later. |
| 10366 | Files: src/channel.c, src/misc2.c, src/os_unix.c, src/structs.h, |
| 10367 | src/vim.h, src/proto/channel.pro, src/testdir/test_channel.vim |
| 10368 | |
| 10369 | Patch 7.4.1670 |
| 10370 | Problem: Completion doesn't work well for a variable containing "#". |
| 10371 | Solution: Recognize the "#". (Watiko) |
| 10372 | Files: src/eval.c |
| 10373 | |
| 10374 | Patch 7.4.1671 |
| 10375 | Problem: When help exists in multiple languages, adding @ab while "ab" is |
| 10376 | the default help language is unnecessary. |
| 10377 | Solution: Leave out "@ab" when not needed. (Ken Takata) |
| 10378 | Files: src/ex_getln.c |
| 10379 | |
| 10380 | Patch 7.4.1672 |
| 10381 | Problem: The Dvorak support is a bit difficult to install. |
| 10382 | Solution: Turn it into an optional package. |
| 10383 | Files: runtime/macros/dvorak, runtime/macros/README.txt, |
| 10384 | runtime/pack/dist/opt/dvorak/plugin/dvorak.vim, |
| 10385 | runtime/pack/dist/opt/dvorak/dvorak/enable.vim, |
| 10386 | runtime/pack/dist/opt/dvorak/dvorak/disable.vim |
| 10387 | |
| 10388 | Patch 7.4.1673 |
| 10389 | Problem: The justify plugin has to be copied or sourced to be used. |
| 10390 | Solution: Turn it into a package. |
| 10391 | Files: runtime/macros/justify.vim, runtime/macros/README.txt, |
| 10392 | runtime/pack/dist/opt/justify/plugin/justify.vim, Filelist |
| 10393 | |
| 10394 | Patch 7.4.1674 |
| 10395 | Problem: The editexisting plugin has to be copied or sourced to be used. |
| 10396 | Solution: Turn it into a package. |
| 10397 | Files: runtime/macros/editexisting.vim, runtime/macros/README.txt, |
| 10398 | runtime/pack/dist/opt/editexisting/plugin/editexisting.vim, |
| 10399 | Filelist |
| 10400 | |
| 10401 | Patch 7.4.1675 |
| 10402 | Problem: The swapmous plugin has to be copied or sourced to be used. |
| 10403 | Solution: Turn it into the swapmouse package. |
| 10404 | Files: runtime/macros/swapmous.vim, runtime/macros/README.txt, |
| 10405 | runtime/pack/dist/opt/swapmouse/plugin/swapmouse.vim, Filelist |
| 10406 | |
| 10407 | Patch 7.4.1676 |
| 10408 | Problem: The shellmenu plugin has to be copied or sourced to be used. |
| 10409 | Solution: Turn it into a package. |
| 10410 | Files: runtime/macros/shellmenu.vim, runtime/macros/README.txt, |
| 10411 | runtime/pack/dist/opt/shellmenu/plugin/shellmenu.vim, Filelist |
| 10412 | |
| 10413 | Patch 7.4.1677 |
| 10414 | Problem: A reference to the removed file_select plugin remains. |
| 10415 | Solution: Remove it. |
| 10416 | Files: runtime/macros/README.txt |
| 10417 | |
| 10418 | Patch 7.4.1678 |
| 10419 | Problem: Warning for unused argument. |
| 10420 | Solution: Add UNUSED. (Dominique Pelle) |
| 10421 | Files: src/if_mzsch.c |
| 10422 | |
| 10423 | Patch 7.4.1679 |
| 10424 | Problem: Coverity: copying value of v_lock without initializing it. |
| 10425 | Solution: Init v_lock in rettv_list_alloc() and rettv_dict_alloc(). |
| 10426 | Files: src/eval.c |
| 10427 | |
| 10428 | Patch 7.4.1680 |
| 10429 | Problem: Coverity warns for not checking name length (false positive). |
| 10430 | Solution: Only copy the characters we know are there. |
| 10431 | Files: src/channel.c |
| 10432 | |
| 10433 | Patch 7.4.1681 |
| 10434 | Problem: Coverity warns for fixed size buffer length (false positive). |
| 10435 | Solution: Add a check for the name length. |
| 10436 | Files: src/eval.c |
| 10437 | |
| 10438 | Patch 7.4.1682 |
| 10439 | Problem: Coverity: no check for NULL. |
| 10440 | Solution: Add check for invalid argument to assert_match(). |
| 10441 | Files: src/eval.c |
| 10442 | |
| 10443 | Patch 7.4.1683 |
| 10444 | Problem: Generated .bat files do not support --nofork. |
| 10445 | Solution: Add check for --nofork. Also add "setlocal". (Kevin Cantú, |
| 10446 | closes #659) |
| 10447 | Files: src/dosinst.c |
| 10448 | |
| 10449 | Patch 7.4.1684 |
| 10450 | Problem: README text is slightly outdated. |
| 10451 | Solution: Mention the READMEdir directory. |
| 10452 | Files: README.md, README.txt |
| 10453 | |
| 10454 | Patch 7.4.1685 |
| 10455 | Problem: There is no easy way to get all the information about a match. |
| 10456 | Solution: Add matchstrpos(). (Ozaki Kiichi) |
| 10457 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c, |
| 10458 | src/testdir/test_alot.vim, src/testdir/test_matchstrpos.vim |
| 10459 | |
| 10460 | Patch 7.4.1686 |
| 10461 | Problem: When running tests $HOME/.viminfo is written. (James McCoy) |
| 10462 | Solution: Add 'nviminfo' to the 'viminfo' option. (closes #722) |
| 10463 | Files: src/testdir/test_backspace_opt.vim, src/testdir/test_viminfo.vim, |
| 10464 | src/testdir/runtest.vim. |
| 10465 | |
| 10466 | Patch 7.4.1687 |
| 10467 | Problem: The channel close_cb option does not work. |
| 10468 | Solution: Use jo_close_partial instead of jo_err_partial. (Damien) |
| 10469 | Files: src/channel.c, src/testdir/test_channel.vim |
| 10470 | |
| 10471 | Patch 7.4.1688 |
| 10472 | Problem: MzScheme does not support partial. |
| 10473 | Solution: Add minimal partial support. (Ken Takata) |
| 10474 | Files: src/if_mzsch.c |
| 10475 | |
| 10476 | Patch 7.4.1689 |
| 10477 | Problem: Ruby interface has inconsistent coding style. |
| 10478 | Solution: Fix the coding style. (Ken Takata) |
| 10479 | Files: src/if_ruby.c |
| 10480 | |
| 10481 | Patch 7.4.1690 |
| 10482 | Problem: Can't compile with the conceal feature but without multi-byte. |
| 10483 | Solution: Adjust #ifdef. (Owen Leibman) |
| 10484 | Files: src/eval.c, src/window.c |
| 10485 | |
| 10486 | Patch 7.4.1691 |
| 10487 | Problem: When switching to a new buffer and an autocommand applies syntax |
| 10488 | highlighting an ml_get error may occur. |
| 10489 | Solution: Check "syn_buf" against the buffer in the window. (Alexander von |
| 10490 | Buddenbrock, closes #676) |
| 10491 | Files: src/syntax.c |
| 10492 | |
| 10493 | Patch 7.4.1692 |
| 10494 | Problem: feedkeys('i', 'x') gets stuck, waits for a character to be typed. |
| 10495 | Solution: Behave like ":normal". (Yasuhiro Matsumoto) |
| 10496 | Files: src/eval.c, src/testdir/test_feedkeys.vim |
| 10497 | |
| 10498 | Patch 7.4.1693 |
| 10499 | Problem: Building the Perl interface gives compiler warnings. |
| 10500 | Solution: Remove a pragma. Add noreturn attributes. (Damien) |
| 10501 | Files: src/if_perl.xs |
| 10502 | |
| 10503 | Patch 7.4.1694 |
| 10504 | Problem: Win32 gvim doesn't work with "dvorakj" input method. |
| 10505 | Solution: Wait for QS_ALLINPUT instead of QS_ALLEVENTS. (Yukihiro Nakadaira) |
| 10506 | Files: src/gui_w32.c |
| 10507 | |
| 10508 | Patch 7.4.1695 |
| 10509 | Problem: ":syn reset" clears the effect ":syn iskeyword". (James McCoy) |
| 10510 | Solution: Remove clearing the syntax keywords. |
| 10511 | Files: src/syntax.c |
| 10512 | |
| 10513 | Patch 7.4.1696 |
| 10514 | Problem: When using :stopinsert in a silent mapping the "INSERT" message |
| 10515 | isn't cleared. (Coacher) |
| 10516 | Solution: Always clear the message. (Christian Brabandt, closes #718) |
| 10517 | Files: src/ex_docmd.c, src/proto/screen.pro, src/screen.c |
| 10518 | |
| 10519 | Patch 7.4.1697 |
| 10520 | Problem: Display problems when the 'ambiwidth' and 'emoji' options are not |
| 10521 | set properly or the terminal doesn't behave as expected. |
| 10522 | Solution: After drawing an ambiguous width character always position the |
| 10523 | cursor. |
| 10524 | Files: src/mbyte.c, src/screen.c, src/proto/mbyte.pro |
| 10525 | |
| 10526 | Patch 7.4.1698 |
| 10527 | Problem: Two tests fail when running tests with MinGW. (Michael Soyka) |
| 10528 | Solution: Convert test_getcwd.ok test_wordcount.ok to unix fileformat. |
| 10529 | Files: src/testdir/Make_ming.mak |
| 10530 | |
| 10531 | Patch 7.4.1699 |
| 10532 | Problem: :packadd does not work the same when used early or late. |
| 10533 | Solution: Always load plugins matching "plugin/**/*.vim". |
| 10534 | Files: src/ex_cmds2.c, src/testdir/test_packadd.vim |
| 10535 | |
| 10536 | Patch 7.4.1700 |
| 10537 | Problem: Equivalence classes are not properly tested. |
| 10538 | Solution: Add tests for multi-byte and latin1. Fix an error. (Owen Leibman) |
| 10539 | Files: src/regexp.c, src/testdir/Make_all.mak, |
| 10540 | src/testdir/test_alot_latin.vim, src/testdir/test_alot_utf8.vim, |
| 10541 | src/testdir/test_regexp_latin.vim, |
| 10542 | src/testdir/test_regexp_utf8.vim |
| 10543 | |
| 10544 | Patch 7.4.1701 |
| 10545 | Problem: Equivalence classes still tested in old style tests. |
| 10546 | Solution: Remove the duplicate. |
| 10547 | Files: src/testdir/test44.in, src/testdir/test44.ok, |
| 10548 | src/testdir/test99.in, src/testdir/test99.ok |
| 10549 | |
| 10550 | Patch 7.4.1702 |
| 10551 | Problem: Using freed memory when parsing 'printoptions' fails. |
| 10552 | Solution: Save the old options and restore them in case of an error. |
| 10553 | (Dominique) |
| 10554 | Files: src/hardcopy.c, src/testdir/test_hardcopy.vim |
| 10555 | |
| 10556 | Patch 7.4.1703 |
| 10557 | Problem: Can't assert for not equal and not matching. |
| 10558 | Solution: Add assert_notmatch() and assert_notequal(). |
| 10559 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_assert.vim |
| 10560 | |
| 10561 | Patch 7.4.1704 |
| 10562 | Problem: Using freed memory with "wincmd p". (Dominique Pelle) |
| 10563 | Solution: Also clear "prevwin" in other tab pages. |
| 10564 | Files: src/window.c |
| 10565 | |
| 10566 | Patch 7.4.1705 |
| 10567 | Problem: The 'guifont' option does not allow for a quality setting. |
| 10568 | Solution: Add the "q" item, supported on MS-Windows. (Yasuhiro Matsumoto) |
| 10569 | Files: runtime/doc/options.txt, src/gui_w32.c, src/os_mswin.c, |
| 10570 | src/proto/os_mswin.pro |
| 10571 | |
| 10572 | Patch 7.4.1706 |
| 10573 | Problem: Old style function declaration breaks build. |
| 10574 | Solution: Remove __ARGS(). |
| 10575 | Files: src/proto/os_mswin.pro |
| 10576 | |
| 10577 | Patch 7.4.1707 |
| 10578 | Problem: Cannot use empty dictionary key, even though it can be useful. |
| 10579 | Solution: Allow using an empty dictionary key. |
| 10580 | Files: src/hashtab.c, src/eval.c, src/testdir/test_expr.vim |
| 10581 | |
| 10582 | Patch 7.4.1708 |
| 10583 | Problem: New regexp engine does not work properly with EBCDIC. |
| 10584 | Solution: Define equivalence class characters. (Owen Leibman) |
| 10585 | Files: src/regexp_nfa.c |
| 10586 | |
| 10587 | Patch 7.4.1709 |
| 10588 | Problem: Mistake in #ifdef. |
| 10589 | Solution: Change PROOF_QUALITY to DRAFT_QUALITY. (Ken Takata) |
| 10590 | Files: src/os_mswin.c |
| 10591 | |
| 10592 | Patch 7.4.1710 |
| 10593 | Problem: Not all output of an external command is read. |
| 10594 | Solution: Avoid timing out when the process has exited. (closes #681) |
| 10595 | Files: src/os_unix.c |
| 10596 | |
| 10597 | Patch 7.4.1711 |
| 10598 | Problem: When using try/catch in 'statusline' it is still considered an |
| 10599 | error and the status line will be disabled. |
| 10600 | Solution: Check did_emsg instead of called_emsg. (haya14busa, closes #729) |
| 10601 | Files: src/screen.c, src/testdir/test_statusline.vim, |
| 10602 | src/testdir/test_alot.vim |
| 10603 | |
| 10604 | Patch 7.4.1712 |
| 10605 | Problem: For plugins in packages, plugin authors need to take care of all |
| 10606 | dependencies. |
| 10607 | Solution: When loading "start" packages and for :packloadall, first add all |
| 10608 | directories to 'runtimepath' before sourcing plugins. |
| 10609 | Files: src/ex_cmds2.c, src/testdir/test_packadd.vim |
| 10610 | |
| 10611 | Patch 7.4.1713 |
| 10612 | Problem: GTK GUI doesn't work on Wayland. |
| 10613 | Solution: Specify that only the X11 backend is allowed. (Simon McVittie) |
| 10614 | Files: src/gui_gtk_x11.c |
| 10615 | |
| 10616 | Patch 7.4.1714 |
| 10617 | Problem: Non-GUI specific settings in the gvimrc_example file. |
| 10618 | Solution: Move some settings to the vimrc_example file. Remove setting |
| 10619 | 'hlsearch' again. (suggested by Hirohito Higashi) |
| 10620 | Files: runtime/vimrc_example.vim, runtime/gvimrc_example.vim |
| 10621 | |
| 10622 | Patch 7.4.1715 |
| 10623 | Problem: Double free when a partial is in a cycle with a list or dict. |
| 10624 | (Nikolai Pavlov) |
| 10625 | Solution: Do not free a nested list or dict used by the partial. |
| 10626 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10627 | |
| 10628 | Patch 7.4.1716 |
| 10629 | Problem: 'autochdir' doesn't work for the first file. (Rob Hoelz) |
| 10630 | Solution: Call DO_AUTOCHDIR after startup. (Christian Brabandt, closes #704) |
| 10631 | Files: src/main.c |
| 10632 | |
| 10633 | Patch 7.4.1717 |
| 10634 | Problem: Leaking memory when opening a channel fails. |
| 10635 | Solution: Unreference partials in job options. |
| 10636 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 10637 | src/testdir/test_channel.vim |
| 10638 | |
| 10639 | Patch 7.4.1718 |
| 10640 | Problem: Coverity: not using return value of set_ref_in_item(). |
| 10641 | Solution: Use the return value. |
| 10642 | Files: src/eval.c |
| 10643 | |
| 10644 | Patch 7.4.1719 |
| 10645 | Problem: Leaking memory when there is a cycle involving a job and a |
| 10646 | partial. |
| 10647 | Solution: Add a copyID to job and channel. Set references in items referred |
| 10648 | by them. Go through all jobs and channels to find unreferenced |
| 10649 | items. Also, decrement reference counts when garbage collecting. |
| 10650 | Files: src/eval.c, src/channel.c, src/netbeans.c, src/globals.h, |
| 10651 | src/ops.c, src/regexp.c, src/tag.c, src/proto/channel.pro, |
| 10652 | src/proto/eval.pro, src/testdir/test_partial.vim, src/structs.h |
| 10653 | |
| 10654 | Patch 7.4.1720 |
| 10655 | Problem: Tests fail without the job feature. |
| 10656 | Solution: Skip tests when the job feature is not present. |
| 10657 | Files: src/testdir/test_partial.vim |
| 10658 | |
| 10659 | Patch 7.4.1721 |
| 10660 | Problem: The vimtbar files are unused. |
| 10661 | Solution: Remove them. (Ken Takata) |
| 10662 | Files: src/vimtbar.dll, src/vimtbar.h, src/vimtbar.lib, Filelist |
| 10663 | |
| 10664 | Patch 7.4.1722 |
| 10665 | Problem: Crash when calling garbagecollect() after starting a job. |
| 10666 | Solution: Set the copyID on job and channel. (Hirohito Higashi, Ozaki |
| 10667 | Kiichi) |
| 10668 | Files: src/eval.c |
| 10669 | |
| 10670 | Patch 7.4.1723 |
| 10671 | Problem: When using try/catch in 'tabline' it is still considered an |
| 10672 | error and the tabline will be disabled. |
| 10673 | Solution: Check did_emsg instead of called_emsg. (haya14busa, closes #746) |
| 10674 | Files: src/screen.c, src/testdir/test_tabline.vim, |
| 10675 | src/testdir/test_alot.vim |
| 10676 | |
| 10677 | Patch 7.4.1724 (after 7.4.1723) |
| 10678 | Problem: Tabline test fails in GUI. |
| 10679 | Solution: Remove 'e' from 'guioptions'. |
| 10680 | Files: src/testdir/test_tabline.vim |
| 10681 | |
| 10682 | Patch 7.4.1725 |
| 10683 | Problem: Compiler errors for non-ANSI compilers. |
| 10684 | Solution: Remove // comment. Remove comma at end of enum. (Michael Jarvis) |
| 10685 | Files: src/eval.c |
| 10686 | |
| 10687 | Patch 7.4.1726 |
| 10688 | Problem: ANSI compiler complains about string length. |
| 10689 | Solution: Split long string in two parts. (Michael Jarvis) |
| 10690 | Files: src/ex_cmds.c |
| 10691 | |
| 10692 | Patch 7.4.1727 |
| 10693 | Problem: Cannot detect a crash in tests when caused by garbagecollect(). |
| 10694 | Solution: Add garbagecollect_for_testing(). Do not free a job if is still |
| 10695 | useful. |
| 10696 | Files: src/channel.c, src/eval.c, src/getchar.c, src/main.c, src/vim.h, |
| 10697 | src/proto/eval.pro, src/testdir/runtest.vim, |
| 10698 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 10699 | |
| 10700 | Patch 7.4.1728 |
| 10701 | Problem: The help for functions require a space after the "(". |
| 10702 | Solution: Make CTRL-] on a function name ignore the arguments. (Hirohito |
| 10703 | Higashi) |
| 10704 | Files: src/ex_cmds.c, src/testdir/test_help_tagjump.vim, |
| 10705 | runtime/doc/eval.txt |
| 10706 | |
| 10707 | Patch 7.4.1729 |
| 10708 | Problem: The Perl interface cannot use 'print' operator for writing |
| 10709 | directly in standard IO. |
| 10710 | Solution: Add a minimal implementation of PerlIO Layer feature and try to |
| 10711 | use it for STDOUT/STDERR. (Damien) |
| 10712 | Files: src/if_perl.xs, src/testdir/test_perl.vim |
| 10713 | |
| 10714 | Patch 7.4.1730 |
| 10715 | Problem: It is not easy to get a character out of a string. |
| 10716 | Solution: Add strgetchar() and strcharpart(). |
| 10717 | Files: src/eval.c, src/testdir/test_expr.vim |
| 10718 | |
| 10719 | Patch 7.4.1731 |
| 10720 | Problem: Python: turns partial into simple funcref. |
| 10721 | Solution: Use partials like partials. (Nikolai Pavlov, closes #734) |
| 10722 | Files: runtime/doc/if_pyth.txt, src/eval.c, src/if_py_both.h, |
| 10723 | src/if_python.c, src/if_python3.c, src/proto/eval.pro, |
| 10724 | src/testdir/test86.in, src/testdir/test86.ok, |
| 10725 | src/testdir/test87.in, src/testdir/test87.ok |
| 10726 | |
| 10727 | Patch 7.4.1732 |
| 10728 | Problem: Folds may close when using autocomplete. (Anmol Sethi) |
| 10729 | Solution: Increment/decrement disable_fold. (Christian Brabandt, closes |
| 10730 | #643) |
| 10731 | Files: src/edit.c, src/fold.c, src/globals.h |
| 10732 | |
| 10733 | Patch 7.4.1733 |
| 10734 | Problem: "make install" doesn't know about cross-compiling. (Christian |
| 10735 | Neukirchen) |
| 10736 | Solution: Add CROSS_COMPILING. (closes #740) |
| 10737 | Files: src/configure.in, src/auto/configure, src/config.mk.in, |
| 10738 | src/Makefile |
| 10739 | |
| 10740 | Patch 7.4.1734 (after 7.4.1730) |
| 10741 | Problem: Test fails when not using utf-8. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10742 | Solution: Split test in regular and utf-8 part. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10743 | Files: src/testdir/test_expr.vim, src/testdir/test_expr_utf8.vim, |
| 10744 | src/testdir/test_alot_utf8.vim |
| 10745 | |
| 10746 | Patch 7.4.1735 |
| 10747 | Problem: It is not possible to only see part of the message history. It is |
| 10748 | not possible to clear messages. |
| 10749 | Solution: Add a count to ":messages" and a clear argument. (Yasuhiro |
| 10750 | Matsumoto) |
| 10751 | Files: runtime/doc/message.txt, src/ex_cmds.h, src/message.c, |
| 10752 | src/testdir/test_messages.vim, src/testdir/test_alot.vim |
| 10753 | |
| 10754 | Patch 7.4.1736 (after 7.4.1731) |
| 10755 | Problem: Unused variable. |
| 10756 | Solution: Remove it. (Yasuhiro Matsumoto) |
| 10757 | Files: src/if_py_both.h |
| 10758 | |
| 10759 | Patch 7.4.1737 |
| 10760 | Problem: Argument marked as unused is used. |
| 10761 | Solution: Remove UNUSED. |
| 10762 | Files: src/message.c |
| 10763 | |
| 10764 | Patch 7.4.1738 |
| 10765 | Problem: Count for ":messages" depends on number of lines. |
| 10766 | Solution: Add ADDR_OTHER address type. |
| 10767 | Files: src/ex_cmds.h |
| 10768 | |
| 10769 | Patch 7.4.1739 |
| 10770 | Problem: Messages test fails on MS-Windows. |
| 10771 | Solution: Adjust the asserts. Skip the "messages maintainer" line if not |
| 10772 | showing all messages. |
| 10773 | Files: src/message.c, src/testdir/test_messages.vim |
| 10774 | |
| 10775 | Patch 7.4.1740 |
| 10776 | Problem: syn-cchar defined with matchadd() does not appear if there are no |
| 10777 | other syntax definitions which matches buffer text. |
| 10778 | Solution: Check for startcol. (Ozaki Kiichi, haya14busa, closes #757) |
| 10779 | Files: src/screen.c, src/testdir/Make_all.mak, |
| 10780 | src/testdir/test_alot_utf8.vim, src/testdir/test_match_conceal.in, |
| 10781 | src/testdir/test_match_conceal.ok, |
| 10782 | src/testdir/test_matchadd_conceal.vim, |
| 10783 | src/testdir/test_matchadd_conceal_utf8.vim, |
| 10784 | src/testdir/test_undolevels.vim |
| 10785 | |
| 10786 | Patch 7.4.1741 |
| 10787 | Problem: Not testing utf-8 characters. |
| 10788 | Solution: Move the right asserts to the test_expr_utf8 test. |
| 10789 | Files: src/testdir/test_expr.vim, src/testdir/test_expr_utf8.vim |
| 10790 | |
| 10791 | Patch 7.4.1742 |
| 10792 | Problem: strgetchar() does not work correctly. |
| 10793 | Solution: use mb_cptr2len(). Add a test. (Naruhiko Nishino) |
| 10794 | Files: src/eval.c, src/testdir/test_expr_utf8.vim |
| 10795 | |
| 10796 | Patch 7.4.1743 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10797 | Problem: Clang warns for uninitialized variable. (Michael Jarvis) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10798 | Solution: Initialize it. |
| 10799 | Files: src/if_py_both.h |
| 10800 | |
| 10801 | Patch 7.4.1744 |
| 10802 | Problem: Python: Converting a sequence may leak memory. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 10803 | Solution: Decrement a reference. (Nikolai Pavlov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10804 | Files: src/if_py_both.h |
| 10805 | |
| 10806 | Patch 7.4.1745 |
| 10807 | Problem: README file is not clear about where to get Vim. |
| 10808 | Solution: Add links to github, releases and the Windows installer. |
| 10809 | (Suggested by Christian Brabandt) |
| 10810 | Files: README.md, README.txt |
| 10811 | |
| 10812 | Patch 7.4.1746 |
| 10813 | Problem: Memory leak in Perl. |
| 10814 | Solution: Decrement the reference count. Add a test. (Damien) |
| 10815 | Files: src/if_perl.xs, src/testdir/test_perl.vim |
| 10816 | |
| 10817 | Patch 7.4.1747 |
| 10818 | Problem: Coverity: missing check for NULL pointer. |
| 10819 | Solution: Check for out of memory. |
| 10820 | Files: src/if_py_both.h |
| 10821 | |
| 10822 | Patch 7.4.1748 |
| 10823 | Problem: "gD" does not find match in first column of first line. (Gary |
| 10824 | Johnson) |
| 10825 | Solution: Accept match at the cursor. |
| 10826 | Files: src/normal.c, src/testdir/test_goto.vim, src/testdir/test_alot.vim |
| 10827 | |
| 10828 | Patch 7.4.1749 |
| 10829 | Problem: When using GTK 3.20 there are a few warnings. |
| 10830 | Solution: Use new functions when available. (Kazunobu Kuriyama) |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 10831 | Files: src/gui_beval.c src/gui_gtk_x11.c |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10832 | |
| 10833 | Patch 7.4.1750 |
| 10834 | Problem: When a buffer gets updated while in command line mode, the screen |
| 10835 | may be messed up. |
| 10836 | Solution: Postpone the redraw when the screen is scrolled. |
| 10837 | Files: src/channel.c |
| 10838 | |
| 10839 | Patch 7.4.1751 |
| 10840 | Problem: Crash when 'tagstack' is off. (Dominique Pelle) |
| 10841 | Solution: Fix it. (Hirohito Higashi) |
| 10842 | Files: src/tag.c, src/testdir/test_alot.vim, src/testdir/test_tagjump.vim |
| 10843 | |
| 10844 | Patch 7.4.1752 |
| 10845 | Problem: When adding to the quickfix list the current position is reset. |
| 10846 | Solution: Do not reset the position when not needed. (Yegappan Lakshmanan) |
| 10847 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 10848 | |
| 10849 | Patch 7.4.1753 |
| 10850 | Problem: "noinsert" in 'completeopt' is sometimes ignored. |
| 10851 | Solution: Set the variables when the 'completeopt' was set. (Ozaki Kiichi) |
| 10852 | Files: src/edit.c, src/option.c, src/proto/edit.pro |
| 10853 | |
| 10854 | Patch 7.4.1754 |
| 10855 | Problem: When 'filetype' was set and reloading a buffer which does not |
| 10856 | cause it to be set, the syntax isn't loaded. (KillTheMule) |
| 10857 | Solution: Remember whether the FileType event was fired and fire it if not. |
| 10858 | (Anton Lindqvist, closes #747) |
| 10859 | Files: src/fileio.c, src/testdir/test_syntax.vim |
| 10860 | |
| 10861 | Patch 7.4.1755 |
| 10862 | Problem: When using getreg() on a non-existing register a NULL list is |
| 10863 | returned. (Bjorn Linse) |
| 10864 | Solution: Allocate an empty list. Add a test. |
| 10865 | Files: src/eval.c, src/testdir/test_expr.vim |
| 10866 | |
| 10867 | Patch 7.4.1756 |
| 10868 | Problem: "dll" options are not expanded. |
| 10869 | Solution: Expand environment variables. (Ozaki Kiichi) |
| 10870 | Files: src/option.c, src/testdir/test_alot.vim, |
| 10871 | src/testdir/test_expand_dllpath.vim |
| 10872 | |
| 10873 | Patch 7.4.1757 |
| 10874 | Problem: When using complete() it may set 'modified' even though nothing |
| 10875 | was inserted. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 10876 | Solution: Use Down/Up instead of Next/Previous match. (Shougo Matsu, closes |
| 10877 | #745) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10878 | Files: src/edit.c |
| 10879 | |
| 10880 | Patch 7.4.1758 |
| 10881 | Problem: Triggering CursorHoldI when in CTRL-X mode causes problems. |
| 10882 | Solution: Do not trigger CursorHoldI in CTRL-X mode. Add "!" flag to |
| 10883 | feedkeys() (test with that didn't work though). |
| 10884 | Files: src/edit.c, src/eval.c |
| 10885 | |
| 10886 | Patch 7.4.1759 |
| 10887 | Problem: When using feedkeys() in a timer the inserted characters are not |
| 10888 | used right away. |
| 10889 | Solution: Break the wait loop when characters have been added to typebuf. |
| 10890 | use this for testing CursorHoldI. |
| 10891 | Files: src/gui.c, src/os_win32.c, src/os_unix.c, |
| 10892 | src/testdir/test_autocmd.vim |
| 10893 | |
| 10894 | Patch 7.4.1760 (after 7.4.1759) |
| 10895 | Problem: Compiler warning for unused variable. |
| 10896 | Solution: Add #ifdef. (John Marriott) |
| 10897 | Files: src/os_win32.c |
| 10898 | |
| 10899 | Patch 7.4.1761 |
| 10900 | Problem: Coverity complains about ignoring return value. |
| 10901 | Solution: Add "(void)" to get rid of the warning. |
| 10902 | Files: src/eval.c |
| 10903 | |
| 10904 | Patch 7.4.1762 |
| 10905 | Problem: Coverity: useless assignments. |
| 10906 | Solution: Remove them. |
| 10907 | Files: src/search.c |
| 10908 | |
| 10909 | Patch 7.4.1763 |
| 10910 | Problem: Coverity: useless assignment. |
| 10911 | Solution: Add #if 0. |
| 10912 | Files: src/spell.c |
| 10913 | |
| 10914 | Patch 7.4.1764 |
| 10915 | Problem: C++ style comment. (Ken Takata) |
| 10916 | Solution: Finish the work started here: don't call perror() when stderr |
| 10917 | isn't working. |
| 10918 | Files: src/os_unix.c |
| 10919 | |
| 10920 | Patch 7.4.1765 |
| 10921 | Problem: Undo options are not together in the options window. |
| 10922 | Solution: Put them together. (Gary Johnson) |
| 10923 | Files: runtime/optwin.vim |
| 10924 | |
| 10925 | Patch 7.4.1766 |
| 10926 | Problem: Building instructions for MS-Windows are outdated. |
| 10927 | Solution: Mention setting SDK_INCLUDE_DIR. (Ben Franklin, closes #771) Move |
| 10928 | outdated instructions further down. |
| 10929 | Files: src/INSTALLpc.txt |
| 10930 | |
| 10931 | Patch 7.4.1767 |
| 10932 | Problem: When installing Vim on a GTK system the icon cache is not updated. |
| 10933 | Solution: Update the GTK icon cache when possible. (Kazunobu Kuriyama) |
| 10934 | Files: src/Makefile, src/configure.in, src/config.mk.in, |
| 10935 | src/auto/configure |
| 10936 | |
| 10937 | Patch 7.4.1768 |
| 10938 | Problem: Arguments of setqflist() are not checked properly. |
| 10939 | Solution: Add better checks, add a test. (Nikolai Pavlov, Hirohito Higashi, |
| 10940 | closes #661) |
| 10941 | Files: src/eval.c, src/testdir/test_quickfix.vim |
| 10942 | |
| 10943 | Patch 7.4.1769 |
| 10944 | Problem: No "closed", "errors" and "encoding" attribute on Python output. |
| 10945 | Solution: Add attributes and more tests. (Roland Puntaier, closes #622) |
| 10946 | Files: src/if_py_both.h, src/if_python.c, src/if_python3.c, |
| 10947 | src/testdir/test86.in, src/testdir/test86.ok, |
| 10948 | src/testdir/test87.in, src/testdir/test87.ok |
| 10949 | |
| 10950 | Patch 7.4.1770 |
| 10951 | Problem: Cannot use true color in the terminal. |
| 10952 | Solution: Add the 'guicolors' option. (Nikolai Pavlov) |
| 10953 | Files: runtime/doc/options.txt, runtime/doc/term.txt, |
| 10954 | runtime/doc/various.txt, src/auto/configure, src/config.h.in, |
| 10955 | src/configure.in, src/eval.c, src/globals.h, src/hardcopy.c, |
| 10956 | src/option.c, src/option.h, src/proto/term.pro, src/screen.c, |
| 10957 | src/structs.h, src/syntax.c, src/term.c, src/term.h, |
| 10958 | src/version.c, src/vim.h |
| 10959 | |
| 10960 | Patch 7.4.1771 (after 7.4.1768) |
| 10961 | Problem: Warning for unused variable. |
| 10962 | Solution: Add #ifdef. (John Marriott) |
| 10963 | Files: src/eval.c |
| 10964 | |
| 10965 | Patch 7.4.1772 (after 7.4.1767) |
| 10966 | Problem: Installation fails when $GTK_UPDATE_ICON_CACHE is empty. |
| 10967 | Solution: Add quotes. (Kazunobu Kuriyama) |
| 10968 | Files: src/Makefile |
| 10969 | |
| 10970 | Patch 7.4.1773 (after 7.4.1770) |
| 10971 | Problem: Compiler warnings. (Dominique Pelle) |
| 10972 | Solution: Add UNUSED. Add type cast. Avoid a buffer overflow. |
| 10973 | Files: src/syntax.c, src/term.c |
| 10974 | |
| 10975 | Patch 7.4.1774 (after 7.4.1770) |
| 10976 | Problem: Cterm true color feature has warnings. |
| 10977 | Solution: Add type casts. |
| 10978 | Files: src/screen.c, src/syntax.c, src/term.c |
| 10979 | |
| 10980 | Patch 7.4.1775 |
| 10981 | Problem: The rgb.txt file is not installed. |
| 10982 | Solution: Install the file. (Christian Brabandt) |
| 10983 | Files: src/Makefile |
| 10984 | |
| 10985 | Patch 7.4.1776 |
| 10986 | Problem: Using wrong buffer length. |
| 10987 | Solution: use the right name. (Kazunobu Kuriyama) |
| 10988 | Files: src/term.c |
| 10989 | |
| 10990 | Patch 7.4.1777 |
| 10991 | Problem: Newly added features can escape the sandbox. |
| 10992 | Solution: Add checks for restricted and secure. (Yasuhiro Matsumoto) |
| 10993 | Files: src/eval.c |
| 10994 | |
| 10995 | Patch 7.4.1778 |
| 10996 | Problem: When using the term truecolor feature, the t_8f and t_8b termcap |
| 10997 | options are not set by default. |
| 10998 | Solution: Move the values to before BT_EXTRA_KEYS. (Christian Brabandt) |
| 10999 | Files: src/term.c |
| 11000 | |
| 11001 | Patch 7.4.1779 |
| 11002 | Problem: Using negative index in strcharpart(). (Yegappan Lakshmanan) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11003 | Solution: Assume single byte when using a negative index. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11004 | Files: src/eval.c |
| 11005 | |
| 11006 | Patch 7.4.1780 |
| 11007 | Problem: Warnings reported by cppcheck. |
| 11008 | Solution: Fix the warnings. (Dominique Pelle) |
| 11009 | Files: src/ex_cmds2.c, src/json.c, src/misc1.c, src/ops.c, |
| 11010 | src/regexp_nfa.c |
| 11011 | |
| 11012 | Patch 7.4.1781 |
| 11013 | Problem: synIDattr() does not respect 'guicolors'. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11014 | Solution: Change the condition for the mode. (Christian Brabandt) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11015 | Files: src/eval.c |
| 11016 | |
| 11017 | Patch 7.4.1782 |
| 11018 | Problem: strcharpart() does not work properly with some multi-byte |
| 11019 | characters. |
| 11020 | Solution: Use mb_cptr2len() instead of mb_char2len(). (Hirohito Higashi) |
| 11021 | Files: src/eval.c, src/testdir/test_expr_utf8.vim |
| 11022 | |
| 11023 | Patch 7.4.1783 |
| 11024 | Problem: The old regexp engine doesn't handle character classes correctly. |
| 11025 | (Manuel Ortega) |
| 11026 | Solution: Use regmbc() instead of regc(). Add a test. |
| 11027 | Files: src/regexp.c, src/testdir/test_regexp_utf8.vim |
| 11028 | |
| 11029 | Patch 7.4.1784 |
| 11030 | Problem: The termtruecolor feature is enabled differently from many other |
| 11031 | features. |
| 11032 | Solution: Enable the termtruecolor feature for the big build, not through |
| 11033 | configure. |
| 11034 | Files: src/configure.in, src/config.h.in, src/auto/configure, |
| 11035 | src/feature.h |
| 11036 | |
| 11037 | Patch 7.4.1785 (after 7.4.1783) |
| 11038 | Problem: Regexp test fails on windows. |
| 11039 | Solution: set 'isprint' to the right value for testing. |
| 11040 | Files: src/testdir/test_regexp_utf8.vim |
| 11041 | |
| 11042 | Patch 7.4.1786 |
| 11043 | Problem: Compiled-in colors do not match rgb.txt. |
| 11044 | Solution: Use the rgb.txt colors. (Kazunobu Kuriyama) |
| 11045 | Files: src/term.c |
| 11046 | |
| 11047 | Patch 7.4.1787 |
| 11048 | Problem: When a job ends the close callback is invoked before other |
| 11049 | callbacks. On Windows the close callback is not called. |
| 11050 | Solution: First invoke out/err callbacks before the close callback. |
| 11051 | Make the close callback work on Windows. |
| 11052 | Files: src/channel.c, src/proto/channel.pro, |
| 11053 | src/testdir/test_channel.vim, src/testdir/test_channel_pipe.py |
| 11054 | |
| 11055 | Patch 7.4.1788 |
| 11056 | Problem: NSIS script is missing packages. |
| 11057 | Solution: Add the missing directories. (Ken Takata) |
| 11058 | Files: nsis/gvim.nsi |
| 11059 | |
| 11060 | Patch 7.4.1789 |
| 11061 | Problem: Cannot use ch_read() in the close callback. |
| 11062 | Solution: Do not discard the channel if there is readahead. Do not discard |
| 11063 | readahead if there is a close callback. |
| 11064 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 11065 | src/testdir/test_channel.vim |
| 11066 | |
| 11067 | Patch 7.4.1790 |
| 11068 | Problem: Leading white space in a job command matters. (Andrew Stewart) |
| 11069 | Solution: Skip leading white space. |
| 11070 | Files: src/os_unix.c |
| 11071 | |
| 11072 | Patch 7.4.1791 |
| 11073 | Problem: Channel could be garbage collected too early. |
| 11074 | Solution: Don't free a channel or remove it from a job when it is still |
| 11075 | useful. |
| 11076 | Files: src/channel.c |
| 11077 | |
| 11078 | Patch 7.4.1792 |
| 11079 | Problem: Color name decoding is implemented several times. |
| 11080 | Solution: Move it to term.c. (Christian Brabandt) |
| 11081 | Files: src/gui_mac.c, src/gui_photon.c, src/gui_w32.c, |
| 11082 | src/proto/term.pro, src/term.c |
| 11083 | |
| 11084 | Patch 7.4.1793 |
| 11085 | Problem: Some character classes may differ between systems. On OS/X the |
| 11086 | regexp test fails. |
| 11087 | Solution: Make this less dependent on the system. (idea by Kazunobu Kuriyama) |
| 11088 | Files: src/regexp.c, src/regexp_nfa.c |
| 11089 | |
| 11090 | Patch 7.4.1794 (after 7.4.1792) |
| 11091 | Problem: Can't build on MS-Windows. |
| 11092 | Solution: Add missing declaration. |
| 11093 | Files: src/gui_w32.c |
| 11094 | |
| 11095 | Patch 7.4.1795 |
| 11096 | Problem: Compiler warning for redefining RGB. (John Marriott) |
| 11097 | Solution: Rename it to TORGB. |
| 11098 | Files: src/term.c |
| 11099 | |
| 11100 | Patch 7.4.1796 (after 7.4.1795) |
| 11101 | Problem: Colors are wrong on MS-Windows. (Christian Robinson) |
| 11102 | Solution: Use existing RGB macro if it exists. (Ken Takata) |
| 11103 | Files: src/term.c |
| 11104 | |
| 11105 | Patch 7.4.1797 |
| 11106 | Problem: Warning from Windows 64 bit compiler. |
| 11107 | Solution: Change int to size_t. (Mike Williams) |
| 11108 | Files: src/term.c |
| 11109 | |
| 11110 | Patch 7.4.1798 |
| 11111 | Problem: Still compiler warning for unused return value. (Charles Campbell) |
| 11112 | Solution: Assign to ignoredp. |
| 11113 | Files: src/term.c |
| 11114 | |
| 11115 | Patch 7.4.1799 |
| 11116 | Problem: 'guicolors' is a confusing option name. |
| 11117 | Solution: Use 'termguicolors' instead. (Hirohito Higashi, Ken Takata) |
| 11118 | Files: runtime/doc/options.txt, runtime/doc/term.txt, |
| 11119 | runtime/doc/various.txt, runtime/syntax/dircolors.vim, src/eval.c, |
| 11120 | src/feature.h, src/globals.h, src/hardcopy.c, src/option.c, |
| 11121 | src/option.h, src/proto/term.pro, src/screen.c, src/structs.h, |
| 11122 | src/syntax.c, src/term.c, src/version.c, src/vim.h |
| 11123 | |
| 11124 | Patch 7.4.1800 (after 7.4.1799) |
| 11125 | Problem: Unnecessary #ifdef. |
| 11126 | Solution: Just use USE_24BIT. (Ken Takata) |
| 11127 | Files: src/syntax.c |
| 11128 | |
| 11129 | Patch 7.4.1801 |
| 11130 | Problem: Make uninstall leaves file behind. |
| 11131 | Solution: Delete rgb.txt. (Kazunobu Kuriyama) |
| 11132 | Files: src/Makefile |
| 11133 | |
| 11134 | Patch 7.4.1802 |
| 11135 | Problem: Quickfix doesn't handle long lines well, they are split. |
| 11136 | Solution: Drop characters after a limit. (Anton Lindqvist) |
| 11137 | Files: src/quickfix.c, src/testdir/test_quickfix.vim, |
| 11138 | src/testdir/samples/quickfix.txt |
| 11139 | |
| 11140 | Patch 7.4.1803 |
| 11141 | Problem: GTK3 doesn't handle menu separators properly. |
| 11142 | Solution: Use gtk_separator_menu_item_new(). (Kazunobu Kuriyama) |
| 11143 | Files: src/gui_gtk.c |
| 11144 | |
| 11145 | Patch 7.4.1804 |
| 11146 | Problem: Can't use Vim as MANPAGER. |
| 11147 | Solution: Add manpager.vim. (Enno Nagel, closes #491) |
| 11148 | Files: runtime/doc/filetype.txt, runtime/plugin/manpager.vim |
| 11149 | |
| 11150 | Patch 7.4.1805 |
| 11151 | Problem: Running tests in shadow dir fails. |
| 11152 | Solution: Link the samples directory |
| 11153 | Files: src/Makefile |
| 11154 | |
| 11155 | Patch 7.4.1806 |
| 11156 | Problem: 'termguicolors' option missing from the options window. |
| 11157 | Solution: Add the entry. |
| 11158 | Files: runtime/optwin.vim |
| 11159 | |
| 11160 | Patch 7.4.1807 |
| 11161 | Problem: Test_out_close_cb sometimes fails. |
| 11162 | Solution: Always write DETACH to out, not err. |
| 11163 | Files: src/channel.c, src/testdir/test_channel.vim |
| 11164 | |
| 11165 | Patch 7.4.1808 (after 7.4.1806) |
| 11166 | Problem: Using wrong feature name to check for 'termguicolors'. |
| 11167 | Solution: Use the right feature name. (Ken Takata) |
| 11168 | Files: runtime/optwin.vim |
| 11169 | |
| 11170 | Patch 7.4.1809 (after 7.4.1808) |
| 11171 | Problem: Using wrong short option name for 'termguicolors'. |
| 11172 | Solution: Use the option name. |
| 11173 | Files: runtime/optwin.vim |
| 11174 | |
| 11175 | Patch 7.4.1810 |
| 11176 | Problem: Sending DETACH after a channel was closed isn't useful. |
| 11177 | Solution: Only add DETACH for a netbeans channel. |
| 11178 | Files: src/channel.c, src/testdir/test_channel.vim |
| 11179 | |
| 11180 | Patch 7.4.1811 |
| 11181 | Problem: Netbeans channel gets garbage collected. |
| 11182 | Solution: Set reference in nb_channel. |
| 11183 | Files: src/eval.c, src/netbeans.c, src/proto/netbeans.pro |
| 11184 | |
| 11185 | Patch 7.4.1812 |
| 11186 | Problem: Failure on startup with Athena and Motif. |
| 11187 | Solution: Check for INVALCOLOR. (Kazunobu Kuriyama) |
| 11188 | Files: src/syntax.c, src/vim.h |
| 11189 | |
| 11190 | Patch 7.4.1813 |
| 11191 | Problem: Memory access error when running test_quickfix. |
| 11192 | Solution: Allocate one more byte. (Yegappan Lakshmanan) |
| 11193 | Files: src/quickfix.c |
| 11194 | |
| 11195 | Patch 7.4.1814 |
| 11196 | Problem: A channel may be garbage collected while it's still being used by |
| 11197 | a job. (James McCoy) |
| 11198 | Solution: Mark the channel as used if the job is still used. Do the same |
| 11199 | for channels that are still used. |
| 11200 | Files: src/eval.c, src/channel.c, src/proto/channel.pro |
| 11201 | |
| 11202 | Patch 7.4.1815 |
| 11203 | Problem: Compiler warnings for unused variables. (Ajit Thakkar) |
| 11204 | Solution: Add a dummy initialization. (Yasuhiro Matsumoto) |
| 11205 | Files: src/quickfix.c |
| 11206 | |
| 11207 | Patch 7.4.1816 |
| 11208 | Problem: Looping over a null list throws an error. |
| 11209 | Solution: Skip over the for loop. |
| 11210 | Files: src/eval.c, src/testdir/test_expr.vim |
| 11211 | |
| 11212 | Patch 7.4.1817 |
| 11213 | Problem: The screen is not updated if a callback is invoked when closing a |
| 11214 | channel. |
| 11215 | Solution: Invoke redraw_after_callback(). |
| 11216 | Files: src/channel.c |
| 11217 | |
| 11218 | Patch 7.4.1818 |
| 11219 | Problem: Help completion adds @en to all matches except the first one. |
| 11220 | Solution: Remove "break", go over all items. |
| 11221 | Files: src/ex_getln.c |
| 11222 | |
| 11223 | Patch 7.4.1819 |
| 11224 | Problem: Compiler warnings when sprintf() is a macro. |
| 11225 | Solution: Don't interrupt sprintf() with an #ifdef. (Michael Jarvis, |
| 11226 | closes #788) |
| 11227 | Files: src/fileio.c, src/tag.c, src/term.c |
| 11228 | |
| 11229 | Patch 7.4.1820 |
| 11230 | Problem: Removing language from help tags too often. |
| 11231 | Solution: Only remove @en when not needed. (Hirohito Higashi) |
| 11232 | Files: src/ex_getln.c, src/testdir/test_help_tagjump.vim |
| 11233 | |
| 11234 | Patch 7.4.1821 (after 7.4.1820) |
| 11235 | Problem: Test fails on MS-Windows. |
| 11236 | Solution: Sort the completion results. |
| 11237 | Files: src/testdir/test_help_tagjump.vim |
| 11238 | |
| 11239 | Patch 7.4.1822 |
| 11240 | Problem: Redirecting stdout of a channel to "null" doesn't work. (Nicola) |
| 11241 | Solution: Correct the file descriptor number. |
| 11242 | Files: src/os_unix.c |
| 11243 | |
| 11244 | Patch 7.4.1823 |
| 11245 | Problem: Warning from 64 bit compiler. |
| 11246 | Solution: Add type cast. (Mike Williams) |
| 11247 | Files: src/quickfix.c |
| 11248 | |
| 11249 | Patch 7.4.1824 |
| 11250 | Problem: When a job is no longer referenced and does not have an exit |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11251 | callback the process may hang around in defunct state. (Nicola) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11252 | Solution: Call job_status() if the job is running and won't get freed |
| 11253 | because it might still be useful. |
| 11254 | Files: src/channel.c |
| 11255 | |
| 11256 | Patch 7.4.1825 |
| 11257 | Problem: When job writes to buffer nothing is written. (Nicola) |
| 11258 | Solution: Do not discard a channel before writing is done. |
| 11259 | Files: src/channel.c |
| 11260 | |
| 11261 | Patch 7.4.1826 |
| 11262 | Problem: Callbacks are invoked when it's not safe. (Andrew Stewart) |
| 11263 | Solution: When a channel is to be closed don't invoke callbacks right away, |
| 11264 | wait for a safe moment. |
| 11265 | Files: src/structs.h, src/channel.c |
| 11266 | |
| 11267 | Patch 7.4.1827 |
| 11268 | Problem: No error when invoking a callback when it's not safe. |
| 11269 | Solution: Add an error message. Avoid the error when freeing a channel. |
| 11270 | Files: src/structs.h, src/channel.c |
| 11271 | |
| 11272 | Patch 7.4.1828 |
| 11273 | Problem: May try to access buffer that's already freed. |
| 11274 | Solution: When freeing a buffer remove it from any channel. |
| 11275 | Files: src/buffer.c, src/channel.c, src/proto/channel.pro |
| 11276 | |
| 11277 | Patch 7.4.1829 (after 7.4.1828) |
| 11278 | Problem: No message on channel log when buffer was freed. |
| 11279 | Solution: Log a message. |
| 11280 | Files: src/channel.c |
| 11281 | |
| 11282 | Patch 7.4.1830 |
| 11283 | Problem: non-antialiased misnamed. |
| 11284 | Solution: Use NONANTIALIASED and NONANTIALIASED_QUALITY. (Kim Brouer, |
| 11285 | closes #793) |
| 11286 | Files: src/os_mswin.c, runtime/doc/options.txt |
| 11287 | |
| 11288 | Patch 7.4.1831 |
| 11289 | Problem: When timer_stop() is called with a string there is no proper error |
| 11290 | message. |
| 11291 | Solution: Require getting a number. (Bjorn Linse) |
| 11292 | Files: src/eval.c |
| 11293 | |
| 11294 | Patch 7.4.1832 |
| 11295 | Problem: Memory leak in debug commands. |
| 11296 | Solution: Free memory before overwriting the pointer. (hint by Justin Keyes) |
| 11297 | Files: src/ex_cmds2.c |
| 11298 | |
| 11299 | Patch 7.4.1833 |
| 11300 | Problem: Cannot use an Ex command for 'keywordprg'. |
| 11301 | Solution: Accept an Ex command. (Nelo-Thara Wallus) |
| 11302 | Files: src/normal.c, runtime/doc/options.txt |
| 11303 | |
| 11304 | Patch 7.4.1834 |
| 11305 | Problem: Possible crash when conceal is active. |
| 11306 | Solution: Check for the screen to be valid when redrawing a line. |
| 11307 | Files: src/screen.c |
| 11308 | |
| 11309 | Patch 7.4.1835 |
| 11310 | Problem: When splitting and closing a window the status height changes. |
| 11311 | Solution: Compute the frame height correctly. (Hirohito Higashi) |
| 11312 | Files: src/window.c, src/testdir/test_alot.vim, |
| 11313 | src/testdir/test_window_cmd.vim |
| 11314 | |
| 11315 | Patch 7.4.1836 |
| 11316 | Problem: When using a partial on a dictionary it always gets bound to that |
| 11317 | dictionary. |
| 11318 | Solution: Make a difference between binding a function to a dictionary |
| 11319 | explicitly or automatically. |
| 11320 | Files: src/structs.h, src/eval.c, src/testdir/test_partial.vim, |
| 11321 | runtime/doc/eval.txt |
| 11322 | |
| 11323 | Patch 7.4.1837 |
| 11324 | Problem: The BufUnload event is triggered twice, when :bunload is used with |
| 11325 | `bufhidden` set to `unload` or `delete`. |
| 11326 | Solution: Do not trigger the event when ml_mfp is NULL. (Hirohito Higashi) |
| 11327 | Files: src/buffer.c, src/testdir/test_autocmd.vim |
| 11328 | |
| 11329 | Patch 7.4.1838 |
| 11330 | Problem: Functions specifically for testing do not sort together. |
| 11331 | Solution: Rename garbagecollect_for_testing() to test_garbagecollect_now(). |
| 11332 | Add test_null_list(), test_null_dict(), etc. |
| 11333 | Files: src/eval.c, src/testdir/test_expr.vim, |
| 11334 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 11335 | |
| 11336 | Patch 7.4.1839 |
| 11337 | Problem: Cannot get the items stored in a partial. |
| 11338 | Solution: Support using get() on a partial. |
| 11339 | Files: src/eval.c, src/testdir/test_partial.vim, runtime/doc/eval.txt |
| 11340 | |
| 11341 | Patch 7.4.1840 |
| 11342 | Problem: When using packages an "after" directory cannot be used. |
| 11343 | Solution: Add the "after" directory of the package to 'runtimepath' if it |
| 11344 | exists. |
| 11345 | Files: src/ex_cmds2.c, src/testdir/test_packadd.vim |
| 11346 | |
| 11347 | Patch 7.4.1841 |
| 11348 | Problem: The code to reallocate the buffer used for quickfix is repeated. |
| 11349 | Solution: Move the code to a function. (Yegappan Lakshmanan, closes #831) |
| 11350 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 11351 | |
| 11352 | Patch 7.4.1842 (after 7.4.1839) |
| 11353 | Problem: get() works for Partial but not for Funcref. |
| 11354 | Solution: Accept Funcref. Also return the function itself. (Nikolai Pavlov) |
| 11355 | Files: src/eval.c, src/testdir/test_partial.vim, runtime/doc/eval.txt |
| 11356 | |
| 11357 | Patch 7.4.1843 |
| 11358 | Problem: Tests involving Python are flaky. |
| 11359 | Solution: Set the pt_auto field. Add tests. (Nikolai Pavlov) |
| 11360 | Files: runtime/doc/if_pyth.txt, src/if_py_both.h, src/testdir/test86.in, |
| 11361 | src/testdir/test86.ok, src/testdir/test87.in, |
| 11362 | src/testdir/test87.ok |
| 11363 | |
| 11364 | Patch 7.4.1844 |
| 11365 | Problem: Using old function name in comment. More functions should start |
| 11366 | with test_. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11367 | Solution: Rename function in comment. (Hirohito Higashi) Rename |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11368 | disable_char_avail_for_testing() to test_disable_char_avail(). |
| 11369 | And alloc_fail() to test_alloc_fail(). |
| 11370 | Files: src/eval.c, src/getchar.c, src/testdir/runtest.vim, |
| 11371 | src/testdir/test_cursor_func.vim, src/testdir/test_quickfix.vim, |
| 11372 | runtime/doc/eval.txt |
| 11373 | |
| 11374 | Patch 7.4.1845 |
| 11375 | Problem: Mentioning NetBeans when reading from channel. (Ramel Eshed) |
| 11376 | Solution: Make the text more generic. |
| 11377 | Files: src/channel.c |
| 11378 | |
| 11379 | Patch 7.4.1846 |
| 11380 | Problem: Ubsan detects a multiplication overflow. |
| 11381 | Solution: Don't use orig_mouse_time when it's zero. (Dominique Pelle) |
| 11382 | Files: src/term.c |
| 11383 | |
| 11384 | Patch 7.4.1847 |
| 11385 | Problem: Getting an item from a NULL dict crashes. Setting a register to a |
| 11386 | NULL list crashes. (Nikolai Pavlov, issue #768) Comparing a NULL |
| 11387 | dict with a NULL dict fails. |
| 11388 | Solution: Properly check for NULL. |
| 11389 | Files: src/eval.c, src/testdir/test_expr.vim |
| 11390 | |
| 11391 | Patch 7.4.1848 |
| 11392 | Problem: Can't build with Strawberry Perl 5.24. |
| 11393 | Solution: Define S_SvREFCNT_dec() if needed. (Damien, Ken Takata) |
| 11394 | Files: src/if_perl.xs |
| 11395 | |
| 11396 | Patch 7.4.1849 |
| 11397 | Problem: Still trying to read from channel that is going to be closed. |
| 11398 | (Ramel Eshed) |
| 11399 | Solution: Check if ch_to_be_closed is set. |
| 11400 | Files: src/channel.c |
| 11401 | |
| 11402 | Patch 7.4.1850 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 11403 | Problem: GUI freezes when using a job. (Shougo Matsu) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11404 | Solution: Unregister the channel when there is an input error. |
| 11405 | Files: src/channel.c |
| 11406 | |
| 11407 | Patch 7.4.1851 |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11408 | Problem: test_syn_attr fails when using the GUI. (Dominique Pelle) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11409 | Solution: Escape the font name properly. |
| 11410 | Files: src/testdir/test_syn_attr.vim |
| 11411 | |
| 11412 | Patch 7.4.1852 |
| 11413 | Problem: Unix: Cannot run all tests with the GUI. |
| 11414 | Solution: Add the "testgui" target. |
| 11415 | Files: src/Makefile, src/testdir/Makefile |
| 11416 | |
| 11417 | Patch 7.4.1853 |
| 11418 | Problem: Crash when job and channel are in the same dict while using |
| 11419 | partials. (Luc Hermitte) |
| 11420 | Solution: Do not decrement the channel reference count too early. |
| 11421 | Files: src/channel.c |
| 11422 | |
| 11423 | Patch 7.4.1854 |
| 11424 | Problem: When setting 'termguicolors' the Ignore highlighting doesn't work. |
| 11425 | (Charles Campbell) |
| 11426 | Solution: Handle the color names "fg" and "bg" when the GUI isn't running |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11427 | and no colors are specified, fall back to black and white. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11428 | Files: src/syntax.c |
| 11429 | |
| 11430 | Patch 7.4.1855 |
| 11431 | Problem: Valgrind reports memory leak for job that is not freed. |
| 11432 | Solution: Free all jobs on exit. Add test for failing job. |
| 11433 | Files: src/channel.c, src/misc2.c, src/proto/channel.pro, |
| 11434 | src/testdir/test_partial.vim |
| 11435 | |
| 11436 | Patch 7.4.1856 (after 7.4.1855) |
| 11437 | Problem: failing job test fails on MS-Windows. |
| 11438 | Solution: Expect "fail" status instead of "dead". |
| 11439 | Files: src/testdir/test_partial.vim |
| 11440 | |
| 11441 | Patch 7.4.1857 |
| 11442 | Problem: When a channel appends to a buffer that is 'nomodifiable' there is |
| 11443 | an error but appending is done anyway. |
| 11444 | Solution: Add the 'modifiable' option. Refuse to write to a 'nomodifiable' |
| 11445 | when the value is 1. |
| 11446 | Files: src/structs.h, src/channel.c, src/testdir/test_channel.vim, |
| 11447 | runtime/doc/channel.txt |
| 11448 | |
| 11449 | Patch 7.4.1858 |
| 11450 | Problem: When a channel writes to a buffer it doesn't find a buffer by the |
| 11451 | short name but re-uses it anyway. |
| 11452 | Solution: Find buffer also by the short name. |
| 11453 | Files: src/channel.c, src/buffer.c, src/vim.h |
| 11454 | |
| 11455 | Patch 7.4.1859 |
| 11456 | Problem: Cannot use a function reference for "exit_cb". |
| 11457 | Solution: Use get_callback(). (Yegappan Lakshmanan) |
| 11458 | Files: src/channel.c, src/structs.h |
| 11459 | |
| 11460 | Patch 7.4.1860 |
| 11461 | Problem: Using a partial for timer_start() may cause a crash. |
| 11462 | Solution: Set the copyID in timer objects. (Ozaki Kiichi) |
| 11463 | Files: src/testdir/test_timers.vim, src/eval.c, src/ex_cmds2.c, |
| 11464 | src/proto/ex_cmds2.pro |
| 11465 | |
| 11466 | Patch 7.4.1861 |
| 11467 | Problem: Compiler warnings with 64 bit compiler. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11468 | Solution: Change int to size_t. (Mike Williams) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11469 | Files: src/ex_cmds2.c |
| 11470 | |
| 11471 | Patch 7.4.1862 |
| 11472 | Problem: string() with repeated argument does not give a result usable by |
| 11473 | eval(). |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11474 | Solution: Refactor echo_string and tv2string(), moving the common part to |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11475 | echo_string_core(). (Ken Takata) |
| 11476 | Files: src/eval.c, src/testdir/test_viml.vim, src/testdir/test86.ok, |
| 11477 | src/testdir/test87.ok |
| 11478 | |
| 11479 | Patch 7.4.1863 |
| 11480 | Problem: Compiler warnings on Win64. |
| 11481 | Solution: Adjust types, add type casts. (Ken Takata) |
| 11482 | Files: src/if_mzsch.c, src/if_perl.xs, src/if_ruby.c, src/version.c |
| 11483 | |
| 11484 | Patch 7.4.1864 |
| 11485 | Problem: Python: encoding error with Python 2. |
| 11486 | Solution: Use "getcwdu" instead of "getcwd". (Ken Takata) |
| 11487 | Files: src/if_py_both.h |
| 11488 | |
| 11489 | Patch 7.4.1865 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11490 | Problem: Memory leaks in test49. (Dominique Pelle) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11491 | Solution: Use NULL instead of an empty string. |
| 11492 | Files: src/eval.c |
| 11493 | |
| 11494 | Patch 7.4.1866 |
| 11495 | Problem: Invalid memory access when exiting with EXITFREE defined. |
| 11496 | (Dominique Pelle) |
| 11497 | Solution: Set "really_exiting" and skip error messages. |
| 11498 | Files: src/misc2.c, src/eval.c |
| 11499 | |
| 11500 | Patch 7.4.1867 |
| 11501 | Problem: Memory leak in test_matchstrpos. |
| 11502 | Solution: Free the string before overwriting. (Yegappan Lakshmanan) |
| 11503 | Files: src/eval.c |
| 11504 | |
| 11505 | Patch 7.4.1868 |
| 11506 | Problem: Setting really_exiting causes memory leaks to be reported. |
| 11507 | Solution: Add the in_free_all_mem flag. |
| 11508 | Files: src/globals.h, src/misc2.c, src/eval.c |
| 11509 | |
| 11510 | Patch 7.4.1869 |
| 11511 | Problem: Can't build with old version of Perl. |
| 11512 | Solution: Define PERLIO_FUNCS_DECL. (Tom G. Christensen) |
| 11513 | Files: src/if_perl.xs |
| 11514 | |
| 11515 | Patch 7.4.1870 (after 7.4.1863) |
| 11516 | Problem: One more Win64 compiler warning. |
| 11517 | Solution: Change declared argument type. (Ken Takata) |
| 11518 | Files: src/if_mzsch.c |
| 11519 | |
| 11520 | Patch 7.4.1871 |
| 11521 | Problem: Appending to the quickfix list while the quickfix window is open |
| 11522 | is very slow. |
| 11523 | Solution: Do not delete all the lines, only append the new ones. Avoid |
| 11524 | using a window while updating the list. (closes #841) |
| 11525 | Files: src/quickfix.c |
| 11526 | |
| 11527 | Patch 7.4.1872 |
| 11528 | Problem: Still build problem with old version of Perl. |
| 11529 | Solution: Also define SvREFCNT_inc_void_NN if needed. (Tom G. Christensen) |
| 11530 | Files: src/if_perl.xs |
| 11531 | |
| 11532 | Patch 7.4.1873 |
| 11533 | Problem: When a callback adds a timer the GUI doesn't use it until later. |
| 11534 | (Ramel Eshed) |
| 11535 | Solution: Return early if a callback adds a timer. |
| 11536 | Files: src/ex_cmds2.c, src/gui_gtk_x11.c, src/gui_w32.c, src/gui_x11.c, |
| 11537 | src/globals.h |
| 11538 | |
| 11539 | Patch 7.4.1874 |
| 11540 | Problem: Unused variable in Win32 code. |
| 11541 | Solution: Remove it. (Mike Williams) |
| 11542 | Files: src/gui_w32.c |
| 11543 | |
| 11544 | Patch 7.4.1875 |
| 11545 | Problem: Comparing functions and partials doesn't work well. |
| 11546 | Solution: Add tests. (Nikolai Pavlov) Compare the dict and arguments in the |
| 11547 | partial. (closes #813) |
| 11548 | Files: src/eval.c, src/testdir/test_partial.vim |
| 11549 | |
| 11550 | Patch 7.4.1876 |
| 11551 | Problem: Typing "k" at the hit-enter prompt has no effect. |
| 11552 | Solution: Don't assume recursive use of the prompt if a character was typed. |
| 11553 | (Hirohito Higashi) |
| 11554 | Files: src/message.c |
| 11555 | |
| 11556 | Patch 7.4.1877 |
| 11557 | Problem: No test for invoking "close_cb" when writing to a buffer. |
| 11558 | Solution: Add using close_cb to a test case. |
| 11559 | Files: src/testdir/test_channel.vim |
| 11560 | |
| 11561 | Patch 7.4.1878 |
| 11562 | Problem: Whether a job has exited isn't detected until a character is |
| 11563 | typed. After calling exit_cb the cursor is in the wrong place. |
| 11564 | Solution: Don't wait forever for a character to be typed when there is a |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11565 | pending job. Update the screen if needed after calling exit_cb. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11566 | Files: src/os_unix.c, src/channel.c, src/proto/channel.pro |
| 11567 | |
| 11568 | Patch 7.4.1879 (after 7.4.1877) |
| 11569 | Problem: Channel test is flaky. |
| 11570 | Solution: Wait for close_cb to be invoked. |
| 11571 | Files: src/testdir/test_channel.vim |
| 11572 | |
| 11573 | Patch 7.4.1880 |
| 11574 | Problem: MS-Windows console build defaults to not having +channel. |
| 11575 | Solution: Include the channel feature if building with huge features. |
| 11576 | Files: src/Make_mvc.mak |
| 11577 | |
| 11578 | Patch 7.4.1881 |
| 11579 | Problem: Appending to a long quickfix list is slow. |
| 11580 | Solution: Add qf_last. |
| 11581 | Files: src/quickfix.c |
| 11582 | |
| 11583 | Patch 7.4.1882 |
| 11584 | Problem: Check for line break at end of line wrong. (Dominique Pelle) |
| 11585 | Solution: Correct the logic. |
| 11586 | Files: src/quickfix.c |
| 11587 | |
| 11588 | Patch 7.4.1883 |
| 11589 | Problem: Cppcheck found 2 incorrect printf formats. |
| 11590 | Solution: Use %ld and %lx. (Dominique Pelle) |
| 11591 | Files: src/VisVim/Commands.cpp, src/gui_mac.c |
| 11592 | |
| 11593 | Patch 7.4.1884 |
| 11594 | Problem: Updating marks in a quickfix list is very slow when the list is |
| 11595 | long. |
| 11596 | Solution: Only update marks if the buffer has a quickfix entry. |
| 11597 | Files: src/structs.h, src/quickfix.c |
| 11598 | |
| 11599 | Patch 7.4.1885 |
| 11600 | Problem: MinGW console build defaults to not having +channel. |
| 11601 | Solution: Include the channel feature if building with huge features. (Ken |
| 11602 | Takata) |
| 11603 | Files: src/Make_cyg_ming.mak |
| 11604 | |
| 11605 | Patch 7.4.1886 |
| 11606 | Problem: When waiting for a character is interrupted by receiving channel |
| 11607 | data and the first character of a mapping was typed, the mapping |
| 11608 | times out. (Ramel Eshed) |
| 11609 | Solution: When dealing with channel data don't return from mch_inchar(). |
| 11610 | Files: src/getchar.c, src/proto/getchar.pro, src/os_unix.c |
| 11611 | |
| 11612 | Patch 7.4.1887 |
| 11613 | Problem: When receiving channel data 'updatetime' is not respected. |
| 11614 | Solution: Recompute the waiting time after being interrupted. |
| 11615 | Files: src/os_unix.c |
| 11616 | |
| 11617 | Patch 7.4.1888 |
| 11618 | Problem: Wrong computation of remaining wait time in RealWaitForChar() |
| 11619 | Solution: Remember the original waiting time. |
| 11620 | Files: src/os_unix.c |
| 11621 | |
| 11622 | Patch 7.4.1889 |
| 11623 | Problem: When umask is set to 0177 Vim can't create temp files. (Lcd) |
| 11624 | Solution: Also correct umask when using mkdtemp(). |
| 11625 | Files: src/fileio.c |
| 11626 | |
| 11627 | Patch 7.4.1890 |
| 11628 | Problem: GUI: When channel data is received the cursor blinking is |
| 11629 | interrupted. (Ramel Eshed) |
| 11630 | Solution: Don't update the cursor when it is blinking. |
| 11631 | Files: src/screen.c, src/gui_gtk_x11.c, src/proto/gui_gtk_x11.pro, |
| 11632 | src/gui_mac.c, src/proto/gui_mac.pro, src/gui_photon.c, |
| 11633 | src/proto/gui_photon.pro, src/gui_w32.c, src/proto/gui_w32.pro, |
| 11634 | src/gui_x11.c, src/proto/gui_x11.pro |
| 11635 | |
| 11636 | Patch 7.4.1891 |
| 11637 | Problem: Channel reading very long lines is slow. |
| 11638 | Solution: Collapse multiple buffers until a NL is found. |
| 11639 | Files: src/channel.c, src/netbeans.c, src/proto/channel.pro, |
| 11640 | src/structs.h |
| 11641 | |
| 11642 | Patch 7.4.1892 |
| 11643 | Problem: balloon eval only gets the window number, not the ID. |
| 11644 | Solution: Add v:beval_winid. |
| 11645 | Files: src/eval.c, src/gui_beval.c, src/vim.h |
| 11646 | |
| 11647 | Patch 7.4.1893 |
| 11648 | Problem: Cannot easily get the window ID for a buffer. |
| 11649 | Solution: Add bufwinid(). |
| 11650 | Files: src/eval.c, runtime/doc/eval.txt |
| 11651 | |
| 11652 | Patch 7.4.1894 |
| 11653 | Problem: Cannot get the window ID for a mouse click. |
| 11654 | Solution: Add v:mouse_winid. |
| 11655 | Files: src/eval.c, src/vim.h, runtime/doc/eval.txt |
| 11656 | |
| 11657 | Patch 7.4.1895 |
| 11658 | Problem: Cannot use a window ID where a window number is expected. |
| 11659 | Solution: Add LOWEST_WIN_ID, so that the window ID can be used where a |
| 11660 | number is expected. |
| 11661 | Files: src/window.c, src/eval.c, src/vim.h, runtime/doc/eval.txt, |
| 11662 | src/testdir/test_window_id.vim |
| 11663 | |
| 11664 | Patch 7.4.1896 |
| 11665 | Problem: Invoking mark_adjust() when adding a new line below the last line |
| 11666 | is pointless. |
| 11667 | Solution: Skip calling mark_adjust() when appending below the last line. |
| 11668 | Files: src/misc1.c, src/ops.c |
| 11669 | |
| 11670 | Patch 7.4.1897 |
| 11671 | Problem: Various typos, long lines and style mistakes. |
| 11672 | Solution: Fix the typos, wrap lines, improve style. |
| 11673 | Files: src/buffer.c, src/ex_docmd.c, src/getchar.c, src/option.c, |
| 11674 | src/main.aap, src/testdir/README.txt, |
| 11675 | src/testdir/test_reltime.vim, src/testdir/test_tagjump.vim, |
| 11676 | src/INSTALL, src/config.aap.in, src/if_mzsch.c |
| 11677 | |
| 11678 | Patch 7.4.1898 |
| 11679 | Problem: User commands don't support modifiers. |
| 11680 | Solution: Add the <mods> item. (Yegappan Lakshmanan, closes #829) |
| 11681 | Files: runtime/doc/map.txt, src/ex_docmd.c, src/testdir/Make_all.mak, |
| 11682 | src/testdir/test_usercommands.vim |
| 11683 | |
| 11684 | Patch 7.4.1899 |
| 11685 | Problem: GTK 3: cursor blinking doesn't work well. |
| 11686 | Solution: Instead of gui_gtk_window_clear() use gui_mch_clear_block(). |
| 11687 | (Kazunobu Kuriyama) |
| 11688 | Files: src/gui_gtk_x11.c |
| 11689 | |
| 11690 | Patch 7.4.1900 |
| 11691 | Problem: Using CTRL-] in the help on "{address}." doesn't work. |
| 11692 | Solution: Recognize an item in {}. (Hirohito Higashi, closes #814) |
| 11693 | Files: src/ex_cmds.c, src/testdir/test_help_tagjump.vim |
| 11694 | |
| 11695 | Patch 7.4.1901 |
| 11696 | Problem: Win32: the "Disabled" menu items would appear enabled. |
| 11697 | Solution: Use submenu_id if there is a parent. (Shane Harper, closes #834) |
| 11698 | Files: src/gui_w32.c |
| 11699 | |
| 11700 | Patch 7.4.1902 |
| 11701 | Problem: No test for collapsing buffers for a channel. Some text is lost. |
| 11702 | Solution: Add a simple test. Set rq_buflen correctly. |
| 11703 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 11704 | src/testdir/test_channel_pipe.py |
| 11705 | |
| 11706 | Patch 7.4.1903 |
| 11707 | Problem: When writing viminfo merging current history with history in |
| 11708 | viminfo may drop recent history entries. |
| 11709 | Solution: Add new format for viminfo lines, use it for history entries. Use |
| 11710 | a timestamp for ordering the entries. Add test_settime(). |
| 11711 | Add the viminfo version. Does not do merging on timestamp yet. |
| 11712 | Files: src/eval.c, src/ex_getln.c, src/ex_cmds.c, src/structs.h, |
| 11713 | src/globals.h, src/proto/ex_cmds.pro, src/proto/ex_getln.pro, |
| 11714 | src/testdir/test_viminfo.vim |
| 11715 | |
| 11716 | Patch 7.4.1904 (after 7.4.1903) |
| 11717 | Problem: Build fails. |
| 11718 | Solution: Add missing changes. |
| 11719 | Files: src/vim.h |
| 11720 | |
| 11721 | Patch 7.4.1905 (after 7.4.1903) |
| 11722 | Problem: Some compilers can't handle a double semicolon. |
| 11723 | Solution: Remove one semicolon. |
| 11724 | Files: src/ex_cmds.c |
| 11725 | |
| 11726 | Patch 7.4.1906 |
| 11727 | Problem: Collapsing channel buffers and searching for NL does not work |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11728 | properly. (Xavier de Gaye, Ramel Eshed) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11729 | Solution: Do not assume the buffer contains a NUL or not. Change NUL bytes |
| 11730 | to NL to avoid the string is truncated. |
| 11731 | Files: src/channel.c, src/netbeans.c, src/proto/channel.pro |
| 11732 | |
| 11733 | Patch 7.4.1907 |
| 11734 | Problem: Warnings from 64 bit compiler. |
| 11735 | Solution: Change type to size_t. (Mike Williams) |
| 11736 | Files: src/ex_cmds.c |
| 11737 | |
| 11738 | Patch 7.4.1908 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11739 | Problem: Netbeans uses uninitialized pointer and freed memory. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11740 | Solution: Set "buffer" at the right place (hint by Ken Takata) |
| 11741 | Files: src/netbeans.c |
| 11742 | |
| 11743 | Patch 7.4.1909 |
| 11744 | Problem: Doubled semicolons. |
| 11745 | Solution: Reduce to one. (Dominique Pelle) |
| 11746 | Files: src/dosinst.c, src/fold.c, src/gui_gtk_x11.c, src/gui_w32.c, |
| 11747 | src/main.c, src/misc2.c |
| 11748 | |
| 11749 | Patch 7.4.1910 |
| 11750 | Problem: Tests using external command to delete directory. |
| 11751 | Solution: Use delete(). |
| 11752 | Files: src/testdir/test17.in, src/testdir/test73.in, |
| 11753 | src/testdir/test_getcwd.in |
| 11754 | |
| 11755 | Patch 7.4.1911 |
| 11756 | Problem: Recent history lines may be lost when exiting Vim. |
| 11757 | Solution: Merge history using the timestamp. |
| 11758 | Files: src/ex_getln.c, src/ex_cmds.c, src/vim.h, src/proto/ex_getln.pro, |
| 11759 | src/testdir/test_viminfo.vim |
| 11760 | |
| 11761 | Patch 7.4.1912 |
| 11762 | Problem: No test for using setqflist() on an older quickfix list. |
| 11763 | Solution: Add a couple of tests. |
| 11764 | Files: src/testdir/test_quickfix.vim |
| 11765 | |
| 11766 | Patch 7.4.1913 |
| 11767 | Problem: When ":doautocmd" is used modelines are used even when no |
| 11768 | autocommands were executed. (Daniel Hahler) |
| 11769 | Solution: Skip processing modelines. (closes #854) |
| 11770 | Files: src/fileio.c, src/ex_cmds.c, src/ex_docmd.c, src/proto/fileio.pro |
| 11771 | |
| 11772 | Patch 7.4.1914 |
| 11773 | Problem: Executing autocommands while using the signal stack has a high |
| 11774 | chance of crashing Vim. |
| 11775 | Solution: Don't invoke autocommands when on the signal stack. |
| 11776 | Files: src/os_unix.c |
| 11777 | |
| 11778 | Patch 7.4.1915 |
| 11779 | Problem: The effect of the PopupMenu autocommand isn't directly visible. |
| 11780 | Solution: Call gui_update_menus() before displaying the popup menu. (Shane |
| 11781 | Harper, closs #855) |
| 11782 | Files: src/menu.c |
| 11783 | |
| 11784 | Patch 7.4.1916 (after 7.4.1906) |
| 11785 | Problem: No proper test for what 7.4.1906 fixes. |
| 11786 | Solution: Add a test for reading many lines. |
| 11787 | Files: src/testdir/test_channel.vim |
| 11788 | |
| 11789 | Patch 7.4.1917 |
| 11790 | Problem: History lines read from viminfo in different encoding than when |
| 11791 | writing are not converted. |
| 11792 | Solution: Convert the history lines. |
| 11793 | Files: src/ex_cmds.c, src/testdir/test_viminfo.vim |
| 11794 | |
| 11795 | Patch 7.4.1918 |
| 11796 | Problem: Not enough testing for parsing viminfo lines. |
| 11797 | Solution: Add test with viminfo lines in bad syntax. Fix memory leak. |
| 11798 | Files: src/ex_cmds.c, src/ex_getln.c, src/testdir/test_viminfo.vim |
| 11799 | |
| 11800 | Patch 7.4.1919 |
| 11801 | Problem: Register contents is not merged when writing viminfo. |
| 11802 | Solution: Use timestamps for register contents. |
| 11803 | Files: src/ops.c, src/ex_getln.c, src/ex_cmds.c, src/proto/ex_cmds.pro, |
| 11804 | src/proto/ex_getln.pro, src/proto/ops.pro, src/vim.h |
| 11805 | |
| 11806 | Patch 7.4.1920 (after 7.4.1919) |
| 11807 | Problem: Missing test changes. |
| 11808 | Solution: Update viminfo test. |
| 11809 | Files: src/testdir/test_viminfo.vim |
| 11810 | |
| 11811 | Patch 7.4.1921 (after 7.4.1919) |
| 11812 | Problem: vim_time() not included when needed. |
| 11813 | Solution: Adjust #ifdef. |
| 11814 | Files: src/ex_cmds.c |
| 11815 | |
| 11816 | Patch 7.4.1922 |
| 11817 | Problem: Ruby 2.4.0 unifies Fixnum and Bignum into Integer. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11818 | Solution: Use rb_cInteger. (Weiyong Mao) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11819 | Files: src/if_ruby.c |
| 11820 | |
| 11821 | Patch 7.4.1923 |
| 11822 | Problem: Command line editing is not tested much. |
| 11823 | Solution: Add tests for expanding the file name and 'wildmenu'. |
| 11824 | Files: src/testdir/test_cmdline.vim, src/testdir/Make_all.mak |
| 11825 | |
| 11826 | Patch 7.4.1924 |
| 11827 | Problem: Missing "void" for functions without argument. |
| 11828 | Solution: Add "void". (Hirohito Higashi) |
| 11829 | Files: src/channel.c, src/edit.c, src/ex_cmds2.c, src/ops.c, src/screen.c |
| 11830 | |
| 11831 | Patch 7.4.1925 |
| 11832 | Problem: Viminfo does not merge file marks properly. |
| 11833 | Solution: Use a timestamp. Add the :clearjumps command. |
| 11834 | Files: src/mark.c, src/ex_cmds.c, src/ex_docmd.c, src/proto/mark.pro, |
| 11835 | src/structs.h, src/vim.h, src/ex_cmds.h, |
| 11836 | src/testdir/test_viminfo.vim |
| 11837 | |
| 11838 | Patch 7.4.1926 |
| 11839 | Problem: Possible crash with many history items. |
| 11840 | Solution: Avoid the index going past the last item. |
| 11841 | Files: src/ex_getln.c |
| 11842 | |
| 11843 | Patch 7.4.1927 |
| 11844 | Problem: Compiler warning for signed/unsigned. |
| 11845 | Solution: Add type cast. |
| 11846 | Files: src/if_mzsch.c |
| 11847 | |
| 11848 | Patch 7.4.1928 |
| 11849 | Problem: Overwriting pointer argument. |
| 11850 | Solution: Assign to what it points to. (Dominique Pelle) |
| 11851 | Files: src/fileio.c |
| 11852 | |
| 11853 | Patch 7.4.1929 |
| 11854 | Problem: Inconsistent indenting and weird name. |
| 11855 | Solution: Fix indent, make name all upper case. (Ken Takata) |
| 11856 | Files: src/if_ruby.c |
| 11857 | |
| 11858 | Patch 7.4.1930 |
| 11859 | Problem: Can't build without +spell but with +quickfix. (Charles) |
| 11860 | Solution: Add better #ifdef around ml_append_buf(). (closes #864) |
| 11861 | Files: src/memline.c |
| 11862 | |
| 11863 | Patch 7.4.1931 |
| 11864 | Problem: Using both old and new style file mark lines from viminfo. |
| 11865 | Solution: Skip the old style lines if the viminfo file was written with a |
| 11866 | Vim version that supports the new style. |
| 11867 | Files: src/ex_cmds.c |
| 11868 | |
| 11869 | Patch 7.4.1932 |
| 11870 | Problem: When writing viminfo the jumplist is not merged with the one in |
| 11871 | the viminfo file. |
| 11872 | Solution: Merge based on timestamp. |
| 11873 | Files: src/mark.c, src/testdir/test_viminfo.vim |
| 11874 | |
| 11875 | Patch 7.4.1933 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11876 | Problem: Compiler warning about uninitialized variable. (Yegappan) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11877 | Solution: Give it a dummy value. |
| 11878 | Files: src/ex_getln.c |
| 11879 | |
| 11880 | Patch 7.4.1934 |
| 11881 | Problem: New style tests not executed with MinGW compiler. |
| 11882 | Solution: Add new style test support. (Yegappan Lakshmanan) |
| 11883 | Files: src/testdir/Make_ming.mak |
| 11884 | |
| 11885 | Patch 7.4.1935 |
| 11886 | Problem: When using the GUI search/replace a second match right after the |
| 11887 | replacement is skipped. |
| 11888 | Solution: Add the SEARCH_START flag. (Mleddy) |
| 11889 | Files: src/gui.c |
| 11890 | |
| 11891 | Patch 7.4.1936 |
| 11892 | Problem: Off-by-one error in bounds check. (Coverity) |
| 11893 | Solution: Check register number properly. |
| 11894 | Files: src/ops.c |
| 11895 | |
| 11896 | Patch 7.4.1937 |
| 11897 | Problem: No test for directory stack in quickfix. |
| 11898 | Solution: Add a test. (Yegappan Lakshmanan) |
| 11899 | Files: src/testdir/test_quickfix.vim |
| 11900 | |
| 11901 | Patch 7.4.1938 |
| 11902 | Problem: When writing viminfo numbered marks were duplicated. |
| 11903 | Solution: Check for duplicates between current numbered marks and the ones |
| 11904 | read from viminfo. |
| 11905 | Files: src/mark.c |
| 11906 | |
| 11907 | Patch 7.4.1939 |
| 11908 | Problem: Memory access error when reading viminfo. (Dominique Pelle) |
| 11909 | Solution: Correct index in jumplist when at the end. |
| 11910 | Files: src/mark.c, src/testdir/test_viminfo.vim |
| 11911 | |
| 11912 | Patch 7.4.1940 |
| 11913 | Problem: "gd" hangs in some situations. (Eric Biggers) |
| 11914 | Solution: Remove the SEARCH_START flag when looping. Add a test. |
| 11915 | Files: src/normal.c, src/testdir/test_goto.vim |
| 11916 | |
| 11917 | Patch 7.4.1941 |
| 11918 | Problem: Not all quickfix tests are also done with the location lists. |
| 11919 | Solution: Test more quickfix code. Use user commands instead of "exe". |
| 11920 | (Yegappan Lakshmanan) |
| 11921 | Files: src/testdir/test_quickfix.vim |
| 11922 | |
| 11923 | Patch 7.4.1942 |
| 11924 | Problem: Background is not drawn properly when 'termguicolors' is set. |
| 11925 | Solution: Check cterm_normal_bg_color. (Jacob Niehus, closes #805) |
| 11926 | Files: src/screen.c |
| 11927 | |
| 11928 | Patch 7.4.1943 |
| 11929 | Problem: Coverity warns for unreachable code. |
| 11930 | Solution: Remove the code that won't do anything. |
| 11931 | Files: src/mark.c |
| 11932 | |
| 11933 | Patch 7.4.1944 |
| 11934 | Problem: Win32: Cannot compile with XPM feature using VC2015 |
| 11935 | Solution: Add XPM libraries compiled with VC2015, and enable to build |
| 11936 | gvim.exe which supports XPM using VC2015. (Ken Takata) |
| 11937 | Files: src/Make_mvc.mak, src/xpm/x64/lib-vc14/libXpm.lib, |
| 11938 | src/xpm/x86/lib-vc14/libXpm.lib |
| 11939 | |
| 11940 | Patch 7.4.1945 |
| 11941 | Problem: The Man plugin doesn't work that well. |
| 11942 | Solution: Use "g:ft_man_open_mode" to be able open man pages in vert split |
| 11943 | or separate tab. Set nomodifiable for buffer with man content. Add |
| 11944 | a test. (Andrey Starodubtsev, closes #873) |
| 11945 | Files: runtime/ftplugin/man.vim, src/testdir/test_man.vim, |
| 11946 | src/testdir/Make_all.mak |
| 11947 | |
| 11948 | Patch 7.4.1946 (after 7.4.1944) |
| 11949 | Problem: File list does not include new XPM libraries. |
| 11950 | Solution: Add the file list entries. |
| 11951 | Files: Filelist |
| 11952 | |
| 11953 | Patch 7.4.1947 |
| 11954 | Problem: Viminfo continuation line with wrong length isn't skipped. (Marius |
| 11955 | Gedminas) |
| 11956 | Solution: Skip a line when encountering an error, but not two lines. |
| 11957 | Files: src/ex_cmds.c |
| 11958 | |
| 11959 | Patch 7.4.1948 |
| 11960 | Problem: Using Ctrl-A with double-byte encoding may result in garbled text. |
| 11961 | Solution: Skip to the start of a character. (Hirohito Higashi) |
| 11962 | Files: src/ops.c |
| 11963 | |
| 11964 | Patch 7.4.1949 |
| 11965 | Problem: Minor problems with the quickfix code. |
| 11966 | Solution: Fix the problems. (Yegappan Lakshmanan) |
| 11967 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 11968 | |
| 11969 | Patch 7.4.1950 |
| 11970 | Problem: Quickfix long lines test not executed for buffer. |
| 11971 | Solution: Call the function to test long lines. (Yegappan Lakshmanan) |
| 11972 | Files: src/testdir/test_quickfix.vim |
| 11973 | |
| 11974 | Patch 7.4.1951 |
| 11975 | Problem: Ruby test is old style. |
| 11976 | Solution: Convert to a new style test. (Ken Takata) |
| 11977 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_ruby.in, |
| 11978 | src/testdir/test_ruby.ok, src/testdir/test_ruby.vim |
| 11979 | |
| 11980 | Patch 7.4.1952 |
| 11981 | Problem: Cscope interface does not support finding assignments. |
| 11982 | Solution: Add the "a" command. (ppettina, closes #882) |
| 11983 | Files: runtime/doc/if_cscop.txt, src/if_cscope.c |
| 11984 | |
| 11985 | Patch 7.4.1953 |
| 11986 | Problem: Not all parts of the quickfix code are tested. |
| 11987 | Solution: Add more tests. (Yegappan Lakshmanan) |
| 11988 | Files: src/testdir/samples/quickfix.txt, |
| 11989 | src/testdir/test_quickfix.vim |
| 11990 | |
| 11991 | Patch 7.4.1954 (after 7.4.1948) |
| 11992 | Problem: No test for what 7.4.1948 fixes. |
| 11993 | Solution: Add a test. (Hirohito Higashi, closes #880) |
| 11994 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 11995 | src/testdir/test_increment_dbcs.vim |
| 11996 | |
| 11997 | Patch 7.4.1955 |
| 11998 | Problem: Using 32-bit Perl with 64-bit time_t causes memory corruption. |
| 11999 | (Christian Brabandt) |
| 12000 | Solution: Use time_T instead of time_t for global variables. (Ken Takata) |
| 12001 | Files: src/ex_cmds.c, src/globals.h, src/misc2.c, src/proto/ex_cmds.pro, |
| 12002 | src/proto/misc2.pro, src/structs.h, src/vim.h |
| 12003 | |
| 12004 | Patch 7.4.1956 |
| 12005 | Problem: When using CTRL-W f and pressing "q" at the ATTENTION dialog the |
| 12006 | newly opened window is not closed. |
| 12007 | Solution: Close the window and go back to the original one. (Norio Takagi, |
| 12008 | Hirohito Higashi) |
| 12009 | Files: src/window.c, src/testdir/test_window_cmd.vim |
| 12010 | |
| 12011 | Patch 7.4.1957 |
| 12012 | Problem: Perl interface has obsolete workaround. |
| 12013 | Solution: Remove the workaround added by 7.3.623. (Ken Takata) |
| 12014 | Files: src/if_perl.xs |
| 12015 | |
| 12016 | Patch 7.4.1958 |
| 12017 | Problem: Perl interface preprocessor statements not nicely indented. |
| 12018 | Solution: Improve the indenting. (Ken Takata) |
| 12019 | Files: src/if_perl.xs |
| 12020 | |
| 12021 | Patch 7.4.1959 |
| 12022 | Problem: Crash when running test_channel.vim on Windows. |
| 12023 | Solution: Check for NULL pointer result from FormatMessage(). (Christian |
| 12024 | Brabandt) |
| 12025 | Files: src/channel.c |
| 12026 | |
| 12027 | Patch 7.4.1960 |
| 12028 | Problem: Unicode standard 9 was released. |
| 12029 | Solution: Update the character property tables. (Christian Brabandt) |
| 12030 | Files: src/mbyte.c |
| 12031 | |
| 12032 | Patch 7.4.1961 |
| 12033 | Problem: When 'insertmode' is reset while doing completion the popup menu |
| 12034 | remains even though Vim is in Normal mode. |
| 12035 | Solution: Ignore stop_insert_mode when the popup menu is visible. Don't set |
| 12036 | stop_insert_mode when 'insertmode' was already off. (Christian |
| 12037 | Brabandt) |
| 12038 | Files: src/edit.c, src/option.c, src/Makefile, src/testdir/test_alot.vim, |
| 12039 | src/testdir/test_popup.vim |
| 12040 | |
| 12041 | Patch 7.4.1962 |
| 12042 | Problem: Two test files for increment/decrement. |
| 12043 | Solution: Move the old style test into the new style test. (Hirohito |
| 12044 | Higashi, closes #881) |
| 12045 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/main.aap, |
| 12046 | src/testdir/test35.in, src/testdir/test35.ok, |
| 12047 | src/testdir/test_increment.vim |
| 12048 | |
| 12049 | Patch 7.4.1963 |
| 12050 | Problem: Running Win32 Vim in mintty does not work. |
| 12051 | Solution: Detect mintty and give a helpful error message. (Ken Takata) |
| 12052 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak, src/iscygpty.c, |
| 12053 | src/iscygpty.h, src/main.c, Filelist |
| 12054 | |
| 12055 | Patch 7.4.1964 |
| 12056 | Problem: The quickfix init function is too big. |
| 12057 | Solution: Factor out parsing 'errorformat' to a separate function. (Yegappan |
| 12058 | Lakshmanan) |
| 12059 | Files: src/quickfix.c |
| 12060 | |
| 12061 | Patch 7.4.1965 |
| 12062 | Problem: When using a job in raw mode to append to a buffer garbage |
| 12063 | characters are added. |
| 12064 | Solution: Do not replace the trailing NUL with a NL. (Ozaki Kiichi) |
| 12065 | Files: src/channel.c, src/testdir/test_channel.vim |
| 12066 | |
| 12067 | Patch 7.4.1966 |
| 12068 | Problem: Coverity reports a resource leak. |
| 12069 | Solution: Close "fd" also when bailing out. |
| 12070 | Files: src/quickfix.c |
| 12071 | |
| 12072 | Patch 7.4.1967 |
| 12073 | Problem: Falling back from NFA to old regexp engine does not work properly. |
| 12074 | (fritzophrenic) |
| 12075 | Solution: Do not restore nfa_match. (Christian Brabandt, closes #867) |
| 12076 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 12077 | |
| 12078 | Patch 7.4.1968 |
| 12079 | Problem: Invalid memory access with "\<C-">. |
| 12080 | Solution: Do not recognize this as a special character. (Dominique Pelle) |
| 12081 | Files: src/misc2.c, src/testdir/test_expr.vim |
| 12082 | |
| 12083 | Patch 7.4.1969 |
| 12084 | Problem: When the netbeans channel is closed consuming the buffer may cause |
| 12085 | a crash. |
| 12086 | Solution: Check for nb_channel not to be NULL. (Xavier de Gaye) |
| 12087 | Files: src/netbeans.c |
| 12088 | |
| 12089 | Patch 7.4.1970 |
| 12090 | Problem: Using ":insert" in an empty buffer sets the jump mark. (Ingo |
| 12091 | Karkat) |
| 12092 | Solution: Don't adjust marks when replacing the empty line in an empty |
| 12093 | buffer. (closes #892) |
| 12094 | Files: src/ex_cmds.c, src/testdir/test_jumps.vim, |
| 12095 | src/testdir/test_alot.vim |
| 12096 | |
| 12097 | Patch 7.4.1971 |
| 12098 | Problem: It is not easy to see unrecognized error lines below the current |
| 12099 | error position. |
| 12100 | Solution: Add ":clist +count". |
| 12101 | Files: src/quickfix.c, runtime/doc/quickfix.txt |
| 12102 | |
| 12103 | Patch 7.4.1972 |
| 12104 | Problem: On Solaris select() does not work as expected when there is |
| 12105 | typeahead. |
| 12106 | Solution: Add ICANON when sleeping. (Ozaki Kiichi) |
| 12107 | Files: src/os_unix.c |
| 12108 | |
| 12109 | Patch 7.4.1973 |
| 12110 | Problem: On MS-Windows the package directory may be added at the end |
| 12111 | because of forward/backward slash differences. (Matthew |
| 12112 | Desjardins) |
| 12113 | Solution: Ignore slash differences. |
| 12114 | Files: src/ex_cmds2.c |
| 12115 | |
| 12116 | Patch 7.4.1974 |
| 12117 | Problem: GUI has a problem with some termcodes. |
| 12118 | Solution: Handle negative numbers. (Kazunobu Kuriyama) |
| 12119 | Files: src/gui.c |
| 12120 | |
| 12121 | Patch 7.4.1975 |
| 12122 | Problem: On MS-Windows large files (> 2Gbyte) cause problems. |
| 12123 | Solution: Use "off_T" instead of "off_t". Use "stat_T" instead of "struct |
| 12124 | stat". Use 64 bit system functions if available. (Ken Takata) |
| 12125 | Files: src/Makefile, src/buffer.c, src/diff.c, src/eval.c, src/ex_cmds.c, |
| 12126 | src/ex_cmds2.c, src/fileio.c, src/gui.c, src/gui_at_fs.c, |
| 12127 | src/if_cscope.c, src/main.c, src/memfile.c, src/memline.c, |
| 12128 | src/misc1.c, src/misc2.c, src/netbeans.c, src/os_mswin.c, |
| 12129 | src/os_win32.c, src/proto/fileio.pro, src/proto/memline.pro, |
| 12130 | src/proto/os_mswin.pro, src/pty.c, src/quickfix.c, src/spell.c, |
| 12131 | src/structs.h, src/tag.c, src/testdir/Make_all.mak, |
| 12132 | src/testdir/test_largefile.vim, src/testdir/test_stat.vim, |
| 12133 | src/undo.c, src/vim.h |
| 12134 | |
| 12135 | Patch 7.4.1976 |
| 12136 | Problem: Number variables are not 64 bits while they could be. |
| 12137 | Solution: Add the num64 feature. (Ken Takata, Yasuhiro Matsumoto) |
| 12138 | Files: runtime/doc/eval.txt, runtime/doc/various.txt, |
| 12139 | src/Make_cyg_ming.mak, src/Make_mvc.mak, src/charset.c, |
| 12140 | src/eval.c, src/ex_cmds.c, src/ex_getln.c, src/feature.h, |
| 12141 | src/fileio.c, src/fold.c, src/json.c, src/message.c, src/misc1.c, |
| 12142 | src/misc2.c, src/ops.c, src/option.c, src/proto/charset.pro, |
| 12143 | src/proto/eval.pro, src/quickfix.c, src/structs.h, |
| 12144 | src/testdir/test_viml.vim, src/version.c |
| 12145 | |
| 12146 | Patch 7.4.1977 |
| 12147 | Problem: With 64 bit changes don't need three calls to sprintf(). |
| 12148 | Solution: Simplify the code, use vim_snprintf(). (Ken Takata) |
| 12149 | Files: src/fileio.c |
| 12150 | |
| 12151 | Patch 7.4.1978 (after 7.4.1975) |
| 12152 | Problem: Large file test does not delete its output. |
| 12153 | Solution: Delete the output. Check size properly when possible. (Ken Takata) |
| 12154 | Files: src/testdir/test_largefile.vim |
| 12155 | |
| 12156 | Patch 7.4.1979 (after 7.4.1976) |
| 12157 | Problem: Getting value of binary option is wrong. (Kent Sibilev) |
| 12158 | Solution: Fix type cast. Add a test. |
| 12159 | Files: src/option.c, src/testdir/test_expr.vim |
| 12160 | |
| 12161 | Patch 7.4.1980 |
| 12162 | Problem: 'errorformat' is parsed for every call to ":caddexpr". Can't add |
| 12163 | to two location lists asynchronously. |
| 12164 | Solution: Keep the previously parsed data when appropriate. (mostly by |
| 12165 | Yegappan Lakshmanan) |
| 12166 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 12167 | |
| 12168 | Patch 7.4.1981 |
| 12169 | Problem: No testing for Farsi code. |
| 12170 | Solution: Add a minimal test. Clean up Farsi code. |
| 12171 | Files: src/farsi.c, src/Makefile, src/charset.c, src/normal.c, |
| 12172 | src/proto/main.pro, src/testdir/Make_all.mak, |
| 12173 | src/testdir/test_farsi.vim |
| 12174 | |
| 12175 | Patch 7.4.1982 |
| 12176 | Problem: Viminfo file contains duplicate change marks. |
| 12177 | Solution: Drop duplicate marks. |
| 12178 | Files: src/mark.c |
| 12179 | |
| 12180 | Patch 7.4.1983 |
| 12181 | Problem: farsi.c and arabic.c are included in a strange way. |
| 12182 | Solution: Build them like other files. |
| 12183 | Files: src/main.c, src/farsi.c, src/arabic.c, src/proto.h, |
| 12184 | src/proto/main.pro, src/proto/farsi.pro, src/proto/arabic.pro, |
| 12185 | src/Makefile, src/Make_bc5.mak, src/Make_cyg_ming.mak, |
| 12186 | src/Make_dice.mak, src/Make_ivc.mak, src/Make_manx.mak, |
| 12187 | src/Make_morph.mak, src/Make_mvc.mak, src/Make_sas.mak, |
| 12188 | Filelist |
| 12189 | |
| 12190 | Patch 7.4.1984 |
| 12191 | Problem: Not all quickfix features are tested. |
| 12192 | Solution: Add a few more tests. (Yegappan Lakshmanan) |
| 12193 | Files: src/testdir/test_quickfix.vim |
| 12194 | |
| 12195 | Patch 7.4.1985 (after 7.4.1983) |
| 12196 | Problem: Missing changes in VMS build file. |
| 12197 | Solution: Use the right file name. |
| 12198 | Files: src/Make_vms.mms |
| 12199 | |
| 12200 | Patch 7.4.1986 |
| 12201 | Problem: Compiler warns for loss of data. |
| 12202 | Solution: Use size_t instead of int. (Christian Brabandt) |
| 12203 | Files: src/ex_cmds2.c |
| 12204 | |
| 12205 | Patch 7.4.1987 |
| 12206 | Problem: When copying unrecognized lines for viminfo, end up with useless |
| 12207 | continuation lines. |
| 12208 | Solution: Skip continuation lines. |
| 12209 | Files: src/ex_cmds.c |
| 12210 | |
| 12211 | Patch 7.4.1988 |
| 12212 | Problem: When updating viminfo with file marks there is no time order. |
| 12213 | Solution: Remember the time when a buffer was last used, store marks for |
| 12214 | the most recently used buffers. |
| 12215 | Files: src/buffer.c, src/structs.h, src/mark.c, src/main.c, |
| 12216 | src/ex_cmds.c, src/proto/mark.pro, src/testdir/test_viminfo.vim |
| 12217 | |
| 12218 | Patch 7.4.1989 |
| 12219 | Problem: filter() and map() only accept a string argument. |
| 12220 | Solution: Implement using a Funcref argument (Yasuhiro Matsumoto, Ken |
| 12221 | Takata) |
| 12222 | Files: runtime/doc/eval.txt, src/Makefile, src/eval.c, |
| 12223 | src/testdir/test_alot.vim, src/testdir/test_filter_map.vim, |
| 12224 | src/testdir/test_partial.vim |
| 12225 | |
| 12226 | Patch 7.4.1990 (after 7.4.1952) |
| 12227 | Problem: Cscope items are not sorted. |
| 12228 | Solution: Put the new "a" command first. (Ken Takata) |
| 12229 | Files: src/if_cscope.c |
| 12230 | |
| 12231 | Patch 7.4.1991 |
| 12232 | Problem: glob() does not add a symbolic link when there are no wildcards. |
| 12233 | Solution: Remove the call to mch_getperm(). |
| 12234 | Files: src/misc1.c |
| 12235 | |
| 12236 | Patch 7.4.1992 |
| 12237 | Problem: Values for true and false can be confusing. |
| 12238 | Solution: Update the documentation. Add a test. Make v:true evaluate to |
| 12239 | TRUE for a non-zero-arg. |
| 12240 | Files: runtime/doc/eval.txt, src/eval.c, src/Makefile, |
| 12241 | src/testdir/test_true_false.vim, src/testdir/test_alot.vim |
| 12242 | |
| 12243 | Patch 7.4.1993 |
| 12244 | Problem: Not all TRUE and FALSE arguments are tested. |
| 12245 | Solution: Add a few more tests. |
| 12246 | Files: src/testdir/test_true_false.vim |
| 12247 | |
| 12248 | Patch 7.4.1994 (after 7.4.1993) |
| 12249 | Problem: True-false test fails. |
| 12250 | Solution: Filter the dict to only keep the value that matters. |
| 12251 | Files: src/testdir/test_true_false.vim |
| 12252 | |
| 12253 | Patch 7.4.1995 |
| 12254 | Problem: GUI: cursor drawn in wrong place if a timer callback causes a |
| 12255 | screen update. (David Samvelyan) |
| 12256 | Solution: Also redraw the cursor when it's blinking and on. |
| 12257 | Files: src/gui_gtk_x11.c, src/gui_mac.c, src/gui_photon.c, src/gui_w32.c, |
| 12258 | src/gui_x11.c, src/screen.c, src/proto/gui_gtk_x11.pro, |
| 12259 | src/proto/gui_mac.pro, src/proto/gui_photon.pro, |
| 12260 | src/proto/gui_w32.pro, src/proto/gui_x11.pro |
| 12261 | |
| 12262 | Patch 7.4.1996 |
| 12263 | Problem: Capturing the output of a command takes a few commands. |
| 12264 | Solution: Add evalcmd(). |
| 12265 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim, |
| 12266 | src/Makefile, src/testdir/test_evalcmd.vim |
| 12267 | |
| 12268 | Patch 7.4.1997 |
| 12269 | Problem: Cannot easily scroll the quickfix window. |
| 12270 | Solution: Add ":cbottom". |
| 12271 | Files: src/ex_cmds.h, src/quickfix.c, src/proto/quickfix.pro, |
| 12272 | src/ex_docmd.c, src/testdir/test_quickfix.vim, |
| 12273 | runtime/doc/quickfix.txt |
| 12274 | |
| 12275 | Patch 7.4.1998 |
| 12276 | Problem: When writing buffer lines to a job there is no NL to NUL |
| 12277 | conversion. |
| 12278 | Solution: Make it work symmetrical with writing lines from a job into a |
| 12279 | buffer. |
| 12280 | Files: src/channel.c, src/proto/channel.pro, src/netbeans.c |
| 12281 | |
| 12282 | Patch 7.4.1999 |
| 12283 | Problem: evalcmd() doesn't work recursively. |
| 12284 | Solution: Use redir_evalcmd instead of redir_vname. |
| 12285 | Files: src/message.c, src/eval.c, src/globals.h, src/proto/eval.pro, |
| 12286 | src/testdir/test_evalcmd.vim |
| 12287 | |
| 12288 | Patch 7.4.2000 (after 7.4.1999) |
| 12289 | Problem: Evalcmd test fails. |
| 12290 | Solution: Add missing piece. |
| 12291 | Files: src/ex_docmd.c |
| 12292 | |
| 12293 | Patch 7.4.2001 (after 7.4.2000) |
| 12294 | Problem: Tiny build fails. (Tony Mechelynck) |
| 12295 | Solution: Add #ifdef. |
| 12296 | Files: src/ex_docmd.c |
| 12297 | |
| 12298 | Patch 7.4.2002 |
| 12299 | Problem: Crash when passing number to filter() or map(). |
| 12300 | Solution: Convert to a string. (Ozaki Kiichi) |
| 12301 | Files: src/eval.c, src/testdir/test_filter_map.vim |
| 12302 | |
| 12303 | Patch 7.4.2003 |
| 12304 | Problem: Still cursor flickering when a callback updates the screen. (David |
| 12305 | Samvelyan) |
| 12306 | Solution: Put the cursor in the right position after updating the screen. |
| 12307 | Files: src/screen.c |
| 12308 | |
| 12309 | Patch 7.4.2004 |
| 12310 | Problem: GUI: cursor displayed in the wrong position. |
| 12311 | Solution: Correct screen_cur_col and screen_cur_row. |
| 12312 | Files: src/screen.c |
| 12313 | |
| 12314 | Patch 7.4.2005 |
| 12315 | Problem: After using evalcmd() message output is in the wrong position. |
| 12316 | (Christian Brabandt) |
| 12317 | Solution: Reset msg_col. |
| 12318 | Files: src/eval.c |
| 12319 | |
| 12320 | Patch 7.4.2006 |
| 12321 | Problem: Crash when using tabnext in BufUnload autocmd. (Norio Takagi) |
| 12322 | Solution: First check that the current buffer is the right one. (Hirohito |
| 12323 | Higashi) |
| 12324 | Files: src/buffer.c, src/testdir/test_autocmd.vim |
| 12325 | |
| 12326 | Patch 7.4.2007 |
| 12327 | Problem: Running the tests leaves a viminfo file behind. |
| 12328 | Solution: Make the viminfo option empty. |
| 12329 | Files: src/testdir/runtest.vim |
| 12330 | |
| 12331 | Patch 7.4.2008 |
| 12332 | Problem: evalcmd() has a confusing name. |
| 12333 | Solution: Rename to execute(). Make silent optional. Support a list of |
| 12334 | commands. |
| 12335 | Files: src/eval.c, src/ex_docmd.c, src/message.c, src/globals.h, |
| 12336 | src/proto/eval.pro, src/Makefile, src/testdir/test_evalcmd.vim, |
| 12337 | src/testdir/test_execute_func.vim, src/testdir/test_alot.vim, |
| 12338 | runtime/doc/eval.txt |
| 12339 | |
| 12340 | Patch 7.4.2009 (after 7.4.2008) |
| 12341 | Problem: Messages test fails. |
| 12342 | Solution: Don't set redir_execute before returning. Add missing version |
| 12343 | number. |
| 12344 | Files: src/eval.c |
| 12345 | |
| 12346 | Patch 7.4.2010 |
| 12347 | Problem: There is a :cbottom command but no :lbottom command. |
| 12348 | Solution: Add :lbottom. (Yegappan Lakshmanan) |
| 12349 | Files: runtime/doc/index.txt, runtime/doc/quickfix.txt, src/ex_cmds.h, |
| 12350 | src/quickfix.c, src/testdir/test_quickfix.vim |
| 12351 | |
| 12352 | Patch 7.4.2011 |
| 12353 | Problem: It is not easy to get a list of command arguments. |
| 12354 | Solution: Add getcompletion(). (Yegappan Lakshmanan) |
| 12355 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_docmd.c, |
| 12356 | src/proto/ex_docmd.pro, src/testdir/test_cmdline.vim |
| 12357 | |
| 12358 | Patch 7.4.2012 (after 7.4.2011) |
| 12359 | Problem: Test for getcompletion() does not pass on all systems. |
| 12360 | Solution: Only test what is supported. |
| 12361 | Files: src/testdir/test_cmdline.vim |
| 12362 | |
| 12363 | Patch 7.4.2013 |
| 12364 | Problem: Using "noinsert" in 'completeopt' breaks redo. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 12365 | Solution: Set compl_curr_match. (Shougo Matsu, closes #874) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 12366 | Files: src/edit.c, src/testdir/test_popup.vim |
| 12367 | |
| 12368 | Patch 7.4.2014 |
| 12369 | Problem: Using "noinsert" in 'completeopt' does not insert match. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 12370 | Solution: Set compl_enter_selects. (Shougo Matsu, closes #875) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 12371 | Files: src/edit.c, src/testdir/test_popup.vim |
| 12372 | |
| 12373 | Patch 7.4.2015 |
| 12374 | Problem: When a file gets a name when writing it 'acd' is not effective. |
| 12375 | (Dan Church) |
| 12376 | Solution: Invoke DO_AUTOCHDIR after writing the file. (Allen Haim, closes |
| 12377 | #777, closes #803) Add test_autochdir() to enable 'acd' before |
| 12378 | "starting" is reset. |
| 12379 | Files: src/ex_cmds.c, src/buffer.c, src/eval.c, src/globals.h, |
| 12380 | src/Makefile, src/testdir/test_autochdir.vim, |
| 12381 | src/testdir/Make_all.mak |
| 12382 | |
| 12383 | Patch 7.4.2016 |
| 12384 | Problem: Warning from MinGW about _WIN32_WINNT redefined. (John Marriott) |
| 12385 | Solution: First undefine it. (Ken Takata) |
| 12386 | Files: src/Make_cyg_ming.mak |
| 12387 | |
| 12388 | Patch 7.4.2017 |
| 12389 | Problem: When there are many errors adding them to the quickfix list takes |
| 12390 | a long time. |
| 12391 | Solution: Add BLN_NOOPT. Don't call buf_valid() in buf_copy_options(). |
| 12392 | Remember the last file name used. When going through the buffer |
| 12393 | list start from the end of the list. Only call buf_valid() when |
| 12394 | autocommands were executed. |
| 12395 | Files: src/buffer.c, src/option.c, src/quickfix.c, src/vim.h |
| 12396 | |
| 12397 | Patch 7.4.2018 |
| 12398 | Problem: buf_valid() can be slow when there are many buffers. |
| 12399 | Solution: Add bufref_valid(), only go through the buffer list when a buffer |
| 12400 | was freed. |
| 12401 | Files: src/structs.h, src/buffer.c, src/quickfix.c, src/proto/buffer.pro |
| 12402 | |
| 12403 | Patch 7.4.2019 |
| 12404 | Problem: When ignoring case utf_fold() may consume a lot of time. |
| 12405 | Solution: Optimize for ASCII. |
| 12406 | Files: src/mbyte.c |
| 12407 | |
| 12408 | Patch 7.4.2020 |
| 12409 | Problem: Can't build without +autocmd feature. |
| 12410 | Solution: Adjust #ifdefs. |
| 12411 | Files: src/buffer.c |
| 12412 | |
| 12413 | Patch 7.4.2021 |
| 12414 | Problem: Still too many buf_valid() calls. |
| 12415 | Solution: Make au_new_curbuf a bufref. Use bufref_valid() in more places. |
| 12416 | Files: src/ex_cmds.c, src/buffer.c, src/globals.h |
| 12417 | |
| 12418 | Patch 7.4.2022 |
| 12419 | Problem: Warnings from 64 bit compiler. |
| 12420 | Solution: Add type casts. (Mike Williams) |
| 12421 | Files: src/eval.c |
| 12422 | |
| 12423 | Patch 7.4.2023 |
| 12424 | Problem: buflist_findname_stat() may find a dummy buffer. |
| 12425 | Solution: Set the BF_DUMMY flag after loading a dummy buffer. Start |
| 12426 | finding buffers from the end of the list. |
| 12427 | Files: src/quickfix.c, src/buffer.c |
| 12428 | |
| 12429 | Patch 7.4.2024 |
| 12430 | Problem: More buf_valid() calls can be optimized. |
| 12431 | Solution: Use bufref_valid() instead. |
| 12432 | Files: src/buffer.c, src/ex_cmds.c, src/structs.h, src/channel.c, |
| 12433 | src/diff.c, src/eval.c, src/ex_cmds2.c, src/ex_docmd.c, |
| 12434 | src/ex_getln.c, src/fileio.c, src/main.c, src/misc2.c, |
| 12435 | src/netbeans.c, src/quickfix.c, src/spell.c, src/term.c, |
| 12436 | src/if_py_both.h, src/window.c, src/proto/buffer.pro, |
| 12437 | src/proto/window.pro |
| 12438 | |
| 12439 | Patch 7.4.2025 |
| 12440 | Problem: The cursor blinking stops or is irregular when receiving date over |
| 12441 | a channel and writing it in a buffer, and when updating the status |
| 12442 | line. (Ramel Eshed) |
| 12443 | Solution: Make it a bit better by flushing GUI output. Don't redraw the |
| 12444 | cursor after updating the screen if the blink state is off. |
| 12445 | Files: src/gui_gtk_x11.c, src/screen.c |
| 12446 | |
| 12447 | Patch 7.4.2026 |
| 12448 | Problem: Reference counting for callbacks isn't right. |
| 12449 | Solution: Add free_callback(). (Ken Takata) Fix reference count. |
| 12450 | Files: src/channel.c, src/eval.c, src/ex_cmds2.c, src/proto/eval.pro |
| 12451 | |
| 12452 | Patch 7.4.2027 |
| 12453 | Problem: Can't build with +eval but without +menu. |
| 12454 | Solution: Add #ifdef. (John Marriott) |
| 12455 | Files: src/eval.c |
| 12456 | |
| 12457 | Patch 7.4.2028 |
| 12458 | Problem: cppcheck warns for using index before limits check. |
| 12459 | Solution: Swap the expressions. (Dominique Pelle) |
| 12460 | Files: src/mbyte.c |
| 12461 | |
| 12462 | Patch 7.4.2029 |
| 12463 | Problem: printf() does not work with 64 bit numbers. |
| 12464 | Solution: use the "L" length modifier. (Ken Takata) |
| 12465 | Files: src/message.c, src/testdir/test_expr.vim |
| 12466 | |
| 12467 | Patch 7.4.2030 |
| 12468 | Problem: ARCH must be set properly when using MinGW. |
| 12469 | Solution: Detect the default value of ARCH from the current compiler. (Ken |
| 12470 | Takata) |
| 12471 | Files: src/Make_cyg_ming.mak |
| 12472 | |
| 12473 | Patch 7.4.2031 |
| 12474 | Problem: The list_lbr_utf8 test fails if ~/.vim/syntax/c.vim sets |
| 12475 | 'textwidth' to a non-zero value. (Oyvind A. Holm) |
| 12476 | Solution: Add a setup.vim file that sets 'runtimepath' and $HOME to a safe |
| 12477 | value. (partly by Christian Brabandt, closes #912) |
| 12478 | Files: src/testdir/setup.vim, src/testdir/amiga.vim, src/testdir/dos.vim, |
| 12479 | src/testdir/unix.vim, src/testdir/vms.vim, src/testdir/runtest.vim |
| 12480 | |
| 12481 | Patch 7.4.2032 (after 7.4.2030) |
| 12482 | Problem: Build fails with 64 bit MinGW. (Axel Bender) |
| 12483 | Solution: Handle dash vs. underscore. (Ken Takata, Hirohito Higashi) |
| 12484 | Files: src/Make_cyg_ming.mak |
| 12485 | |
| 12486 | Patch 7.4.2033 |
| 12487 | Problem: 'cscopequickfix' option does not accept new value "a". |
| 12488 | Solution: Adjust list of command characters. (Ken Takata) |
| 12489 | Files: src/option.h, src/Makefile, src/testdir/test_cscope.vim, |
| 12490 | src/testdir/Make_all.mak |
| 12491 | |
| 12492 | Patch 7.4.2034 (after 7.4.2032) |
| 12493 | Problem: Build fails with some version of MinGW. (illusorypan) |
| 12494 | Solution: Recognize mingw32. (Ken Takata, closes #921) |
| 12495 | Files: src/Make_cyg_ming.mak |
| 12496 | |
| 12497 | Patch 7.4.2035 |
| 12498 | Problem: On Solaris with ZFS the ACL may get removed. |
| 12499 | Solution: Always restore the ACL for Solaris ZFS. (Danek Duvall) |
| 12500 | Files: src/fileio.c |
| 12501 | |
| 12502 | Patch 7.4.2036 |
| 12503 | Problem: Looking up a buffer by number is slow if there are many. |
| 12504 | Solution: Use a hashtab. |
| 12505 | Files: src/structs.h, src/buffer.c |
| 12506 | |
| 12507 | Patch 7.4.2037 (after 7.4.2036) |
| 12508 | Problem: Small build fails. |
| 12509 | Solution: Adjust #ifdefs. |
| 12510 | Files: src/hashtab.c |
| 12511 | |
| 12512 | Patch 7.4.2038 (after 7.4.2036) |
| 12513 | Problem: Small build still fails. |
| 12514 | Solution: Adjust more #ifdefs. |
| 12515 | Files: src/globals.h, src/buffer.c |
| 12516 | |
| 12517 | Patch 7.4.2039 |
| 12518 | Problem: The Netbeans integration is not tested. |
| 12519 | Solution: Add a first Netbeans test. |
| 12520 | Files: src/testdir/test_netbeans.vim, src/testdir/test_netbeans.py, |
| 12521 | src/testdir/Make_all.mak, src/Makefile, |
| 12522 | src/testdir/test_channel.vim, src/testdir/shared.vim |
| 12523 | |
| 12524 | Patch 7.4.2040 |
| 12525 | Problem: New files missing from distribution. |
| 12526 | Solution: Add new test scripts. |
| 12527 | Files: Filelist |
| 12528 | |
| 12529 | Patch 7.4.2041 |
| 12530 | Problem: Netbeans file authentication not tested. |
| 12531 | Solution: Add a test. |
| 12532 | Files: src/testdir/test_netbeans.vim |
| 12533 | |
| 12534 | Patch 7.4.2042 |
| 12535 | Problem: GTK: display updating is not done properly and can be slow. |
| 12536 | Solution: Use gdk_display_flush() instead of gdk_display_sync(). Don't call |
| 12537 | gdk_window_process_updates(). (Kazunobu Kuriyama) |
| 12538 | Files: src/gui_gtk_x11.c |
| 12539 | |
| 12540 | Patch 7.4.2043 |
| 12541 | Problem: setbuvfar() causes a screen redraw. |
| 12542 | Solution: Only use aucmd_prepbuf() for options. |
| 12543 | Files: src/eval.c |
| 12544 | |
| 12545 | Patch 7.4.2044 |
| 12546 | Problem: filter() and map() either require a string or defining a function. |
| 12547 | Solution: Support lambda, a short way to define a function that evaluates an |
| 12548 | expression. (Yasuhiro Matsumoto, Ken Takata) |
| 12549 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_alot.vim, |
| 12550 | src/Makefile, src/testdir/test_channel.vim, |
| 12551 | src/testdir/test_lambda.vim |
| 12552 | |
| 12553 | Patch 7.4.2045 |
| 12554 | Problem: Memory leak when using a function callback. |
| 12555 | Solution: Don't save the function name when it's in the partial. |
| 12556 | Files: src/channel.c |
| 12557 | |
| 12558 | Patch 7.4.2046 |
| 12559 | Problem: The qf_init_ext() function is too big. |
| 12560 | Solution: Refactor it. (Yegappan Lakshmanan) |
| 12561 | Files: src/quickfix.c |
| 12562 | |
| 12563 | Patch 7.4.2047 |
| 12564 | Problem: Compiler warning for initializing a struct. |
| 12565 | Solution: Initialize in another way. (Anton Lindqvist) |
| 12566 | Files: src/quickfix.c |
| 12567 | |
| 12568 | Patch 7.4.2048 |
| 12569 | Problem: There is still code and help for unsupported systems. |
| 12570 | Solution: Remove the code and text. (Hirohito Higashi) |
| 12571 | Files: runtime/doc/eval.txt, runtime/lang/menu_sk_sk.vim, |
| 12572 | runtime/menu.vim, runtime/optwin.vim, src/Make_bc5.mak, |
| 12573 | src/ex_docmd.c, src/feature.h, src/fileio.c, src/globals.h, |
| 12574 | src/main.c, src/memfile.c, src/memline.c, src/misc1.c, |
| 12575 | src/misc2.c, src/option.c, src/option.h, src/os_unix.c, |
| 12576 | src/os_unix.h, src/proto.h, src/term.c, src/undo.c, src/version.c, |
| 12577 | src/vim.h, src/xxd/xxd.c |
| 12578 | |
| 12579 | Patch 7.4.2049 |
| 12580 | Problem: There is no way to get a list of the error lists. |
| 12581 | Solution: Add ":chistory" and ":lhistory". |
| 12582 | Files: src/ex_cmds.h, src/quickfix.c, src/ex_docmd.c, src/message.c, |
| 12583 | src/proto/quickfix.pro, src/testdir/test_quickfix.vim |
| 12584 | |
| 12585 | Patch 7.4.2050 |
| 12586 | Problem: When using ":vimgrep" may end up with duplicate buffers. |
| 12587 | Solution: When adding an error list entry pass the buffer number if possible. |
| 12588 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 12589 | |
| 12590 | Patch 7.4.2051 |
| 12591 | Problem: No proper testing of trunc_string(). |
| 12592 | Solution: Add a unittest for message.c. |
| 12593 | Files: src/Makefile, src/message.c, src/message_test.c, src/main.c, |
| 12594 | src/proto/main.pro, src/structs.h |
| 12595 | |
| 12596 | Patch 7.4.2052 |
| 12597 | Problem: Coverage report is messed up by the unittests. |
| 12598 | Solution: Add a separate test target for script tests. Use that when |
| 12599 | collecting coverage information. |
| 12600 | Files: src/Makefile |
| 12601 | |
| 12602 | Patch 7.4.2053 |
| 12603 | Problem: Can't run scripttests in the top directory. |
| 12604 | Solution: Add targets to the top Makefile. |
| 12605 | Files: Makefile |
| 12606 | |
| 12607 | Patch 7.4.2054 (after 7.4.2048) |
| 12608 | Problem: Wrong part of #ifdef removed. |
| 12609 | Solution: Use the right part. (Hirohito Higashi) |
| 12610 | Files: src/os_unix.c |
| 12611 | |
| 12612 | Patch 7.4.2055 |
| 12613 | Problem: eval.c is too big |
| 12614 | Solution: Move Dictionary functions to dict.c |
| 12615 | Files: src/eval.c, src/dict.c, src/vim.h, src/globals.h, |
| 12616 | src/proto/eval.pro, src/proto/dict.pro, src/Makefile, Filelist |
| 12617 | |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 12618 | Patch 7.4.2056 (after 7.4.2055) |
| 12619 | Problem: Build fails. |
| 12620 | Solution: Add missing changes. |
| 12621 | Files: src/proto.h |
| 12622 | |
| 12623 | Patch 7.4.2057 |
| 12624 | Problem: eval.c is too big. |
| 12625 | Solution: Move List functions to list.c |
| 12626 | Files: src/eval.c, src/dict.c, src/list.c, src/proto.h, src/Makefile, |
| 12627 | src/globals.h, src/proto/eval.pro, src/proto/list.pro, Filelist |
| 12628 | |
| 12629 | Patch 7.4.2058 |
| 12630 | Problem: eval.c is too big. |
| 12631 | Solution: Move user functions to userfunc.c |
| 12632 | Files: src/userfunc.c, src/eval.c, src/vim.h, src/globals.h, |
| 12633 | src/structs.h, src/proto.h, src/Makefile, src/proto/eval.pro, |
| 12634 | src/proto/userfunc.pro, Filelist |
| 12635 | |
| 12636 | Patch 7.4.2059 |
| 12637 | Problem: Non-Unix builds fail. |
| 12638 | Solution: Update Makefiles for new files. |
| 12639 | Files: src/Make_bc5.mak, src/Make_cyg_ming.mak, src/Make_dice.mak, |
| 12640 | src/Make_ivc.mak, src/Make_manx.mak, src/Make_morph.mak, |
| 12641 | src/Make_mvc.mak, src/Make_sas.mak |
| 12642 | |
| 12643 | Patch 7.4.2060 (after 7.4.2059) |
| 12644 | Problem: Wrong file name. |
| 12645 | Solution: Fix typo. |
| 12646 | Files: src/Make_mvc.mak |
| 12647 | |
| 12648 | Patch 7.4.2061 |
| 12649 | Problem: qf_init_ext() is too big. |
| 12650 | Solution: Move code to qf_parse_line() (Yegappan Lakshmanan) |
| 12651 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 12652 | |
| 12653 | Patch 7.4.2062 |
| 12654 | Problem: Using dummy variable to compute struct member offset. |
| 12655 | Solution: Use offsetof(). |
| 12656 | Files: src/globals.h, src/macros.h, src/vim.h, src/spell.c |
| 12657 | |
| 12658 | Patch 7.4.2063 |
| 12659 | Problem: eval.c is still too big. |
| 12660 | Solution: Split off internal functions to evalfunc.c. |
| 12661 | Files: src/eval.c, src/evalfunc.c, src/list.c, src/proto.h, |
| 12662 | src/globals.h, src/vim.h, src/proto/eval.pro, |
| 12663 | src/proto/evalfunc.pro, src/proto/list.pro, src/Makefile, Filelist, |
| 12664 | src/Make_bc5.mak, src/Make_cyg_ming.mak, src/Make_dice.mak, |
| 12665 | src/Make_ivc.mak, src/Make_manx.mak, src/Make_morph.mak, |
| 12666 | src/Make_mvc.mak, src/Make_sas.mak |
| 12667 | |
| 12668 | Patch 7.4.2064 |
| 12669 | Problem: Coverity warns for possible buffer overflow. |
| 12670 | Solution: Use vim_strcat() instead of strcat(). |
| 12671 | Files: src/quickfix.c |
| 12672 | |
| 12673 | Patch 7.4.2065 |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 12674 | Problem: Compiler warns for uninitialized variable. (John Marriott) |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 12675 | Solution: Set lnum to the right value. |
| 12676 | Files: src/evalfunc.c |
| 12677 | |
| 12678 | Patch 7.4.2066 |
| 12679 | Problem: getcompletion() not well tested. |
| 12680 | Solution: Add more testing. |
| 12681 | Files: src/testdir/test_cmdline.vim |
| 12682 | |
| 12683 | Patch 7.4.2067 |
| 12684 | Problem: Compiler warning for char/char_u conversion. (Tony Mechelynck) |
| 12685 | Inefficient code. |
| 12686 | Solution: Use more lines to fill with spaces. (Nikolai Pavlov) Add type cast. |
| 12687 | Files: src/quickfix.c |
| 12688 | |
| 12689 | Patch 7.4.2068 |
| 12690 | Problem: Not all arguments of trunc_string() are tested. Memory access |
| 12691 | error when running the message tests. |
| 12692 | Solution: Add another test case. (Yegappan Lakshmanan) Make it easy to run |
| 12693 | unittests with valgrind. Fix the access error. |
| 12694 | Files: src/message.c, src/message_test.c, src/Makefile |
| 12695 | |
| 12696 | Patch 7.4.2069 |
| 12697 | Problem: spell.c is too big. |
| 12698 | Solution: Split it in spell file handling and spell checking. |
| 12699 | Files: src/spell.c, src/spellfile.c, src/spell.h, src/Makefile, |
| 12700 | src/proto/spell.pro, src/proto/spellfile.pro, src/proto.h |
| 12701 | Filelist, src/Make_bc5.mak, src/Make_cyg_ming.mak, |
| 12702 | src/Make_dice.mak, src/Make_ivc.mak, src/Make_manx.mak, |
| 12703 | src/Make_morph.mak, src/Make_mvc.mak, src/Make_sas.mak |
| 12704 | |
| 12705 | Patch 7.4.2070 (after 7.4.2069) |
| 12706 | Problem: Missing change to include file. |
| 12707 | Solution: Include the spell header file. |
| 12708 | Files: src/vim.h |
| 12709 | |
| 12710 | Patch 7.4.2071 |
| 12711 | Problem: The return value of type() is difficult to use. |
| 12712 | Solution: Define v:t_ constants. (Ken Takata) |
| 12713 | Files: runtime/doc/eval.txt, src/eval.c, src/evalfunc.c, |
| 12714 | src/testdir/test_channel.vim, src/testdir/test_viml.vim, src/vim.h |
| 12715 | |
| 12716 | Patch 7.4.2072 |
| 12717 | Problem: substitute() does not support a Funcref argument. |
| 12718 | Solution: Support a Funcref like it supports a string starting with "\=". |
| 12719 | Files: src/evalfunc.c, src/regexp.c, src/eval.c, src/proto/eval.pro, |
| 12720 | src/proto/regexp.pro, src/testdir/test_expr.vim |
| 12721 | |
| 12722 | Patch 7.4.2073 |
| 12723 | Problem: rgb.txt is read for every color name. |
| 12724 | Solution: Load rgb.txt once. (Christian Brabandt) Add a test. |
| 12725 | Files: runtime/rgb.txt, src/term.c, src/testdir/test_syn_attr.vim |
| 12726 | |
| 12727 | Patch 7.4.2074 |
| 12728 | Problem: One more place using a dummy variable. |
| 12729 | Solution: Use offsetof(). (Ken Takata) |
| 12730 | Files: src/userfunc.c |
| 12731 | |
| 12732 | Patch 7.4.2075 |
| 12733 | Problem: No autocommand event to initialize a window or tab page. |
| 12734 | Solution: Add WinNew and TabNew events. (partly by Felipe Morales) |
| 12735 | Files: src/fileio.c, src/window.c, src/vim.h, |
| 12736 | src/testdir/test_autocmd.vim, runtime/doc/autocmd.txt |
| 12737 | |
| 12738 | Patch 7.4.2076 |
| 12739 | Problem: Syntax error when dict has '>' key. |
| 12740 | Solution: Check for endchar. (Ken Takata) |
| 12741 | Files: src/userfunc.c, src/testdir/test_lambda.vim |
| 12742 | |
| 12743 | Patch 7.4.2077 |
| 12744 | Problem: Cannot update 'tabline' when a tab was closed. |
| 12745 | Solution: Add the TabClosed autocmd event. (partly by Felipe Morales) |
| 12746 | Files: src/fileio.c, src/window.c, src/vim.h, |
| 12747 | src/testdir/test_autocmd.vim, runtime/doc/autocmd.txt |
| 12748 | |
| 12749 | Patch 7.4.2078 |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 12750 | Problem: Running checks in po directory fails. |
| 12751 | Solution: Add colors used in syntax.c to the builtin color table. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 12752 | Files: src/term.c |
| 12753 | |
| 12754 | Patch 7.4.2079 |
| 12755 | Problem: Netbeans test fails on non-Unix systems. |
| 12756 | Solution: Only do the permission check on Unix systems. |
| 12757 | Files: src/testdir/test_netbeans.vim |
| 12758 | |
| 12759 | Patch 7.4.2080 |
| 12760 | Problem: When using PERROR() on some systems assert_fails() does not see |
| 12761 | the error. |
| 12762 | Solution: Make PERROR() always report the error. |
| 12763 | Files: src/vim.h, src/message.c, src/proto/message.pro |
| 12764 | |
| 12765 | Patch 7.4.2081 |
| 12766 | Problem: Line numbers in the error list are not always adjusted. |
| 12767 | Solution: Set b_has_qf_entry properly. (Yegappan Lakshmanan) |
| 12768 | Files: src/quickfix.c, src/structs.h, src/testdir/test_quickfix.vim |
| 12769 | |
| 12770 | Patch 7.4.2082 |
| 12771 | Problem: Not much test coverage for digraphs. |
| 12772 | Solution: Add a new style digraph test. (Christian Brabandt) |
| 12773 | Files: src/Makefile, src/testdir/test_alot.vim, |
| 12774 | src/testdir/test_digraph.vim |
| 12775 | |
| 12776 | Patch 7.4.2083 |
| 12777 | Problem: Coverity complains about not restoring a value. |
| 12778 | Solution: Restore the value, although it's not really needed. Change return |
| 12779 | to jump to cleanup, might leak memory. |
| 12780 | Files: src/userfunc.c |
| 12781 | |
| 12782 | Patch 7.4.2084 |
| 12783 | Problem: New digraph test makes testing hang. |
| 12784 | Solution: Don't set "nocp". |
| 12785 | Files: src/testdir/test_digraph.vim |
| 12786 | |
| 12787 | Patch 7.4.2085 |
| 12788 | Problem: Digraph tests fails on some systems. |
| 12789 | Solution: Run it separately and set 'encoding' early. |
| 12790 | Files: src/testdir/Make_all.mak, src/testdir/test_alot.vim, |
| 12791 | src/testdir/test_digraph.vim |
| 12792 | |
| 12793 | Patch 7.4.2086 |
| 12794 | Problem: Using the system default encoding makes tests unpredictable. |
| 12795 | Solution: Always use utf-8 or latin1 in the new style tests. Remove setting |
| 12796 | encoding and scriptencoding where it is not needed. |
| 12797 | Files: src/testdir/runtest.vim, src/testdir/test_channel.vim, |
| 12798 | src/testdir/test_digraph.vim, src/testdir/test_expand_dllpath.vim, |
| 12799 | src/testdir/test_expr_utf8.vim, src/testdir/test_json.vim, |
| 12800 | src/testdir/test_matchadd_conceal_utf8.vim, |
| 12801 | src/testdir/test_regexp_utf8.vim, src/testdir/test_visual.vim, |
| 12802 | src/testdir/test_alot_utf8.vim, |
| 12803 | |
| 12804 | Patch 7.4.2087 |
| 12805 | Problem: Digraph code test coverage is still low. |
| 12806 | Solution: Add more tests. (Christian Brabandt) |
| 12807 | Files: src/testdir/test_digraph.vim |
| 12808 | |
| 12809 | Patch 7.4.2088 (after 7.4.2087) |
| 12810 | Problem: Keymap test fails with normal features. |
| 12811 | Solution: Bail out if the keymap feature is not supported. |
| 12812 | Files: src/testdir/test_digraph.vim |
| 12813 | |
| 12814 | Patch 7.4.2089 |
| 12815 | Problem: Color handling of X11 GUIs is too complicated. |
| 12816 | Solution: Simplify the code. Use RGBA where appropriate. (Kazunobu |
| 12817 | Kuriyama) |
| 12818 | Files: src/gui.h, src/gui_beval.c, src/gui_gtk_x11.c, src/netbeans.c |
| 12819 | |
| 12820 | Patch 7.4.2090 |
| 12821 | Problem: Using submatch() in a lambda passed to substitute() is verbose. |
| 12822 | Solution: Use a static list and pass it as an optional argument to the |
| 12823 | function. Fix memory leak. |
| 12824 | Files: src/structs.h, src/list.c, src/userfunc.c, src/channel.c, |
| 12825 | src/eval.c, src/evalfunc.c, src/ex_cmds2.c, src/regexp.c, |
| 12826 | src/proto/list.pro, src/proto/userfunc.pro, |
| 12827 | src/testdir/test_expr.vim, runtime/doc/eval.txt |
| 12828 | |
| 12829 | Patch 7.4.2091 |
| 12830 | Problem: Coverity reports a resource leak when out of memory. |
| 12831 | Solution: Close the file before returning. |
| 12832 | Files: src/term.c |
| 12833 | |
| 12834 | Patch 7.4.2092 |
| 12835 | Problem: GTK 3 build fails with older GTK version. |
| 12836 | Solution: Check the pango version. (Kazunobu Kuriyama) |
| 12837 | Files: src/gui_beval.c |
| 12838 | |
| 12839 | Patch 7.4.2093 |
| 12840 | Problem: Netbeans test fails once in a while. Leaving log file behind. |
| 12841 | Solution: Add it to the list of flaky tests. Disable logfile. |
| 12842 | Files: src/testdir/runtest.vim, src/testdir/test_channel.vim |
| 12843 | |
| 12844 | Patch 7.4.2094 |
| 12845 | Problem: The color allocation in X11 is overly complicated. |
| 12846 | Solution: Remove find_closest_color(), XAllocColor() already does this. |
| 12847 | (Kazunobu Kuriyama) |
| 12848 | Files: src/gui_x11.c |
| 12849 | |
| 12850 | Patch 7.4.2095 |
| 12851 | Problem: Man test fails when run with the GUI. |
| 12852 | Solution: Adjust for different behavior of GUI. Add assert_inrange(). |
| 12853 | Files: src/eval.c, src/evalfunc.c, src/proto/eval.pro, |
| 12854 | src/testdir/test_assert.vim, src/testdir/test_man.vim, |
| 12855 | runtime/doc/eval.txt |
| 12856 | |
| 12857 | Patch 7.4.2096 |
| 12858 | Problem: Lambda functions show up with completion. |
| 12859 | Solution: Don't show lambda functions. (Ken Takata) |
| 12860 | Files: src/userfunc.c, src/testdir/test_cmdline.vim |
| 12861 | |
| 12862 | Patch 7.4.2097 |
| 12863 | Problem: Warning from 64 bit compiler. |
| 12864 | Solution: use size_t instead of int. (Mike Williams) |
| 12865 | Files: src/message.c |
| 12866 | |
| 12867 | Patch 7.4.2098 |
| 12868 | Problem: Text object tests are old style. |
| 12869 | Solution: Turn them into new style tests. (James McCoy, closes #941) |
| 12870 | Files: src/testdir/Make_all.mak, src/testdir/test_textobjects.in, |
| 12871 | src/testdir/test_textobjects.ok, src/testdir/test_textobjects.vim, |
| 12872 | src/Makefile |
| 12873 | |
| 12874 | Patch 7.4.2099 |
| 12875 | Problem: When a keymap is active only "(lang)" is displayed. (Ilya |
| 12876 | Dogolazky) |
| 12877 | Solution: Show the keymap name. (Dmitri Vereshchagin, closes #933) |
| 12878 | Files: src/buffer.c, src/proto/screen.pro, src/screen.c |
| 12879 | |
| 12880 | Patch 7.4.2100 |
| 12881 | Problem: "cgn" and "dgn" do not work correctly with a single character |
| 12882 | match and the replacement includes the searched pattern. (John |
| 12883 | Beckett) |
| 12884 | Solution: If the match is found in the wrong column try in the next column. |
| 12885 | Turn the test into new style. (Christian Brabandt) |
| 12886 | Files: src/search.c, src/testdir/Make_all.mak, src/Makefile, |
| 12887 | src/testdir/test53.in, src/testdir/test53.ok, |
| 12888 | src/testdir/test_gn.vim |
| 12889 | |
| 12890 | Patch 7.4.2101 |
Bram Moolenaar | e4a3bcf | 2016-08-26 19:52:37 +0200 | [diff] [blame] | 12891 | Problem: Looping over windows, buffers and tab pages is inconsistent. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 12892 | Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan) |
| 12893 | Files: src/buffer.c, src/diff.c, src/edit.c, src/eval.c, src/evalfunc.c, |
| 12894 | src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/fileio.c, |
| 12895 | src/globals.h, src/gui.c, src/gui_mac.c, src/if_lua.c, |
| 12896 | src/if_mzsch.c, src/if_perl.xs, src/if_ruby.c, src/if_tcl.c, |
| 12897 | src/main.c, src/mark.c, src/memfile.c, src/memline.c, src/misc1.c, |
| 12898 | src/move.c, src/netbeans.c, src/normal.c, src/option.c, |
| 12899 | src/quickfix.c, src/screen.c, src/spell.c, src/term.c, |
| 12900 | src/window.c, src/workshop.c |
| 12901 | |
| 12902 | Patch 7.4.2102 (after 7.4.2101) |
| 12903 | Problem: Tiny build with GUI fails. |
| 12904 | Solution: Revert one FOR_ALL_ change. |
| 12905 | Files: src/gui.c |
| 12906 | |
| 12907 | Patch 7.4.2103 |
| 12908 | Problem: Can't have "augroup END" right after ":au!". |
| 12909 | Solution: Check for the bar character before the command argument. |
| 12910 | Files: src/fileio.c, src/testdir/test_autocmd.vim, |
| 12911 | runtime/doc/autocmd.txt |
| 12912 | |
| 12913 | Patch 7.4.2104 |
| 12914 | Problem: Code duplication when unreferencing a function. |
| 12915 | Solution: De-duplicate. |
| 12916 | Files: src/userfunc.c |
| 12917 | |
| 12918 | Patch 7.4.2105 |
| 12919 | Problem: Configure reports default features to be "normal" while it is |
| 12920 | "huge". |
| 12921 | Solution: Change the default text. Build with newer autoconf. |
| 12922 | Files: src/configure.in, src/auto/configure |
| 12923 | |
| 12924 | Patch 7.4.2106 |
| 12925 | Problem: Clang warns about missing field in initializer. |
| 12926 | Solution: Define COMMA and use it. (Kazunobu Kuriyama) |
| 12927 | Files: src/ex_cmds.c, src/globals.h, src/vim.h |
| 12928 | |
| 12929 | Patch 7.4.2107 (after 7.4.2106) |
| 12930 | Problem: Misplaced equal sign. |
| 12931 | Solution: Remove it. |
| 12932 | Files: src/globals.h |
| 12933 | |
| 12934 | Patch 7.4.2108 |
| 12935 | Problem: Netbeans test is flaky. |
| 12936 | Solution: Wait for the cursor to be positioned. |
| 12937 | Files: src/testdir/test_netbeans.vim |
| 12938 | |
| 12939 | Patch 7.4.2109 |
| 12940 | Problem: Setting 'display' to "lastline" is a drastic change, while |
| 12941 | omitting it results in lots of "@" lines. |
| 12942 | Solution: Add "truncate" to show "@@@" for a truncated line. |
| 12943 | Files: src/option.h, src/screen.c, runtime/doc/options.txt |
| 12944 | |
| 12945 | Patch 7.4.2110 |
| 12946 | Problem: When there is an CmdUndefined autocmd then the error for a missing |
| 12947 | command is E464 instead of E492. (Manuel Ortega) |
| 12948 | Solution: Don't let the pointer be NULL. |
| 12949 | Files: src/ex_docmd.c, src/testdir/test_usercommands.vim |
| 12950 | |
| 12951 | Patch 7.4.2111 |
| 12952 | Problem: Defaults are very conservative. |
| 12953 | Solution: Move settings from vimrc_example.vim to defaults.vim. Load |
| 12954 | defaults.vim if no .vimrc was found. |
| 12955 | Files: src/main.c, src/version.c, src/os_amiga.h, src/os_dos.h, |
| 12956 | src/os_mac.h, src/os_unix.h, src/feature.h, src/Makefile, |
| 12957 | runtime/vimrc_example.vim, runtime/defaults.vim, |
| 12958 | runtime/evim.vim, Filelist, runtime/doc/starting.txt |
| 12959 | |
| 12960 | Patch 7.4.2112 |
| 12961 | Problem: getcompletion(.., 'dir') returns a match with trailing "*" when |
| 12962 | there are no matches. (Chdiza) |
| 12963 | Solution: Return an empty list when there are no matches. Add a trailing |
| 12964 | slash to directories. (Yegappan Lakshmanan) Add tests for no |
| 12965 | matches. (closes #947) |
| 12966 | Files: src/evalfunc.c, src/testdir/test_cmdline.vim |
| 12967 | |
| 12968 | Patch 7.4.2113 |
| 12969 | Problem: Test for undo is flaky. |
| 12970 | Solution: Turn it into a new style test. Use test_settime() to avoid |
| 12971 | flakyness. |
| 12972 | Files: src/Makefile, src/undo.c, src/testdir/test61.in, |
| 12973 | src/testdir/test61.ok, src/testdir/test_undo.vim, |
| 12974 | src/testdir/test_undolevels.vim, src/testdir/Make_all.mak, |
| 12975 | src/testdir/test_alot.vim |
| 12976 | |
| 12977 | Patch 7.4.2114 |
| 12978 | Problem: Tiny build fails. |
| 12979 | Solution: Always include vim_time(). |
| 12980 | Files: src/ex_cmds.c |
| 12981 | |
| 12982 | Patch 7.4.2115 |
| 12983 | Problem: Loading defaults.vim with -C argument. |
| 12984 | Solution: Don't load the defaults script with -C argument. Test sourcing |
| 12985 | the defaults script. Set 'display' to "truncate". |
| 12986 | Files: src/main.c, src/Makefile, runtime/defaults.vim, |
| 12987 | src/testdir/test_startup.vim, src/testdir/Make_all.mak |
| 12988 | |
| 12989 | Patch 7.4.2116 |
| 12990 | Problem: The default vimrc for Windows is very conservative. |
| 12991 | Solution: Use the defaults.vim in the Windows installer. |
| 12992 | Files: src/dosinst.c |
| 12993 | |
| 12994 | Patch 7.4.2117 |
| 12995 | Problem: Deleting an augroup that still has autocmds does not give a |
| 12996 | warning. The next defined augroup takes its place. |
| 12997 | Solution: Give a warning and prevent the index being used for another group |
| 12998 | name. |
| 12999 | Files: src/fileio.c, src/testdir/test_autocmd.vim |
| 13000 | |
| 13001 | Patch 7.4.2118 |
| 13002 | Problem: Mac: can't build with tiny features. |
| 13003 | Solution: Don't define FEAT_CLIPBOARD unconditionally. (Kazunobu Kuriyama) |
| 13004 | Files: src/vim.h |
| 13005 | |
| 13006 | Patch 7.4.2119 |
| 13007 | Problem: Closures are not supported. |
| 13008 | Solution: Capture variables in lambdas from the outer scope. (Yasuhiro |
| 13009 | Matsumoto, Ken Takata) |
| 13010 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_cmds2.c, src/globals.h, |
| 13011 | src/proto/eval.pro, src/proto/userfunc.pro, |
| 13012 | src/testdir/test_lambda.vim, src/userfunc.c |
| 13013 | |
| 13014 | Patch 7.4.2120 |
| 13015 | Problem: User defined functions can't be a closure. |
| 13016 | Solution: Add the "closure" argument. Allow using :unlet on a bound |
| 13017 | variable. (Yasuhiro Matsumoto, Ken Takata) |
| 13018 | Files: runtime/doc/eval.txt, src/testdir/test_lambda.vim, src/userfunc.c, |
| 13019 | src/eval.c src/proto/userfunc.pro |
| 13020 | |
| 13021 | Patch 7.4.2121 |
| 13022 | Problem: No easy way to check if lambda and closure are supported. |
| 13023 | Solution: Add the +lambda feature. |
| 13024 | Files: src/evalfunc.c, src/version.c, src/testdir/test_lambda.vim |
| 13025 | |
| 13026 | Patch 7.4.2122 (after 7.4.2118) |
| 13027 | Problem: Mac: don't get +clipboard in huge build. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 13028 | Solution: Move #define down below including feature.h |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 13029 | Files: src/vim.h |
| 13030 | |
| 13031 | Patch 7.4.2123 |
| 13032 | Problem: No new style test for diff mode. |
| 13033 | Solution: Add a test. Check that folds are in sync. |
| 13034 | Files: src/Makefile, src/testdir/test_diffmode.vim, |
| 13035 | src/testdir/Make_all.mak, src/testdir/test47.in, |
| 13036 | src/testdir/test47.ok |
| 13037 | |
| 13038 | Patch 7.4.2124 |
| 13039 | Problem: diffmode test leaves files behind, breaking another test. |
| 13040 | Solution: Delete the files. |
| 13041 | Files: src/testdir/test_diffmode.vim |
| 13042 | |
| 13043 | Patch 7.4.2125 |
| 13044 | Problem: Compiler warning for loss of data. |
| 13045 | Solution: Add a type cast. (Christian Brabandt) |
| 13046 | Files: src/message.c |
| 13047 | |
| 13048 | Patch 7.4.2126 |
| 13049 | Problem: No tests for :diffget and :diffput |
| 13050 | Solution: Add tests. |
| 13051 | Files: src/testdir/test_diffmode.vim |
| 13052 | |
| 13053 | Patch 7.4.2127 |
| 13054 | Problem: The short form of ":noswapfile" is ":noswap" instead of ":nos". |
| 13055 | (Kent Sibilev) |
| 13056 | Solution: Only require three characters. Add a test for the short forms. |
| 13057 | Files: src/ex_docmd.c, src/testdir/test_usercommands.vim |
| 13058 | |
| 13059 | Patch 7.4.2128 |
| 13060 | Problem: Memory leak when saving for undo fails. |
| 13061 | Solution: Free allocated memory. (Hirohito Higashi) |
| 13062 | Files: src/ex_cmds.c |
| 13063 | |
| 13064 | Patch 7.4.2129 |
| 13065 | Problem: Memory leak when using timer_start(). (Dominique Pelle) |
| 13066 | Solution: Don't copy the callback when using a partial. |
| 13067 | Files: src/evalfunc.c |
| 13068 | |
| 13069 | Patch 7.4.2130 |
| 13070 | Problem: Pending timers cause false memory leak reports. |
| 13071 | Solution: Free all timers on exit. |
| 13072 | Files: src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/misc2.c |
| 13073 | |
| 13074 | Patch 7.4.2131 |
| 13075 | Problem: More memory leaks when using partial, e.g. for "exit-cb". |
| 13076 | Solution: Don't copy the callback when using a partial. |
| 13077 | Files: src/channel.c |
| 13078 | |
| 13079 | Patch 7.4.2132 |
| 13080 | Problem: test_partial has memory leaks reported. |
| 13081 | Solution: Add a note about why this happens. |
| 13082 | Files: src/testdir/test_partial.vim |
| 13083 | |
| 13084 | Patch 7.4.2133 (after 7.4.2128) |
| 13085 | Problem: Can't build with tiny features. |
| 13086 | Solution: Add #ifdef. |
| 13087 | Files: src/ex_cmds.c |
| 13088 | |
| 13089 | Patch 7.4.2134 |
| 13090 | Problem: No error for using function() badly. |
| 13091 | Solution: Check for passing wrong function name. (Ken Takata) |
| 13092 | Files: src/eval.c, src/evalfunc.c, src/proto/userfunc.pro, |
| 13093 | src/testdir/test_expr.vim, src/userfunc.c, src/vim.h |
| 13094 | |
| 13095 | Patch 7.4.2135 |
| 13096 | Problem: Various tiny issues. |
| 13097 | Solution: Update comments, white space, etc. |
| 13098 | Files: src/diff.c, src/digraph.c, src/testdir/test80.in, |
| 13099 | src/testdir/test_channel.vim, src/testdir/Makefile, |
| 13100 | runtime/menu.vim, src/INSTALLpc.txt, src/xpm/README.txt |
| 13101 | |
| 13102 | Patch 7.4.2136 |
| 13103 | Problem: Closure function fails. |
| 13104 | Solution: Don't reset uf_scoped when it points to another funccal. |
| 13105 | Files: src/userfunc.c, src/testdir/test_lambda.vim |
| 13106 | |
| 13107 | Patch 7.4.2137 |
| 13108 | Problem: Using function() with a name will find another function when it is |
| 13109 | redefined. |
| 13110 | Solution: Add funcref(). Refer to lambda using a partial. Fix several |
| 13111 | reference counting issues. |
| 13112 | Files: src/vim.h, src/structs.h, src/userfunc.c, src/eval.c, |
| 13113 | src/evalfunc.c, src/channel.c, src/proto/eval.pro, |
| 13114 | src/proto/userfunc.pro, src/if_mzsch.c, src/regexp.c, src/misc2.c, |
| 13115 | src/if_py_both.h, src/testdir/test_expr.vim, runtime/doc/eval.txt |
| 13116 | |
| 13117 | Patch 7.4.2138 |
| 13118 | Problem: Test 86 and 87 fail. |
| 13119 | Solution: Call func_ref() also for regular functions. |
| 13120 | Files: src/if_py_both.h |
| 13121 | |
| 13122 | Patch 7.4.2139 |
| 13123 | Problem: :delfunction causes illegal memory access. |
| 13124 | Solution: Correct logic when deciding to free a function. |
| 13125 | Files: src/userfunc.c, src/testdir/test_lambda.vim |
| 13126 | |
| 13127 | Patch 7.4.2140 |
| 13128 | Problem: Tiny build fails. |
| 13129 | Solution: Add dummy typedefs. |
| 13130 | Files: src/structs.h |
| 13131 | |
| 13132 | Patch 7.4.2141 |
| 13133 | Problem: Coverity reports bogus NULL check. |
| 13134 | Solution: When checking for a variable in the funccal scope don't pass the |
| 13135 | varname. |
| 13136 | Files: src/userfunc.c, src/proto/userfunc.pro, src/eval.c |
| 13137 | |
| 13138 | Patch 7.4.2142 |
| 13139 | Problem: Leaking memory when redefining a function. |
| 13140 | Solution: Don't increment the function reference count when it's found by |
| 13141 | name. Don't remove the wrong function from the hashtab. More |
| 13142 | reference counting fixes. |
| 13143 | Files: src/structs.h, src/userfunc.c |
| 13144 | |
| 13145 | Patch 7.4.2143 |
| 13146 | Problem: A funccal is garbage collected while it can still be used. |
| 13147 | Solution: Set copyID in all referenced functions. Do not list lambda |
| 13148 | functions with ":function". |
| 13149 | Files: src/userfunc.c, src/proto/userfunc.pro, src/eval.c, |
| 13150 | src/testdir/test_lambda.vim |
| 13151 | |
| 13152 | Patch 7.4.2144 |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 13153 | Problem: On MS-Windows quickfix does not handle a line with 1023 bytes |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 13154 | ending in CR-LF properly. |
| 13155 | Solution: Don't consider CR a line break. (Ken Takata) |
| 13156 | Files: src/quickfix.c |
| 13157 | |
| 13158 | Patch 7.4.2145 |
| 13159 | Problem: Win32: Using CreateThread/ExitThread is not safe. |
| 13160 | Solution: Use _beginthreadex and return from the thread. (Ken Takata) |
| 13161 | Files: src/os_win32.c |
| 13162 | |
| 13163 | Patch 7.4.2146 |
| 13164 | Problem: Not enough testing for popup menu. CTRL-E does not always work |
| 13165 | properly. |
| 13166 | Solution: Add more tests. When using CTRL-E check if the popup menu is |
| 13167 | visible. (Christian Brabandt) |
| 13168 | Files: src/edit.c, src/testdir/test_popup.vim |
| 13169 | |
| 13170 | Patch 7.4.2147 (after 7.4.2146) |
| 13171 | Problem: test_alot fails. |
| 13172 | Solution: Close window. |
| 13173 | Files: src/testdir/test_popup.vim |
| 13174 | |
| 13175 | Patch 7.4.2148 |
| 13176 | Problem: Not much testing for cscope. |
| 13177 | Solution: Add a test that uses the cscope program. (Christian Brabandt) |
| 13178 | Files: src/testdir/test_cscope.vim |
| 13179 | |
| 13180 | Patch 7.4.2149 |
| 13181 | Problem: If a test leaves a window open a following test may fail. |
| 13182 | Solution: Always close extra windows after running a test. |
| 13183 | Files: src/testdir/runtest.vim, src/testdir/test_popup.vim |
| 13184 | |
| 13185 | Patch 7.4.2150 |
| 13186 | Problem: Warning with MinGW 64. (John Marriott) |
| 13187 | Solution: Change return type. (Ken Takata) |
| 13188 | Files: src/os_win32.c |
| 13189 | |
| 13190 | Patch 7.4.2151 |
| 13191 | Problem: Quickfix test fails on MS-Windows. |
| 13192 | Solution: Close the help window. (Christian Brabandt) |
| 13193 | Files: src/testdir/test_quickfix.vim |
| 13194 | |
| 13195 | Patch 7.4.2152 |
| 13196 | Problem: No proper translation of messages with a count. |
| 13197 | Solution: Use ngettext(). (Sergey Alyoshin) |
| 13198 | Files: src/evalfunc.c, src/fold.c, src/os_win32.c, src/screen.c, src/vim.h |
| 13199 | |
| 13200 | Patch 7.4.2153 |
| 13201 | Problem: GUI test isn't testing much. |
| 13202 | Solution: Turn into a new style test. Execute a shell command. |
| 13203 | Files: src/testdir/test_gui.vim, src/testdir/test16.in, |
| 13204 | src/testdir/test16.ok, src/testdir/Make_all.mak, src/Makefile, |
| 13205 | src/testdir/Make_vms.mms |
| 13206 | |
| 13207 | Patch 7.4.2154 |
| 13208 | Problem: Test_communicate() fails sometimes. |
| 13209 | Solution: Add it to the flaky tests. |
| 13210 | Files: src/testdir/runtest.vim |
| 13211 | |
| 13212 | Patch 7.4.2155 |
| 13213 | Problem: Quotes make GUI test fail on MS-Windows. |
| 13214 | Solution: Remove quotes, strip white space. |
| 13215 | Files: src/testdir/test_gui.vim |
| 13216 | |
| 13217 | Patch 7.4.2156 |
| 13218 | Problem: Compiler warning. |
| 13219 | Solution: Add type cast. (Ken Takata, Mike Williams) |
| 13220 | Files: src/os_win32.c |
| 13221 | |
| 13222 | Patch 7.4.2157 |
| 13223 | Problem: Test_job_start_fails() is expected to report memory leaks, making |
| 13224 | it hard to see other leaks in test_partial. |
| 13225 | Solution: Move Test_job_start_fails() to a separate test file. |
| 13226 | Files: src/testdir/test_partial.vim, src/testdir/test_job_fails.vim, |
| 13227 | src/Makefile, src/testdir/Make_all.mak |
| 13228 | |
| 13229 | Patch 7.4.2158 |
| 13230 | Problem: Result of getcompletion('', 'cscope') depends on previous |
| 13231 | completion. (Christian Brabandt) |
| 13232 | Solution: Call set_context_in_cscope_cmd(). |
| 13233 | Files: src/evalfunc.c, src/testdir/test_cmdline.vim |
| 13234 | |
| 13235 | Patch 7.4.2159 |
| 13236 | Problem: Insufficient testing for cscope. |
| 13237 | Solution: Add more tests. (Dominique Pelle) |
| 13238 | Files: src/testdir/test_cscope.vim |
| 13239 | |
| 13240 | Patch 7.4.2160 |
| 13241 | Problem: setmatches() mixes up values. (Nikolai Pavlov) |
| 13242 | Solution: Save the string instead of reusing a shared buffer. |
| 13243 | Files: src/dict.c, src/evalfunc.c, src/testdir/test_expr.vim, |
| 13244 | |
| 13245 | Patch 7.4.2161 (after 7.4.2160) |
| 13246 | Problem: Expression test fails without conceal feature. |
| 13247 | Solution: Only check "conceal" with the conceal feature. |
| 13248 | Files: src/testdir/test_expr.vim |
| 13249 | |
| 13250 | Patch 7.4.2162 |
| 13251 | Problem: Result of getcompletion('', 'sign') depends on previous |
| 13252 | completion. |
| 13253 | Solution: Call set_context_in_sign_cmd(). (Dominique Pelle) |
| 13254 | Files: src/evalfunc.c, src/testdir/test_cmdline.vim |
| 13255 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 13256 | Patch 7.4.2163 |
| 13257 | Problem: match() and related functions tested with old style test. |
| 13258 | Solution: Convert to new style test. (Hirohito Higashi) |
| 13259 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test63.in, |
| 13260 | src/testdir/test63.ok, src/testdir/test_alot.vim, |
| 13261 | src/testdir/test_match.vim, src/testdir/test_matchstrpos.vim |
| 13262 | |
| 13263 | Patch 7.4.2164 |
| 13264 | Problem: It is not possible to use plugins in an "after" directory to tune |
| 13265 | the behavior of a package. |
| 13266 | Solution: First load plugins from non-after directories, then packages and |
| 13267 | finally plugins in after directories. |
| 13268 | Reset 'loadplugins' before executing --cmd arguments. |
| 13269 | Files: src/main.c, src/vim.h, src/ex_cmds2.c, src/testdir/Makefile, |
| 13270 | src/testdir/shared.vim, src/testdir/test_startup.vim, |
| 13271 | src/testdir/setup.vim, runtime/doc/starting.txt |
| 13272 | |
| 13273 | Patch 7.4.2165 (after 7.4.2164) |
| 13274 | Problem: Startup test fails on MS-Windows. |
| 13275 | Solution: Don't check output if RunVim() returns zero. |
| 13276 | Files: src/testdir/test_startup.vim |
| 13277 | |
| 13278 | Patch 7.4.2166 (after 7.4.2164) |
| 13279 | Problem: Small build can't run startup test. |
| 13280 | Solution: Skip the test. |
| 13281 | Files: src/testdir/test_startup.vim |
| 13282 | |
| 13283 | Patch 7.4.2167 (after 7.4.2164) |
| 13284 | Problem: Small build can't run tests. |
| 13285 | Solution: Don't try setting 'packpath'. |
| 13286 | Files: src/testdir/setup.vim |
| 13287 | |
| 13288 | Patch 7.4.2168 |
| 13289 | Problem: Not running the startup test on MS-Windows. |
| 13290 | Solution: Write vimcmd. |
| 13291 | Files: src/testdir/Make_ming.mak, src/testdir/Make_dos.mak |
| 13292 | |
| 13293 | Patch 7.4.2169 (after 7.4.2168) |
| 13294 | Problem: Startup test gets stuck on MS-Windows. |
| 13295 | Solution: Use double quotes. |
| 13296 | Files: src/testdir/shared.vim, src/testdir/test_startup.vim |
| 13297 | |
| 13298 | Patch 7.4.2170 |
| 13299 | Problem: Cannot get information about timers. |
| 13300 | Solution: Add timer_info(). |
| 13301 | Files: src/evalfunc.c, src/ex_cmds2.c, src/proto/ex_cmds2.pro, |
| 13302 | runtime/doc/eval.txt |
| 13303 | |
| 13304 | Patch 7.4.2171 (after 7.4.2170) |
| 13305 | Problem: MS-Windows build fails. |
| 13306 | Solution: Add QueryPerformanceCounter(). |
| 13307 | Files: src/ex_cmds2.c |
| 13308 | |
| 13309 | Patch 7.4.2172 |
| 13310 | Problem: No test for "vim --help". |
| 13311 | Solution: Add a test. |
| 13312 | Files: src/testdir/test_startup.vim, src/testdir/shared.vim |
| 13313 | |
| 13314 | Patch 7.4.2173 (after 7.4.2172) |
| 13315 | Problem: Can't test help on MS-Windows. |
| 13316 | Solution: Skip the test. |
| 13317 | Files: src/testdir/test_startup.vim |
| 13318 | |
| 13319 | Patch 7.4.2174 |
| 13320 | Problem: Adding duplicate flags to 'whichwrap' leaves commas behind. |
| 13321 | Solution: Also remove the commas. (Naruhiko Nishino) |
| 13322 | Files: src/Makefile, src/option.c, src/testdir/Make_all.mak, |
| 13323 | src/testdir/test_alot.vim, src/testdir/test_options.in, |
| 13324 | src/testdir/test_options.ok, src/testdir/test_options.vim |
| 13325 | |
| 13326 | Patch 7.4.2175 |
| 13327 | Problem: Insufficient testing of cscope. |
| 13328 | Solution: Add more tests. (Dominique Pelle) |
| 13329 | Files: src/testdir/test_cscope.vim |
| 13330 | |
| 13331 | Patch 7.4.2176 |
| 13332 | Problem: #ifdefs in main() are complicated. |
| 13333 | Solution: Always define vim_main2(). Move params to the file level. |
| 13334 | (suggested by Ken Takata) |
| 13335 | Files: src/main.c, src/structs.h, src/vim.h, src/if_mzsch.c, |
| 13336 | src/proto/if_mzsch.pro |
| 13337 | |
| 13338 | Patch 7.4.2177 |
| 13339 | Problem: No testing for -C and -N command line flags, file arguments, |
| 13340 | startuptime. |
| 13341 | Solution: Add tests. |
| 13342 | Files: src/testdir/test_startup.vim, src/testdir/shared.vim |
| 13343 | |
| 13344 | Patch 7.4.2178 |
| 13345 | Problem: No test for reading from stdin. |
| 13346 | Solution: Add a test. |
| 13347 | Files: src/testdir/test_startup.vim, src/testdir/shared.vim |
| 13348 | |
| 13349 | Patch 7.4.2179 (after 7.4.2178) |
| 13350 | Problem: Reading from stdin test fails on MS-Windows. |
| 13351 | Solution: Strip the extra space. |
| 13352 | Files: src/testdir/test_startup.vim |
| 13353 | |
| 13354 | Patch 7.4.2180 |
| 13355 | Problem: There is no easy way to stop all timers. There is no way to |
| 13356 | temporary pause a timer. |
| 13357 | Solution: Add timer_stopall() and timer_pause(). |
| 13358 | Files: src/evalfunc.c, src/ex_cmds2.c, src/proto/ex_cmds2.pro, |
| 13359 | src/structs.h, src/testdir/test_timers.vim, |
| 13360 | src/testdir/shared.vim, runtime/doc/eval.txt |
| 13361 | |
| 13362 | Patch 7.4.2181 |
| 13363 | Problem: Compiler warning for unused variable. |
| 13364 | Solution: Remove it. (Dominique Pelle) |
| 13365 | Files: src/ex_cmds2.c |
| 13366 | |
| 13367 | Patch 7.4.2182 |
| 13368 | Problem: Color Grey40 used in startup but not in the short list. |
| 13369 | Solution: Add Grey40 to the builtin colors. |
| 13370 | Files: src/term.c |
| 13371 | |
| 13372 | Patch 7.4.2183 |
| 13373 | Problem: Sign tests are old style. |
| 13374 | Solution: Turn them into new style tests. (Dominique Pelle) |
| 13375 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_signs.in, |
| 13376 | src/testdir/test_signs.ok, src/testdir/test_signs.vim, |
| 13377 | |
| 13378 | Patch 7.4.2184 |
| 13379 | Problem: Tests that use RunVim() do not actually perform the test. |
| 13380 | Solution: Use "return" instead of "call". (Ken Takata) |
| 13381 | Files: src/testdir/shared.vim |
| 13382 | |
| 13383 | Patch 7.4.2185 |
| 13384 | Problem: Test glob2regpat does not test much. |
| 13385 | Solution: Add a few more test cases. (Dominique Pelle) |
| 13386 | Files: src/testdir/test_glob2regpat.vim |
| 13387 | |
| 13388 | Patch 7.4.2186 |
| 13389 | Problem: Timers test is flaky. |
| 13390 | Solution: Relax the sleep time check. |
| 13391 | Files: src/testdir/test_timers.vim |
| 13392 | |
| 13393 | Patch 7.4.2187 (after 7.4.2185) |
| 13394 | Problem: glob2regpat test fails on Windows. |
| 13395 | Solution: Remove the checks that use backslashes. |
| 13396 | Files: src/testdir/test_glob2regpat.vim |
| 13397 | |
| 13398 | Patch 7.4.2188 (after 7.4.2146) |
| 13399 | Problem: Completion does not work properly with some plugins. |
| 13400 | Solution: Revert the part related to typing CTRL-E. (closes #972) |
| 13401 | Files: src/edit.c, src/testdir/test_popup.vim |
| 13402 | |
| 13403 | Patch 7.4.2189 |
| 13404 | Problem: Cannot detect encoding in a fifo. |
| 13405 | Solution: Extend the stdin way of detecting encoding to fifo. Add a test |
| 13406 | for detecting encoding on stdin and fifo. (Ken Takata) |
| 13407 | Files: src/buffer.c, src/fileio.c, src/Makefile, |
| 13408 | src/testdir/Make_all.mak, src/testdir/test_startup_utf8.vim, |
| 13409 | src/vim.h |
| 13410 | |
| 13411 | Patch 7.4.2190 |
| 13412 | Problem: When startup test fails it's not easy to find out why. |
| 13413 | GUI test fails with Gnome. |
| 13414 | Solution: Add the help entry matches to a list an assert that. |
| 13415 | Set $HOME for Gnome to create .gnome2 directory. |
| 13416 | Files: src/testdir/test_startup.vim, src/testdir/test_gui.vim |
| 13417 | |
| 13418 | Patch 7.4.2191 |
| 13419 | Problem: No automatic prototype for vim_main2(). |
| 13420 | Solution: Move the #endif. (Ken Takata) |
| 13421 | Files: src/main.c, src/vim.h, src/proto/main.pro |
| 13422 | |
| 13423 | Patch 7.4.2192 |
| 13424 | Problem: Generating prototypes with Cygwin doesn't work well. |
| 13425 | Solution: Change #ifdefs. (Ken Takata) |
| 13426 | Files: src/gui.h, src/gui_w32.c, src/ops.c, src/proto/fileio.pro, |
| 13427 | src/proto/message.pro, src/proto/normal.pro, src/proto/ops.pro, |
| 13428 | src/vim.h |
| 13429 | |
| 13430 | Patch 7.4.2193 |
| 13431 | Problem: With Gnome when the GUI can't start test_startup hangs. |
| 13432 | Solution: Call gui_mch_early_init_check(). (Hirohito Higashi) |
| 13433 | Files: src/gui.c, src/gui_gtk_x11.c, src/proto/gui_gtk_x11.pro |
| 13434 | |
| 13435 | Patch 7.4.2194 |
| 13436 | Problem: Sign tests don't cover enough. |
| 13437 | Solution: Add more test cases. (Dominique Pelle) |
| 13438 | Files: src/testdir/test_signs.vim |
| 13439 | |
| 13440 | Patch 7.4.2195 |
| 13441 | Problem: MS-Windows: The vimrun program does not support Unicode. |
| 13442 | Solution: Use GetCommandLineW(). Cleanup old #ifdefs. (Ken Takata) |
| 13443 | Files: src/vimrun.c |
| 13444 | |
| 13445 | Patch 7.4.2196 |
| 13446 | Problem: glob2regpat test doesn't test everything on MS-Windows. |
| 13447 | Solution: Add patterns with backslash handling. |
| 13448 | Files: src/testdir/test_glob2regpat.vim |
| 13449 | |
| 13450 | Patch 7.4.2197 |
| 13451 | Problem: All functions are freed on exit, which may hide leaks. |
| 13452 | Solution: Only free named functions, not reference counted ones. |
| 13453 | Files: src/userfunc.c |
| 13454 | |
| 13455 | Patch 7.4.2198 |
| 13456 | Problem: Test alot sometimes fails under valgrind. (Dominique Pelle) |
| 13457 | Solution: Avoid passing a callback with the wrong number of arguments. |
| 13458 | Files: src/testdir/test_partial.vim |
| 13459 | |
| 13460 | Patch 7.4.2199 |
| 13461 | Problem: In the GUI the cursor is hidden when redrawing any window, |
| 13462 | causing flicker. |
| 13463 | Solution: Only undraw the cursor when updating the window it's in. |
| 13464 | Files: src/screen.c, src/gui.c, src/proto/gui.pro, src/gui_gtk_x11.c |
| 13465 | |
| 13466 | Patch 7.4.2200 |
| 13467 | Problem: Cannot get all information about a quickfix list. |
| 13468 | Solution: Add an optional argument to get/set loc/qf list(). (Yegappan |
| 13469 | Lakshmanan) |
| 13470 | Files: runtime/doc/eval.txt, src/evalfunc.c, src/proto/quickfix.pro, |
| 13471 | src/quickfix.c, src/tag.c, src/testdir/test_quickfix.vim |
| 13472 | |
| 13473 | Patch 7.4.2201 |
| 13474 | Problem: The sign column disappears when the last sign is deleted. |
| 13475 | Solution: Add the 'signcolumn' option. (Christian Brabandt) |
| 13476 | Files: runtime/doc/options.txt, runtime/optwin.vim, src/edit.c, |
| 13477 | src/move.c, src/option.c, src/option.h, src/proto/option.pro, |
| 13478 | src/screen.c, src/structs.h, src/testdir/test_options.vim |
| 13479 | |
| 13480 | Patch 7.4.2202 |
| 13481 | Problem: Build fails with small features. |
| 13482 | Solution: Correct option initialization. |
| 13483 | Files: src/option.c |
| 13484 | |
| 13485 | Patch 7.4.2203 |
| 13486 | Problem: Test fails with normal features. |
| 13487 | Solution: Check is signs are supported. |
| 13488 | Files: src/testdir/test_options.vim |
| 13489 | |
| 13490 | Patch 7.4.2204 |
| 13491 | Problem: It is not easy to get information about buffers, windows and |
| 13492 | tabpages. |
| 13493 | Solution: Add getbufinfo(), getwininfo() and gettabinfo(). (Yegappan |
| 13494 | Lakshmanan) |
| 13495 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/dict.c, |
| 13496 | src/evalfunc.c, src/option.c, src/proto/dict.pro, |
| 13497 | src/proto/option.pro, src/proto/window.pro, |
| 13498 | src/testdir/Make_all.mak, src/testdir/test_bufwintabinfo.vim, |
| 13499 | src/window.c, src/Makefile |
| 13500 | |
| 13501 | Patch 7.4.2205 |
| 13502 | Problem: 'wildignore' always applies to getcompletion(). |
| 13503 | Solution: Add an option to use 'wildignore' or not. (Yegappan Lakshmanan) |
| 13504 | Files: runtime/doc/eval.txt, src/evalfunc.c, src/testdir/test_cmdline.vim |
| 13505 | |
| 13506 | Patch 7.4.2206 |
| 13507 | Problem: Warning for unused function. |
| 13508 | Solution: Put the function inside #ifdef. (John Marriott) |
| 13509 | Files: src/evalfunc.c |
| 13510 | |
| 13511 | Patch 7.4.2207 |
| 13512 | Problem: The +xpm feature is not sorted properly in :version output. |
| 13513 | Solution: Move it up. (Tony Mechelynck) |
| 13514 | Files: src/version.c |
| 13515 | |
| 13516 | Patch 7.4.2208 |
| 13517 | Problem: Test for mappings is old style. |
| 13518 | Solution: Convert the test to new style. |
| 13519 | Files: src/testdir/test_mapping.vim, src/testdir/test_mapping.in, |
| 13520 | src/testdir/test_mapping.ok, src/Makefile, |
| 13521 | src/testdir/test_alot.vim, src/testdir/Make_all.mak |
| 13522 | |
| 13523 | Patch 7.4.2209 |
| 13524 | Problem: Cannot map <M-">. (Stephen Riehm) |
| 13525 | Solution: Solve the memory access problem in another way. (Dominique Pelle) |
| 13526 | Allow for using <M-\"> in a string. |
| 13527 | Files: src/eval.c, src/gui_mac.c, src/misc2.c, src/option.c, |
| 13528 | src/proto/misc2.pro, src/syntax.c, src/term.c, |
| 13529 | src/testdir/test_mapping.vim |
| 13530 | |
| 13531 | Patch 7.4.2210 |
| 13532 | Problem: On OSX configure mixes up a Python framework and the Unix layout. |
| 13533 | Solution: Make configure check properly. (Tim D. Smith, closes #980) |
| 13534 | Files: src/configure.in, src/auto/configure |
| 13535 | |
| 13536 | Patch 7.4.2211 |
| 13537 | Problem: Mouse support is not automatically enabled with simple term. |
| 13538 | Solution: Recognize "st" and other names. (Manuel Schiller, closes #963) |
| 13539 | Files: src/os_unix.c |
| 13540 | |
| 13541 | Patch 7.4.2212 |
| 13542 | Problem: Mark " is not set when closing a window in another tab. (Guraga) |
| 13543 | Solution: Check all tabs for the window to be valid. (based on patch by |
| 13544 | Hirohito Higashi, closes #974) |
| 13545 | Files: src/window.c, src/proto/window.pro, src/buffer.c, |
| 13546 | src/testdir/test_viminfo.vim |
| 13547 | |
| 13548 | Patch 7.4.2213 |
| 13549 | Problem: Cannot highlight the "~" lines at the end of a window differently. |
| 13550 | Solution: Add the EndOfBuffer highlighting. (Marco Hinz, James McCoy) |
| 13551 | Files: runtime/doc/options.txt, runtime/doc/syntax.txt, src/option.c, |
| 13552 | src/screen.c, src/syntax.c, src/vim.h |
| 13553 | |
| 13554 | Patch 7.4.2214 |
| 13555 | Problem: A font that uses ligatures messes up the screen display. |
| 13556 | Solution: Put spaces between characters when building the glyph table. |
| 13557 | (based on a patch from Manuel Schiller) |
| 13558 | Files: src/gui_gtk_x11.c |
| 13559 | |
| 13560 | Patch 7.4.2215 |
| 13561 | Problem: It's not easy to find out if a window is a quickfix or location |
| 13562 | list window. |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 13563 | Solution: Add "loclist" and "quickfix" entries to the dict returned by |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 13564 | getwininfo(). (Yegappan Lakshmanan) |
| 13565 | Files: runtime/doc/eval.txt, src/evalfunc.c, |
| 13566 | src/testdir/test_bufwintabinfo.vim |
| 13567 | |
| 13568 | Patch 7.4.2216 (after 7.4.2215) |
| 13569 | Problem: Test fails without the +sign feature. |
| 13570 | Solution: Only check for signcolumn with the +sign feature. |
| 13571 | Files: src/testdir/test_bufwintabinfo.vim |
| 13572 | |
| 13573 | Patch 7.4.2217 |
| 13574 | Problem: When using matchaddpos() a character after the end of the line can |
| 13575 | be highlighted. |
| 13576 | Solution: Only highlight existing characters. (Hirohito Higashi) |
| 13577 | Files: src/screen.c, src/structs.h, src/testdir/test_match.vim |
| 13578 | |
Bram Moolenaar | 36f44c2 | 2016-08-28 18:17:20 +0200 | [diff] [blame] | 13579 | Patch 7.4.2218 |
| 13580 | Problem: Can't build with +timers when +digraph is not included. |
| 13581 | Solution: Change #ifdef for e_number_exp. (Damien) |
| 13582 | Files: src/globals.h |
| 13583 | |
| 13584 | Patch 7.4.2219 |
| 13585 | Problem: Recursive call to substitute gets stuck in sandbox. (Nikolai |
| 13586 | Pavlov) |
| 13587 | Solution: Handle the recursive call. (Christian Brabandt, closes #950) |
| 13588 | Add a test. |
| 13589 | Files: src/ex_cmds.c, src/testdir/test_regexp_latin.vim |
| 13590 | |
| 13591 | Patch 7.4.2220 |
| 13592 | Problem: printf() gives an error when the argument for %s is not a string. |
| 13593 | (Ozaki Kiichi) |
| 13594 | Solution: Behave like invoking string() on the argument. (Ken Takata) |
| 13595 | Files: runtime/doc/eval.txt, src/message.c, src/testdir/test_expr.vim |
| 13596 | |
| 13597 | Patch 7.4.2221 |
| 13598 | Problem: printf() does not support binary format. |
| 13599 | Solution: Add %b and %B. (Ozaki Kiichi) |
| 13600 | Files: runtime/doc/eval.txt, src/message.c, src/testdir/test_expr.vim |
| 13601 | |
| 13602 | Patch 7.4.2222 |
| 13603 | Problem: Sourcing a script where a character has 0x80 as a second byte does |
| 13604 | not work. (Filipe L B Correia) |
| 13605 | Solution: Turn 0x80 into K_SPECIAL KS_SPECIAL KE_FILLER. (Christian |
| 13606 | Brabandt, closes #728) Add a test case. |
| 13607 | Files: src/getchar.c, src/proto/getchar.pro, src/misc1.c, |
| 13608 | src/testdir/test_regexp_utf8.vim |
| 13609 | |
| 13610 | Patch 7.4.2223 |
| 13611 | Problem: Buffer overflow when using latin1 character with feedkeys(). |
| 13612 | Solution: Check for an illegal character. Add a test. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 13613 | Files: src/testdir/test_regexp_utf8.vim, src/testdir/test_source_utf8.vim, |
Bram Moolenaar | 36f44c2 | 2016-08-28 18:17:20 +0200 | [diff] [blame] | 13614 | src/testdir/test_alot_utf8.vim, src/Makefile, src/getchar.c, |
| 13615 | src/macros.h, src/evalfunc.c, src/os_unix.c, src/os_win32.c, |
| 13616 | src/spell.c, |
| 13617 | |
| 13618 | Patch 7.4.2224 |
| 13619 | Problem: Compiler warnings with older compiler and 64 bit numbers. |
| 13620 | Solution: Add "LL" to large values. (Mike Williams) |
| 13621 | Files: src/eval.c, src/evalfunc.c |
| 13622 | |
| 13623 | Patch 7.4.2225 |
| 13624 | Problem: Crash when placing a sign in a deleted buffer. |
| 13625 | Solution: Check for missing buffer name. (Dominique Pelle). Add a test. |
| 13626 | Files: src/ex_cmds.c, src/testdir/test_signs.vim |
| 13627 | |
| 13628 | Patch 7.4.2226 |
| 13629 | Problem: The field names used by getbufinfo(), gettabinfo() and |
| 13630 | getwininfo() are not consistent. |
| 13631 | Solution: Use bufnr, winnr and tabnr. (Yegappan Lakshmanan) |
| 13632 | Files: runtime/doc/eval.txt, src/evalfunc.c, |
| 13633 | src/testdir/test_bufwintabinfo.vim |
| 13634 | |
| 13635 | Patch 7.4.2227 |
| 13636 | Problem: Tab page tests are old style. |
| 13637 | Solution: Change into new style tests. (Hirohito Higashi) |
| 13638 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test62.in, |
| 13639 | src/testdir/test62.ok, src/testdir/test_alot.vim, |
| 13640 | src/testdir/test_tabpage.vim |
| 13641 | |
| 13642 | Patch 7.4.2228 |
| 13643 | Problem: Test files have inconsistent modelines. |
| 13644 | Solution: Don't set 'tabstop' to 2, use 'sts' and 'sw'. |
| 13645 | Files: src/testdir/README.txt, src/testdir/test_backspace_opt.vim, |
| 13646 | src/testdir/test_digraph.vim, src/testdir/test_gn.vim |
| 13647 | src/testdir/test_help_tagjump.vim, |
| 13648 | src/testdir/test_increment_dbcs.vim, |
| 13649 | src/testdir/test_increment.vim, src/testdir/test_match.vim, |
| 13650 | src/testdir/test_tagjump.vim, src/testdir/test_window_cmd.vim, |
| 13651 | src/testdir/test_regexp_latin.vim, src/testdir/test_timers.vim |
| 13652 | |
| 13653 | Patch 7.4.2229 |
| 13654 | Problem: Startup test fails on Solaris. |
| 13655 | Solution: Recognize a character device. (Danek Duvall) |
| 13656 | Files: src/buffer.c, src/fileio.c, src/proto/fileio.pro, src/vim.h |
| 13657 | |
| 13658 | Patch 7.4.2230 |
| 13659 | Problem: There is no equivalent of 'smartcase' for a tag search. |
| 13660 | Solution: Add value "followscs" and "smart" to 'tagcase'. (Christian |
| 13661 | Brabandt, closes #712) Turn tagcase test into new style. |
| 13662 | Files: runtime/doc/options.txt, runtime/doc/tagsrch.txt, src/option.h, |
| 13663 | src/tag.c, src/search.c, src/proto/search.pro, |
| 13664 | src/testdir/test_tagcase.in, src/testdir/test_tagcase.ok, |
| 13665 | src/testdir/test_tagcase.vim, src/Makefile, |
| 13666 | src/testdir/Make_all.mak, src/testdir/test_alot.vim |
| 13667 | |
| 13668 | Patch 7.4.2231 |
| 13669 | Problem: ":oldfiles" output is a very long list. |
| 13670 | Solution: Add a pattern argument. (Coot, closes #575) |
| 13671 | Files: runtime/doc/starting.txt, src/ex_cmds.h, src/eval.c, |
| 13672 | src/ex_cmds.c, src/proto/eval.pro, src/proto/ex_cmds.pro, |
| 13673 | src/testdir/test_viminfo.vim |
| 13674 | |
| 13675 | Patch 7.4.2232 |
| 13676 | Problem: The default ttimeoutlen is very long. |
| 13677 | Solution: Use "100". (Hirohito Higashi) |
| 13678 | Files: runtime/defaults.vim |
| 13679 | |
| 13680 | Patch 7.4.2233 |
| 13681 | Problem: Crash when using funcref() with invalid name. (Dominique Pelle) |
| 13682 | Solution: Check for NULL translated name. |
| 13683 | Files: src/evalfunc.c, src/testdir/test_expr.vim |
| 13684 | |
| 13685 | Patch 7.4.2234 |
| 13686 | Problem: Can't build with +eval but without +quickfix. (John Marriott) |
| 13687 | Solution: Move skip_vimgrep_pat() to separate #ifdef block. |
| 13688 | Files: src/quickfix.c |
| 13689 | |
| 13690 | Patch 7.4.2235 |
| 13691 | Problem: submatch() does not check for a valid argument. |
| 13692 | Solution: Give an error if the argument is out of range. (Dominique Pelle) |
| 13693 | Files: src/evalfunc.c, src/testdir/test_expr.vim |
| 13694 | |
| 13695 | Patch 7.4.2236 |
| 13696 | Problem: The 'langnoremap' option leads to double negatives. And it does |
| 13697 | not work for the last character of a mapping. |
| 13698 | Solution: Add 'langremap' with the opposite value. Keep 'langnoremap' for |
| 13699 | backwards compatibility. Make it work for the last character of a |
| 13700 | mapping. Make the test work. |
| 13701 | Files: runtime/doc/options.txt, runtime/defaults.vim, src/option.c, |
| 13702 | src/option.h, src/macros.h, src/testdir/test_mapping.vim |
| 13703 | |
| 13704 | Patch 7.4.2237 |
| 13705 | Problem: Can't use "." and "$" with ":tab". |
| 13706 | Solution: Support a range for ":tab". (Hirohito Higashi) |
| 13707 | Files: runtime/doc/tabpage.txt, src/ex_docmd.c, |
| 13708 | src/testdir/test_tabpage.vim |
| 13709 | |
| 13710 | Patch 7.4.2238 |
| 13711 | Problem: With SGR mouse reporting (suckless terminal) the mouse release and |
| 13712 | scroll up/down is confused. |
| 13713 | Solution: Don't see a release as a scroll up/down. (Ralph Eastwood) |
| 13714 | Files: src/term.c |
| 13715 | |
| 13716 | Patch 7.4.2239 |
| 13717 | Problem: Warning for missing declaration of skip_vimgrep_pat(). (John |
| 13718 | Marriott) |
| 13719 | Solution: Move it to another file. |
| 13720 | Files: src/quickfix.c, src/proto/quickfix.pro, src/ex_cmds.c, |
| 13721 | src/proto/ex_cmds.pro |
| 13722 | |
| 13723 | Patch 7.4.2240 |
| 13724 | Problem: Tests using the sleep time can be flaky. |
| 13725 | Solution: Use reltime() if available. (Partly by Shane Harper) |
| 13726 | Files: src/testdir/shared.vim, src/testdir/test_timers.vim |
| 13727 | |
| 13728 | Patch 7.4.2241 (after 7.4.2240) |
| 13729 | Problem: Timer test sometimes fails. |
| 13730 | Solution: Increase the maximum time for repeating timer. |
| 13731 | Files: src/testdir/test_timers.vim |
| 13732 | |
| 13733 | Patch 7.4.2242 (after 7.4.2240) |
| 13734 | Problem: Timer test sometimes fails. |
| 13735 | Solution: Increase the maximum time for callback timer test. |
| 13736 | Files: src/testdir/test_timers.vim |
| 13737 | |
| 13738 | Patch 7.4.2243 |
| 13739 | Problem: Warning for assigning negative value to unsigned. (Danek Duvall) |
| 13740 | Solution: Make cterm_normal_fg_gui_color and _bg_ guicolor_T, cast to long_u |
| 13741 | only when an unsigned is needed. |
| 13742 | Files: src/structs.h, src/globals.h, src/screen.c, src/term.c, |
| 13743 | src/syntax.c, src/gui_gtk_x11.c, src/gui.c, src/gui_mac.c, |
| 13744 | src/gui_photon.c, src/gui_w32.c, src/gui_x11.c, |
| 13745 | src/proto/term.pro, src/proto/gui_gtk_x11.pro, |
| 13746 | src/proto/gui_mac.pro, src/proto/gui_photon.pro, |
| 13747 | src/proto/gui_w32.pro, src/proto/gui_x11.pro |
| 13748 | |
| 13749 | Patch 7.4.2244 |
| 13750 | Problem: Adding pattern to ":oldfiles" is not a generic solution. |
| 13751 | Solution: Add the ":filter /pat/ cmd" command modifier. Only works for some |
| 13752 | commands right now. |
| 13753 | Files: src/structs.h, src/ex_docmd.c, src/ex_cmds.h, src/message.c, |
| 13754 | src/proto/message.pro, runtime/doc/starting.txt, |
| 13755 | runtime/doc/various.txt, src/testdir/test_viminfo.vim, |
| 13756 | src/testdir/test_alot.vim, src/testdir/test_filter_cmd.vim, |
| 13757 | src/Makefile |
| 13758 | |
| 13759 | Patch 7.4.2245 (after 7.4.2244) |
| 13760 | Problem: Filter test fails. |
| 13761 | Solution: Include missing changes. |
| 13762 | Files: src/buffer.c |
| 13763 | |
| 13764 | Patch 7.4.2246 (after 7.4.2244) |
| 13765 | Problem: Oldfiles test fails. |
| 13766 | Solution: Include missing changes. |
| 13767 | Files: src/ex_cmds.c |
| 13768 | |
| 13769 | Patch 7.4.2247 (after 7.4.2244) |
| 13770 | Problem: Tiny build fails. (Tony Mechelynck) |
| 13771 | Solution: Remove #ifdef. |
| 13772 | Files: src/ex_cmds.c |
| 13773 | |
| 13774 | Patch 7.4.2248 |
| 13775 | Problem: When cancelling the :ptjump prompt a preview window is opened for |
| 13776 | a following command. |
| 13777 | Solution: Reset g_do_tagpreview. (Hirohito Higashi) Add a test. Avoid that |
| 13778 | the test runner gets stuck in trying to close a window. |
| 13779 | Files: src/tag.c, src/testdir/test_tagjump.vim, src/testdir/runtest.vim |
| 13780 | |
| 13781 | Patch 7.4.2249 |
| 13782 | Problem: Missing colon in error message. |
| 13783 | Solution: Add the colon. (Dominique Pelle) |
| 13784 | Files: src/userfunc.c |
| 13785 | |
| 13786 | Patch 7.4.2250 |
| 13787 | Problem: Some error messages cannot be translated. |
| 13788 | Solution: Enclose them in _() and N_(). (Dominique Pelle) |
| 13789 | Files: src/channel.c, src/evalfunc.c, src/ex_cmds.c, src/spell.c, |
| 13790 | src/window.c |
| 13791 | |
| 13792 | Patch 7.4.2251 |
| 13793 | Problem: In rare cases diffing 4 buffers is not enough. |
| 13794 | Solution: Raise the limit to 8. (closes #1000) |
| 13795 | Files: src/structs.h, runtime/doc/diff.txt |
| 13796 | |
| 13797 | Patch 7.4.2252 |
| 13798 | Problem: Compiler warnings for signed/unsigned in expression. |
| 13799 | Solution: Remove type cast. (Dominique Pelle) |
| 13800 | Files: src/vim.h |
| 13801 | |
| 13802 | Patch 7.4.2253 |
| 13803 | Problem: Check for Windows 3.1 will always return false. (Christian |
| 13804 | Brabandt) |
| 13805 | Solution: Remove the dead code. |
| 13806 | Files: src/gui_w32.c, src/evalfunc.c, src/ex_cmds.c, src/option.c, |
| 13807 | src/os_win32.c, src/version.c, src/proto/gui_w32.pro |
| 13808 | |
| 13809 | Patch 7.4.2254 |
| 13810 | Problem: Compiler warnings in MzScheme code. |
| 13811 | Solution: Add UNUSED. Remove unreachable code. |
| 13812 | Files: src/if_mzsch.c |
| 13813 | |
| 13814 | Patch 7.4.2255 |
| 13815 | Problem: The script that checks translations can't handle plurals. |
| 13816 | Solution: Check for plural msgid and msgstr entries. Leave the cursor on |
| 13817 | the first error. |
| 13818 | Files: src/po/check.vim |
| 13819 | |
| 13820 | Patch 7.4.2256 |
| 13821 | Problem: Coverity complains about null pointer check. |
| 13822 | Solution: Remove wrong and superfluous error check. |
| 13823 | Files: src/eval.c |
| 13824 | |
| 13825 | Patch 7.4.2257 |
| 13826 | Problem: Coverity complains about not checking for NULL. |
| 13827 | Solution: Check for out of memory. |
| 13828 | Files: src/if_py_both.h |
| 13829 | |
| 13830 | Patch 7.4.2258 |
| 13831 | Problem: Two JSON messages are sent without a separator. |
| 13832 | Solution: Separate messages with a NL. (closes #1001) |
| 13833 | Files: src/json.c, src/channel.c, src/vim.h, src/testdir/test_channel.py, |
| 13834 | src/testdir/test_channel.vim, runtime/doc/channel.txt |
| 13835 | |
| 13836 | Patch 7.4.2259 |
| 13837 | Problem: With 'incsearch' can only see the next match. |
| 13838 | Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian |
| 13839 | Brabandt) |
| 13840 | Files: runtime/doc/cmdline.txt, src/ex_getln.c, src/testdir/Make_all.mak, |
| 13841 | src/testdir/test_search.vim, src/Makefile |
| 13842 | |
| 13843 | Patch 7.4.2260 (after 7.4.2258) |
| 13844 | Problem: Channel test is flaky. |
| 13845 | Solution: Add a newline to separate JSON messages. |
| 13846 | Files: src/testdir/test_channel.vim |
| 13847 | |
| 13848 | Patch 7.4.2261 (after 7.4.2259) |
| 13849 | Problem: Build fails with small features. |
| 13850 | Solution: Move "else" inside the #ifdef. |
| 13851 | Files: src/ex_getln.c |
| 13852 | |
| 13853 | Patch 7.4.2262 |
| 13854 | Problem: Fail to read register content from viminfo if it is 438 characters |
| 13855 | long. (John Chen) |
| 13856 | Solution: Adjust the check for line wrapping. (closes #1010) |
| 13857 | Files: src/testdir/test_viminfo.vim, src/ex_cmds.c |
| 13858 | |
| 13859 | Patch 7.4.2263 |
| 13860 | Problem: :filter does not work for many commands. Can only get matching |
| 13861 | messages. |
| 13862 | Solution: Make :filter work for :command, :map, :list, :number and :print. |
| 13863 | Make ":filter!" show non-matching lines. |
| 13864 | Files: src/getchar.c, src/ex_cmds.c, src/ex_cmds.h, src/ex_docmd.c, |
| 13865 | src/message.c, src/structs.h, src/testdir/test_filter_cmd.vim |
| 13866 | |
| 13867 | Patch 7.4.2264 |
| 13868 | Problem: When adding entries to an empty quickfix list the title is reset. |
| 13869 | Solution: Improve handling of the title. (Yegappan Lakshmanan) |
| 13870 | Files: src/testdir/test_quickfix.vim, src/quickfix.c |
| 13871 | |
| 13872 | Patch 7.4.2265 |
| 13873 | Problem: printf() isn't tested much. |
| 13874 | Solution: Add more tests for printf(). (Dominique Pelle) |
| 13875 | Files: src/testdir/test_expr.vim |
| 13876 | |
| 13877 | Patch 7.4.2266 (after 7.4.2265) |
| 13878 | Problem: printf() test fails on Windows. "-inf" is not used. |
| 13879 | Solution: Check for Windows-specific values for "nan". Add sign to "inf" |
| 13880 | when appropriate. |
| 13881 | Files: src/message.c, src/testdir/test_expr.vim |
| 13882 | |
| 13883 | Patch 7.4.2267 (after 7.4.2266) |
| 13884 | Problem: Build fails on MS-Windows. |
| 13885 | Solution: Add define to get isinf(). |
| 13886 | Files: src/message.c |
| 13887 | |
| 13888 | Patch 7.4.2268 (after 7.4.2259) |
| 13889 | Problem: Using CTRL-N and CTRL-P for incsearch shadows completion keys. |
| 13890 | Solution: Use CTRL-T and CTRL-G instead. |
| 13891 | Files: runtime/doc/cmdline.txt, src/ex_getln.c, |
| 13892 | src/testdir/test_search.vim |
| 13893 | |
| 13894 | Patch 7.4.2269 |
| 13895 | Problem: Using 'hlsearch' highlighting instead of matchpos if there is no |
| 13896 | search match. |
| 13897 | Solution: Pass NULL as last item to next_search_hl() when searching for |
| 13898 | 'hlsearch' match. (Shane Harper, closes #1013) |
| 13899 | Files: src/screen.c, src/testdir/test_match.vim. |
| 13900 | |
| 13901 | Patch 7.4.2270 |
| 13902 | Problem: Insufficient testing for NUL bytes on a raw channel. |
| 13903 | Solution: Add a test for writing and reading. |
| 13904 | Files: src/testdir/test_channel.vim |
| 13905 | |
| 13906 | Patch 7.4.2271 |
| 13907 | Problem: Netbeans test doesn't read settings from file. |
| 13908 | Solution: Use "-Xnbauth". |
| 13909 | Files: src/testdir/test_netbeans.vim |
| 13910 | |
| 13911 | Patch 7.4.2272 |
| 13912 | Problem: getbufinfo(), getwininfo() and gettabinfo() are inefficient. |
| 13913 | Solution: Instead of making a copy of the variables dictionary, use a |
| 13914 | reference. |
| 13915 | Files: src/evalfunc.c |
| 13916 | |
| 13917 | Patch 7.4.2273 |
| 13918 | Problem: getwininfo() and getbufinfo() are inefficient. |
| 13919 | Solution: Do not make a copy of all window/buffer-local options. Make it |
| 13920 | possible to get them with gettabwinvar() or getbufvar(). |
| 13921 | Files: src/evalfunc.c, src/eval.c, src/testdir/test_bufwintabinfo.vim, |
| 13922 | runtime/doc/eval.txt |
| 13923 | |
| 13924 | Patch 7.4.2274 |
| 13925 | Problem: Command line completion on "find **/filename" drops sub-directory. |
| 13926 | Solution: Handle this case separately. (Harm te Hennepe, closes #932, closes |
| 13927 | #939) |
| 13928 | Files: src/misc1.c, src/testdir/test_cmdline.vim |
| 13929 | |
| 13930 | Patch 7.4.2275 |
| 13931 | Problem: ":diffoff!" does not remove filler lines. |
| 13932 | Solution: Force a redraw and invalidate the cursor. (closes #1014) |
| 13933 | Files: src/diff.c, src/testdir/test_diffmode.vim |
| 13934 | |
| 13935 | Patch 7.4.2276 |
| 13936 | Problem: Command line test fails on Windows when run twice. |
| 13937 | Solution: Wipe the buffer so that the directory can be deleted. |
| 13938 | Files: src/testdir/test_cmdline.vim |
| 13939 | |
| 13940 | Patch 7.4.2277 |
| 13941 | Problem: Memory leak in getbufinfo() when there is a sign. (Dominique |
| 13942 | Pelle) |
| 13943 | Solution: Remove extra vim_strsave(). |
| 13944 | Files: src/evalfunc.c |
| 13945 | |
| 13946 | Patch 7.4.2278 |
| 13947 | Problem: New users have no idea of the 'scrolloff' option. |
| 13948 | Solution: Set 'scrolloff' in defaults.vim. |
| 13949 | Files: runtime/defaults.vim |
| 13950 | |
| 13951 | Patch 7.4.2279 |
| 13952 | Problem: Starting diff mode with the cursor in the last line might end up |
| 13953 | only showing one closed fold. (John Beckett) |
| 13954 | Solution: Scroll the window to show the same relative cursor position. |
| 13955 | Files: src/diff.c, src/window.c, src/proto/window.pro |
| 13956 | |
| 13957 | Patch 7.4.2280 |
| 13958 | Problem: printf() doesn't handle infinity float values correctly. |
| 13959 | Solution: Add a table with possible infinity values. (Dominique Pelle) |
| 13960 | Files: src/message.c, src/testdir/test_expr.vim |
| 13961 | |
| 13962 | Patch 7.4.2281 |
| 13963 | Problem: Timer test fails sometimes. |
| 13964 | Solution: Reduce minimum time by 1 msec. |
| 13965 | Files: src/testdir/test_timers.vim |
| 13966 | |
| 13967 | Patch 7.4.2282 |
| 13968 | Problem: When a child process is very fast waiting 10 msec for it is |
| 13969 | noticeable. (Ramel Eshed) |
| 13970 | Solution: Start waiting for 1 msec and gradually increase. |
| 13971 | Files: src/os_unix.c |
| 13972 | |
| 13973 | Patch 7.4.2283 |
| 13974 | Problem: Part of ":oldfiles" command isn't cleared. (Lifepillar) |
| 13975 | Solution: Clear the rest of the line. (closes 1018) |
| 13976 | Files: src/ex_cmds.c |
| 13977 | |
| 13978 | Patch 7.4.2284 |
| 13979 | Problem: Comment in scope header file is outdated. (KillTheMule) |
| 13980 | Solution: Point to the help instead. (closes #1017) |
| 13981 | Files: src/if_cscope.h |
| 13982 | |
| 13983 | Patch 7.4.2285 |
| 13984 | Problem: Generated files are outdated. |
| 13985 | Solution: Generate the files. Avoid errors when generating prototypes. |
| 13986 | Files: src/if_mzsch.h, src/Makefile, src/option.h, src/os_mac_conv.c, |
| 13987 | src/os_amiga.c, src/vim.h, src/structs.h, src/os_win32.c, |
| 13988 | src/if_lua.c, src/proto/mbyte.pro |
| 13989 | |
Bram Moolenaar | abd468e | 2016-09-08 22:22:43 +0200 | [diff] [blame] | 13990 | Patch 7.4.2286 |
| 13991 | Problem: The tee program isn't included. Makefile contains build |
| 13992 | instructions that don't work. |
| 13993 | Solution: Update the Filelist and build instructions. Remove build |
| 13994 | instructions for DOS and old Windows. Add the tee program. |
| 13995 | Files: Filelist, Makefile, nsis/gvim.nsi |
| 13996 | |
| 13997 | Patch 7.4.2287 |
| 13998 | Problem: The callback passed to ch_sendraw() is not used. |
| 13999 | Solution: Pass the read part, not the send part. (haya14busa, closes #1019) |
| 14000 | Files: src/channel.c, src/testdir/test_channel.vim |
| 14001 | |
| 14002 | Patch 7.4.2288 |
| 14003 | Problem: MS-Windows build instructions are clumsy. "dosbin" doesn't build. |
| 14004 | Solution: Add rename.bat. Fix building "dosbin". |
| 14005 | Files: Makefile, Filelist, rename.bat |
| 14006 | |
| 14007 | Patch 7.4.2289 |
| 14008 | Problem: When installing and $DESTDIR is set the icons probably won't be |
| 14009 | installed. |
| 14010 | Solution: Create the icon directories if $DESTDIR is not empty. (Danek |
| 14011 | Duvall) |
| 14012 | Files: src/Makefile |
| 14013 | |
| 14014 | Patch 7.4.2290 |
| 14015 | Problem: Compiler warning in tiny build. (Tony Mechelynck) |
| 14016 | Solution: Add #ifdef around infinity_str(). |
| 14017 | Files: src/message.c |
| 14018 | |
| 14019 | Patch 7.4.2291 |
| 14020 | Problem: printf() handles floats wrong when there is a sign. |
| 14021 | Solution: Fix placing the sign. Add tests. (Dominique Pelle) |
| 14022 | Files: src/testdir/test_expr.vim, runtime/doc/eval.txt, src/message.c |
| 14023 | |
| 14024 | Patch 7.4.2292 (after 7.4.2291) |
| 14025 | Problem: Not all systems understand %F in printf(). |
| 14026 | Solution: Use %f. |
| 14027 | Files: src/message.c |
| 14028 | |
| 14029 | Patch 7.4.2293 |
| 14030 | Problem: Modelines in source code are inconsistent. |
| 14031 | Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino) |
| 14032 | Files: src/alloc.h, src/arabic.c, src/arabic.h, src/ascii.h, |
| 14033 | src/blowfish.c, src/buffer.c, src/channel.c, src/charset.c, |
| 14034 | src/crypt.c, src/crypt_zip.c, src/dict.c, src/diff.c, |
| 14035 | src/digraph.c, src/dosinst.c, src/dosinst.h, src/edit.c, |
| 14036 | src/eval.c, src/evalfunc.c, src/ex_cmds.c, src/ex_cmds.h, |
| 14037 | src/ex_cmds2.c, src/ex_docmd.c, src/ex_eval.c, src/ex_getln.c, |
| 14038 | src/farsi.c, src/farsi.h, src/feature.h, src/fileio.c, src/fold.c, |
| 14039 | src/getchar.c, src/glbl_ime.cpp, src/glbl_ime.h, src/globals.h, |
| 14040 | src/gui.c, src/gui.h, src/gui_at_fs.c, src/gui_at_sb.c, |
| 14041 | src/gui_at_sb.h, src/gui_athena.c, src/gui_beval.c, |
| 14042 | src/gui_beval.h, src/gui_gtk.c, src/gui_gtk_f.c, src/gui_gtk_f.h, |
| 14043 | src/gui_gtk_vms.h, src/gui_gtk_x11.c, src/gui_mac.c, |
| 14044 | src/gui_motif.c, src/gui_photon.c, src/gui_w32.c, src/gui_x11.c, |
| 14045 | src/gui_x11_pm.h, src/gui_xmdlg.c, src/gui_xmebw.c, |
| 14046 | src/gui_xmebw.h, src/gui_xmebwp.h, src/hangulin.c, src/hardcopy.c, |
| 14047 | src/hashtab.c, src/if_cscope.c, src/if_cscope.h, src/if_mzsch.c, |
| 14048 | src/if_mzsch.h, src/if_ole.cpp, src/if_perl.xs, src/if_perlsfio.c, |
| 14049 | src/if_python3.c, src/if_ruby.c, src/if_tcl.c, src/if_xcmdsrv.c, |
| 14050 | src/integration.c, src/integration.h, src/iscygpty.c, src/json.c, |
| 14051 | src/json_test.c, src/keymap.h, src/list.c, src/macros.h, |
| 14052 | src/main.c, src/mark.c, src/mbyte.c, src/memfile.c, |
| 14053 | src/memfile_test.c, src/memline.c, src/menu.c, src/message.c, |
| 14054 | src/message_test.c, src/misc1.c, src/misc2.c, src/move.c, |
| 14055 | src/nbdebug.c, src/nbdebug.h, src/netbeans.c, src/normal.c, |
| 14056 | src/ops.c, src/option.c, src/option.h, src/os_amiga.c, |
| 14057 | src/os_amiga.h, src/os_beos.c, src/os_beos.h, src/os_dos.h, |
| 14058 | src/os_mac.h, src/os_mac_conv.c, src/os_macosx.m, src/os_mint.h, |
| 14059 | src/os_mswin.c, src/os_qnx.c, src/os_qnx.h, src/os_unix.c, |
| 14060 | src/os_unix.h, src/os_unixx.h, src/os_vms.c, src/os_w32dll.c, |
| 14061 | src/os_w32exe.c, src/os_win32.c, src/os_win32.h, src/popupmnu.c, |
| 14062 | src/proto.h, src/pty.c, src/quickfix.c, src/regexp.c, |
| 14063 | src/regexp.h, src/regexp_nfa.c, src/screen.c, src/search.c, |
| 14064 | src/sha256.c, src/spell.c, src/spell.h, src/spellfile.c, |
| 14065 | src/structs.h, src/syntax.c, src/tag.c, src/term.c, src/term.h, |
| 14066 | src/termlib.c, src/ui.c, src/undo.c, src/uninstal.c, |
| 14067 | src/userfunc.c, src/version.c, src/version.h, src/vim.h, |
| 14068 | src/vim.rc, src/vimio.h, src/vimrun.c, src/winclip.c, |
| 14069 | src/window.c, src/workshop.c, src/workshop.h, src/wsdebug.c, |
| 14070 | src/wsdebug.h, src/xpm_w32.c |
| 14071 | |
| 14072 | Patch 7.4.2294 |
| 14073 | Problem: Sign test fails on MS-Windows when using the distributed zip |
| 14074 | archives. |
| 14075 | Solution: Create dummy files instead of relying on files in the pixmaps |
| 14076 | directory. |
| 14077 | Files: src/testdir/test_signs.vim |
| 14078 | |
| 14079 | Patch 7.4.2295 (after 7.4.2293) |
| 14080 | Problem: Cscope test fails. |
| 14081 | Solution: Avoid checking for specific line and column numbers. |
| 14082 | Files: src/testdir/test_cscope.vim |
| 14083 | |
| 14084 | Patch 7.4.2296 |
| 14085 | Problem: No tests for :undolist and "U" command. |
| 14086 | Solution: Add tests. (Dominique Pelle) |
| 14087 | Files: src/testdir/test_undo.vim |
| 14088 | |
| 14089 | Patch 7.4.2297 |
| 14090 | Problem: When starting a job that reads from a buffer and reaching the end, |
| 14091 | the job hangs. |
| 14092 | Solution: Close the pipe or socket when all lines were read. |
| 14093 | Files: src/channel.c, src/testdir/test_channel.vim |
| 14094 | |
| 14095 | Patch 7.4.2298 |
| 14096 | Problem: It is not possible to close the "in" part of a channel. |
| 14097 | Solution: Add ch_close_in(). |
| 14098 | Files: src/evalfunc.c, src/channel.c, src/proto/channel.pro, |
| 14099 | src/testdir/test_channel.vim, runtime/doc/eval.txt, |
| 14100 | runtime/doc/channel.txt |
| 14101 | |
| 14102 | Patch 7.4.2299 |
| 14103 | Problem: QuickFixCmdPre and QuickFixCmdPost autocommands are not always |
| 14104 | triggered. |
| 14105 | Solution: Also trigger on ":cexpr", ":cbuffer", etc. (Yegappan Lakshmanan) |
| 14106 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 14107 | |
| 14108 | Patch 7.4.2300 |
| 14109 | Problem: Get warning for deleting autocommand group when the autocommand |
| 14110 | using the group is scheduled for deletion. (Pavol Juhas) |
| 14111 | Solution: Check for deleted autocommand. |
| 14112 | Files: src/fileio.c, src/testdir/test_autocmd.vim |
| 14113 | |
| 14114 | Patch 7.4.2301 |
| 14115 | Problem: MS-Windows: some files remain after testing. |
| 14116 | Solution: Close the channel output file. Wait for the file handle to be |
| 14117 | closed before deleting the file. |
| 14118 | Files: src/os_win32.c, src/testdir/test_channel.vim |
| 14119 | |
| 14120 | Patch 7.4.2302 |
| 14121 | Problem: Default interface versions for MS-Windows are outdated. |
| 14122 | Solution: Use Active Perl 5.24, Python 3.5.2. Could only make it work with |
| 14123 | Ruby 1.9.2. |
| 14124 | Files: src/bigvim.bat, src/bigvim64.bat, src/Make_mvc.mak |
| 14125 | |
| 14126 | Patch 7.4.2303 |
| 14127 | Problem: When using "is" the mode isn't always updated. |
| 14128 | Solution: Redraw the command line. (Christian Brabandt) |
| 14129 | Files: src/search.c |
| 14130 | |
| 14131 | Patch 7.4.2304 |
| 14132 | Problem: In a timer callback the timer itself can't be found or stopped. |
| 14133 | (Thinca) |
| 14134 | Solution: Do not remove the timer from the list, remember whether it was |
| 14135 | freed. |
| 14136 | Files: src/ex_cmds2.c, src/testdir/test_timers.vim |
| 14137 | |
| 14138 | Patch 7.4.2305 |
| 14139 | Problem: Marks, writefile and nested function tests are old style. |
| 14140 | Solution: Turn them into new style tests. (Yegappan Lakshmanan) |
| 14141 | Files: src/testdir/Make_all.mak, src/testdir/test_marks.in, |
| 14142 | src/testdir/test_marks.ok, src/testdir/test_marks.vim, |
| 14143 | src/testdir/test_nested_function.in, |
| 14144 | src/testdir/test_nested_function.ok, |
| 14145 | src/testdir/test_nested_function.vim, |
| 14146 | src/testdir/test_writefile.in, src/testdir/test_writefile.ok, |
| 14147 | src/testdir/test_writefile.vim, src/Makefile |
| 14148 | |
| 14149 | Patch 7.4.2306 |
| 14150 | Problem: Default value for 'langremap' is wrong. |
| 14151 | Solution: Set the right value. (Jürgen Krämer) Add a test. |
| 14152 | Files: src/option.c, src/testdir/test_mapping.vim |
| 14153 | |
| 14154 | Patch 7.4.2307 |
| 14155 | Problem: Several tests are old style. |
| 14156 | Solution: Turn them into new style tests. (Yegappan Lakshmanan) |
| 14157 | Files: src/testdir/Make_all.mak, src/testdir/test102.in, |
| 14158 | src/testdir/test102.ok, src/testdir/test46.in, |
| 14159 | src/testdir/test46.ok, src/testdir/test81.in, |
| 14160 | src/testdir/test81.ok, src/testdir/test_charsearch.in, |
| 14161 | src/testdir/test_charsearch.ok, src/testdir/test_charsearch.vim, |
| 14162 | src/testdir/test_fnameescape.vim, src/testdir/test_substitute.vim, |
| 14163 | src/Makefile |
| 14164 | |
| 14165 | Patch 7.4.2308 (after 7.4.2307) |
| 14166 | Problem: Old charsearch test still listed in Makefile. |
| 14167 | Solution: Remove the line. |
| 14168 | Files: src/testdir/Make_all.mak |
| 14169 | |
| 14170 | Patch 7.4.2309 |
| 14171 | Problem: Crash when doing tabnext in a BufUnload autocmd. (Dominique Pelle) |
| 14172 | Solution: When detecting that the tab page changed, don't just abort but |
| 14173 | delete the window where w_buffer is NULL. |
| 14174 | Files: src/window.c, src/testdir/test_tabpage.vim |
| 14175 | |
| 14176 | Patch 7.4.2310 (after 7.4.2304) |
| 14177 | Problem: Accessing freed memory when a timer does not repeat. |
| 14178 | Solution: Free after removing it. (Dominique Pelle) |
| 14179 | Files: src/ex_cmds2.c |
| 14180 | |
| 14181 | Patch 7.4.2311 |
| 14182 | Problem: Appveyor 64 bit build still using Python 3.4 |
| 14183 | Solution: Switch to Python 3.5. (Ken Takata, closes #1032) |
| 14184 | Files: appveyor.yml, src/appveyor.bat |
| 14185 | |
| 14186 | Patch 7.4.2312 |
| 14187 | Problem: Crash when autocommand moves to another tab. (Dominique Pelle) |
| 14188 | Solution: When navigating to another window halfway the :edit command go |
| 14189 | back to the right window. |
| 14190 | Files: src/buffer.c, src/ex_cmds.c, src/ex_getln.c, src/ex_docmd.c, |
| 14191 | src/window.c, src/proto/ex_getln.pro, src/testdir/test_tabpage.vim |
| 14192 | |
| 14193 | Patch 7.4.2313 |
| 14194 | Problem: Crash when deleting an augroup and listing an autocommand. |
| 14195 | (Dominique Pelle) |
| 14196 | Solution: Make sure deleted_augroup is valid. |
| 14197 | Files: src/fileio.c, src/testdir/test_autocmd.vim |
| 14198 | |
| 14199 | Patch 7.4.2314 |
| 14200 | Problem: No error when deleting an augroup while it's the current one. |
| 14201 | Solution: Disallow deleting an augroup when it's the current one. |
| 14202 | Files: src/fileio.c, src/testdir/test_autocmd.vim |
| 14203 | |
| 14204 | Patch 7.4.2315 |
| 14205 | Problem: Insufficient testing for Normal mode commands. |
| 14206 | Solution: Add a big test. (Christian Brabandt, closes #1029) |
| 14207 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 14208 | src/testdir/test_normal.vim |
| 14209 | |
| 14210 | Patch 7.4.2316 |
| 14211 | Problem: Channel sort test is flaky. |
| 14212 | Solution: Add a check the output has been read. |
| 14213 | Files: src/testdir/test_channel.vim |
| 14214 | |
| 14215 | Patch 7.4.2317 (after 7.4.2315) |
| 14216 | Problem: Normal mode tests fail on MS-Windows. |
| 14217 | Solution: Do some tests only on Unix. Set 'fileformat' to "unix". |
| 14218 | Files: src/testdir/test_normal.vim |
| 14219 | |
| 14220 | Patch 7.4.2318 |
| 14221 | Problem: When 'incsearch' is not set CTRL-T and CTRL-G are not inserted as |
| 14222 | before. |
| 14223 | Solution: Move #ifdef and don't use goto. |
| 14224 | Files: src/ex_getln.c |
| 14225 | |
| 14226 | Patch 7.4.2319 |
| 14227 | Problem: No way for a system wide vimrc to stop loading defaults.vim. |
| 14228 | (Christian Hesse) |
| 14229 | Solution: Bail out of defaults.vim if skip_defaults_vim was set. |
| 14230 | Files: runtime/defaults.vim |
| 14231 | |
| 14232 | Patch 7.4.2320 |
| 14233 | Problem: Redraw problem when using 'incsearch'. |
| 14234 | Solution: Save the current view when deleting characters. (Christian |
| 14235 | Brabandt) Fix that the '" mark is set in the wrong position. Don't |
| 14236 | change the search start when using BS. |
| 14237 | Files: src/ex_getln.c, src/normal.c, src/testdir/test_search.vim |
| 14238 | |
| 14239 | Patch 7.4.2321 |
| 14240 | Problem: When a test is commented out we forget about it. |
| 14241 | Solution: Let a test throw an exception with "Skipped" and list skipped test |
| 14242 | functions. (Christian Brabandt) |
| 14243 | Files: src/testdir/Makefile, src/testdir/runtest.vim, |
| 14244 | src/testdir/test_popup.vim, src/testdir/README.txt |
| 14245 | |
| 14246 | Patch 7.4.2322 |
| 14247 | Problem: Access memory beyond the end of the line. (Dominique Pelle) |
| 14248 | Solution: Adjust the cursor column. |
| 14249 | Files: src/move.c, src/testdir/test_normal.vim |
| 14250 | |
| 14251 | Patch 7.4.2323 |
| 14252 | Problem: Using freed memory when using 'formatexpr'. (Dominique Pelle) |
| 14253 | Solution: Make a copy of 'formatexpr' before evaluating it. |
| 14254 | Files: src/ops.c, src/testdir/test_normal.vim |
| 14255 | |
| 14256 | Patch 7.4.2324 |
| 14257 | Problem: Crash when editing a new buffer and BufUnload autocommand wipes |
| 14258 | out the new buffer. (Norio Takagi) |
| 14259 | Solution: Don't allow wiping out this buffer. (partly by Hirohito Higashi) |
| 14260 | Move old style test13 into test_autocmd. Avoid ml_get error when |
| 14261 | editing a file. |
| 14262 | Files: src/structs.h, src/buffer.c, src/ex_cmds.c, src/ex_docmd.c, |
| 14263 | src/window.c, src/testdir/test13.in, src/testdir/test13.ok, |
| 14264 | src/testdir/test_autocmd.vim, src/testdir/Make_all.mak, |
| 14265 | src/Makefile |
| 14266 | |
| 14267 | Patch 7.4.2325 (after 7.4.2324) |
| 14268 | Problem: Tiny build fails. |
| 14269 | Solution: Add #ifdef. |
| 14270 | Files: src/buffer.c |
| 14271 | |
| 14272 | Patch 7.4.2326 |
| 14273 | Problem: Illegal memory access when Visual selection starts in invalid |
| 14274 | position. (Dominique Pelle) |
| 14275 | Solution: Correct position when needed. |
| 14276 | Files: src/normal.c, src/misc2.c, src/proto/misc2.pro |
| 14277 | |
| 14278 | Patch 7.4.2327 |
| 14279 | Problem: Freeing a variable that is on the stack. |
| 14280 | Solution: Don't free res_tv or err_tv. (Ozaki Kiichi) |
| 14281 | Files: src/channel.c |
| 14282 | |
| 14283 | Patch 7.4.2328 |
| 14284 | Problem: Crash when BufWinLeave autocmd goes to another tab page. (Hirohito |
| 14285 | Higashi) |
| 14286 | Solution: Make close_buffer() go back to the right window. |
| 14287 | Files: src/buffer.c, src/testdir/test_autocmd.vim |
| 14288 | |
| 14289 | Patch 7.4.2329 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 14290 | Problem: Error for min() and max() contains %s. (Nikolai Pavlov) |
Bram Moolenaar | abd468e | 2016-09-08 22:22:43 +0200 | [diff] [blame] | 14291 | Solution: Pass the function name. (closes #1040) |
| 14292 | Files: src/evalfunc.c, src/testdir/test_expr.vim |
| 14293 | |
| 14294 | Patch 7.4.2330 |
| 14295 | Problem: Coverity complains about not checking curwin to be NULL. |
| 14296 | Solution: Use firstwin to avoid the warning. |
| 14297 | Files: src/buffer.c |
| 14298 | |
| 14299 | Patch 7.4.2331 |
| 14300 | Problem: Using CTRL-X CTRL-V to complete a command line from Insert mode |
| 14301 | does not work after entering an expression on the command line. |
| 14302 | Solution: Don't use "ccline" when not actually using a command line. (test |
| 14303 | by Hirohito Higashi) |
| 14304 | Files: src/edit.c, src/ex_getln.c, src/proto/ex_getln.pro, |
| 14305 | src/testdir/test_popup.vim |
| 14306 | |
| 14307 | Patch 7.4.2332 |
| 14308 | Problem: Crash when stop_timer() is called in a callback of a callback. |
| 14309 | Vim hangs when the timer callback uses too much time. |
| 14310 | Solution: Set tr_id to -1 when a timer is to be deleted. Don't keep calling |
| 14311 | callbacks forever. (Ozaki Kiichi) |
| 14312 | Files: src/evalfunc.c, src/ex_cmds2.c, src/structs.h, |
| 14313 | src/proto/ex_cmds2.pro, src/testdir/test_timers.vim |
| 14314 | |
| 14315 | Patch 7.4.2333 |
| 14316 | Problem: Outdated comments in test. |
| 14317 | Solution: Cleanup normal mode test. (Christian Brabandt) |
| 14318 | Files: src/testdir/test_normal.vim |
| 14319 | |
| 14320 | Patch 7.4.2334 |
| 14321 | Problem: On MS-Windows test_getcwd leaves Xtopdir behind. |
| 14322 | Solution: Set 'noswapfile'. (Michael Soyka) |
| 14323 | Files: src/testdir/test_getcwd.in |
| 14324 | |
| 14325 | Patch 7.4.2335 |
| 14326 | Problem: taglist() is slow. (Luc Hermitte) |
| 14327 | Solution: Check for CTRL-C less often when doing a linear search. (closes |
| 14328 | #1044) |
| 14329 | Files: src/tag.c |
| 14330 | |
| 14331 | Patch 7.4.2336 |
| 14332 | Problem: Running normal mode tests leave a couple of files behind. |
| 14333 | (Yegappan Lakshmanan) |
| 14334 | Solution: Delete the files. (Christian Brabandt) |
| 14335 | Files: src/testdir/test_normal.vim |
| 14336 | |
| 14337 | Patch 7.4.2337 |
| 14338 | Problem: taglist() is still slow. (Luc Hermitte) |
| 14339 | Solution: Check for CTRL-C less often when finding duplicates. |
| 14340 | Files: src/tag.c |
| 14341 | |
| 14342 | Patch 7.4.2338 |
| 14343 | Problem: Can't build with small features. (John Marriott) |
| 14344 | Solution: Nearly always define FEAT_TAG_BINS. |
| 14345 | Files: src/feature.h, src/tag.c |
| 14346 | |
| 14347 | Patch 7.4.2339 |
| 14348 | Problem: Tab page test fails when run as fake root. |
| 14349 | Solution: Check 'buftype' instead of 'filetype'. (James McCoy, closes #1042) |
| 14350 | Files: src/testdir/test_tabpage.vim |
| 14351 | |
| 14352 | Patch 7.4.2340 |
| 14353 | Problem: MS-Windows: Building with Ruby uses old version. |
| 14354 | Solution: Update to 2.2.X. Use clearer name for the API version. (Ken |
| 14355 | Takata) |
| 14356 | Files: Makefile, src/INSTALLpc.txt, src/Make_cyg_ming.mak, |
| 14357 | src/Make_mvc.mak, src/bigvim.bat |
| 14358 | |
| 14359 | Patch 7.4.2341 |
| 14360 | Problem: Tiny things. Test doesn't clean up properly. |
| 14361 | Solution: Adjust comment and white space. Restore option value. |
| 14362 | Files: src/ex_cmds.c, src/message.c, src/testdir/test_autocmd.vim |
| 14363 | |
| 14364 | Patch 7.4.2342 |
| 14365 | Problem: Typo in MS-Windows build script. |
| 14366 | Solution: change "w2" to "22". |
| 14367 | Files: src/bigvim.bat |
| 14368 | |
| 14369 | Patch 7.4.2343 |
| 14370 | Problem: Too many old style tests. |
| 14371 | Solution: Turn several into new style tests. (Yegappan Lakshmanan) |
| 14372 | Files: src/testdir/Make_all.mak, src/testdir/test101.in, |
| 14373 | src/testdir/test101.ok, src/testdir/test18.in, |
| 14374 | src/testdir/test18.ok, src/testdir/test2.in, src/testdir/test2.ok, |
| 14375 | src/testdir/test21.in, src/testdir/test21.ok, |
| 14376 | src/testdir/test6.in, src/testdir/test6.ok, |
| 14377 | src/testdir/test_arglist.vim, src/testdir/test_charsearch.vim, |
| 14378 | src/testdir/test_fnameescape.vim, src/testdir/test_gf.vim, |
| 14379 | src/testdir/test_hlsearch.vim, src/testdir/test_smartindent.vim, |
| 14380 | src/testdir/test_tagjump.vim, src/Makefile |
| 14381 | |
| 14382 | Patch 7.4.2344 |
| 14383 | Problem: The "Reading from channel output..." message can be unwanted. |
| 14384 | Appending to a buffer leaves an empty first line behind. |
| 14385 | Solution: Add the "out_msg" and "err_msg" options. Writing the first line |
| 14386 | overwrites the first, empty line. |
| 14387 | Files: src/structs.h, src/channel.c, src/testdir/test_channel.vim, |
| 14388 | runtime/doc/channel.txt |
| 14389 | |
| 14390 | Patch 7.4.2345 (after 7.4.2340) |
| 14391 | Problem: For MinGW RUBY_API_VER_LONG isn't set correctly. Many default |
| 14392 | version numbers are outdated. |
| 14393 | Solution: Set RUBY_API_VER_LONG to RUBY_VER_LONG. Use latest stable releases |
| 14394 | for defaults. (Ken Takata) |
| 14395 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 14396 | |
| 14397 | Patch 7.4.2346 |
| 14398 | Problem: Autocommand test fails when run directly, passes when run as part |
| 14399 | of test_alot. |
| 14400 | Solution: Add command to make the cursor move. Close a tab page. |
| 14401 | Files: src/testdir/test_autocmd.vim |
| 14402 | |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 14403 | Patch 7.4.2347 |
| 14404 | Problem: Crash when closing a buffer while Visual mode is active. |
| 14405 | (Dominique Pelle) |
| 14406 | Solution: Adjust the position before computing the number of lines. |
| 14407 | When closing the current buffer stop Visual mode. |
| 14408 | Files: src/buffer.c, src/normal.c, src/testdir/test_normal.vim |
| 14409 | |
| 14410 | Patch 7.4.2348 |
| 14411 | Problem: Crash on exit when EXITFREE is defined. (Dominique Pelle) |
| 14412 | Solution: Don't access curwin when exiting. |
| 14413 | Files: src/buffer.c |
| 14414 | |
| 14415 | Patch 7.4.2349 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 14416 | Problem: Valgrind reports using uninitialized memory. (Dominique Pelle) |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 14417 | Solution: Check the length before checking for a NUL. |
| 14418 | Files: src/message.c |
| 14419 | |
| 14420 | Patch 7.4.2350 |
| 14421 | Problem: Test 86 and 87 fail with some version of Python. |
| 14422 | Solution: Unify "can't" and "cannot". Unify quotes. |
| 14423 | Files: src/testdir/test86.in, src/testdir/test86.ok, |
| 14424 | src/testdir/test87.in, src/testdir/test87.ok |
| 14425 | |
| 14426 | Patch 7.4.2351 |
| 14427 | Problem: Netbeans test fails when run from unpacked MS-Windows sources. |
| 14428 | Solution: Open README.txt instead of Makefile. |
| 14429 | Files: src/testdir/test_netbeans.py, src/testdir/test_netbeans.vim |
| 14430 | |
| 14431 | Patch 7.4.2352 |
| 14432 | Problem: Netbeans test fails in shadow directory. |
| 14433 | Solution: Also copy README.txt to the shadow directory. |
| 14434 | Files: src/Makefile |
| 14435 | |
| 14436 | Patch 7.4.2353 |
| 14437 | Problem: Not enough test coverage for Normal mode commands. |
| 14438 | Solution: Add more tests. (Christian Brabandt) |
| 14439 | Files: src/testdir/test_normal.vim |
| 14440 | |
| 14441 | Patch 7.4.2354 |
| 14442 | Problem: The example that explains nested backreferences does not work |
| 14443 | properly with the new regexp engine. (Harm te Hennepe) |
| 14444 | Solution: Also save the end position when adding a state. (closes #990) |
| 14445 | Files: src/regexp_nfa.c, src/testdir/test_regexp_latin.vim |
| 14446 | |
| 14447 | Patch 7.4.2355 |
| 14448 | Problem: Regexp fails to match when using "\>\)\?". (Ramel) |
| 14449 | Solution: When a state is already in the list, but addstate_here() is used |
| 14450 | and the existing state comes later, add the new state anyway. |
| 14451 | Files: src/regexp_nfa.c, src/testdir/test_regexp_latin.vim |
| 14452 | |
| 14453 | Patch 7.4.2356 |
| 14454 | Problem: Reading past end of line when using previous substitute pattern. |
| 14455 | (Dominique Pelle) |
| 14456 | Solution: Don't set "pat" only set "searchstr". |
| 14457 | Files: src/search.c, src/testdir/test_search.vim |
| 14458 | |
| 14459 | Patch 7.4.2357 |
| 14460 | Problem: Attempt to read history entry while not initialized. |
| 14461 | Solution: Skip when the index is negative. |
| 14462 | Files: src/ex_getln.c |
| 14463 | |
| 14464 | Patch 7.4.2358 |
Bram Moolenaar | 220adb1 | 2016-09-12 12:17:26 +0200 | [diff] [blame] | 14465 | Problem: Compiler warnings with Solaris Studio when using GTK3. (Danek |
| 14466 | Duvall) |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 14467 | Solution: Define FUNC2GENERIC depending on the system. (Kazunobu Kuriyama) |
| 14468 | Files: src/gui.h, src/gui_beval.c, src/gui_gtk_f.c |
| 14469 | |
Bram Moolenaar | 220adb1 | 2016-09-12 12:17:26 +0200 | [diff] [blame] | 14470 | Patch 7.4.2359 |
| 14471 | Problem: Memory leak in timer_start(). |
| 14472 | Solution: Check the right field to be NULL. |
| 14473 | Files: src/evalfunc.c, src/testdir/test_timers.vim |
| 14474 | |
| 14475 | Patch 7.4.2360 |
| 14476 | Problem: Invalid memory access when formatting. (Dominique Pelle) |
| 14477 | Solution: Make sure cursor line and column are associated. |
| 14478 | Files: src/misc1.c |
| 14479 | |
| 14480 | Patch 7.4.2361 |
| 14481 | Problem: Checking for last_timer_id to overflow is not reliable. (Ozaki |
| 14482 | Kiichi) |
| 14483 | Solution: Check for the number not going up. |
| 14484 | Files: src/ex_cmds2.c |
| 14485 | |
| 14486 | Patch 7.4.2362 |
| 14487 | Problem: Illegal memory access with ":1@". (Dominique Pelle) |
| 14488 | Solution: Correct cursor column after setting the line number. Also avoid |
| 14489 | calling end_visual_mode() when not in Visual mode. |
| 14490 | Files: src/ex_docmd.c, src/buffer.c |
| 14491 | |
| 14492 | Patch 7.4.2363 |
| 14493 | Problem: Superfluous function prototypes. |
| 14494 | Solution: Remove them. |
| 14495 | Files: src/regexp.c |
| 14496 | |
| 14497 | Patch 7.4.2364 |
| 14498 | Problem: Sort test sometimes fails. |
| 14499 | Solution: Add it to the list of flaky tests. |
| 14500 | Files: src/testdir/runtest.vim |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 14501 | |
Bram Moolenaar | 1b01005 | 2016-09-12 12:24:11 +0200 | [diff] [blame] | 14502 | Patch 7.4.2365 |
| 14503 | Problem: Needless line break. Confusing directory name. |
| 14504 | Solution: Remove line break. Prepend "../" to "tools". |
| 14505 | Files: Makefile, src/normal.c |
| 14506 | |
Bram Moolenaar | bb76f24 | 2016-09-12 14:24:39 +0200 | [diff] [blame] | 14507 | Patch 7.4.2366 |
| 14508 | Problem: MS-Windows gvim.exe does not have DirectX support. |
| 14509 | Solution: Add the DIRECTX to the script. |
| 14510 | Files: src/bigvim.bat |
| 14511 | |
| 14512 | Patch 7.4.2367 (after 7.4.2364) |
| 14513 | Problem: Test runner misses a comma. |
| 14514 | Solution: Add the comma. |
| 14515 | Files: src/testdir/runtest.vim |
| 14516 | |
Bram Moolenaar | c0514bf | 2016-11-17 14:50:09 +0100 | [diff] [blame] | 14517 | Patch 8.0.0001 |
| 14518 | Problem: Intro screen still mentions version7. (Paul) |
| 14519 | Solution: Change it to version8. |
| 14520 | Files: src/version.c |
| 14521 | |
| 14522 | Patch 8.0.0002 |
| 14523 | Problem: The netrw plugin does not work. |
| 14524 | Solution: Make it accept version 8.0. |
| 14525 | Files: runtime/autoload/netrw.vim |
| 14526 | |
| 14527 | Patch 8.0.0003 |
| 14528 | Problem: getwinvar() returns wrong Value of boolean and number options, |
| 14529 | especially non big endian systems. (James McCoy) |
| 14530 | Solution: Cast the pointer to long or int. (closes #1060) |
| 14531 | Files: src/option.c, src/testdir/test_bufwintabinfo.vim |
| 14532 | |
| 14533 | Patch 8.0.0004 |
| 14534 | Problem: A string argument for function() that is not a function name |
| 14535 | results in an error message with NULL. (Christian Brabandt) |
| 14536 | Solution: Use the argument for the error message. |
| 14537 | Files: src/evalfunc.c, src/testdir/test_expr.vim |
| 14538 | |
| 14539 | Patch 8.0.0005 |
| 14540 | Problem: Netbeans test fails with Python 3. (Jonathonf) |
| 14541 | Solution: Encode the string before sending it. (closes #1070) |
| 14542 | Files: src/testdir/test_netbeans.py |
| 14543 | |
| 14544 | Patch 8.0.0006 |
| 14545 | Problem: ":lb" is interpreted as ":lbottom" while the documentation says it |
| 14546 | means ":lbuffer". |
| 14547 | Solution: Adjust the order of the commands. (haya14busa, closes #1093) |
| 14548 | Files: src/ex_cmds.h |
| 14549 | |
| 14550 | Patch 8.0.0007 |
| 14551 | Problem: Vim 7.4 is still mentioned in a few places. |
| 14552 | Solution: Update to Vim 8. (Uncle Bill, closes #1094) |
| 14553 | Files: src/INSTALLpc.txt, src/vimtutor, uninstal.txt |
| 14554 | |
| 14555 | Patch 8.0.0008 |
| 14556 | Problem: Popup complete test is disabled. |
| 14557 | Solution: Enable the test and change the assert. (Hirohito Higashi) |
| 14558 | Files: src/testdir/test_popup.vim |
| 14559 | |
| 14560 | Patch 8.0.0009 |
| 14561 | Problem: Unnecessary workaround for AppVeyor. |
| 14562 | Solution: Revert patch 7.4.990. (Christian Brabandt) |
| 14563 | Files: appveyor.yml |
| 14564 | |
| 14565 | Patch 8.0.0010 |
| 14566 | Problem: Crash when editing file that starts with crypt header. (igor2x) |
| 14567 | Solution: Check for length of text. (Christian Brabandt) Add a test. |
| 14568 | Files: src/fileio.c, src/testdir/test_crypt.vim, src/Makefile, |
| 14569 | src/testdir/Make_all.mak |
| 14570 | |
| 14571 | Patch 8.0.0011 |
| 14572 | Problem: On OSX Test_pipe_through_sort_all() sometimes fails. |
| 14573 | Solution: Add the test to the list of flaky tests. |
| 14574 | Files: src/testdir/runtest.vim |
| 14575 | |
| 14576 | Patch 8.0.0012 |
| 14577 | Problem: Typos in comments. |
| 14578 | Solution: Change "its" to "it's". (Matthew Brener, closes #1088) |
| 14579 | Files: src/evalfunc.c, src/main.aap, src/nbdebug.c, src/netbeans.c, |
| 14580 | src/quickfix.c, src/workshop.c, src/wsdebug.c |
| 14581 | |
| 14582 | Patch 8.0.0013 (after 8.0.0011) |
| 14583 | Problem: Missing comma in list. |
| 14584 | Solution: Add the comma. |
| 14585 | Files: src/testdir/runtest.vim |
| 14586 | |
| 14587 | Patch 8.0.0014 |
| 14588 | Problem: Crypt tests are old style. |
| 14589 | Solution: Convert to new style. |
| 14590 | Files: src/testdir/test71.in, src/testdir/test71.ok, |
| 14591 | src/testdir/test71a.in, src/testdir/test_crypt.vim, src/Makefile, |
| 14592 | src/testdir/Make_all.mak |
| 14593 | |
| 14594 | Patch 8.0.0015 |
| 14595 | Problem: Can't tell which part of a channel has "buffered" status. |
| 14596 | Solution: Add an optional argument to ch_status(). Let ch_info() also |
| 14597 | return "buffered" for out_status and err_status. |
| 14598 | Files: src/evalfunc.c, src/channel.c, src/proto/channel.pro, |
| 14599 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 14600 | |
| 14601 | Patch 8.0.0016 (after 8.0.0015) |
| 14602 | Problem: Build fails. |
| 14603 | Solution: Include missing change. |
| 14604 | Files: src/eval.c |
| 14605 | |
| 14606 | Patch 8.0.0017 |
| 14607 | Problem: Cannot get the number of the current quickfix or location list. |
| 14608 | Solution: Use the current list if "nr" in "what" is zero. (Yegappan |
| 14609 | Lakshmanan) Remove debug command from test. |
| 14610 | Files: src/quickfix.c, src/testdir/test_quickfix.vim, |
| 14611 | runtime/doc/eval.txt |
| 14612 | |
| 14613 | Patch 8.0.0018 |
| 14614 | Problem: When using ":sleep" channel input is not handled. |
| 14615 | Solution: When there is a channel check for input also when not in raw mode. |
| 14616 | Check every 100 msec. |
| 14617 | Files: src/channel.c, src/proto/channel.pro, src/ui.c, src/proto/ui.pro, |
| 14618 | src/ex_docmd.c, src/os_amiga.c, src/proto/os_amiga.pro, |
| 14619 | src/os_unix.c, src/proto/os_unix.pro, src/os_win32.c, |
| 14620 | src/proto/os_win32.pro |
| 14621 | |
| 14622 | Patch 8.0.0019 |
| 14623 | Problem: Test_command_count is old style. |
| 14624 | Solution: Turn it into a new style test. (Naruhiko Nishino) |
| 14625 | Use more assert functions. |
| 14626 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_alot.vim, |
| 14627 | src/testdir/test_autocmd.vim, src/testdir/test_command_count.in, |
| 14628 | src/testdir/test_command_count.ok, |
| 14629 | src/testdir/test_command_count.vim |
| 14630 | |
| 14631 | Patch 8.0.0020 |
| 14632 | Problem: The regexp engines are not reentrant. |
| 14633 | Solution: Add regexec_T and save/restore the state when needed. |
| 14634 | Files: src/regexp.c, src/regexp_nfa.c, src/testdir/test_expr.vim, |
| 14635 | runtime/doc/eval.txt, runtime/doc/change.txt |
| 14636 | |
| 14637 | Patch 8.0.0021 |
| 14638 | Problem: In the GUI when redrawing the cursor it may be on the second half |
| 14639 | of a double byte character. |
| 14640 | Solution: Correct the cursor column. (Yasuhiro Matsumoto) |
| 14641 | Files: src/screen.c |
| 14642 | |
| 14643 | Patch 8.0.0022 |
| 14644 | Problem: If a channel in NL mode is missing the NL at the end the remaining |
| 14645 | characters are dropped. |
| 14646 | Solution: When the channel is closed use the remaining text. (Ozaki Kiichi) |
| 14647 | Files: src/channel.c, src/testdir/test_channel.vim |
| 14648 | |
| 14649 | Patch 8.0.0023 |
| 14650 | Problem: "gd" and "gD" may find a match in a comment or string. |
| 14651 | Solution: Ignore matches in comments and strings. (Anton Lindqvist) |
| 14652 | Files: src/normal.c, src/testdir/test_goto.vim |
| 14653 | |
| 14654 | Patch 8.0.0024 |
| 14655 | Problem: When the netbeans channel closes, "DETACH" is put in the output |
| 14656 | part. (Ozaki Kiichi) |
| 14657 | Solution: Write "DETACH" in the socket part. |
| 14658 | Files: src/channel.c, src/testdir/test_netbeans.vim |
| 14659 | |
| 14660 | Patch 8.0.0025 |
| 14661 | Problem: Inconsistent use of spaces vs tabs in gd test. |
| 14662 | Solution: Use tabs. (Anton Lindqvist) |
| 14663 | Files: src/testdir/test_goto.vim |
| 14664 | |
| 14665 | Patch 8.0.0026 |
| 14666 | Problem: Error format with %W, %C and %Z does not work. (Gerd Wachsmuth) |
| 14667 | Solution: Skip code when qf_multiignore is set. (Lcd) |
| 14668 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 14669 | |
| 14670 | Patch 8.0.0027 |
| 14671 | Problem: A channel is closed when reading on stderr or stdout fails, but |
| 14672 | there may still be something to read on another part. |
| 14673 | Solution: Turn ch_to_be_closed into a bitfield. (Ozaki Kiichi) |
| 14674 | Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro, |
| 14675 | src/testdir/test_channel.vim |
| 14676 | |
| 14677 | Patch 8.0.0028 |
| 14678 | Problem: Superfluous semicolons. |
| 14679 | Solution: Remove them. (Ozaki Kiichi) |
| 14680 | Files: src/ex_cmds2.c |
| 14681 | |
| 14682 | Patch 8.0.0029 |
| 14683 | Problem: Code for MS-Windows is complicated because of the exceptions for |
| 14684 | old systems. |
| 14685 | Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata) |
| 14686 | Files: runtime/doc/gui_w32.txt, runtime/doc/os_win32.txt, |
| 14687 | runtime/doc/todo.txt, src/GvimExt/Makefile, src/Make_mvc.mak, |
| 14688 | src/evalfunc.c, src/ex_cmds.c, src/ex_docmd.c, src/gui_w32.c, |
| 14689 | src/if_cscope.c, src/misc1.c, src/misc2.c, src/option.c, |
| 14690 | src/os_mswin.c, src/os_win32.c, src/os_win32.h, |
| 14691 | src/proto/os_mswin.pro, src/proto/os_win32.pro, src/version.c |
| 14692 | |
| 14693 | Patch 8.0.0030 |
| 14694 | Problem: Mouse mode is not automatically detected for tmux. |
| 14695 | Solution: Check for 'term' to be "tmux". (Michael Henry) |
| 14696 | Files: src/os_unix.c |
| 14697 | |
| 14698 | Patch 8.0.0031 |
| 14699 | Problem: After ":bwipeout" 'fileformat' is not set to the right default. |
| 14700 | Solution: Get the default from 'fileformats'. (Mike Williams) |
| 14701 | Files: src/option.c, src/Makefile, src/testdir/test_fileformat.vim, |
| 14702 | src/testdir/test_alot.vim |
| 14703 | |
| 14704 | Patch 8.0.0032 |
| 14705 | Problem: Tests may change the input file when something goes wrong. |
| 14706 | Solution: Avoid writing the input file. |
| 14707 | Files: src/testdir/test51.in, src/testdir/test67.in, |
| 14708 | src/testdir/test97.in, src/testdir/test_tabpage.vim |
| 14709 | |
| 14710 | Patch 8.0.0033 |
| 14711 | Problem: Cannot use overlapping positions with matchaddpos(). |
| 14712 | Solution: Check end of match. (Ozaki Kiichi) Add a test (Hirohito Higashi) |
| 14713 | Files: src/screen.c, src/testdir/test_match.vim |
| 14714 | |
| 14715 | Patch 8.0.0034 |
| 14716 | Problem: No completion for ":messages". |
| 14717 | Solution: Complete "clear" argument. (Hirohito Higashi) |
| 14718 | Files: src/ex_docmd.c, src/ex_getln.c, src/proto/ex_docmd.pro, |
| 14719 | src/testdir/test_cmdline.vim, src/vim.h, |
| 14720 | runtime/doc/eval.txt, runtime/doc/map.txt |
| 14721 | |
| 14722 | Patch 8.0.0035 (after 7.4.2013) |
| 14723 | Problem: Order of matches for 'omnifunc' is messed up. (Danny Su) |
| 14724 | Solution: Do not set compl_curr_match when called from complete_check(). |
| 14725 | (closes #1168) |
| 14726 | Files: src/edit.c, src/evalfunc.c, src/proto/edit.pro, src/search.c, |
| 14727 | src/spell.c, src/tag.c, src/testdir/test76.in, |
| 14728 | src/testdir/test76.ok, src/testdir/test_popup.vim, src/Makefile, |
| 14729 | src/testdir/Make_all.mak |
| 14730 | |
| 14731 | Patch 8.0.0036 |
| 14732 | Problem: Detecting that a job has finished may take a while. |
| 14733 | Solution: Check for a finished job more often (Ozaki Kiichi) |
| 14734 | Files: src/channel.c, src/os_unix.c, src/os_win32.c, |
| 14735 | src/proto/os_unix.pro, src/proto/os_win32.pro, |
| 14736 | src/testdir/test_channel.vim |
| 14737 | |
| 14738 | Patch 8.0.0037 |
| 14739 | Problem: Get E924 when switching tabs. () |
| 14740 | Solution: Use win_valid_any_tab() instead of win_valid(). (Martin Vuille, |
| 14741 | closes #1167, closes #1171) |
| 14742 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 14743 | |
| 14744 | Patch 8.0.0038 |
| 14745 | Problem: OPEN_CHR_FILES not defined for FreeBSD using Debian userland |
| 14746 | files. |
| 14747 | Solution: Check for __FreeBSD_kernel__. (James McCoy, closes #1166) |
| 14748 | Files: src/vim.h |
| 14749 | |
| 14750 | Patch 8.0.0039 |
| 14751 | Problem: When Vim 8 reads an old viminfo and exits, the next time marks are |
| 14752 | not read from viminfo. (Ned Batchelder) |
| 14753 | Solution: Set a mark when it wasn't set before, even when the timestamp is |
| 14754 | zero. (closes #1170) |
| 14755 | Files: src/mark.c, src/testdir/test_viminfo.vim |
| 14756 | |
| 14757 | Patch 8.0.0040 (after 8.0.0033) |
| 14758 | Problem: Whole line highlighting with matchaddpos() does not work. |
| 14759 | Solution: Check for zero length. (Hirohito Higashi) |
| 14760 | Files: src/screen.c, src/testdir/test_match.vim |
| 14761 | |
| 14762 | Patch 8.0.0041 |
| 14763 | Problem: When using Insert mode completion but not actually inserting |
| 14764 | anything an undo item is still created. (Tommy Allen) |
| 14765 | Solution: Do not call stop_arrow() when not inserting anything. |
| 14766 | Files: src/edit.c, src/testdir/test_popup.vim |
| 14767 | |
| 14768 | Patch 8.0.0042 (after 8.0.0041) |
| 14769 | Problem: When using Insert mode completion with 'completeopt' containing |
| 14770 | "noinsert" change is not saved for undo. (Tommy Allen) |
| 14771 | Solution: Call stop_arrow() before inserting for pressing Enter. |
| 14772 | Files: src/edit.c, src/testdir/test_popup.vim |
| 14773 | |
| 14774 | Patch 8.0.0043 (after 8.0.0041) |
| 14775 | Problem: When using Insert mode completion with 'completeopt' containing |
| 14776 | "noinsert" with CTRL-N the change is not saved for undo. (Tommy |
| 14777 | Allen) |
| 14778 | Solution: Call stop_arrow() before inserting for any key. |
| 14779 | Files: src/edit.c, src/testdir/test_popup.vim |
| 14780 | |
| 14781 | Patch 8.0.0044 |
| 14782 | Problem: In diff mode the cursor may end up below the last line, resulting |
| 14783 | in an ml_get error. |
| 14784 | Solution: Check the line to be valid. |
| 14785 | Files: src/move.c, src/diff.c, src/proto/diff.pro, |
| 14786 | src/testdir/test_diffmode.vim |
| 14787 | |
| 14788 | Patch 8.0.0045 |
| 14789 | Problem: Calling job_stop() right after job_start() does not work. |
| 14790 | Solution: Block signals while fork is still busy. (Ozaki Kiichi, closes |
| 14791 | #1155) |
| 14792 | Files: src/auto/configure, src/config.h.in, src/configure.in, |
| 14793 | src/os_unix.c, src/testdir/test_channel.vim |
| 14794 | |
| 14795 | Patch 8.0.0046 |
| 14796 | Problem: Using NUL instead of NULL. |
| 14797 | Solution: Change to NULL. (Dominique Pelle) |
| 14798 | Files: src/ex_cmds.c, src/json.c |
| 14799 | |
| 14800 | Patch 8.0.0047 |
| 14801 | Problem: Crash when using the preview window from an unnamed buffer. |
| 14802 | (lifepillar) |
| 14803 | Solution: Do not clear the wrong buffer. (closes #1200) |
| 14804 | Files: src/popupmnu.c |
| 14805 | |
| 14806 | Patch 8.0.0048 |
| 14807 | Problem: On Windows job_stop() stops cmd.exe, not the processes it runs. |
| 14808 | (Linwei) |
| 14809 | Solution: Iterate over all processes and terminate the one where the parent |
| 14810 | is the job process. (Yasuhiro Matsumoto, closes #1184) |
| 14811 | Files: src/os_win32.c, src/structs.h |
| 14812 | |
| 14813 | Patch 8.0.0049 |
| 14814 | Problem: When a match ends in part of concealed text highlighting, it might |
| 14815 | mess up concealing by resetting prev_syntax_id. |
| 14816 | Solution: Do not reset prev_syntax_id and add a test to verify. (Christian |
| 14817 | Brabandt, closes #1092) |
| 14818 | Files: src/screen.c, src/testdir/test_matchadd_conceal.vim |
| 14819 | |
| 14820 | Patch 8.0.0050 |
| 14821 | Problem: An exiting job is detected with a large latency. |
| 14822 | Solution: Check for pending job more often. (Ozaki Kiichi) Change the |
| 14823 | double loop in mch_inchar() into one. |
| 14824 | Files: src/channel.c, src/os_unix.c, src/testdir/shared.vim, |
| 14825 | src/testdir/test_channel.vim |
| 14826 | |
| 14827 | Patch 8.0.0051 (after 8.0.0048) |
| 14828 | Problem: New code for job_stop() breaks channel test on AppVeyor. |
| 14829 | Solution: Revert the change. |
| 14830 | Files: src/os_win32.c, src/structs.h |
| 14831 | |
| 14832 | Patch 8.0.0052 (after 8.0.0049) |
| 14833 | Problem: Conceal test passes even without the bug fix. |
| 14834 | Solution: Add a redraw command. (Christian Brabandt) |
| 14835 | Files: src/testdir/test_matchadd_conceal.vim |
| 14836 | |
| 14837 | Patch 8.0.0053 (after 8.0.0047) |
| 14838 | Problem: No test for what 8.0.0047 fixes. |
| 14839 | Solution: Add a test. (Hirohito Higashi) |
| 14840 | Files: src/testdir/test_popup.vim |
| 14841 | |
| 14842 | Patch 8.0.0054 (after 8.0.0051) |
| 14843 | Problem: On Windows job_stop() stops cmd.exe, not the processes it runs. |
| 14844 | (Linwei) |
| 14845 | Solution: Iterate over all processes and terminate the one where the parent |
| 14846 | is the job process. Now only when there is no job object. |
| 14847 | (Yasuhiro Matsumoto, closes #1203) |
| 14848 | Files: src/os_win32.c |
| 14849 | |
| 14850 | Patch 8.0.0055 |
| 14851 | Problem: Minor comment and style deficiencies. |
| 14852 | Solution: Update comments and fix style. |
| 14853 | Files: src/buffer.c, src/misc2.c, src/os_unix.c |
| 14854 | |
| 14855 | Patch 8.0.0056 |
| 14856 | Problem: When setting 'filetype' there is no check for a valid name. |
| 14857 | Solution: Only allow valid characters in 'filetype', 'syntax' and 'keymap'. |
| 14858 | Files: src/option.c, src/testdir/test_options.vim |
| 14859 | |
| 14860 | Patch 8.0.0057 (after 8.0.0056) |
| 14861 | Problem: Tests fail without the 'keymap' features. |
| 14862 | Solution: Check for feature in test. |
| 14863 | Files: src/testdir/test_options.vim |
| 14864 | |
| 14865 | Patch 8.0.0058 |
| 14866 | Problem: Positioning of the popup menu is not good. |
| 14867 | Solution: Position it better. (Hirohito Higashi) |
| 14868 | Files: src/popupmnu.c |
| 14869 | |
| 14870 | Patch 8.0.0059 |
| 14871 | Problem: Vim does not build on VMS systems. |
| 14872 | Solution: Various changes for VMS. (Zoltan Arpadffy) |
| 14873 | Files: src/json.c, src/macros.h, src/Make_vms.mms, src/os_unix.c, |
| 14874 | src/os_unix.h, src/os_vms.c, src/os_vms_conf.h, |
| 14875 | src/proto/os_vms.pro, src/testdir/Make_vms.mms |
| 14876 | |
| 14877 | Patch 8.0.0060 |
| 14878 | Problem: When using an Ex command for 'keywordprg' it is escaped as with a |
| 14879 | shell command. (Romain Lafourcade) |
| 14880 | Solution: Escape for an Ex command. (closes #1175) |
| 14881 | Files: src/normal.c, src/testdir/test_normal.vim |
| 14882 | |
| 14883 | Patch 8.0.0061 (after 8.0.0058) |
| 14884 | Problem: Compiler warning for unused variable. |
| 14885 | Solution: Add #ifdef. (John Marriott) |
| 14886 | Files: src/popupmnu.c |
| 14887 | |
| 14888 | Patch 8.0.0062 |
| 14889 | Problem: No digraph for HORIZONTAL ELLIPSIS. |
| 14890 | Solution: Use ",.". (Hans Ginzel, closes #1226) |
| 14891 | Files: src/digraph.c, runtime/doc/digraph.txt |
| 14892 | |
| 14893 | Patch 8.0.0063 |
| 14894 | Problem: Compiler warning for comparing with unsigned. (Zoltan Arpadffy) |
| 14895 | Solution: Change <= to ==. |
| 14896 | Files: src/undo.c |
| 14897 | |
| 14898 | Patch 8.0.0064 (after 8.0.0060) |
| 14899 | Problem: Normal test fails on MS-Windows. |
| 14900 | Solution: Don't try using an illegal file name. |
| 14901 | Files: src/testdir/test_normal.vim |
| 14902 | |
| 14903 | Patch 8.0.0065 (after 8.0.0056) |
| 14904 | Problem: Compiler warning for unused function in tiny build. (Tony |
| 14905 | Mechelynck) |
| 14906 | Solution: Add #ifdef. |
| 14907 | Files: src/option.c |
| 14908 | |
| 14909 | Patch 8.0.0066 |
| 14910 | Problem: when calling an operator function when 'linebreak' is set, it is |
| 14911 | internally reset before calling the operator function. |
| 14912 | Solution: Restore 'linebreak' before calling op_function(). (Christian |
| 14913 | Brabandt) |
| 14914 | Files: src/normal.c, src/testdir/test_normal.vim |
| 14915 | |
| 14916 | Patch 8.0.0067 |
| 14917 | Problem: VMS has a problem with infinity. |
| 14918 | Solution: Avoid an overflow. (Zoltan Arpadffy) |
| 14919 | Files: src/json.c, src/macros.h |
| 14920 | |
| 14921 | Patch 8.0.0068 |
| 14922 | Problem: Checking did_throw after executing autocommands is wrong. (Daniel |
| 14923 | Hahler) |
| 14924 | Solution: Call aborting() instead, and only when autocommands were executed. |
| 14925 | Files: src/quickfix.c, src/if_cscope.c, src/testdir/test_quickfix.vim |
| 14926 | |
| 14927 | Patch 8.0.0069 |
| 14928 | Problem: Compiler warning for self-comparison. |
| 14929 | Solution: Define ONE_WINDOW and add #ifdef. |
| 14930 | Files: src/globals.h, src/buffer.c, src/ex_docmd.c, src/move.c, |
| 14931 | src/screen.c, src/quickfix.c, src/window.c |
| 14932 | |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 14933 | Patch 8.0.0070 |
| 14934 | Problem: Tests referred in Makefile that no longer exist. |
| 14935 | Solution: Remove test71 and test74 entries. (Michael Soyka) |
| 14936 | Files: src/testdir/Mak_ming.mak |
| 14937 | |
| 14938 | Patch 8.0.0071 |
| 14939 | Problem: Exit value from a shell command is wrong. (Hexchain Tong) |
| 14940 | Solution: Do not check for ended jobs while waiting for a shell command. |
| 14941 | (ichizok, closes #1196) |
| 14942 | Files: src/os_unix.c |
| 14943 | |
| 14944 | Patch 8.0.0072 |
| 14945 | Problem: MS-Windows: Crash with long font name. (Henry Hu) |
| 14946 | Solution: Fix comparing with LF_FACESIZE. (Ken Takata, closes #1243) |
| 14947 | Files: src/os_mswin.c |
| 14948 | |
| 14949 | Patch 8.0.0073 (after 8.0.0069) |
| 14950 | Problem: More comparisons between firstwin and lastwin. |
| 14951 | Solution: Use ONE_WINDOW for consistency. (Hirohito Higashi) |
| 14952 | Files: src/buffer.c, src/ex_cmds.c, src/ex_docmd.c, src/option.c, |
| 14953 | src/window.c |
| 14954 | |
| 14955 | Patch 8.0.0074 |
| 14956 | Problem: Cannot make Vim fail on an internal error. |
| 14957 | Solution: Add IEMSG() and IEMSG2(). (Dominique Pelle) Avoid reporting an |
| 14958 | internal error without mentioning where. |
| 14959 | Files: src/globals.h, src/blowfish.c, src/dict.c, src/edit.c, src/eval.c, |
| 14960 | src/evalfunc.c, src/ex_eval.c, src/getchar.c, src/gui_beval.c, |
| 14961 | src/gui_w32.c, src/hangulin.c, src/hashtab.c, src/if_cscope.c, |
| 14962 | src/json.c, src/memfile.c, src/memline.c, src/message.c, |
| 14963 | src/misc2.c, src/option.c, src/quickfix.c, src/regexp.c, |
| 14964 | src/spell.c, src/undo.c, src/userfunc.c, src/vim.h, src/window.c, |
| 14965 | src/proto/misc2.pro, src/proto/message.pro, src/Makefile |
| 14966 | |
| 14967 | Patch 8.0.0075 |
| 14968 | Problem: Using number for exception type lacks type checking. |
| 14969 | Solution: Use an enum. |
| 14970 | Files: src/structs.h, src/ex_docmd.c, src/ex_eval.c, |
| 14971 | src/proto/ex_eval.pro |
| 14972 | |
| 14973 | Patch 8.0.0076 |
| 14974 | Problem: Channel log has double parens ()(). |
| 14975 | Solution: Remove () for write_buf_line. (Yasuhiro Matsumoto) |
| 14976 | Files: src/channel.c |
| 14977 | |
| 14978 | Patch 8.0.0077 |
| 14979 | Problem: The GUI code is not tested by Travis. |
| 14980 | Solution: Install the virtual framebuffer. |
| 14981 | Files: .travis.yml |
| 14982 | |
| 14983 | Patch 8.0.0078 |
| 14984 | Problem: Accessing freed memory in quickfix. |
| 14985 | Solution: Reset pointer when freeing 'errorformat'. (Dominique Pelle) |
| 14986 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 14987 | |
| 14988 | Patch 8.0.0079 |
| 14989 | Problem: Accessing freed memory in quickfix. (Dominique Pelle) |
| 14990 | Solution: Do not free the current list when adding to it. |
| 14991 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 14992 | |
| 14993 | Patch 8.0.0080 |
| 14994 | Problem: The OS X build fails on Travis. |
| 14995 | Solution: Skip the virtual framebuffer on OS X. |
| 14996 | Files: .travis.yml |
| 14997 | |
| 14998 | Patch 8.0.0081 |
| 14999 | Problem: Inconsistent function names. |
| 15000 | Solution: Rename do_cscope to ex_cscope. Clean up comments. |
| 15001 | Files: src/ex_cmds.h, src/if_cscope.c, src/ex_docmd.c, |
| 15002 | src/proto/if_cscope.pro |
| 15003 | |
| 15004 | Patch 8.0.0082 |
| 15005 | Problem: Extension for configure should be ".ac". |
| 15006 | Solution: Rename configure.in to configure.ac. (James McCoy, closes #1173) |
| 15007 | Files: src/configure.in, src/configure.ac, Filelist, src/Makefile, |
| 15008 | src/blowfish.c, src/channel.c, src/config.h.in, src/main.aap, |
| 15009 | src/os_unix.c, src/INSTALL, src/mysign |
| 15010 | |
| 15011 | Patch 8.0.0083 |
| 15012 | Problem: Using freed memory with win_getid(). (Dominique Pelle) |
| 15013 | Solution: For the current tab use curwin. |
| 15014 | Files: src/window.c, src/testdir/test_window_id.vim |
| 15015 | |
| 15016 | Patch 8.0.0084 |
| 15017 | Problem: Using freed memory when adding to a quickfix list. (Dominique |
| 15018 | Pelle) |
| 15019 | Solution: Clear the directory name. |
| 15020 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 15021 | |
| 15022 | Patch 8.0.0085 |
| 15023 | Problem: Using freed memory with recursive function call. (Dominique Pelle) |
| 15024 | Solution: Make a copy of the function name. |
| 15025 | Files: src/eval.c, src/testdir/test_nested_function.vim |
| 15026 | |
| 15027 | Patch 8.0.0086 |
| 15028 | Problem: Cannot add a comment after ":hide". (Norio Takagi) |
| 15029 | Solution: Make it work, add a test. (Hirohito Higashi) |
| 15030 | Files: src/Makefile, src/ex_cmds.h, src/ex_docmd.c, |
| 15031 | src/testdir/Make_all.mak, src/testdir/test_hide.vim |
| 15032 | |
| 15033 | Patch 8.0.0087 |
| 15034 | Problem: When the channel callback gets job info the job may already have |
| 15035 | been deleted. (lifepillar) |
| 15036 | Solution: Do not delete the job when the channel is still useful. (ichizok, |
| 15037 | closes #1242, closes #1245) |
| 15038 | Files: src/channel.c, src/eval.c, src/os_unix.c, src/os_win32.c, |
| 15039 | src/structs.h, src/testdir/test_channel.vim |
| 15040 | |
| 15041 | Patch 8.0.0088 |
| 15042 | Problem: When a test fails in Setup or Teardown the problem is not reported. |
| 15043 | Solution: Add a try/catch. (Hirohito Higashi) |
| 15044 | Files: src/testdir/runtest.vim |
| 15045 | |
| 15046 | Patch 8.0.0089 |
| 15047 | Problem: Various problems with GTK 3.22.2. |
| 15048 | Solution: Fix the problems, add #ifdefs. (Kazunobu Kuriyama) |
| 15049 | Files: src/gui_beval.c, src/gui_gtk.c, src/gui_gtk_x11.c |
| 15050 | |
| 15051 | Patch 8.0.0090 |
| 15052 | Problem: Cursor moved after last character when using 'breakindent'. |
| 15053 | Solution: Fix the cursor positioning. Turn the breakindent test into new |
| 15054 | style. (Christian Brabandt) |
| 15055 | Files: src/screen.c, src/testdir/Make_all.mak, |
| 15056 | src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok, |
| 15057 | src/testdir/test_breakindent.vim, src/Makefile |
| 15058 | |
| 15059 | Patch 8.0.0091 |
| 15060 | Problem: Test_help_complete sometimes fails in MS-Windows console. |
| 15061 | Solution: Use getcompletion() instead of feedkeys() and command line |
| 15062 | completion. (Hirohito Higashi) |
| 15063 | Files: src/testdir/test_help_tagjump.vim |
| 15064 | |
| 15065 | Patch 8.0.0092 |
| 15066 | Problem: C indenting does not support nested namespaces that C++ 17 has. |
| 15067 | Solution: Add check that passes double colon inside a name. (Pauli, closes |
| 15068 | #1214) |
| 15069 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 15070 | |
| 15071 | Patch 8.0.0093 |
| 15072 | Problem: Not using multiprocess build feature. |
| 15073 | Solution: Enable multiprocess build with MSVC 10. (Ken Takata) |
| 15074 | Files: src/Make_mvc.mak |
| 15075 | |
| 15076 | Patch 8.0.0094 |
| 15077 | Problem: When vimrun.exe is not found the error message is not properly |
| 15078 | encoded. |
| 15079 | Solution: Use utf-16 and MessageBoxW(). (Ken Takata) |
| 15080 | Files: src/os_win32.c |
| 15081 | |
| 15082 | Patch 8.0.0095 |
| 15083 | Problem: Problems with GTK 3.22.2 fixed in 3.22.4. |
| 15084 | Solution: Adjust the #ifdefs. (Kazunobu Kuriyama) |
| 15085 | Files: src/gui_gtk_x11.c |
| 15086 | |
| 15087 | Patch 8.0.0096 |
| 15088 | Problem: When the input or output is not a tty Vim appears to hang. |
| 15089 | Solution: Add the --ttyfail argument. Also add the "ttyin" and "ttyout" |
| 15090 | features to be able to check in Vim script. |
| 15091 | Files: src/globals.h, src/structs.h, src/main.c, src/evalfunc.c, |
| 15092 | runtime/doc/starting.txt, runtime/doc/eval.txt |
| 15093 | |
| 15094 | Patch 8.0.0097 |
| 15095 | Problem: When a channel callback consumes a lot of time Vim becomes |
| 15096 | unresponsive. (skywind) |
| 15097 | Solution: Bail out of checking channel readahead after 100 msec. |
| 15098 | Files: src/os_unix.c, src/misc2.c, src/vim.h, src/os_win32.c, |
| 15099 | src/channel.c |
| 15100 | |
| 15101 | Patch 8.0.0098 (after 8.0.0097) |
| 15102 | Problem: Can't build on MS-Windows. |
| 15103 | Solution: Add missing parenthesis. |
| 15104 | Files: src/vim.h |
| 15105 | |
| 15106 | Patch 8.0.0099 |
| 15107 | Problem: Popup menu always appears above the cursor when it is in the lower |
| 15108 | half of the screen. (Matt Gardner) |
| 15109 | Solution: Compute the available space better. (Hirohito Higashi, |
| 15110 | closes #1241) |
| 15111 | Files: src/popupmnu.c |
| 15112 | |
| 15113 | Patch 8.0.0100 |
| 15114 | Problem: Options that are a file name may contain non-filename characters. |
| 15115 | Solution: Check for more invalid characters. |
| 15116 | Files: src/option.c |
| 15117 | |
| 15118 | Patch 8.0.0101 |
| 15119 | Problem: Some options are not strictly checked. |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 15120 | Solution: Add flags for stricter checks. |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 15121 | Files: src/option.c |
| 15122 | |
| 15123 | Patch 8.0.0102 (after 8.0.0101) |
| 15124 | Problem: Cannot set 'dictionary' to a path. |
| 15125 | Solution: Allow for slash and backslash. Add a test (partly by Daisuke |
| 15126 | Suzuki, closes #1279, closes #1284) |
| 15127 | Files: src/option.c, src/testdir/test_options.vim |
| 15128 | |
| 15129 | Patch 8.0.0103 |
| 15130 | Problem: May not process channel readahead. (skywind) |
| 15131 | Solution: If there is readahead don't block on input. |
| 15132 | Files: src/channel.c, src/proto/channel.pro, src/os_unix.c, |
| 15133 | src/os_win32.c, src/misc2.c |
| 15134 | |
| 15135 | Patch 8.0.0104 |
| 15136 | Problem: Value of 'thesaurus' option not checked properly. |
| 15137 | Solution: Add P_NDNAME flag. (Daisuke Suzuki) |
| 15138 | Files: src/option.c, src/testdir/test_options.vim |
| 15139 | |
| 15140 | Patch 8.0.0105 |
| 15141 | Problem: When using ch_read() with zero timeout, can't tell the difference |
| 15142 | between reading an empty line and nothing available. |
| 15143 | Solution: Add ch_canread(). |
| 15144 | Files: src/evalfunc.c, src/channel.c, src/proto/channel.pro, |
| 15145 | src/testdir/test_channel.vim, src/testdir/shared.vim, |
| 15146 | runtime/doc/eval.txt, runtime/doc/channel.txt |
| 15147 | |
| 15148 | Patch 8.0.0106 (after 8.0.0100) |
| 15149 | Problem: Cannot use a semicolon in 'backupext'. (Jeff) |
| 15150 | Solution: Allow for a few more characters when "secure" isn't set. |
| 15151 | Files: src/option.c |
| 15152 | |
| 15153 | Patch 8.0.0107 |
| 15154 | Problem: When reading channel output in a timer, messages may go missing. |
| 15155 | (Skywind) |
| 15156 | Solution: Add the "drop" option. Write error messages in the channel log. |
| 15157 | Don't have ch_canread() check for the channel being open. |
| 15158 | Files: src/structs.h, src/channel.c, src/message.c, src/evalfunc.c, |
| 15159 | src/proto/channel.pro, runtime/doc/channel.txt |
| 15160 | |
| 15161 | Patch 8.0.0108 (after 8.0.0107) |
| 15162 | Problem: The channel "drop" option is not tested. |
| 15163 | Solution: Add a test. |
| 15164 | Files: src/testdir/test_channel.vim |
| 15165 | |
| 15166 | Patch 8.0.0109 |
| 15167 | Problem: Still checking if memcmp() exists while every system should have |
| 15168 | it now. |
| 15169 | Solution: Remove vim_memcmp(). (James McCoy, closes #1295) |
| 15170 | Files: src/config.h.in, src/configure.ac, src/misc2.c, src/os_vms_conf.h, |
| 15171 | src/osdef1.h.in, src/search.c, src/tag.c, src/vim.h |
| 15172 | |
| 15173 | Patch 8.0.0110 |
| 15174 | Problem: Drop command doesn't use existing window. |
| 15175 | Solution: Check the window width properly. (Hirohito Higashi) |
| 15176 | Files: src/buffer.c, src/testdir/test_tabpage.vim |
| 15177 | |
| 15178 | Patch 8.0.0111 |
| 15179 | Problem: The :history command is not tested. |
| 15180 | Solution: Add tests. (Dominique Pelle) |
| 15181 | Files: runtime/doc/cmdline.txt, src/testdir/test_history.vim |
| 15182 | |
| 15183 | Patch 8.0.0112 |
| 15184 | Problem: Tests 92 and 93 are old style. |
| 15185 | Solution: Make test92 and test93 new style. (Hirohito Higashi, closes #1289) |
| 15186 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/Make_vms.mms, |
| 15187 | src/testdir/test92.in, src/testdir/test92.ok, |
| 15188 | src/testdir/test93.in, src/testdir/test93.ok, |
| 15189 | src/testdir/test_mksession.vim, |
| 15190 | src/testdir/test_mksession_utf8.vim |
| 15191 | |
| 15192 | Patch 8.0.0113 |
| 15193 | Problem: MS-Windows: message box to prompt for saving changes may appear on |
| 15194 | the wrong monitor. |
| 15195 | Solution: Adjust the CenterWindow function. (Ken Takata) |
| 15196 | Files: src/gui_w32.c |
| 15197 | |
| 15198 | Patch 8.0.0114 |
| 15199 | Problem: Coding style not optimal. |
| 15200 | Solution: Add spaces. (Ken Takata) |
| 15201 | Files: src/gui_w32.c, src/os_mswin.c |
| 15202 | |
| 15203 | Patch 8.0.0115 |
| 15204 | Problem: When building with Cygwin libwinpthread isn't found. |
| 15205 | Solution: Link winpthread statically. (jmmerz, closes #1255, closes #1256) |
| 15206 | Files: src/Make_cyg_ming.mak |
| 15207 | |
| 15208 | Patch 8.0.0116 |
| 15209 | Problem: When reading English help and using CTRl-] the language from |
| 15210 | 'helplang' is used. |
| 15211 | Solution: Make help tag jumps keep the language. (Tatsuki, test by Hirohito |
| 15212 | Higashi, closes #1249) |
| 15213 | Files: src/tag.c, src/testdir/test_help_tagjump.vim |
| 15214 | |
| 15215 | Patch 8.0.0117 |
| 15216 | Problem: Parallel make fails. (J. Lewis Muir) |
| 15217 | Solution: Make sure the objects directory exists. (closes #1259) |
| 15218 | Files: src/Makefile |
| 15219 | |
| 15220 | Patch 8.0.0118 |
| 15221 | Problem: "make proto" adds extra function prototype. |
| 15222 | Solution: Add #ifdef. |
| 15223 | Files: src/misc2.c |
| 15224 | |
| 15225 | Patch 8.0.0119 |
| 15226 | Problem: No test for using CTRL-R on the command line. |
| 15227 | Solution: Add a test. (Dominique Pelle) And some more. |
| 15228 | Files: src/testdir/test_cmdline.vim |
| 15229 | |
| 15230 | Patch 8.0.0120 |
| 15231 | Problem: Channel test is still flaky on OS X. |
| 15232 | Solution: Set the drop argument to "never". |
| 15233 | Files: src/testdir/test_channel.vim |
| 15234 | |
| 15235 | Patch 8.0.0121 |
| 15236 | Problem: Setting 'cursorline' changes the curswant column. (Daniel Hahler) |
| 15237 | Solution: Add the P_RWINONLY flag. (closes #1297) |
| 15238 | Files: src/option.c, src/testdir/test_goto.vim |
| 15239 | |
| 15240 | Patch 8.0.0122 |
| 15241 | Problem: Channel test is still flaky on OS X. |
| 15242 | Solution: Add a short sleep. |
| 15243 | Files: src/testdir/test_channel.py |
| 15244 | |
| 15245 | Patch 8.0.0123 |
| 15246 | Problem: Modern Sun compilers define "__sun" instead of "sun". |
| 15247 | Solution: Use __sun. (closes #1296) |
| 15248 | Files: src/mbyte.c, src/pty.c, src/os_unixx.h, src/vim.h |
| 15249 | |
| 15250 | Patch 8.0.0124 |
| 15251 | Problem: Internal error for assert_inrange(1, 1). |
| 15252 | Solution: Adjust number of allowed arguments. (Dominique Pelle) |
| 15253 | Files: src/evalfunc.c, src/testdir/test_assert.vim |
| 15254 | |
| 15255 | Patch 8.0.0125 |
| 15256 | Problem: Not enough testing for entering Ex commands. |
| 15257 | Solution: Add test for CTRL-\ e {expr}. (Dominique Pelle) |
| 15258 | Files: src/testdir/test_cmdline.vim |
| 15259 | |
| 15260 | Patch 8.0.0126 |
| 15261 | Problem: Display problem with 'foldcolumn' and a wide character. |
| 15262 | (esiegerman) |
| 15263 | Solution: Don't use "extra" but an allocated buffer. (Christian Brabandt, |
| 15264 | closes #1310) |
| 15265 | Files: src/screen.c, src/testdir/Make_all.mak, src/Makefile, |
| 15266 | src/testdir/test_display.vim |
| 15267 | |
| 15268 | Patch 8.0.0127 |
| 15269 | Problem: Cancelling completion still inserts text when formatting is done |
| 15270 | for 'textwidth'. (lacygoill) |
| 15271 | Solution: Don't format when CTRL-E was typed. (Hirohito Higashi, |
| 15272 | closes #1312) |
| 15273 | Files: src/edit.c, src/testdir/test_popup.vim |
| 15274 | |
| 15275 | Patch 8.0.0128 (after 8.0.0126) |
| 15276 | Problem: Display test fails on MS-Windows. |
| 15277 | Solution: Set 'isprint' to "@". |
| 15278 | Files: src/testdir/test_display.vim |
| 15279 | |
| 15280 | Patch 8.0.0129 |
| 15281 | Problem: Parallel make still doesn't work. (Lewis Muir) |
| 15282 | Solution: Define OBJ_MAIN. |
| 15283 | Files: src/Makefile |
| 15284 | |
| 15285 | Patch 8.0.0130 |
| 15286 | Problem: Configure uses "ushort" while the Vim code doesn't. |
| 15287 | Solution: Use "unsigned short" instead. (Fredrik Fornwall, closes #1314) |
| 15288 | Files: src/configure.ac, src/auto/configure |
| 15289 | |
| 15290 | Patch 8.0.0131 |
| 15291 | Problem: Not enough test coverage for syntax commands. |
| 15292 | Solution: Add more tests. (Dominique Pelle) |
| 15293 | Files: src/testdir/test_syntax.vim |
| 15294 | |
| 15295 | Patch 8.0.0132 (after 8.0.0131) |
| 15296 | Problem: Test fails because of using :finish. |
| 15297 | Solution: Change to return. |
| 15298 | Files: src/testdir/test_syntax.vim |
| 15299 | |
| 15300 | Patch 8.0.0133 |
| 15301 | Problem: "2;'(" causes ml_get errors in an empty buffer. (Dominique Pelle) |
| 15302 | Solution: Check the cursor line earlier. |
| 15303 | Files: src/ex_docmd.c, src/testdir/test_cmdline.vim |
| 15304 | |
| 15305 | Patch 8.0.0134 |
| 15306 | Problem: Null pointer access reported by UBsan. |
| 15307 | Solution: Check curwin->w_buffer is not NULL. (Yegappan Lakshmanan) |
| 15308 | Files: src/ex_cmds.c |
| 15309 | |
| 15310 | Patch 8.0.0135 |
| 15311 | Problem: An address relative to the current line, ":.,+3y", does not work |
| 15312 | properly on a closed fold. (Efraim Yawitz) |
| 15313 | Solution: Correct for including the closed fold. (Christian Brabandt) |
| 15314 | Files: src/ex_docmd.c, src/testdir/test_fold.vim, |
| 15315 | src/testdir/Make_all.mak, src/Makefile |
| 15316 | |
| 15317 | Patch 8.0.0136 |
| 15318 | Problem: When using indent folding and changing indent the wrong fold is |
| 15319 | opened. (Jonathan Fudger) |
| 15320 | Solution: Open the fold under the cursor a bit later. (Christian Brabandt) |
| 15321 | Files: src/ops.c, src/testdir/test_fold.vim |
| 15322 | |
| 15323 | Patch 8.0.0137 |
| 15324 | Problem: When 'maxfuncdepth' is set above 200 the nesting is limited to |
| 15325 | 200. (Brett Stahlman) |
| 15326 | Solution: Allow for Ex command recursion depending on 'maxfuncdepth'. |
| 15327 | Files: src/ex_docmd.c, src/testdir/test_nested_function.vim |
| 15328 | |
| 15329 | Patch 8.0.0138 (after 8.0.0137) |
| 15330 | Problem: Small build fails. |
| 15331 | Solution: Add #ifdef. |
| 15332 | Files: src/ex_docmd.c |
| 15333 | |
| 15334 | Patch 8.0.0139 (after 8.0.0135) |
| 15335 | Problem: Warning for unused argument. |
| 15336 | Solution: Add UNUSED. |
| 15337 | Files: src/ex_docmd.c |
| 15338 | |
| 15339 | Patch 8.0.0140 |
| 15340 | Problem: Pasting inserted text in Visual mode does not work properly. |
| 15341 | (Matthew Malcomson) |
| 15342 | Solution: Stop Visual mode before stuffing the inserted text. (Christian |
| 15343 | Brabandt, from neovim #5709) |
| 15344 | Files: src/ops.c, src/testdir/test_visual.vim |
| 15345 | |
| 15346 | Patch 8.0.0141 (after 8.0.0137) |
| 15347 | Problem: Nested function test fails on AppVeyor. |
| 15348 | Solution: Disable the test on Windows for now. |
| 15349 | Files: src/testdir/test_nested_function.vim |
| 15350 | |
| 15351 | Patch 8.0.0142 |
| 15352 | Problem: Normal colors are wrong with 'termguicolors'. |
| 15353 | Solution: Initialize to INVALCOLOR instead of zero. (Ben Jackson, closes |
| 15354 | #1344) |
| 15355 | Files: src/syntax.c |
| 15356 | |
| 15357 | Patch 8.0.0143 |
| 15358 | Problem: Line number of current buffer in getbufinfo() is wrong. |
| 15359 | Solution: For the current buffer use the current line number. (Ken Takata) |
| 15360 | Files: src/evalfunc.c |
| 15361 | |
| 15362 | Patch 8.0.0144 |
| 15363 | Problem: When using MSVC the GvimExt directory is cleaned twice. |
| 15364 | Solution: Remove the lines. (Ken Takata) |
| 15365 | Files: src/Make_mvc.mak |
| 15366 | |
| 15367 | Patch 8.0.0145 |
| 15368 | Problem: Running tests on MS-Windows is a little bit noisy. |
| 15369 | Solution: Redirect some output to "nul". (Ken Takata) |
| 15370 | Files: src/testdir/Make_dos.mak |
| 15371 | |
| 15372 | Patch 8.0.0146 |
| 15373 | Problem: When using 'termguicolors' on MS-Windows the RGB definition causes |
| 15374 | the colors to be wrong. |
| 15375 | Solution: Undefined RGB and use our own. (Gabriel Barta) |
| 15376 | Files: src/term.c |
| 15377 | |
| 15378 | Patch 8.0.0147 |
| 15379 | Problem: searchpair() does not work when 'magic' is off. (Chris Paul) |
| 15380 | Solution: Add \m in the pattern. (Christian Brabandt, closes #1341) |
| 15381 | Files: src/evalfunc.c, src/testdir/test_search.vim |
| 15382 | |
| 15383 | Patch 8.0.0148 |
| 15384 | Problem: When a C preprocessor statement has two line continuations the |
| 15385 | following line does not have the right indent. (Ken Takata) |
| 15386 | Solution: Add the indent of the previous continuation line. (Hirohito |
| 15387 | Higashi) |
| 15388 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 15389 | |
| 15390 | Patch 8.0.0149 |
| 15391 | Problem: ":earlier" and ":later" do not work after startup or reading the |
| 15392 | undo file. |
| 15393 | Solution: Use absolute time stamps instead of relative to the Vim start |
| 15394 | time. (Christian Brabandt, Pavel Juhas, closes #1300, closes |
| 15395 | #1254) |
| 15396 | Files: src/testdir/test_undo.vim, src/undo.c |
| 15397 | |
| 15398 | Patch 8.0.0150 |
| 15399 | Problem: When the pattern of :filter does not have a separator then |
| 15400 | completion of the command fails. |
| 15401 | Solution: Skip over the pattern. (Ozaki Kiichi, clodes #1299) |
| 15402 | Files: src/ex_docmd.c, src/testdir/test_filter_cmd.vim |
| 15403 | |
| 15404 | Patch 8.0.0151 |
| 15405 | Problem: To pass buffer content to system() and systemlist() one has to |
| 15406 | first create a string or list. |
| 15407 | Solution: Allow passing a buffer number. (LemonBoy, closes #1240) |
| 15408 | Files: runtime/doc/eval.txt, src/Makefile, src/evalfunc.c, |
| 15409 | src/testdir/Make_all.mak, src/testdir/test_system.vim |
| 15410 | |
| 15411 | Patch 8.0.0152 |
| 15412 | Problem: Running the channel test creates channellog. |
| 15413 | Solution: Delete the debug line. |
| 15414 | Files: src/testdir/test_channel.vim |
| 15415 | |
| 15416 | Patch 8.0.0153 (after 8.0.0151) |
| 15417 | Problem: system() test fails on MS-Windows. |
| 15418 | Solution: Deal with extra space and CR. |
| 15419 | Files: src/testdir/test_system.vim |
| 15420 | |
| 15421 | Patch 8.0.0154 (after 8.0.0151) |
| 15422 | Problem: system() test fails on OS/X. |
| 15423 | Solution: Deal with leading spaces. |
| 15424 | Files: src/testdir/test_system.vim |
| 15425 | |
| 15426 | Patch 8.0.0155 |
| 15427 | Problem: When sorting zero elements a NULL pointer is passed to qsort(), |
| 15428 | which ubsan warns for. |
| 15429 | Solution: Don't call qsort() if there are no elements. (Dominique Pelle) |
| 15430 | Files: src/syntax.c |
| 15431 | |
| 15432 | Patch 8.0.0156 |
| 15433 | Problem: Several float functions are not covered by tests. |
| 15434 | Solution: Add float tests. (Dominique Pelle) |
| 15435 | Files: src/Makefile, src/testdir/test_alot.vim, |
| 15436 | src/testdir/test_float_func.vim |
| 15437 | |
| 15438 | Patch 8.0.0157 |
| 15439 | Problem: No command line completion for ":syntax spell" and ":syntax sync". |
| 15440 | Solution: Implement the completion. (Dominique Pelle) |
| 15441 | Files: src/syntax.c, src/testdir/test_syntax.vim |
| 15442 | |
| 15443 | Patch 8.0.0158 (after 8.0.0156) |
| 15444 | Problem: On MS-Windows some float functions return a different value when |
| 15445 | passed unusual values. strtod() doesn't work for "inf" and "nan". |
| 15446 | Solution: Accept both results. Fix str2float() for MS-Windows. Also |
| 15447 | reorder assert function arguments. |
| 15448 | Files: src/testdir/test_float_func.vim, src/eval.c |
| 15449 | |
| 15450 | Patch 8.0.0159 |
| 15451 | Problem: Using a NULL pointer when using feedkeys() to trigger drawing a |
| 15452 | tabline. |
| 15453 | Solution: Skip drawing a tabline if TabPageIdxs is NULL. (Dominique Pelle) |
| 15454 | Also fix recursing into getcmdline() from the cmd window. |
| 15455 | Files: src/screen.c, src/ex_getln.c |
| 15456 | |
| 15457 | Patch 8.0.0160 |
| 15458 | Problem: EMSG() is sometimes used for internal errors. |
| 15459 | Solution: Change them to IEMSG(). (Dominique Pelle) And a few more. |
| 15460 | Files: src/regexp_nfa.c, src/channel.c, src/eval.c |
| 15461 | |
| 15462 | Patch 8.0.0161 (after 8.0.0159) |
| 15463 | Problem: Build fails when using small features. |
| 15464 | Solution: Update #ifdef for using save_ccline. (Hirohito Higashi) |
| 15465 | Files: src/ex_getln.c |
| 15466 | |
| 15467 | Patch 8.0.0162 |
| 15468 | Problem: Build error on Fedora 23 with small features and gnome2. |
| 15469 | Solution: Undefine ngettext(). (Hirohito Higashi) |
| 15470 | Files: src/gui_gtk.c, src/gui_gtk_x11.c |
| 15471 | |
| 15472 | Patch 8.0.0163 |
| 15473 | Problem: Ruby 2.4 no longer supports rb_cFixnum. |
| 15474 | Solution: move rb_cFixnum into an #ifdef. (Kazuki Sakamoto, closes #1365) |
| 15475 | Files: src/if_ruby.c |
| 15476 | |
| 15477 | Patch 8.0.0164 |
| 15478 | Problem: Outdated and misplaced comments. |
| 15479 | Solution: Fix the comments. |
| 15480 | Files: src/charset.c, src/getchar.c, src/list.c, src/misc2.c, |
| 15481 | src/testdir/README.txt |
| 15482 | |
| 15483 | Patch 8.0.0165 |
| 15484 | Problem: Ubsan warns for integer overflow. |
| 15485 | Solution: Swap two conditions. (Dominique Pelle) |
| 15486 | Files: src/regexp_nfa.c |
| 15487 | |
| 15488 | Patch 8.0.0166 |
| 15489 | Problem: JSON with a duplicate key gives an internal error. (Lcd) |
| 15490 | Solution: Give a normal error. Avoid an error when parsing JSON from a |
| 15491 | remote client fails. |
| 15492 | Files: src/evalfunc.c, src/json.c, src/channel.c, |
| 15493 | src/testdir/test_json.vim |
| 15494 | |
| 15495 | Patch 8.0.0167 |
| 15496 | Problem: str2nr() and str2float() do not always work with negative values. |
| 15497 | Solution: Be more flexible about handling signs. (LemonBoy, closes #1332) |
| 15498 | Add more tests. |
| 15499 | Files: src/evalfunc.c, src/testdir/test_float_func.vim, |
| 15500 | src/testdir/test_functions.vim, src/testdir/test_alot.vim, |
| 15501 | src/Makefile |
| 15502 | |
| 15503 | Patch 8.0.0168 |
| 15504 | Problem: Still some float functionality is not covered by tests. |
| 15505 | Solution: Add more tests. (Dominique Pelle, closes #1364) |
| 15506 | Files: src/testdir/test_float_func.vim |
| 15507 | |
| 15508 | Patch 8.0.0169 |
| 15509 | Problem: For complicated string json_decode() may run out of stack space. |
| 15510 | Solution: Change the recursive solution into an iterative solution. |
| 15511 | Files: src/json.c |
| 15512 | |
| 15513 | Patch 8.0.0170 (after 8.0.0169) |
| 15514 | Problem: Channel test fails for using freed memory. |
| 15515 | Solution: Fix memory use in json_decode(). |
| 15516 | Files: src/json.c |
| 15517 | |
| 15518 | Patch 8.0.0171 |
| 15519 | Problem: JS style JSON does not support single quotes. |
| 15520 | Solution: Allow for single quotes. (Yasuhiro Matsumoto, closes #1371) |
| 15521 | Files: src/json.c, src/testdir/test_json.vim, src/json_test.c, |
| 15522 | runtime/doc/eval.txt |
| 15523 | |
| 15524 | Patch 8.0.0172 (after 8.0.0159) |
| 15525 | Problem: The command selected in the command line window is not executed. |
| 15526 | (Andrey Starodubtsev) |
| 15527 | Solution: Save and restore the command line at a lower level. (closes #1370) |
| 15528 | Files: src/ex_getln.c, src/testdir/test_history.vim |
| 15529 | |
| 15530 | Patch 8.0.0173 |
| 15531 | Problem: When compiling with EBCDIC defined the build fails. (Yaroslav |
| 15532 | Kuzmin) |
| 15533 | Solution: Move sortFunctions() to the right file. Avoid warning for |
| 15534 | redefining __SUSV3. |
| 15535 | Files: src/eval.c, src/evalfunc.c, src/os_unixx.h |
| 15536 | |
| 15537 | Patch 8.0.0174 |
| 15538 | Problem: For completion "locale -a" is executed on MS-Windows, even though |
| 15539 | it most likely won't work. |
| 15540 | Solution: Skip executing "locale -a" on MS-Windows. (Ken Takata) |
| 15541 | Files: src/ex_cmds2.c |
| 15542 | |
| 15543 | Patch 8.0.0175 |
| 15544 | Problem: Setting language in gvim on MS-Windows does not work when |
| 15545 | libintl.dll is dynamically linked with msvcrt.dll. |
| 15546 | Solution: Use putenv() from libintl as well. (Ken Takata, closes #1082) |
| 15547 | Files: src/mbyte.c, src/misc1.c, src/os_win32.c, src/proto/os_win32.pro, |
| 15548 | src/vim.h |
| 15549 | |
| 15550 | Patch 8.0.0176 |
| 15551 | Problem: Using :change in between :function and :endfunction fails. |
| 15552 | Solution: Recognize :change inside a function. (ichizok, closes #1374) |
| 15553 | Files: src/userfunc.c, src/testdir/test_viml.vim |
| 15554 | |
| 15555 | Patch 8.0.0177 |
| 15556 | Problem: When opening a buffer on a directory and inside a try/catch then |
| 15557 | the BufEnter event is not triggered. |
| 15558 | Solution: Return NOTDONE from readfile() for a directory and deal with the |
| 15559 | three possible return values. (Justin M. Keyes, closes #1375, |
| 15560 | closes #1353) |
| 15561 | Files: src/buffer.c, src/ex_cmds.c, src/ex_docmd.c, src/fileio.c, |
| 15562 | src/memline.c |
| 15563 | |
| 15564 | Patch 8.0.0178 |
| 15565 | Problem: test_command_count may fail when a previous test interferes, seen |
| 15566 | on MS-Windows. |
| 15567 | Solution: Run it separately. |
| 15568 | Files: src/testdir/test_alot.vim, src/testdir/Make_all.mak |
| 15569 | |
| 15570 | Patch 8.0.0179 |
| 15571 | Problem: 'formatprg' is a global option but the value may depend on the |
| 15572 | type of buffer. (Sung Pae) |
| 15573 | Solution: Make 'formatprg' global-local. (closes #1380) |
| 15574 | Files: src/structs.h, src/option.h, src/option.c, src/normal.c, |
| 15575 | runtime/doc/options.txt, src/testdir/test_normal.vim |
| 15576 | |
| 15577 | Patch 8.0.0180 |
| 15578 | Problem: Error E937 is used both for duplicate key in JSON and for trying |
| 15579 | to delete a buffer that is in use. |
| 15580 | Solution: Rename the JSON error to E938. (Norio Takagi, closes #1376) |
| 15581 | Files: src/json.c, src/testdir/test_json.vim |
| 15582 | |
| 15583 | Patch 8.0.0181 |
| 15584 | Problem: When 'cursorbind' and 'cursorcolumn' are both on, the column |
| 15585 | highlignt in non-current windows is wrong. |
| 15586 | Solution: Add validate_cursor(). (Masanori Misono, closes #1372) |
| 15587 | Files: src/move.c |
| 15588 | |
| 15589 | Patch 8.0.0182 |
| 15590 | Problem: When 'cursorbind' and 'cursorline' are set, but 'cursorcolumn' is |
| 15591 | not, then the cursor line highlighting is not updated. (Hirohito |
| 15592 | Higashi) |
| 15593 | Solution: Call redraw_later() with NOT_VALID. |
| 15594 | Files: src/move.c |
| 15595 | |
| 15596 | Patch 8.0.0183 |
| 15597 | Problem: Ubsan warns for using a pointer that is not aligned. |
| 15598 | Solution: First copy the address. (Yegappan Lakshmanan) |
| 15599 | Files: src/channel.c |
| 15600 | |
| 15601 | Patch 8.0.0184 |
| 15602 | Problem: When in Ex mode and an error is caught by try-catch, Vim still |
| 15603 | exits with a non-zero exit code. |
| 15604 | Solution: Don't set ex_exitval when inside a try-catch. (partly by Christian |
| 15605 | Brabandt) |
| 15606 | Files: src/message.c, src/testdir/test_system.vim |
| 15607 | |
| 15608 | Patch 8.0.0185 (after 8.0.0184) |
| 15609 | Problem: The system() test fails on MS-Windows. |
| 15610 | Solution: Skip the test on MS-Windows. |
| 15611 | Files: src/testdir/test_system.vim |
| 15612 | |
| 15613 | Patch 8.0.0186 |
| 15614 | Problem: The error message from assert_notequal() is confusing. |
| 15615 | Solution: Only mention the expected value. |
| 15616 | Files: src/eval.c, src/testdir/test_assert.vim |
| 15617 | |
| 15618 | Patch 8.0.0187 |
| 15619 | Problem: Building with a new Ruby version fails. |
| 15620 | Solution: Use ruby_sysinit() instead of NtInitialize(). (Tomas Volf, |
| 15621 | closes #1382) |
| 15622 | Files: src/if_ruby.c |
| 15623 | |
| 15624 | Patch 8.0.0188 (after 8.0.0182) |
| 15625 | Problem: Using NOT_VALID for redraw_later() to update the cursor |
| 15626 | line/column highlighting is not efficient. |
| 15627 | Solution: Call validate_cursor() when 'cul' or 'cuc' is set. |
| 15628 | Files: src/move.c |
| 15629 | |
| 15630 | Patch 8.0.0189 |
| 15631 | Problem: There are no tests for the :profile command. |
| 15632 | Solution: Add tests. (Dominique Pelle, closes #1383) |
| 15633 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 15634 | src/testdir/test_profile.vim |
| 15635 | |
| 15636 | Patch 8.0.0190 |
| 15637 | Problem: Detecting duplicate tags uses a slow linear search. |
| 15638 | Solution: Use a much faster hash table solution. (James McCoy, closes #1046) |
| 15639 | But don't add hi_keylen, it makes hash tables 50% bigger. |
| 15640 | Files: src/tag.c |
| 15641 | |
| 15642 | Patch 8.0.0191 (after 8.0.0187) |
| 15643 | Problem: Some systems do not have ruby_sysinit(), causing the build to |
| 15644 | fail. |
| 15645 | Solution: Clean up how ruby_sysinit() and NtInitialize() are used. (Taro |
| 15646 | Muraoka) |
| 15647 | Files: src/if_ruby.c |
| 15648 | |
| 15649 | Patch 8.0.0192 (after 8.0.0190) |
| 15650 | Problem: Build fails with tiny features. |
| 15651 | Solution: Change #ifdef for hash_clear(). Avoid warning for unused |
| 15652 | argument. |
| 15653 | Files: src/hashtab.c, src/if_cscope.c |
| 15654 | |
| 15655 | Patch 8.0.0193 (after 8.0.0188) |
| 15656 | Problem: Accidentally removed #ifdef. |
| 15657 | Solution: Put it back. (Masanori Misono) |
| 15658 | Files: src/move.c |
| 15659 | |
| 15660 | Patch 8.0.0194 (after 8.0.0189) |
| 15661 | Problem: Profile tests fails if total and self time are equal. |
| 15662 | Solution: Make one time optional. |
| 15663 | Files: src/testdir/test_profile.vim |
| 15664 | |
| 15665 | Patch 8.0.0195 (after 8.0.0190) |
| 15666 | Problem: Jumping to a tag that is a static item in the current file fails. |
| 15667 | (Kazunobu Kuriyama) |
| 15668 | Solution: Make sure the first byte of the tag key is not NUL. (Suggested by |
| 15669 | James McCoy, closes #1387) |
| 15670 | Files: src/tag.c, src/testdir/test_tagjump.vim |
| 15671 | |
| 15672 | Patch 8.0.0196 (after 8.0.0194) |
| 15673 | Problem: The test for :profile is slow and does not work on MS-Windows. |
| 15674 | Solution: Use the "-es" argument. (Dominique Pelle) Swap single and double |
| 15675 | quotes for system() |
| 15676 | Files: src/testdir/test_profile.vim |
| 15677 | |
| 15678 | Patch 8.0.0197 |
| 15679 | Problem: On MS-Windows the system() test skips a few parts. |
| 15680 | Solution: Swap single and double quotes for the command. |
| 15681 | Files: src/testdir/test_system.vim |
| 15682 | |
| 15683 | Patch 8.0.0198 |
| 15684 | Problem: Some syntax arguments take effect even after "if 0". (Taylor |
| 15685 | Venable) |
| 15686 | Solution: Properly skip the syntax statements. Make "syn case" and "syn |
| 15687 | conceal" report the current state. Fix that "syn clear" didn't |
| 15688 | reset the conceal flag. Add tests for :syntax skipping properly. |
| 15689 | Files: src/syntax.c, src/testdir/test_syntax.vim |
| 15690 | |
| 15691 | Patch 8.0.0199 |
| 15692 | Problem: Warning for an unused parameter when the libcall feature is |
| 15693 | disabled. Warning for a function type cast when compiling with |
| 15694 | -pedantic. |
| 15695 | Solution: Add UNUSED. Use a different type cast. (Damien Molinier) |
| 15696 | Files: src/evalfunc.c, src/os_unix.c |
| 15697 | |
| 15698 | Patch 8.0.0200 |
| 15699 | Problem: Some syntax arguments are not tested. |
| 15700 | Solution: Add more syntax command tests. |
| 15701 | Files: src/testdir/test_syntax.vim |
| 15702 | |
| 15703 | Patch 8.0.0201 |
| 15704 | Problem: When completing a group name for a highlight or syntax command |
| 15705 | cleared groups are included. |
| 15706 | Solution: Skip groups that have been cleared. |
| 15707 | Files: src/syntax.c, src/testdir/test_syntax.vim |
| 15708 | |
| 15709 | Patch 8.0.0202 |
| 15710 | Problem: No test for invalid syntax group name. |
| 15711 | Solution: Add a test for group name error and warning. |
| 15712 | Files: src/testdir/test_syntax.vim |
| 15713 | |
| 15714 | Patch 8.0.0203 |
| 15715 | Problem: Order of complication flags is sometimes wrong. |
| 15716 | Solution: Put interface-specific flags before ALL_CFLAGS. (idea by Yousong |
| 15717 | Zhou, closes #1100) |
| 15718 | Files: src/Makefile |
| 15719 | |
| 15720 | Patch 8.0.0204 |
| 15721 | Problem: Compiler warns for uninitialized variable. (Tony Mechelynck) |
| 15722 | Solution: When skipping set "id" to -1. |
| 15723 | Files: src/syntax.c |
| 15724 | |
| 15725 | Patch 8.0.0205 |
| 15726 | Problem: After :undojoin some commands don't work properly, such as :redo. |
| 15727 | (Matthew Malcomson) |
| 15728 | Solution: Don't set curbuf->b_u_curhead. (closes #1390) |
| 15729 | Files: src/undo.c, src/testdir/test_undo.vim |
| 15730 | |
| 15731 | Patch 8.0.0206 |
| 15732 | Problem: Test coverage for :retab insufficient. |
| 15733 | Solution: Add test for :retab. (Dominique Pelle, closes #1391) |
| 15734 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_retab.vim |
| 15735 | |
| 15736 | Patch 8.0.0207 |
| 15737 | Problem: Leaking file descriptor when system() cannot find the buffer. |
| 15738 | (Coverity) |
| 15739 | Solution: Close the file descriptor. (Dominique Pelle, closes #1398) |
| 15740 | Files: src/evalfunc.c |
| 15741 | |
| 15742 | Patch 8.0.0208 |
| 15743 | Problem: Internally used commands for CTRL-Z and mouse click end up in |
| 15744 | history. (Matthew Malcomson) |
| 15745 | Solution: Use do_cmdline_cmd() instead of stuffing them in the readahead |
| 15746 | buffer. (James McCoy, closes #1395) |
| 15747 | Files: src/edit.c, src/normal.c |
| 15748 | |
| 15749 | Patch 8.0.0209 |
| 15750 | Problem: When using :substitute with the "c" flag and 'cursorbind' is set |
| 15751 | the cursor is not updated in other windows. |
| 15752 | Solution: Call do_check_cursorbind(). (Masanori Misono) |
| 15753 | Files: src/ex_cmds.c |
| 15754 | |
| 15755 | Patch 8.0.0210 |
| 15756 | Problem: Vim does not support bracketed paste, as implemented by xterm and |
| 15757 | other terminals. |
| 15758 | Solution: Add t_BE, t_BD, t_PS and t_PE. |
| 15759 | Files: src/term.c, src/term.h, src/option.c, src/misc2.c, src/keymap.h, |
| 15760 | src/edit.c, src/normal.c, src/evalfunc.c, src/getchar.c, |
| 15761 | src/vim.h, src/proto/edit.pro, runtime/doc/term.txt |
| 15762 | |
| 15763 | Patch 8.0.0211 (after 8.0.0210) |
| 15764 | Problem: Build fails if the multi-byte feature is disabled. |
| 15765 | Solution: Change #ifdef around ins_char_bytes. |
| 15766 | Files: src/misc1.c |
| 15767 | |
| 15768 | Patch 8.0.0212 |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 15769 | Problem: The buffer used to store a key name theoretically could be too |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 15770 | small. (Coverity) |
| 15771 | Solution: Count all possible modifier characters. Add a check for the |
| 15772 | length just in case. |
| 15773 | Files: src/keymap.h, src/misc2.c |
| 15774 | |
| 15775 | Patch 8.0.0213 |
| 15776 | Problem: The Netbeans "specialKeys" command does not check if the argument |
| 15777 | fits in the buffer. (Coverity) |
| 15778 | Solution: Add a length check. |
| 15779 | Files: src/netbeans.c |
| 15780 | |
| 15781 | Patch 8.0.0214 |
| 15782 | Problem: Leaking memory when syntax cluster id is unknown. (Coverity) |
| 15783 | Solution: Free the memory. |
| 15784 | Files: src/syntax.c |
| 15785 | |
| 15786 | Patch 8.0.0215 |
| 15787 | Problem: When a Cscope line contains CTRL-L a NULL pointer may be used. |
| 15788 | (Coverity) |
| 15789 | Solution: Don't check for an emacs tag in a cscope line. |
| 15790 | Files: src/tag.c |
| 15791 | |
| 15792 | Patch 8.0.0216 |
| 15793 | Problem: When decoding JSON with a JS style object the JSON test may use a |
| 15794 | NULL pointer. (Coverity) |
| 15795 | Solution: Check for a NULL pointer. |
| 15796 | Files: src/json.c, src/json_test.c |
| 15797 | |
| 15798 | Patch 8.0.0217 (after 8.0.0215) |
| 15799 | Problem: Build fails without the cscope feature. |
| 15800 | Solution: Add #ifdef. |
| 15801 | Files: src/tag.c |
| 15802 | |
| 15803 | Patch 8.0.0218 |
| 15804 | Problem: No command line completion for :cexpr, :cgetexpr, :caddexpr, etc. |
| 15805 | Solution: Make completion work. (Yegappan Lakshmanan) Add a test. |
| 15806 | Files: src/ex_docmd.c, src/testdir/test_cmdline.vim |
| 15807 | |
| 15808 | Patch 8.0.0219 |
| 15809 | Problem: Ubsan reports errors for integer overflow. |
| 15810 | Solution: Define macros for minimum and maximum values. Select an |
| 15811 | expression based on the value. (Mike Williams) |
| 15812 | Files: src/charset.c, src/eval.c, src/evalfunc.c, src/structs.h, |
| 15813 | src/testdir/test_viml.vim |
| 15814 | |
| 15815 | Patch 8.0.0220 |
| 15816 | Problem: Completion for :match does not show "none" and other missing |
| 15817 | highlight names. |
| 15818 | Solution: Skip over cleared entries before checking the index to be at the |
| 15819 | end. |
| 15820 | Files: src/syntax.c, src/testdir/test_cmdline.vim |
| 15821 | |
| 15822 | Patch 8.0.0221 |
| 15823 | Problem: Checking if PROTO is defined inside a function has no effect. |
| 15824 | Solution: Remove the check for PROTO. (Hirohito Higashi) |
| 15825 | Files: src/misc1.c |
| 15826 | |
| 15827 | Patch 8.0.0222 |
| 15828 | Problem: When a multi-byte character ends in a zero byte, putting blockwise |
| 15829 | text puts it before the character instead of after it. |
| 15830 | Solution: Use int instead of char for the character under the cursor. |
| 15831 | (Luchr, closes #1403) Add a test. |
| 15832 | Files: src/ops.c, src/testdir/test_put.vim, src/Makefile, |
| 15833 | src/testdir/test_alot.vim |
| 15834 | |
| 15835 | Patch 8.0.0223 |
| 15836 | Problem: Coverity gets confused by the flags passed to find_tags() and |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 15837 | warns about uninitialized variable. |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 15838 | Solution: Disallow using cscope and help tags at the same time. |
| 15839 | Files: src/tag.c |
| 15840 | |
| 15841 | Patch 8.0.0224 |
| 15842 | Problem: When 'fileformats' is changed in a BufReadPre auto command, it |
| 15843 | does not take effect in readfile(). (Gary Johnson) |
| 15844 | Solution: Check the value of 'fileformats' after executing auto commands. |
| 15845 | (Christian Brabandt) |
| 15846 | Files: src/fileio.c, src/testdir/test_fileformat.vim |
| 15847 | |
| 15848 | Patch 8.0.0225 |
| 15849 | Problem: When a block is visually selected and put is used on the end of |
| 15850 | the selection only one line is changed. |
| 15851 | Solution: Check for the end properly. (Christian Brabandt, neovim issue |
| 15852 | 5781) |
| 15853 | Files: src/ops.c, src/testdir/test_put.vim |
| 15854 | |
| 15855 | Patch 8.0.0226 |
| 15856 | Problem: The test for patch 8.0.0224 misses the CR characters and passes |
| 15857 | even without the fix. (Christian Brabandt) |
| 15858 | Solution: Use double quotes and \<CR>. |
| 15859 | Files: src/testidr/test_fileformat.vim |
| 15860 | |
| 15861 | Patch 8.0.0227 |
| 15862 | Problem: Crash when 'fileformat' is forced to "dos" and the first line in |
| 15863 | the file is empty and does not have a CR character. |
| 15864 | Solution: Don't check for CR before the start of the buffer. |
| 15865 | Files: src/fileio.c, src/testidr/test_fileformat.vim |
| 15866 | |
| 15867 | Patch 8.0.0228 (after 8.0.0210) |
| 15868 | Problem: When pasting test in an xterm on the command line it is surrounded |
| 15869 | by <PasteStart> and <PasteEnd>. (Johannes Kaltenbach) |
| 15870 | Solution: Add missing changes. |
| 15871 | Files: src/ex_getln.c, src/term.c |
| 15872 | |
| 15873 | Patch 8.0.0229 (after 8.0.0179) |
| 15874 | Problem: When freeing a buffer the local value of the 'formatprg' option is |
| 15875 | not cleared. |
| 15876 | Solution: Add missing change. |
| 15877 | Files: src/buffer.c |
| 15878 | |
| 15879 | Patch 8.0.0230 (after 8.0.0210) |
| 15880 | Problem: When using bracketed paste line breaks are not respected. |
| 15881 | Solution: Turn CR characters into a line break if the text is being |
| 15882 | inserted. (closes #1404) |
| 15883 | Files: src/edit.c |
| 15884 | |
| 15885 | Patch 8.0.0231 |
| 15886 | Problem: There are no tests for bracketed paste mode. |
| 15887 | Solution: Add a test. Fix repeating with "normal .". |
| 15888 | Files: src/edit.c, src/testdir/test_paste.vim, src/Makefile, |
| 15889 | src/testdir/Make_all.mak |
| 15890 | |
| 15891 | Patch 8.0.0232 |
| 15892 | Problem: Pasting in Insert mode does not work when bracketed paste is used |
| 15893 | and 'esckeys' is off. |
| 15894 | Solution: When 'esckeys' is off disable bracketed paste in Insert mode. |
| 15895 | Files: src/edit.c |
| 15896 | |
| 15897 | Patch 8.0.0233 (after 8.0.0231) |
| 15898 | Problem: The paste test fails if the GUI is being used. |
| 15899 | Solution: Skip the test in the GUI. |
| 15900 | Files: src/testdir/test_paste.vim |
| 15901 | |
| 15902 | Patch 8.0.0234 (after 8.0.0225) |
| 15903 | Problem: When several lines are visually selected and one of them is short, |
| 15904 | using put may cause a crash. (Axel Bender) |
| 15905 | Solution: Check for a short line. (Christian Brabandt) |
| 15906 | Files: src/ops.c, src/testdir/test_put.vim |
| 15907 | |
| 15908 | Patch 8.0.0235 |
| 15909 | Problem: Memory leak detected when running tests for diff mode. |
| 15910 | Solution: Free p_extra_free. |
| 15911 | Files: src/screen.c |
| 15912 | |
| 15913 | Patch 8.0.0236 (after 8.0.0234) |
| 15914 | Problem: Gcc complains that a variable may be used uninitialized. Confusion |
| 15915 | between variable and label name. (John Marriott) |
| 15916 | Solution: Initialize it. Rename end to end_lnum. |
| 15917 | Files: src/ops.c |
| 15918 | |
| 15919 | Patch 8.0.0237 |
| 15920 | Problem: When setting wildoptions=tagfile the completion context is not set |
| 15921 | correctly. (desjardins) |
| 15922 | Solution: Check for EXPAND_TAGS_LISTFILES. (Christian Brabandt, closes #1399) |
| 15923 | Files: src/ex_getln.c, src/testdir/test_cmdline.vim |
| 15924 | |
| 15925 | Patch 8.0.0238 |
| 15926 | Problem: When using bracketed paste autoindent causes indent to be |
| 15927 | increased. |
| 15928 | Solution: Disable 'ai' and set 'paste' temporarily. (Ken Takata) |
| 15929 | Files: src/edit.c, src/testdir/test_paste.vim |
| 15930 | |
| 15931 | Patch 8.0.0239 |
| 15932 | Problem: The address sanitizer sometimes finds errors, but it needs to be |
| 15933 | run manually. |
| 15934 | Solution: Add an environment to Travis with clang and the address sanitizer. |
| 15935 | (Christian Brabandt) Also include changes only on github. |
| 15936 | Files: .travis.yml |
| 15937 | |
| 15938 | Patch 8.0.0240 (after 8.0.0239) |
| 15939 | Problem: The clang build on CI fails with one configuration. |
| 15940 | Solution: Redo a previous patch that was accidentally reverted. |
| 15941 | Files: .travis.yml |
| 15942 | |
| 15943 | Patch 8.0.0241 |
| 15944 | Problem: Vim defines a mch_memmove() function but it doesn't work, thus is |
| 15945 | always unused. |
| 15946 | Solution: Remove the mch_memmove implementation. (suggested by Dominique |
| 15947 | Pelle) |
| 15948 | Files: src/os_unix.h, src/misc2.c, src/vim.h |
| 15949 | |
| 15950 | Patch 8.0.0242 |
| 15951 | Problem: Completion of user defined functions is not covered by tests. |
| 15952 | Solution: Add tests. Also test various errors of user-defined commands. |
| 15953 | (Dominique Pelle, closes #1413) |
| 15954 | Files: src/testdir/test_usercommands.vim |
| 15955 | |
| 15956 | Patch 8.0.0243 |
| 15957 | Problem: When making a character lower case with tolower() changes the byte |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 15958 | count, it is not made lower case. |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 15959 | Solution: Add strlow_save(). (Dominique Pelle, closes #1406) |
| 15960 | Files: src/evalfunc.c, src/misc2.c, src/proto/misc2.pro, |
| 15961 | src/testdir/test_functions.vim |
| 15962 | |
| 15963 | Patch 8.0.0244 |
| 15964 | Problem: When the user sets t_BE empty after startup to disable bracketed |
| 15965 | paste, this has no direct effect. |
| 15966 | Solution: When t_BE is made empty write t_BD. When t_BE is made non-empty |
| 15967 | write the new value. |
| 15968 | Files: src/option.c |
| 15969 | |
| 15970 | Patch 8.0.0245 |
| 15971 | Problem: The generated zh_CN.cp936.po message file is not encoded properly. |
| 15972 | Solution: Instead of using zh_CN.po as input, use zh_CN.UTF-8.po. |
| 15973 | Files: src/po/Makefile |
| 15974 | |
| 15975 | Patch 8.0.0246 |
| 15976 | Problem: Compiler warnings for int to pointer conversion. |
| 15977 | Solution: Fix macro for mch_memmove(). (John Marriott) |
| 15978 | Files: src/vim.h |
| 15979 | |
| 15980 | Patch 8.0.0247 |
| 15981 | Problem: Under some circumstances, one needs to type Ctrl-N or Ctrl-P twice |
| 15982 | to have a menu entry selected. (Lifepillar) |
| 15983 | Solution: call ins_compl_free(). (Christian Brabandt, closes #1411) |
| 15984 | Files: src/edit.c, src/testdir/test_popup.vim |
| 15985 | |
| 15986 | Patch 8.0.0248 |
| 15987 | Problem: vim_strcat() cannot handle overlapping arguments. |
| 15988 | Solution: Use mch_memmove() instead of strcpy(). (Justin M Keyes, |
| 15989 | closes #1415) |
| 15990 | Files: src/misc2.c |
| 15991 | |
| 15992 | Patch 8.0.0249 |
| 15993 | Problem: When two submits happen quick after each other, the tests for the |
| 15994 | first one may error out. |
| 15995 | Solution: Use a git depth of 10 instead of 1. (Christian Brabandt) |
| 15996 | Files: .travis.yml |
| 15997 | |
| 15998 | Patch 8.0.0250 |
| 15999 | Problem: When virtcol() gets a column that is not the first byte of a |
| 16000 | multi-byte character the result is unpredictable. (Christian |
| 16001 | Ludwig) |
| 16002 | Solution: Correct the column to the first byte of a multi-byte character. |
| 16003 | Change the utf-8 test to new style. |
| 16004 | Files: src/charset.c, src/testdir/test_utf8.in, src/testdir/test_utf8.ok, |
| 16005 | src/testdir/test_utf8.vim, src/Makefile, src/testdir/Make_all.mak, |
| 16006 | src/testdir/test_alot_utf8.vim |
| 16007 | |
| 16008 | Patch 8.0.0251 |
| 16009 | Problem: It is not so easy to write a script that works with both Python 2 |
| 16010 | and Python 3, even when the Python code works with both. |
| 16011 | Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata) |
| 16012 | Files: Filelist, runtime/doc/eval.txt, runtime/doc/if_pyth.txt, |
| 16013 | runtime/doc/index.txt, runtime/doc/options.txt, |
| 16014 | runtime/optwin.vim, runtime/doc/quickref.txt, |
| 16015 | runtime/doc/usr_41.txt, src/Makefile, src/evalfunc.c, |
| 16016 | src/ex_cmds.h, src/ex_cmds2.c, src/ex_docmd.c, src/if_python.c, |
| 16017 | src/if_python3.c, src/option.c, src/option.h, |
| 16018 | src/proto/ex_cmds2.pro, src/testdir/Make_all.mak, |
| 16019 | src/testdir/pyxfile/py2_magic.py, |
| 16020 | src/testdir/pyxfile/py2_shebang.py, |
| 16021 | src/testdir/pyxfile/py3_magic.py, |
| 16022 | src/testdir/pyxfile/py3_shebang.py, src/testdir/pyxfile/pyx.py, |
| 16023 | src/testdir/test_pyx2.vim, src/testdir/test_pyx3.vim |
| 16024 | src/userfunc.c |
| 16025 | |
| 16026 | Patch 8.0.0252 |
| 16027 | Problem: Characters below 256 that are not one byte are not always |
| 16028 | recognized as word characters. |
| 16029 | Solution: Make vim_iswordc() and vim_iswordp() work the same way. Add a test |
| 16030 | for this. (Ozaki Kiichi) |
| 16031 | Files: src/Makefile, src/charset.c, src/kword_test.c, src/mbyte.c, |
| 16032 | src/proto/mbyte.pro |
| 16033 | |
| 16034 | Patch 8.0.0253 |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 16035 | Problem: When creating a session when 'winminheight' is 2 or larger and |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 16036 | loading that session gives an error. |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 16037 | Solution: Also set 'winminheight' before setting 'winheight' to 1. (Rafael |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 16038 | Bodill, neovim #5717) |
| 16039 | Files: src/ex_docmd.c, src/testdir/test_mksession.vim |
| 16040 | |
| 16041 | Patch 8.0.0254 |
| 16042 | Problem: When using an assert function one can either specify a message or |
| 16043 | get a message about what failed, not both. |
| 16044 | Solution: Concatenate the error with the message. |
| 16045 | Files: src/eval.c, src/testdir/test_assert.vim |
| 16046 | |
| 16047 | Patch 8.0.0255 |
| 16048 | Problem: When calling setpos() with a buffer argument it often is ignored. |
| 16049 | (Matthew Malcomson) |
| 16050 | Solution: Make the buffer argument work for all marks local to a buffer. |
| 16051 | (neovim #5713) Add more tests. |
| 16052 | Files: src/mark.c, src/testdir/test_marks.vim, runtime/doc/eval.txt |
| 16053 | |
| 16054 | Patch 8.0.0256 (after 8.0.0255) |
| 16055 | Problem: Tests fail because some changes were not included. |
| 16056 | Solution: Add changes to evalfunc.c |
| 16057 | Files: src/evalfunc.c |
| 16058 | |
| 16059 | Patch 8.0.0257 (after 8.0.0252) |
| 16060 | Problem: The keyword test file is not included in the archive. |
| 16061 | Solution: Update the list of files. |
| 16062 | Files: Filelist |
| 16063 | |
| 16064 | Patch 8.0.0258 (after 8.0.0253) |
| 16065 | Problem: mksession test leaves file behind. |
| 16066 | Solution: Delete the file. Rename files to start with "X". |
| 16067 | Files: src/testdir/test_mksession.vim |
| 16068 | |
| 16069 | Patch 8.0.0259 |
| 16070 | Problem: Tab commands do not handle count correctly. (Ken Hamada) |
| 16071 | Solution: Add ADDR_TABS_RELATIVE. (Hirohito Higashi) |
| 16072 | Files: runtime/doc/tabpage.txt, src/ex_cmds.h, src/ex_docmd.c, |
| 16073 | src/testdir/test_tabpage.vim |
| 16074 | |
| 16075 | Patch 8.0.0260 |
| 16076 | Problem: Build fails with tiny features. |
| 16077 | Solution: Move get_tabpage_arg() inside #ifdef. |
| 16078 | Files: src/ex_docmd.c |
| 16079 | |
| 16080 | Patch 8.0.0261 |
| 16081 | Problem: Not enough test coverage for eval functions. |
| 16082 | Solution: Add more tests. (Dominique Pelle, closes #1420) |
| 16083 | Files: src/testdir/test_functions.vim |
| 16084 | |
| 16085 | Patch 8.0.0262 |
| 16086 | Problem: Farsi support is barely tested. |
| 16087 | Solution: Add more tests for Farsi. Clean up the code. |
| 16088 | Files: src/edit.c, src/farsi.c, src/testdir/test_farsi.vim |
| 16089 | |
| 16090 | Patch 8.0.0263 |
| 16091 | Problem: Farsi support is not tested enough. |
| 16092 | Solution: Add more tests for Farsi. Clean up the code. |
| 16093 | Files: src/farsi.c, src/testdir/test_farsi.vim |
| 16094 | |
| 16095 | Patch 8.0.0264 |
| 16096 | Problem: Memory error reported by ubsan, probably for using the string |
| 16097 | returned by execute(). |
| 16098 | Solution: NUL terminate the result of execute(). |
| 16099 | Files: src/evalfunc.c |
| 16100 | |
| 16101 | Patch 8.0.0265 |
| 16102 | Problem: May get ml_get error when :pydo deletes lines or switches to |
| 16103 | another buffer. (Nikolai Pavlov, issue #1421) |
| 16104 | Solution: Check the buffer and line every time. |
| 16105 | Files: src/if_py_both.h, src/testdir/test_python2.vim, |
| 16106 | src/testdir/test_python3.vim, src/Makefile, |
| 16107 | src/testdir/Make_all.mak |
| 16108 | |
| 16109 | Patch 8.0.0266 |
| 16110 | Problem: Compiler warning for using uninitialized variable. |
| 16111 | Solution: Set tab_number also when there is an error. |
| 16112 | Files: src/ex_docmd.c |
| 16113 | |
| 16114 | Patch 8.0.0267 |
| 16115 | Problem: A channel test sometimes fails on Mac. |
| 16116 | Solution: Add the test to the list of flaky tests. |
| 16117 | Files: src/testdir/runtest.vim |
| 16118 | |
| 16119 | Patch 8.0.0268 |
| 16120 | Problem: May get ml_get error when :luado deletes lines or switches to |
| 16121 | another buffer. (Nikolai Pavlov, issue #1421) |
| 16122 | Solution: Check the buffer and line every time. |
| 16123 | Files: src/if_lua.c, src/testdir/test_lua.vim, src/Makefile, |
| 16124 | src/testdir/Make_all.mak |
| 16125 | |
| 16126 | Patch 8.0.0269 |
| 16127 | Problem: May get ml_get error when :perldo deletes lines or switches to |
| 16128 | another buffer. (Nikolai Pavlov, issue #1421) |
| 16129 | Solution: Check the buffer and line every time. |
| 16130 | Files: src/if_perl.xs, src/testdir/test_perl.vim |
| 16131 | |
| 16132 | Patch 8.0.0270 |
| 16133 | Problem: May get ml_get error when :rubydo deletes lines or switches to |
| 16134 | another buffer. (Nikolai Pavlov, issue #1421) |
| 16135 | Solution: Check the buffer and line every time. |
| 16136 | Files: src/if_ruby.c, src/testdir/test_ruby.vim |
| 16137 | |
| 16138 | Patch 8.0.0271 |
| 16139 | Problem: May get ml_get error when :tcldo deletes lines or switches to |
| 16140 | another buffer. (Nikolai Pavlov, closes #1421) |
| 16141 | Solution: Check the buffer and line every time. |
| 16142 | Files: src/if_tcl.c, src/testdir/test_tcl.vim, src/Makefile, |
| 16143 | src/testdir/Make_all.mak |
| 16144 | |
| 16145 | Patch 8.0.0272 |
| 16146 | Problem: Crash on exit is not detected when running tests. |
| 16147 | Solution: Remove the dash before the command. (Dominique Pelle, closes |
| 16148 | #1425) |
| 16149 | Files: src/testdir/Makefile |
| 16150 | |
| 16151 | Patch 8.0.0273 |
| 16152 | Problem: Dead code detected by Coverity when not using gnome. |
| 16153 | Solution: Rearrange the #ifdefs to avoid dead code. |
| 16154 | Files: src/gui_gtk_x11.c |
| 16155 | |
| 16156 | Patch 8.0.0274 |
| 16157 | Problem: When update_single_line() is called recursively, or another screen |
| 16158 | update happens while it is busy, errors may occur. |
| 16159 | Solution: Check and update updating_screen. (Christian Brabandt) |
| 16160 | Files: src/screen.c |
| 16161 | |
| 16162 | Patch 8.0.0275 |
| 16163 | Problem: When checking for CTRL-C typed the GUI may detect a screen resize |
| 16164 | and redraw the screen, causing trouble. |
| 16165 | Solution: Set updating_screen in ui_breakcheck(). |
| 16166 | Files: src/ui.c |
| 16167 | |
| 16168 | Patch 8.0.0276 |
| 16169 | Problem: Checking for FEAT_GUI_GNOME inside GTK 3 code is unnecessary. |
| 16170 | Solution: Remove the #ifdef. (Kazunobu Kuriyama) |
| 16171 | Files: src/gui_gtk_x11.c |
| 16172 | |
| 16173 | Patch 8.0.0277 |
| 16174 | Problem: The GUI test may trigger fontconfig and take a long time. |
| 16175 | Solution: Set $XDG_CACHE_HOME. (Kazunobu Kuriyama) |
| 16176 | Files: src/testdir/unix.vim, src/testdir/test_gui.vim |
| 16177 | |
| 16178 | Patch 8.0.0278 (after 8.0.0277) |
| 16179 | Problem: GUI test fails on MS-Windows. |
| 16180 | Solution: Check that tester_HOME exists. |
| 16181 | Files: src/testdir/test_gui.vim |
| 16182 | |
| 16183 | Patch 8.0.0279 |
| 16184 | Problem: With MSVC 2015 the dll name is vcruntime140.dll. |
| 16185 | Solution: Check the MSVC version and use the right dll name. (Ken Takata) |
| 16186 | Files: src/Make_mvc.mak |
| 16187 | |
| 16188 | Patch 8.0.0280 |
| 16189 | Problem: On MS-Windows setting an environment variable with multi-byte |
| 16190 | strings does not work well. |
| 16191 | Solution: Use wputenv when possible. (Taro Muraoka, Ken Takata) |
| 16192 | Files: src/misc1.c, src/os_win32.c, src/os_win32.h, |
| 16193 | src/proto/os_win32.pro, src/vim.h |
| 16194 | |
| 16195 | Patch 8.0.0281 |
| 16196 | Problem: MS-Windows files are still using ARGSUSED while most other files |
| 16197 | have UNUSED. |
| 16198 | Solution: Change ARGSUSED to UNUSED or delete it. |
| 16199 | Files: src/os_win32.c, src/gui_w32.c, src/os_mswin.c, src/os_w32exe.c, |
| 16200 | src/winclip.c |
| 16201 | |
| 16202 | Patch 8.0.0282 |
| 16203 | Problem: When doing a Visual selection and using "I" to go to insert mode, |
| 16204 | CTRL-O needs to be used twice to go to Normal mode. (Coacher) |
| 16205 | Solution: Check for the return value of edit(). (Christian Brabandt, |
| 16206 | closes #1290) |
| 16207 | Files: src/normal.c, src/ops.c |
| 16208 | |
| 16209 | Patch 8.0.0283 |
| 16210 | Problem: The return value of mode() does not indicate that completion is |
| 16211 | active in Replace and Insert mode. (Zhen-Huan (Kenny) Hu) |
| 16212 | Solution: Add "c" or "x" for two kinds of completion. (Yegappan Lakshmanan, |
| 16213 | closes #1397) Test some more modes. |
| 16214 | Files: runtime/doc/eval.txt, src/evalfunc.c, |
| 16215 | src/testdir/test_functions.vim, src/testdir/test_mapping.vim |
| 16216 | |
| 16217 | Patch 8.0.0284 |
| 16218 | Problem: The Test_collapse_buffers() test failed once, looks like it is |
| 16219 | flaky. |
| 16220 | Solution: Add it to the list of flaky tests. |
| 16221 | Files: src/testdir/runtest.vim |
| 16222 | |
| 16223 | Patch 8.0.0285 (after 8.0.0277) |
| 16224 | Problem: Tests fail with tiny build on Unix. |
| 16225 | Solution: Only set g:tester_HOME when build with the +eval feature. |
| 16226 | Files: src/testdir/unix.vim |
| 16227 | |
| 16228 | Patch 8.0.0286 |
| 16229 | Problem: When concealing is active and the screen is resized in the GUI it |
| 16230 | is not immediately redrawn. |
| 16231 | Solution: Use update_prepare() and update_finish() from |
| 16232 | update_single_line(). |
| 16233 | Files: src/screen.c |
| 16234 | |
| 16235 | Patch 8.0.0287 |
| 16236 | Problem: Cannot access the arguments of the current function in debug mode. |
| 16237 | (Luc Hermitte) |
| 16238 | Solution: use get_funccal(). (Lemonboy, closes #1432, closes #1352) |
| 16239 | Files: src/userfunc.c |
| 16240 | |
| 16241 | Patch 8.0.0288 (after 8.0.0284) |
| 16242 | Problem: Errors reported while running tests. |
| 16243 | Solution: Put comma in the right place. |
| 16244 | Files: src/testdir/runtest.vim |
| 16245 | |
| 16246 | Patch 8.0.0289 |
| 16247 | Problem: No test for "ga" and :ascii. |
| 16248 | Solution: Add a test. (Dominique Pelle, closes #1429) |
| 16249 | Files: src/Makefile, src/testdir/test_alot.vim, src/testdir/test_ga.vim |
| 16250 | |
| 16251 | Patch 8.0.0290 |
| 16252 | Problem: If a wide character doesn't fit at the end of the screen line, and |
| 16253 | the line doesn't fit on the screen, then the cursor position may |
| 16254 | be wrong. (anliting) |
| 16255 | Solution: Don't skip over wide character. (Christian Brabandt, closes #1408) |
| 16256 | Files: src/screen.c |
| 16257 | |
| 16258 | Patch 8.0.0291 (after 8.0.0282) |
| 16259 | Problem: Visual block insertion does not insert in all lines. |
| 16260 | Solution: Don't bail out of insert too early. Add a test. (Christian |
| 16261 | Brabandt, closes #1290) |
| 16262 | Files: src/ops.c, src/testdir/test_visual.vim |
| 16263 | |
| 16264 | Patch 8.0.0292 |
| 16265 | Problem: The stat test is a bit slow. |
| 16266 | Solution: Remove a couple of sleep comments and reduce another. |
| 16267 | Files: src/testdir/test_stat.vim |
| 16268 | |
| 16269 | Patch 8.0.0293 |
| 16270 | Problem: Some tests have a one or three second wait. |
| 16271 | Solution: Reset the 'showmode' option. Use a test time of one to disable |
| 16272 | sleep after an error or warning message. |
| 16273 | Files: src/misc1.c, src/testdir/runtest.vim, src/testdir/test_normal.vim |
| 16274 | |
| 16275 | Patch 8.0.0294 |
| 16276 | Problem: Argument list is not stored correctly in a session file. |
| 16277 | (lgpasquale) |
| 16278 | Solution: Use "$argadd" instead of "argadd". (closes #1434) |
| 16279 | Files: src/ex_docmd.c, src/testdir/test_mksession.vim |
| 16280 | |
| 16281 | Patch 8.0.0295 (after 8.0.0293) |
| 16282 | Problem: test_viml hangs. |
| 16283 | Solution: Put resetting 'more' before sourcing the script. |
| 16284 | Files: src/testdir/runtest.vim |
| 16285 | |
| 16286 | Patch 8.0.0296 |
| 16287 | Problem: Bracketed paste can only append, not insert. |
| 16288 | Solution: When the cursor is in the first column insert the text. |
| 16289 | Files: src/normal.c, src/testdir/test_paste.vim, runtime/doc/term.txt |
| 16290 | |
| 16291 | Patch 8.0.0297 |
| 16292 | Problem: Double free on exit when using a closure. (James McCoy) |
| 16293 | Solution: Split free_al_functions in two parts. (closes #1428) |
| 16294 | Files: src/userfunc.c, src/structs.h |
| 16295 | |
| 16296 | Patch 8.0.0298 |
| 16297 | Problem: Ex command range with repeated search does not work. (Bruce |
| 16298 | DeVisser) |
| 16299 | Solution: Skip over \/, \? and \&. |
| 16300 | Files: src/ex_docmd.c, src/testdir/test_cmdline.vim |
| 16301 | |
| 16302 | Patch 8.0.0299 |
| 16303 | Problem: When the GUI window is resized Vim does not always take over the |
| 16304 | new size. (Luchr) |
| 16305 | Solution: Reset new_p_guifont in gui_resize_shell(). Call |
| 16306 | gui_may_resize_shell() in the main loop. |
| 16307 | Files: src/main.c, src/gui.c |
| 16308 | |
| 16309 | Patch 8.0.0300 |
| 16310 | Problem: Cannot stop diffing hidden buffers. (Daniel Hahler) |
| 16311 | Solution: When using :diffoff! make the whole list if diffed buffers empty. |
| 16312 | (closes #736) |
| 16313 | Files: src/diff.c, src/testdir/test_diffmode.vim |
| 16314 | |
| 16315 | Patch 8.0.0301 |
| 16316 | Problem: No tests for ":set completion" and various errors of the :set |
| 16317 | command. |
| 16318 | Solution: Add more :set tests. (Dominique Pelle, closes #1440) |
| 16319 | Files: src/testdir/test_options.vim |
| 16320 | |
| 16321 | Patch 8.0.0302 |
| 16322 | Problem: Cannot set terminal key codes with :let. |
| 16323 | Solution: Make it work. |
| 16324 | Files: src/option.c, src/testdir/test_assign.vim |
| 16325 | |
| 16326 | Patch 8.0.0303 |
| 16327 | Problem: Bracketed paste does not work in Visual mode. |
| 16328 | Solution: Delete the text before pasting |
| 16329 | Files: src/normal.c, src/ops.c, src/proto/ops.pro, |
| 16330 | src/testdir/test_paste.vim |
| 16331 | |
| 16332 | Patch 8.0.0304 (after 8.0.0302) |
| 16333 | Problem: Assign test fails in the GUI. |
| 16334 | Solution: Skip the test for setting t_k1. |
| 16335 | Files: src/testdir/test_assign.vim |
| 16336 | |
| 16337 | Patch 8.0.0305 |
| 16338 | Problem: Invalid memory access when option has duplicate flag. |
| 16339 | Solution: Correct pointer computation. (Dominique Pelle, closes #1442) |
| 16340 | Files: src/option.c, src/testdir/test_options.vim |
| 16341 | |
| 16342 | Patch 8.0.0306 |
| 16343 | Problem: mode() not sufficiently tested. |
| 16344 | Solution: Add more tests. (Yegappan Lakshmanan) |
| 16345 | Files: src/testdir/test_functions.vim |
| 16346 | |
| 16347 | Patch 8.0.0307 |
| 16348 | Problem: Asan detects a memory error when EXITFREE is defined. (Dominique |
| 16349 | Pelle) |
| 16350 | Solution: In getvcol() check for ml_get_buf() returning an empty string. |
| 16351 | Also skip adjusting the scroll position. Set "exiting" in |
| 16352 | mch_exit() for all systems. |
| 16353 | Files: src/charset.c, src/window.c, src/os_mswin.c, src/os_win32.c, |
| 16354 | src/os_amiga.c |
| 16355 | |
| 16356 | Patch 8.0.0308 |
| 16357 | Problem: When using a symbolic link, the package path will not be inserted |
| 16358 | at the right position in 'runtimepath'. (Dugan Chen, Norio Takagi) |
| 16359 | Solution: Resolve symbolic links when finding the right position in |
| 16360 | 'runtimepath'. (Hirohito Higashi) |
| 16361 | Files: src/ex_cmds2.c, src/testdir/test_packadd.vim |
| 16362 | |
| 16363 | Patch 8.0.0309 |
| 16364 | Problem: Cannot use an empty key in json. |
| 16365 | Solution: Allow for using an empty key. |
| 16366 | Files: src/json.c, src/testdir/test_json.vim |
| 16367 | |
| 16368 | Patch 8.0.0310 |
| 16369 | Problem: Not enough testing for GUI functionality. |
| 16370 | Solution: Add tests for v:windowid and getwinpos[xy](). (Kazunobu Kuriyama) |
| 16371 | Files: src/testdir/test_gui.vim |
| 16372 | |
| 16373 | Patch 8.0.0311 |
| 16374 | Problem: Linebreak tests are old style. |
| 16375 | Solution: Turn the tests into new style. Share utility functions. (Ozaki |
| 16376 | Kiichi, closes #1444) |
| 16377 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 16378 | src/testdir/test_breakindent.vim, src/testdir/test_listlbr.in, |
| 16379 | src/testdir/test_listlbr.ok, src/testdir/test_listlbr.vim, |
| 16380 | src/testdir/test_listlbr_utf8.in, |
| 16381 | src/testdir/test_listlbr_utf8.ok, |
| 16382 | src/testdir/test_listlbr_utf8.vim, src/testdir/view_util.vim |
| 16383 | |
| 16384 | Patch 8.0.0312 |
| 16385 | Problem: When a json message arrives in pieces, the start is dropped and |
| 16386 | the decoding fails. |
| 16387 | Solution: Do not drop the start when it is still needed. (Kay Zheng) Add a |
| 16388 | test. Reset the timeout when something is received. |
| 16389 | Files: src/channel.c, src/testdir/test_channel.vim, src/structs.h, |
| 16390 | src/testdir/test_channel_pipe.py |
| 16391 | |
| 16392 | Patch 8.0.0313 (after 8.0.0310) |
| 16393 | Problem: Not enough testing for GUI functionality. |
| 16394 | Solution: Add tests for the GUI font. (Kazunobu Kuriyama) |
| 16395 | Files: src/testdir/test_gui.vim |
| 16396 | |
| 16397 | Patch 8.0.0314 |
| 16398 | Problem: getcmdtype(), getcmdpos() and getcmdline() are not tested. |
| 16399 | Solution: Add tests. (Yegappan Lakshmanan) |
| 16400 | Files: src/testdir/test_cmdline.vim |
| 16401 | |
| 16402 | Patch 8.0.0315 |
| 16403 | Problem: ":help :[range]" does not work. (Tony Mechelynck) |
| 16404 | Solution: Translate to insert a backslash. |
| 16405 | Files: src/ex_cmds.c |
| 16406 | |
| 16407 | Patch 8.0.0316 |
| 16408 | Problem: ":help z?" does not work. (Pavol Juhas) |
| 16409 | Solution: Remove exception for z?. |
| 16410 | Files: src/ex_cmds.c |
| 16411 | |
| 16412 | Patch 8.0.0317 |
| 16413 | Problem: No test for setting 'guifont'. |
| 16414 | Solution: Add a test for X11 GUIs. (Kazunobu Kuriyama) |
| 16415 | Files: src/testdir/test_gui.vim |
| 16416 | |
| 16417 | Patch 8.0.0318 |
| 16418 | Problem: Small mistake in 7x13 font name. |
| 16419 | Solution: Use ISO 8859-1 name instead of 10646-1. (Kazunobu Kuriyama) |
| 16420 | Files: src/testdir/test_gui.vim |
| 16421 | |
| 16422 | Patch 8.0.0319 |
| 16423 | Problem: Insert mode completion does not respect "start" in 'backspace'. |
| 16424 | Solution: Check whether backspace can go before where insert started. |
| 16425 | (Hirohito Higashi) |
| 16426 | Files: src/edit.c, src/testdir/test_popup.vim |
| 16427 | |
| 16428 | Patch 8.0.0320 |
| 16429 | Problem: Warning for unused variable with small build. |
| 16430 | Solution: Change #ifdef to exclude FEAT_CMDWIN. (Kazunobu Kuriyama) |
| 16431 | Files: src/ex_getln.c |
| 16432 | |
| 16433 | Patch 8.0.0321 |
| 16434 | Problem: When using the tiny version trying to load the matchit plugin |
| 16435 | gives an error. On MS-Windows some default mappings fail. |
| 16436 | Solution: Add a check if the command used is available. (Christian Brabandt) |
| 16437 | Files: runtime/mswin.vim, runtime/macros/matchit.vim |
| 16438 | |
| 16439 | Patch 8.0.0322 |
| 16440 | Problem: Possible overflow with spell file where the tree length is |
| 16441 | corrupted. |
| 16442 | Solution: Check for an invalid length (suggested by shqking) |
| 16443 | Files: src/spellfile.c |
| 16444 | |
| 16445 | Patch 8.0.0323 |
| 16446 | Problem: When running the command line tests there is a one second wait. |
| 16447 | Solution: Change an Esc to Ctrl-C. (Yegappan Lakshmanan) |
| 16448 | Files: src/testdir/test_cmdline.vim |
| 16449 | |
| 16450 | Patch 8.0.0324 |
| 16451 | Problem: Illegal memory access with "1;y". |
| 16452 | Solution: Call check_cursor() instead of check_cursor_lnum(). (Dominique |
| 16453 | Pelle, closes #1455) |
| 16454 | Files: src/ex_docmd.c, src/testdir/test_cmdline.vim |
| 16455 | |
| 16456 | Patch 8.0.0325 |
| 16457 | Problem: Packadd test does not clean up symlink. |
| 16458 | Solution: Delete the link. (Hirohito Higashi) |
| 16459 | Files: src/testdir/test_packadd.vim |
| 16460 | |
| 16461 | Patch 8.0.0326 (after 8.0.0325) |
| 16462 | Problem: Packadd test uses wrong directory name. |
| 16463 | Solution: Use the variable name value. (Hirohito Higashi) |
| 16464 | Files: src/testdir/test_packadd.vim |
| 16465 | |
| 16466 | Patch 8.0.0327 |
| 16467 | Problem: The E11 error message in the command line window is not |
| 16468 | translated. |
| 16469 | Solution: use _(). (Hirohito Higashi) |
| 16470 | Files: src/ex_docmd.c |
| 16471 | |
| 16472 | Patch 8.0.0328 |
| 16473 | Problem: The "zero count" error doesn't have a number. (Hirohito Higashi) |
| 16474 | Solution: Give it a number and be more specific about the error. |
| 16475 | Files: src/globals.h |
| 16476 | |
| 16477 | Patch 8.0.0329 |
| 16478 | Problem: Xfontset and guifontwide are not tested. |
| 16479 | Solution: Add tests. (Kazunobu Kuriyama) |
| 16480 | Files: src/testdir/test_gui.vim |
| 16481 | |
| 16482 | Patch 8.0.0330 |
| 16483 | Problem: Illegal memory access after "vapo". (Dominique Pelle) |
| 16484 | Solution: Fix the cursor column. |
| 16485 | Files: src/search.c, src/testdir/test_visual.vim |
| 16486 | |
| 16487 | Patch 8.0.0331 |
| 16488 | Problem: Restoring help snapshot accesses freed memory. (Dominique Pelle) |
| 16489 | Solution: Don't restore a snapshot when the window closes. |
| 16490 | Files: src/window.c, src/Makefile, src/testdir/Make_all.mak, |
| 16491 | src/testdir/test_help.vim |
| 16492 | |
| 16493 | Patch 8.0.0332 |
| 16494 | Problem: GUI test fails on some systems. |
| 16495 | Solution: Try different language settings. (Kazunobu Kuriyama) |
| 16496 | Files: src/testdir/test_gui.vim |
| 16497 | |
| 16498 | Patch 8.0.0333 |
| 16499 | Problem: Illegal memory access when 'complete' ends in a backslash. |
| 16500 | Solution: Check for trailing backslash. (Dominique Pelle, closes #1478) |
| 16501 | Files: src/option.c, src/testdir/test_options.vim |
| 16502 | |
| 16503 | Patch 8.0.0334 |
| 16504 | Problem: Can't access b:changedtick from a dict reference. |
| 16505 | Solution: Make changedtick a member of the b: dict. (inspired by neovim |
| 16506 | #6112) |
| 16507 | Files: src/structs.h, src/buffer.c, src/edit.c, src/eval.c, |
| 16508 | src/evalfunc.c, src/ex_docmd.c, src/main.c, src/globals.h, |
| 16509 | src/fileio.c, src/memline.c, src/misc1.c, src/syntax.c, |
| 16510 | src/proto/eval.pro, src/testdir/test_changedtick.vim, |
| 16511 | src/Makefile, src/testdir/test_alot.vim, src/testdir/test91.in, |
| 16512 | src/testdir/test91.ok, src/testdir/test_functions.vim |
| 16513 | |
| 16514 | Patch 8.0.0335 (after 8.0.0335) |
| 16515 | Problem: Functions test fails. |
| 16516 | Solution: Use the right buffer number. |
| 16517 | Files: src/testdir/test_functions.vim |
| 16518 | |
| 16519 | Patch 8.0.0336 |
| 16520 | Problem: Flags of :substitute not sufficiently tested. |
| 16521 | Solution: Test up to two letter flag combinations. (James McCoy, closes |
| 16522 | #1479) |
| 16523 | Files: src/testdir/test_substitute.vim |
| 16524 | |
| 16525 | Patch 8.0.0337 |
| 16526 | Problem: Invalid memory access in :recover command. |
| 16527 | Solution: Avoid access before directory name. (Dominique Pelle, |
| 16528 | closes #1488) |
| 16529 | Files: src/Makefile, src/memline.c, src/testdir/test_alot.vim, |
| 16530 | src/testdir/test_recover.vim |
| 16531 | |
| 16532 | Patch 8.0.0338 (after 8.0.0337) |
| 16533 | Problem: :recover test fails on MS-Windows. |
| 16534 | Solution: Use non-existing directory on MS-Windows. |
| 16535 | Files: src/testdir/test_recover.vim |
| 16536 | |
| 16537 | Patch 8.0.0339 |
| 16538 | Problem: Illegal memory access with vi' |
| 16539 | Solution: For quoted text objects bail out if the Visual area spans more |
| 16540 | than one line. |
| 16541 | Files: src/search.c, src/testdir/test_visual.vim |
| 16542 | |
| 16543 | Patch 8.0.0340 |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 16544 | Problem: Not checking return value of dict_add(). (Coverity) |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 16545 | Solution: Handle a failure. |
| 16546 | Files: src/buffer.c |
| 16547 | |
| 16548 | Patch 8.0.0341 |
| 16549 | Problem: When using complete() and typing a character undo is saved after |
| 16550 | the character was inserted. (Shougo) |
| 16551 | Solution: Save for undo before inserting the character. |
| 16552 | Files: src/edit.c, src/testdir/test_popup.vim |
| 16553 | |
| 16554 | Patch 8.0.0342 |
| 16555 | Problem: Double free when compiled with EXITFREE and setting 'ttytype'. |
| 16556 | Solution: Avoid setting P_ALLOCED on 'ttytype'. (Dominique Pelle, |
| 16557 | closes #1461) |
| 16558 | Files: src/option.c, src/testdir/test_options.vim |
| 16559 | |
| 16560 | Patch 8.0.0343 |
| 16561 | Problem: b:changedtick can be unlocked, even though it has no effect. |
| 16562 | (Nikolai Pavlov) |
| 16563 | Solution: Add a check and error E940. (closes #1496) |
| 16564 | Files: src/eval.c, src/testdir/test_changedtick.vim, runtime/doc/eval.txt |
| 16565 | |
| 16566 | Patch 8.0.0344 |
| 16567 | Problem: Unlet command leaks memory. (Nikolai Pavlov) |
| 16568 | Solution: Free the memory on error. (closes #1497) |
| 16569 | Files: src/eval.c, src/testdir/test_unlet.vim |
| 16570 | |
| 16571 | Patch 8.0.0345 |
| 16572 | Problem: islocked('d.changedtick') does not work. |
| 16573 | Solution: Make it work. |
| 16574 | Files: src/buffer.c, src/eval.c, src/evalfunc.c, src/vim.h, |
| 16575 | src/testdir/test_changedtick.vim, |
| 16576 | |
| 16577 | Patch 8.0.0346 |
| 16578 | Problem: Vim relies on limits.h to be included indirectly, but on Solaris 9 |
| 16579 | it may not be. (Ben Fritz) |
| 16580 | Solution: Always include limits.h. |
| 16581 | Files: src/os_unixx.h, src/vim.h |
| 16582 | |
| 16583 | Patch 8.0.0347 |
| 16584 | Problem: When using CTRL-X CTRL-U inside a comment, the use of the comment |
| 16585 | leader may not work. (Klement) |
| 16586 | Solution: Save and restore did_ai. (Christian Brabandt, closes #1494) |
| 16587 | Files: src/edit.c, src/testdir/test_popup.vim |
| 16588 | |
| 16589 | Patch 8.0.0348 |
| 16590 | Problem: When building with a shadow directory on macOS lacks the |
| 16591 | +clipboard feature. |
| 16592 | Solution: Link *.m files, specifically os_macosx.m. (Kazunobu Kuriyama) |
| 16593 | Files: src/Makefile |
| 16594 | |
| 16595 | Patch 8.0.0349 |
| 16596 | Problem: Redrawing errors with GTK 3. |
| 16597 | Solution: When updating, first clear all rectangles and then draw them. |
| 16598 | (Kazunobu Kuriyama, Christian Ludwig, closes #848) |
| 16599 | Files: src/gui_gtk_x11.c |
| 16600 | |
| 16601 | Patch 8.0.0350 |
| 16602 | Problem: Not enough test coverage for Perl. |
| 16603 | Solution: Add more Perl tests. (Dominique Perl, closes #1500) |
| 16604 | Files: src/testdir/test_perl.vim |
| 16605 | |
| 16606 | Patch 8.0.0351 |
| 16607 | Problem: No test for concatenating an empty string that results from out of |
| 16608 | bounds indexing. |
| 16609 | Solution: Add a simple test. |
| 16610 | Files: src/testdir/test_expr.vim |
| 16611 | |
| 16612 | Patch 8.0.0352 |
| 16613 | Problem: The condition for when a typval needs to be cleared is too |
| 16614 | complicated. |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 16615 | Solution: Init the type to VAR_UNKNOWN and always clear it. |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 16616 | Files: src/eval.c |
| 16617 | |
| 16618 | Patch 8.0.0353 |
| 16619 | Problem: If [RO] in the status line is translated to a longer string, it is |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 16620 | truncated to 4 bytes. |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 16621 | Solution: Skip over the resulting string. (Jente Hidskes, closes #1499) |
| 16622 | Files: src/screen.c |
| 16623 | |
| 16624 | Patch 8.0.0354 |
| 16625 | Problem: Test to check that setting termcap key fails sometimes. |
| 16626 | Solution: Check for "t_k1" to exist. (Christian Brabandt, closes #1459) |
| 16627 | Files: src/testdir/test_assign.vim |
| 16628 | |
| 16629 | Patch 8.0.0355 |
| 16630 | Problem: Using uninitialized memory when 'isfname' is empty. |
| 16631 | Solution: Don't call getpwnam() without an argument. (Dominique Pelle, |
| 16632 | closes #1464) |
| 16633 | Files: src/misc1.c, src/testdir/test_options.vim |
| 16634 | |
| 16635 | Patch 8.0.0356 (after 8.0.0342) |
| 16636 | Problem: Leaking memory when setting 'ttytype'. |
| 16637 | Solution: Get free_oldval from the right option entry. |
| 16638 | Files: src/option.c |
| 16639 | |
| 16640 | Patch 8.0.0357 |
| 16641 | Problem: Crash when setting 'guicursor' to weird value. |
| 16642 | Solution: Avoid negative size. (Dominique Pelle, closes #1465) |
| 16643 | Files: src/misc2.c, src/testdir/test_options.vim |
| 16644 | |
| 16645 | Patch 8.0.0358 |
| 16646 | Problem: Invalid memory access in C-indent code. |
| 16647 | Solution: Don't go over end of empty line. (Dominique Pelle, closes #1492) |
| 16648 | Files: src/edit.c, src/testdir/test_options.vim |
| 16649 | |
| 16650 | Patch 8.0.0359 |
| 16651 | Problem: 'number' and 'relativenumber' are not properly tested. |
| 16652 | Solution: Add tests, change old style to new style tests. (Ozaki Kiichi, |
| 16653 | closes #1447) |
| 16654 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/Make_vms.mms, |
| 16655 | src/testdir/test89.in, src/testdir/test89.ok, |
| 16656 | src/testdir/test_alot.vim, src/testdir/test_findfile.vim, |
| 16657 | src/testdir/test_number.vim |
| 16658 | |
| 16659 | Patch 8.0.0360 |
| 16660 | Problem: Sometimes VimL is used, which is confusing. |
| 16661 | Solution: Consistently use "Vim script". (Hirohito Higashi) |
| 16662 | Files: runtime/doc/if_mzsch.txt, runtime/doc/if_pyth.txt, |
| 16663 | runtime/doc/syntax.txt, runtime/doc/usr_02.txt, |
| 16664 | runtime/doc/version7.txt, src/Makefile, src/eval.c, |
| 16665 | src/ex_getln.c, src/if_py_both.h, src/if_xcmdsrv.c, |
| 16666 | src/testdir/Make_all.mak, src/testdir/runtest.vim, |
| 16667 | src/testdir/test49.vim, src/testdir/test_vimscript.vim, |
| 16668 | src/testdir/test_viml.vim |
| 16669 | |
| 16670 | Patch 8.0.0361 |
| 16671 | Problem: GUI initialisation is not sufficiently tested. |
| 16672 | Solution: Add the gui_init test. (Kazunobu Kuriyama) |
| 16673 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/Make_dos.mak, |
| 16674 | src/testdir/Make_ming.mak, src/testdir/Makefile, |
| 16675 | src/testdir/gui_init.vim, src/testdir/setup_gui.vim, |
| 16676 | src/testdir/test_gui.vim, src/testdir/test_gui_init.vim, Filelist |
| 16677 | |
| 16678 | Patch 8.0.0362 (after 8.0.0361) |
| 16679 | Problem: Tests fail on MS-Windows. |
| 16680 | Solution: Use $*.vim instead of $<. |
| 16681 | Files: src/testdir/Make_dos.mak |
| 16682 | |
| 16683 | Patch 8.0.0363 |
| 16684 | Problem: Travis is too slow to keep up with patches. |
| 16685 | Solution: Increase git depth to 20 |
| 16686 | Files: .travis.yml |
| 16687 | |
| 16688 | Patch 8.0.0364 |
| 16689 | Problem: ]s does not move cursor with two spell errors in one line. (Manuel |
| 16690 | Ortega) |
| 16691 | Solution: Don't stop search immediately when wrapped, search the line first. |
| 16692 | (Ken Takata) Add a test. |
| 16693 | Files: src/spell.c, src/Makefile, src/testdir/test_spell.vim, |
| 16694 | src/testdir/Make_all.mak |
| 16695 | |
| 16696 | Patch 8.0.0365 |
| 16697 | Problem: Might free a dict item that wasn't allocated. |
| 16698 | Solution: Call dictitem_free(). (Nikolai Pavlov) Use this for |
| 16699 | b:changedtick. |
| 16700 | Files: src/dict.c, src/structs.h, src/buffer.c, src/edit.c, |
| 16701 | src/evalfunc.c, src/ex_docmd.c, src/fileio.c, src/main.c, |
| 16702 | src/memline.c, src/misc1.c, src/syntax.c |
| 16703 | |
| 16704 | Patch 8.0.0366 (after 8.0.0365) |
| 16705 | Problem: Build fails with tiny features. |
| 16706 | Solution: Add #ifdef. |
| 16707 | Files: src/buffer.c |
| 16708 | |
| 16709 | Patch 8.0.0367 |
| 16710 | Problem: If configure defines _LARGE_FILES some include files are included |
| 16711 | before it is defined. |
| 16712 | Solution: Include vim.h first. (Sam Thursfield, closes #1508) |
| 16713 | Files: src/gui_at_sb.c, src/gui_athena.c, src/gui_motif.c, src/gui_x11.c, |
| 16714 | src/gui_xmdlg.c |
| 16715 | |
| 16716 | Patch 8.0.0368 |
| 16717 | Problem: Not all options are tested with a range of values. |
| 16718 | Solution: Generate a test script from the source code. |
| 16719 | Files: Filelist, src/gen_opt_test.vim, src/testdir/test_options.vim, |
| 16720 | src/Makefile |
| 16721 | |
| 16722 | Patch 8.0.0369 (after 8.0.0368) |
| 16723 | Problem: The 'balloondelay', 'ballooneval' and 'balloonexpr' options are |
| 16724 | not defined without the +balloon_eval feature. Testing that an |
| 16725 | option value fails does not work for unsupported options. |
| 16726 | Solution: Make the options defined but not supported. Don't test if |
| 16727 | setting unsupported options fails. |
| 16728 | Files: src/option.c, src/gen_opt_test.vim |
| 16729 | |
| 16730 | Patch 8.0.0370 |
| 16731 | Problem: Invalid memory access when setting wildchar empty. |
| 16732 | Solution: Avoid going over the end of the option value. (Dominique Pelle, |
| 16733 | closes #1509) Make option test check all number options with |
| 16734 | empty value. |
| 16735 | Files: src/gen_opt_test.vim, src/option.c, src/testdir/test_options.vim |
| 16736 | |
| 16737 | Patch 8.0.0371 (after 8.0.0365) |
| 16738 | Problem: Leaking memory when setting v:completed_item. |
| 16739 | Solution: Or the flags instead of setting them. |
| 16740 | Files: src/eval.c |
| 16741 | |
| 16742 | Patch 8.0.0372 |
| 16743 | Problem: More options are not always defined. |
| 16744 | Solution: Consistently define all possible options. |
| 16745 | Files: src/option.c, src/testdir/test_expand_dllpath.vim |
| 16746 | |
| 16747 | Patch 8.0.0373 |
| 16748 | Problem: Build fails without +folding. |
| 16749 | Solution: Move misplaced #ifdef. |
| 16750 | Files: src/option.c |
| 16751 | |
| 16752 | Patch 8.0.0374 |
| 16753 | Problem: Invalid memory access when using :sc in Ex mode. (Dominique Pelle) |
| 16754 | Solution: Avoid the column being negative. Also fix a hang in Ex mode. |
| 16755 | Files: src/ex_getln.c, src/ex_cmds.c, src/testdir/test_substitute.vim |
| 16756 | |
| 16757 | Patch 8.0.0375 |
| 16758 | Problem: The "+ register is not tested. |
| 16759 | Solution: Add a test using another Vim instance to change the "+ register. |
| 16760 | (Kazunobu Kuriyama) |
| 16761 | Files: src/testdir/test_gui.vim |
| 16762 | |
| 16763 | Patch 8.0.0376 |
| 16764 | Problem: Size computations in spell file reading are not exactly right. |
| 16765 | Solution: Make "len" a "long" and check with LONG_MAX. |
| 16766 | Files: src/spellfile.c |
| 16767 | |
| 16768 | Patch 8.0.0377 |
| 16769 | Problem: Possible overflow when reading corrupted undo file. |
| 16770 | Solution: Check if allocated size is not too big. (King) |
| 16771 | Files: src/undo.c |
| 16772 | |
| 16773 | Patch 8.0.0378 |
| 16774 | Problem: Another possible overflow when reading corrupted undo file. |
| 16775 | Solution: Check if allocated size is not too big. (King) |
| 16776 | Files: src/undo.c |
| 16777 | |
| 16778 | Patch 8.0.0379 |
| 16779 | Problem: CTRL-Z and mouse click use CTRL-O unnecessary. |
| 16780 | Solution: Remove stuffing CTRL-O. (James McCoy, closes #1453) |
| 16781 | Files: src/edit.c, src/normal.c |
| 16782 | |
| 16783 | Patch 8.0.0380 |
| 16784 | Problem: With 'linebreak' set and 'breakat' includes ">" a double-wide |
| 16785 | character results in "<<" displayed. |
| 16786 | Solution: Check for the character not to be replaced. (Ozaki Kiichi, |
| 16787 | closes #1456) |
| 16788 | Files: src/screen.c, src/testdir/test_listlbr_utf8.vim |
| 16789 | |
| 16790 | Patch 8.0.0381 |
| 16791 | Problem: Diff mode is not sufficiently tested. |
| 16792 | Solution: Add more diff mode tests. (Dominique Pelle, closes #1515) |
| 16793 | Files: src/testdir/test_diffmode.vim |
| 16794 | |
| 16795 | Patch 8.0.0382 (after 8.0.0380) |
| 16796 | Problem: Warning in tiny build for unused variable. (Tony Mechelynck) |
| 16797 | Solution: Add #ifdefs. |
| 16798 | Files: src/screen.c |
| 16799 | |
| 16800 | Patch 8.0.0383 (after 8.0.0382) |
| 16801 | Problem: Misplaced #ifdef. (Christ van Willigen) |
| 16802 | Solution: Split assignment. |
| 16803 | Files: src/screen.c |
| 16804 | |
| 16805 | Patch 8.0.0384 |
| 16806 | Problem: Timer test failed for no apparent reason. |
| 16807 | Solution: Mark the test as flaky. |
| 16808 | Files: src/testdir/runtest.vim |
| 16809 | |
| 16810 | Patch 8.0.0385 |
| 16811 | Problem: No tests for arabic. |
| 16812 | Solution: Add a first test for arabic. (Dominique Pelle, closes #1518) |
| 16813 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 16814 | src/testdir/test_arabic.vim |
| 16815 | |
| 16816 | Patch 8.0.0386 |
| 16817 | Problem: Tiny build has a problem with generating the options test. |
| 16818 | Solution: Change the "if" to skip over statements. |
| 16819 | Files: src/gen_opt_test.vim |
| 16820 | |
| 16821 | Patch 8.0.0387 |
| 16822 | Problem: compiler warnings |
| 16823 | Solution: Add type casts. (Christian Brabandt) |
| 16824 | Files: src/channel.c, src/memline.c, |
| 16825 | |
| 16826 | Patch 8.0.0388 |
| 16827 | Problem: filtering lines through "cat", without changing the line count, |
| 16828 | changes manual folds. |
| 16829 | Solution: Change how marks and folds are adjusted. (Matthew Malcomson, from |
Bram Moolenaar | 74675a6 | 2017-07-15 13:53:23 +0200 | [diff] [blame] | 16830 | neovim #6194). |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 16831 | Files: src/fold.c, src/testdir/test_fold.vim |
| 16832 | |
| 16833 | Patch 8.0.0389 |
| 16834 | Problem: Test for arabic does not check what is displayed. |
| 16835 | Solution: Improve what is asserted. (Dominique Pelle, closes #1523) |
| 16836 | Add a first shaping test. |
| 16837 | Files: src/testdir/test_arabic.vim |
| 16838 | |
| 16839 | Patch 8.0.0390 |
| 16840 | Problem: When the window scrolls horizontally when the popup menu is |
| 16841 | displayed part of it may not be cleared. (Neovim issue #6184) |
| 16842 | Solution: Remove the menu when the windows scrolled. (closes #1524) |
| 16843 | Files: src/edit.c |
| 16844 | |
| 16845 | Patch 8.0.0391 |
| 16846 | Problem: Arabic support is verbose and not well tested. |
| 16847 | Solution: Simplify the code. Add more tests. |
| 16848 | Files: src/arabic.c, src/testdir/test_arabic.vim |
| 16849 | |
| 16850 | Patch 8.0.0392 |
| 16851 | Problem: GUI test fails with Athena and Motif. |
| 16852 | Solution: Add test_ignore_error(). Use it to ignore the "failed to create |
| 16853 | input context" error. |
| 16854 | Files: src/message.c, src/proto/message.pro, src/evalfunc.c, |
| 16855 | src/testdir/test_gui.vim, runtime/doc/eval.txt |
| 16856 | |
| 16857 | Patch 8.0.0393 (after 8.0.0190) |
| 16858 | Problem: When the same tag appears more than once, the order is |
| 16859 | unpredictable. (Charles Campbell) |
| 16860 | Solution: Besides using a dict for finding duplicates, use a grow array for |
| 16861 | keeping the tags in sequence. |
| 16862 | Files: src/tag.c, src/testdir/test_tagjump.vim |
| 16863 | |
| 16864 | Patch 8.0.0394 |
| 16865 | Problem: Tabs are not aligned when scrolling horizontally and a Tab doesn't |
| 16866 | fit. (Axel Bender) |
| 16867 | Solution: Handle a Tab as a not fitting character. (Christian Brabandt) |
| 16868 | Also fix that ":redraw" does not scroll horizontally to show the |
| 16869 | cursor. And fix the test that depended on the old behavior. |
| 16870 | Files: src/screen.c, src/ex_docmd.c, src/testdir/test_listlbr.vim, |
| 16871 | src/testdir/test_listlbr_utf8.vim, |
| 16872 | src/testdir/test_breakindent.vim |
| 16873 | |
| 16874 | Patch 8.0.0395 (after 8.0.0392) |
| 16875 | Problem: Testing the + register fails with Motif. |
| 16876 | Solution: Also ignore the "failed to create input context" error in the |
| 16877 | second gvim. Don't use msg() when it would result in a dialog. |
| 16878 | Files: src/message.c, src/testdir/test_gui.vim, src/testdir/setup_gui.vim |
| 16879 | |
| 16880 | Patch 8.0.0396 |
| 16881 | Problem: 'balloonexpr' only works synchronously. |
| 16882 | Solution: Add balloon_show(). (Jusufadis Bakamovic, closes #1449) |
| 16883 | Files: runtime/doc/eval.txt, src/evalfunc.c, src/os_unix.c, |
| 16884 | src/os_win32.c |
| 16885 | |
| 16886 | Patch 8.0.0397 (after 8.0.0392) |
| 16887 | Problem: Cannot build with the viminfo feature but without the eval |
| 16888 | feature. |
| 16889 | Solution: Adjust #ifdef. (John Marriott) |
| 16890 | Files: src/message.c, src/misc2.c |
| 16891 | |
| 16892 | Patch 8.0.0398 |
| 16893 | Problem: Illegal memory access with "t". |
| 16894 | Solution: Use strncmp() instead of memcmp(). (Dominique Pelle, closes #1528) |
| 16895 | Files: src/search.c, src/testdir/test_search.vim |
| 16896 | |
| 16897 | Patch 8.0.0399 |
| 16898 | Problem: Crash when using balloon_show() when not supported. (Hirohito |
| 16899 | Higashi) |
| 16900 | Solution: Check for balloonEval not to be NULL. (Ken Takata) |
| 16901 | Files: src/evalfunc.c, src/testdir/test_functions.vim |
| 16902 | |
| 16903 | Patch 8.0.0400 |
| 16904 | Problem: Some tests have a one second delay. |
| 16905 | Solution: Add --not-a-term in RunVim(). |
| 16906 | Files: src/testdir/shared.vim |
| 16907 | |
| 16908 | Patch 8.0.0401 |
| 16909 | Problem: Test fails with missing balloon feature. |
| 16910 | Solution: Add check for balloon feature. |
| 16911 | Files: src/testdir/test_functions.vim |
| 16912 | |
| 16913 | Patch 8.0.0402 |
| 16914 | Problem: :map completion does not have <special>. (Dominique Pelle) |
| 16915 | Solution: Recognize <special> in completion. Add a test. |
| 16916 | Files: src/getchar.c, src/testdir/test_cmdline.vim |
| 16917 | |
| 16918 | Patch 8.0.0403 |
| 16919 | Problem: GUI tests may fail. |
| 16920 | Solution: Ignore the E285 error better. (Kazunobu Kuriyama) |
| 16921 | Files: src/testdir/test_gui.vim, src/testdir/test_gui_init.vim |
| 16922 | |
| 16923 | Patch 8.0.0404 |
| 16924 | Problem: Not enough testing for quickfix. |
| 16925 | Solution: Add some more tests. (Yegappan Lakshmanan) |
| 16926 | Files: src/testdir/test_quickfix.vim |
| 16927 | |
| 16928 | Patch 8.0.0405 |
| 16929 | Problem: v:progpath may become invalid after ":cd". |
| 16930 | Solution: Turn v:progpath into a full path if needed. |
| 16931 | Files: src/main.c, src/testdir/test_startup.vim, runtime/doc/eval.txt |
| 16932 | |
| 16933 | Patch 8.0.0406 |
| 16934 | Problem: The arabic shaping code is verbose. |
| 16935 | Solution: Shorten the code without changing the functionality. |
| 16936 | Files: src/arabic.c |
| 16937 | |
| 16938 | Patch 8.0.0407 (after 8.0.0388) |
| 16939 | Problem: Filtering folds with marker method not tested. |
| 16940 | Solution: Also set 'foldmethod' to "marker". |
| 16941 | Files: src/testdir/test_fold.vim |
| 16942 | |
| 16943 | Patch 8.0.0408 |
| 16944 | Problem: Updating folds does not work properly when inserting a file and a |
| 16945 | few other situations. |
| 16946 | Solution: Adjust the way folds are updated. (Matthew Malcomson) |
| 16947 | Files: src/fold.c, src/testdir/test_fold.vim |
| 16948 | |
| 16949 | Patch 8.0.0409 |
| 16950 | Problem: set_progpath is defined but not always used |
| 16951 | Solution: Adjust #ifdef. |
| 16952 | Files: src/main.c |
| 16953 | |
| 16954 | Patch 8.0.0410 |
| 16955 | Problem: Newer gettext/iconv library has extra dll file. |
| 16956 | Solution: Add the file to the Makefile and nsis script. (Christian Brabandt) |
| 16957 | Files: Makefile, nsis/gvim.nsi |
| 16958 | |
| 16959 | Patch 8.0.0411 |
| 16960 | Problem: We can't change the case in menu entries, it breaks translations. |
| 16961 | Solution: Ignore case when looking up a menu translation. |
| 16962 | Files: src/menu.c, src/testdir/test_menu.vim |
| 16963 | |
| 16964 | Patch 8.0.0412 (after 8.0.0411) |
| 16965 | Problem: Menu test fails on MS-Windows. |
| 16966 | Solution: Use a menu entry with only ASCII characters. |
| 16967 | Files: src/testdir/test_menu.vim |
| 16968 | |
| 16969 | Patch 8.0.0413 (after 8.0.0412) |
| 16970 | Problem: Menu test fails on MS-Windows using gvim. |
| 16971 | Solution: First delete the English menus. |
| 16972 | Files: src/testdir/test_menu.vim |
| 16973 | |
| 16974 | Patch 8.0.0414 |
| 16975 | Problem: Balloon eval is not tested. |
| 16976 | Solution: Add a few balloon tests. (Kazunobu Kuriyama) |
| 16977 | Files: src/testdir/test_gui.vim |
| 16978 | |
| 16979 | Patch 8.0.0415 (after 8.0.0414) |
| 16980 | Problem: Balloon test fails on MS-Windows. |
| 16981 | Solution: Test with 0x7fffffff instead of 0xffffffff. |
| 16982 | Files: src/testdir/test_gui.vim |
| 16983 | |
| 16984 | Patch 8.0.0416 |
| 16985 | Problem: Setting v:progpath is not quite right. |
| 16986 | Solution: On MS-Windows add the extension. On Unix use the full path for a |
| 16987 | relative directory. (partly by James McCoy, closes #1531) |
| 16988 | Files: src/main.c, src/os_win32.c, src/os_unix.c |
| 16989 | |
| 16990 | Patch 8.0.0417 |
| 16991 | Problem: Test for the clipboard fails sometimes. |
| 16992 | Solution: Add it to the flaky tests. |
| 16993 | Files: src/testdir/runtest.vim |
| 16994 | |
| 16995 | Patch 8.0.0418 |
| 16996 | Problem: ASAN logs are disabled and don't cause a failure. |
| 16997 | Solution: Enable ASAN logs and fail if not empty. (James McCoy, |
| 16998 | closes #1425) |
| 16999 | Files: .travis.yml |
| 17000 | |
| 17001 | Patch 8.0.0419 |
| 17002 | Problem: Test for v:progpath fails on MS-Windows. |
| 17003 | Solution: Expand to full path. Also add ".exe" when the path is an absolute |
| 17004 | path. |
| 17005 | Files: src/os_win32.c, src/main.c |
| 17006 | |
| 17007 | Patch 8.0.0420 |
| 17008 | Problem: When running :make the output may be in the system encoding, |
| 17009 | different from 'encoding'. |
| 17010 | Solution: Add the 'makeencoding' option. (Ken Takata) |
| 17011 | Files: runtime/doc/options.txt, runtime/doc/quickfix.txt, |
| 17012 | runtime/doc/quickref.txt, src/Makefile, src/buffer.c, |
| 17013 | src/if_cscope.c, src/main.c, src/option.c, src/option.h, |
| 17014 | src/proto/quickfix.pro, src/quickfix.c, src/structs.h, |
| 17015 | src/testdir/Make_all.mak, src/testdir/test_makeencoding.py, |
| 17016 | src/testdir/test_makeencoding.vim |
| 17017 | |
| 17018 | Patch 8.0.0421 |
| 17019 | Problem: Diff mode is displayed wrong when adding a line at the end of a |
| 17020 | buffer. |
| 17021 | Solution: Adjust marks in diff mode. (James McCoy, closes #1329) |
| 17022 | Files: src/misc1.c, src/ops.c, src/testdir/test_diffmode.vim |
| 17023 | |
| 17024 | Patch 8.0.0422 |
| 17025 | Problem: Python test fails with Python 3.6. |
| 17026 | Solution: Convert new exception messages to old ones. (closes #1359) |
| 17027 | Files: src/testdir/test87.in |
| 17028 | |
| 17029 | Patch 8.0.0423 |
| 17030 | Problem: The effect of adding "#" to 'cinoptions' is not always removed. |
| 17031 | (David Briscoe) |
| 17032 | Solution: Reset b_ind_hash_comment. (Christian Brabandt, closes #1475) |
| 17033 | Files: src/misc1.c, src/Makefile, src/testdir/Make_all.mak, |
| 17034 | src/testdir/test_cindent.vim, src/testdir/test3.in |
| 17035 | |
| 17036 | Patch 8.0.0424 |
| 17037 | Problem: Compiler warnings on MS-Windows. (Ajit Thakkar) |
| 17038 | Solution: Add type casts. |
| 17039 | Files: src/os_win32.c |
| 17040 | |
| 17041 | Patch 8.0.0425 |
| 17042 | Problem: Build errors when building without folding. |
| 17043 | Solution: Add #ifdefs. (John Marriott) |
| 17044 | Files: src/diff.c, src/edit.c, src/option.c, src/syntax.c |
| 17045 | |
| 17046 | Patch 8.0.0426 |
| 17047 | Problem: Insufficient testing for statusline. |
| 17048 | Solution: Add several tests. (Dominique Pelle, closes #1534) |
| 17049 | Files: src/testdir/test_statusline.vim |
| 17050 | |
| 17051 | Patch 8.0.0427 |
| 17052 | Problem: 'makeencoding' missing from the options window. |
| 17053 | Solution: Add the entry. |
| 17054 | Files: runtime/optwin.vim |
| 17055 | |
| 17056 | Patch 8.0.0428 |
| 17057 | Problem: Git and hg see new files after running tests. (Manuel Ortega) |
| 17058 | Solution: Add the generated file to .hgignore (or .gitignore). Delete the |
| 17059 | resulting verbose file. (Christian Brabandt) Improve dependency |
| 17060 | on opt_test.vim. Reset the 'more' option. |
| 17061 | Files: .hgignore, src/gen_opt_test.vim, src/testdir/gen_opt_test.vim, |
| 17062 | src/Makefile, src/testdir/Make_all.mak, src/testdir/Makefile, |
| 17063 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 17064 | Filelist |
| 17065 | |
| 17066 | Patch 8.0.0429 |
| 17067 | Problem: Options test does not always test everything. |
| 17068 | Solution: Fix dependency for opt_test.vim. Give a message when opt_test.vim |
| 17069 | was not found. |
| 17070 | Files: src/testdir/test_options.vim, src/testdir/gen_opt_test.vim, |
| 17071 | src/testdir/Makefile, src/testdir/Make_all.mak, |
| 17072 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak |
| 17073 | |
| 17074 | Patch 8.0.0430 |
| 17075 | Problem: Options test fails or hangs on MS-Windows. |
| 17076 | Solution: Run it separately instead of part of test_alot. Use "-S" instead |
| 17077 | of "-u" to run the script. Fix failures. |
| 17078 | Files: src/testdir/Make_all.mak, src/testdir/test_alot.vim, |
| 17079 | src/testdir/Makefile, src/testdir/Make_dos.mak, |
| 17080 | src/testdir/Make_ming.mak, src/testdir/gen_opt_test.vim |
| 17081 | |
| 17082 | Patch 8.0.0431 |
| 17083 | Problem: 'cinoptions' cannot set indent for extern block. |
| 17084 | Solution: Add the "E" flag in 'cinoptions'. (Hirohito Higashi) |
| 17085 | Files: runtime/doc/indent.txt, src/misc1.c, src/structs.h, |
| 17086 | src/testdir/test_cindent.vim |
| 17087 | |
| 17088 | Patch 8.0.0432 |
| 17089 | Problem: "make shadow" creates an invalid link. |
| 17090 | Solution: Don't link "*.vim". (Kazunobu Kuriyama) |
| 17091 | Files: src/Makefile |
| 17092 | |
| 17093 | Patch 8.0.0433 |
| 17094 | Problem: Quite a few beeps when running tests. |
| 17095 | Solution: Set 'belloff' for these tests. (Christian Brabandt) |
| 17096 | Files: src/testdir/test103.in, src/testdir/test14.in, |
| 17097 | src/testdir/test29.in, src/testdir/test30.in, |
| 17098 | src/testdir/test32.in, src/testdir/test45.in, |
| 17099 | src/testdir/test72.in, src/testdir/test73.in, |
| 17100 | src/testdir/test77.in, src/testdir/test78.in, |
| 17101 | src/testdir/test85.in, src/testdir/test94.in, |
| 17102 | src/testdir/test_alot.vim, src/testdir/test_alot_utf8.vim, |
| 17103 | src/testdir/test_close_count.in, src/testdir/test_cmdline.vim, |
| 17104 | src/testdir/test_diffmode.vim, src/testdir/test_digraph.vim, |
| 17105 | src/testdir/test_erasebackword.in, src/testdir/test_normal.vim, |
| 17106 | src/testdir/test_packadd.vim, src/testdir/test_search.vim, |
| 17107 | src/testdir/test_textobjects.vim, src/testdir/test_undo.vim, |
| 17108 | src/testdir/test_usercommands.vim, src/testdir/test_visual.vim |
| 17109 | |
| 17110 | Patch 8.0.0434 |
| 17111 | Problem: Clang version not correctly detected. |
| 17112 | Solution: Adjust the configure script. (Kazunobu Kuriyama) |
| 17113 | Files: src/configure.ac, src/auto/configure |
| 17114 | |
| 17115 | Patch 8.0.0435 |
| 17116 | Problem: Some functions are not tested. |
| 17117 | Solution: Add more tests for functions. (Dominique Pelle, closes #1541) |
| 17118 | Files: src/testdir/test_functions.vim |
| 17119 | |
| 17120 | Patch 8.0.0436 |
| 17121 | Problem: Running the options test sometimes resizes the terminal. |
| 17122 | Solution: Clear out t_WS. |
| 17123 | Files: src/testdir/gen_opt_test.vim |
| 17124 | |
| 17125 | Patch 8.0.0437 |
| 17126 | Problem: The packadd test does not create the symlink correctly and does |
| 17127 | not test the right thing. |
| 17128 | Solution: Create the directory and symlink correctly. |
| 17129 | Files: src/testdir/test_packadd.vim |
| 17130 | |
| 17131 | Patch 8.0.0438 |
| 17132 | Problem: The fnamemodify test changes 'shell' in a way later tests may not |
| 17133 | be able to use system(). |
| 17134 | Solution: Save and restore 'shell'. |
| 17135 | Files: src/testdir/test_fnamemodify.vim |
| 17136 | |
| 17137 | Patch 8.0.0439 |
| 17138 | Problem: Using ":%argdel" while the argument list is already empty gives an |
| 17139 | error. (Pavol Juhas) |
| 17140 | Solution: Don't give an error. (closes #1546) |
| 17141 | Files: src/ex_cmds2.c, src/testdir/test_arglist.vim |
| 17142 | |
| 17143 | Patch 8.0.0440 |
| 17144 | Problem: Not enough test coverage in Insert mode. |
| 17145 | Solution: Add lots of tests. Add test_override(). (Christian Brabandt, |
| 17146 | closes #1521) |
| 17147 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/edit.c, |
| 17148 | src/evalfunc.c, src/globals.h, src/screen.c, |
| 17149 | src/testdir/Make_all.mak, src/testdir/test_cursor_func.vim, |
| 17150 | src/testdir/test_edit.vim, src/testdir/test_search.vim, |
| 17151 | src/testdir/test_assert.vim, src/Makefile, src/testdir/runtest.vim |
| 17152 | |
| 17153 | Patch 8.0.0441 |
| 17154 | Problem: Dead code in #ifdef. |
| 17155 | Solution: Remove the #ifdef and #else part. |
| 17156 | Files: src/option.c |
| 17157 | |
| 17158 | Patch 8.0.0442 |
| 17159 | Problem: Patch shell command uses double quotes around the argument, which |
| 17160 | allows for $HOME to be expanded. (Etienne) |
| 17161 | Solution: Use single quotes on Unix. (closes #1543) |
| 17162 | Files: src/diff.c, src/testdir/test_diffmode.vim |
| 17163 | |
| 17164 | Patch 8.0.0443 |
| 17165 | Problem: Terminal width is set to 80 in test3. |
| 17166 | Solution: Instead of setting 'columns' set 'wrapmargin' depending on |
| 17167 | 'columns. |
| 17168 | Files: src/testdir/test3.in |
| 17169 | |
| 17170 | Patch 8.0.0444 (after 8.0.0442) |
| 17171 | Problem: Diffpatch fails when the file name has a quote. |
| 17172 | Solution: Escape the name properly. (zetzei) |
| 17173 | Files: src/diff.c, src/testdir/test_diffmode.vim |
| 17174 | |
| 17175 | Patch 8.0.0445 |
| 17176 | Problem: Getpgid is not supported on all systems. |
| 17177 | Solution: Add a configure check. |
| 17178 | Files: src/configure.ac, src/auto/configure, src/config.h.in, |
| 17179 | src/os_unix.c |
| 17180 | |
| 17181 | Patch 8.0.0446 |
| 17182 | Problem: The ";" command does not work after characters with a lower byte |
| 17183 | that is NUL. |
| 17184 | Solution: Properly check for not having a previous character. (Hirohito |
| 17185 | Higashi) |
| 17186 | Files: src/Makefile, src/search.c, src/testdir/test_alot_utf8.vim, |
| 17187 | src/testdir/test_charsearch_utf8.vim |
| 17188 | |
| 17189 | Patch 8.0.0447 |
| 17190 | Problem: Getting font name does not work on X11. |
| 17191 | Solution: Implement gui_mch_get_fontname() for X11. Add more GUI tests. |
| 17192 | (Kazunobu Kuriyama) |
| 17193 | Files: src/gui_x11.c, src/syntax.c, src/testdir/Make_dos.mak, |
| 17194 | src/testdir/Make_ming.mak, src/testdir/Makefile, |
| 17195 | src/testdir/gui_init.vim, src/testdir/gui_preinit.vim, |
| 17196 | src/testdir/test_gui.vim, src/testdir/test_gui_init.vim, |
| 17197 | Filelist |
| 17198 | |
| 17199 | Patch 8.0.0448 |
| 17200 | Problem: Some macros are in lower case, which can be confusing. |
| 17201 | Solution: Make a few lower case macros upper case. |
| 17202 | Files: src/macros.h, src/buffer.c, src/charset.c, src/ops.c, src/diff.c, |
| 17203 | src/edit.c, src/evalfunc.c, src/ex_cmds.c, src/ex_getln.c, |
| 17204 | src/fileio.c, src/fold.c, src/gui.c, src/gui_beval.c, src/main.c, |
| 17205 | src/mark.c, src/misc1.c, src/move.c, src/normal.c, |
| 17206 | src/option.c, src/popupmnu.c, src/regexp.c, src/screen.c, |
| 17207 | src/search.c, src/spell.c, src/tag.c, src/ui.c, src/undo.c, |
| 17208 | src/version.c, src/workshop.c, src/if_perl.xs |
| 17209 | |
| 17210 | Patch 8.0.0449 (after 8.0.0448) |
| 17211 | Problem: Part of fold patch accidentally included. |
| 17212 | Solution: Revert that part of the patch. |
| 17213 | Files: src/ex_cmds.c |
| 17214 | |
| 17215 | Patch 8.0.0450 |
| 17216 | Problem: v:progpath is not reliably set. |
| 17217 | Solution: Read /proc/self/exe if possible. (idea by Michal Grochmal) |
| 17218 | Also fixes missing #if. |
| 17219 | Files: src/main.c, src/config.h.in |
| 17220 | |
| 17221 | Patch 8.0.0451 |
| 17222 | Problem: Some macros are in lower case. |
| 17223 | Solution: Make a few more macros upper case. Avoid lower case macros use an |
| 17224 | argument twice. |
| 17225 | Files: src/macros.h, src/charset.c, src/misc2.c, src/proto/misc2.pro, |
| 17226 | src/edit.c, src/eval.c, src/ex_cmds.c, src/ex_cmds2.c, |
| 17227 | src/ex_docmd.c, src/ex_getln.c, src/fileio.c, src/fold.c, |
| 17228 | src/gui.c, src/gui_gtk.c, src/mark.c, src/memline.c, src/mbyte.c, |
| 17229 | src/menu.c, src/message.c, src/misc1.c, src/ops.c, src/option.c, |
| 17230 | src/os_amiga.c, src/os_mswin.c, src/os_unix.c, src/os_win32.c, |
| 17231 | src/popupmnu.c, src/regexp.c, src/regexp_nfa.c, src/screen.c, |
| 17232 | src/search.c, src/spell.c, src/spellfile.c, src/syntax.c, |
| 17233 | src/tag.c, src/ui.c, src/undo.c, src/window.c |
| 17234 | |
| 17235 | Patch 8.0.0452 |
| 17236 | Problem: Some macros are in lower case. |
| 17237 | Solution: Make a few more macros upper case. |
| 17238 | Files: src/vim.h, src/macros.h, src/evalfunc.c, src/fold.c, |
| 17239 | src/gui_gtk.c, src/gui_gtk_x11.c, src/charset.c, src/diff.c, |
| 17240 | src/edit.c, src/eval.c, src/ex_cmds.c, src/ex_cmds2.c, |
| 17241 | src/ex_docmd.c, src/ex_getln.c, src/fileio.c, src/getchar.c, |
| 17242 | src/gui.c, src/gui_w32.c, src/if_cscope.c, src/mbyte.c, |
| 17243 | src/menu.c, src/message.c, src/misc1.c, src/misc2.c, src/normal.c, |
| 17244 | src/ops.c, src/option.c, src/os_unix.c, src/os_win32.c, |
| 17245 | src/quickfix.c, src/regexp.c, src/regexp_nfa.c, src/screen.c, |
| 17246 | src/search.c, src/spell.c, src/syntax.c, src/tag.c, src/userfunc.c |
| 17247 | |
| 17248 | Patch 8.0.0453 |
| 17249 | Problem: Adding fold marker creates new comment. |
| 17250 | Solution: Use an existing comment if possible. (LemonBoy, closes #1549) |
| 17251 | Files: src/ops.c, src/proto/ops.pro, src/fold.c, |
| 17252 | src/testdir/test_fold.vim |
| 17253 | |
| 17254 | Patch 8.0.0454 |
| 17255 | Problem: Compiler warnings for comparing unsigned char with 256 always |
| 17256 | being true. (Manuel Ortega) |
| 17257 | Solution: Add type cast. |
| 17258 | Files: src/screen.c, src/charset.c |
| 17259 | |
| 17260 | Patch 8.0.0455 |
| 17261 | Problem: The mode test may hang in Test_mode(). (Michael Soyka) |
| 17262 | Solution: Set 'complete' to only search the current buffer (as suggested by |
| 17263 | Michael) |
| 17264 | Files: src/testdir/test_functions.vim |
| 17265 | |
| 17266 | Patch 8.0.0456 |
| 17267 | Problem: Typo in MinGW test makefile. |
| 17268 | Solution: Change an underscore to a dot. (Michael Soyka) |
| 17269 | Files: src/testdir/Make_ming.mak |
| 17270 | |
| 17271 | Patch 8.0.0457 |
| 17272 | Problem: Using :move messes up manual folds. |
| 17273 | Solution: Split adjusting marks and folds. Add foldMoveRange(). (neovim |
| 17274 | patch #6221) |
| 17275 | Files: src/ex_cmds.c, src/fold.c, src/mark.c, src/proto/fold.pro, |
| 17276 | src/proto/mark.pro src/testdir/test_fold.vim |
| 17277 | |
| 17278 | Patch 8.0.0458 |
| 17279 | Problem: Potential crash if adding list or dict to dict fails. |
| 17280 | Solution: Make sure the reference count is correct. (Nikolai Pavlov, closes |
| 17281 | #1555) |
| 17282 | Files: src/dict.c |
| 17283 | |
| 17284 | Patch 8.0.0459 (after 8.0.0457) |
| 17285 | Problem: Old fix for :move messing up folding no longer needed, now that we |
| 17286 | have a proper solution. |
| 17287 | Solution: Revert patch 7.4.700. (Christian Brabandt) |
| 17288 | Files: src/ex_cmds.c |
| 17289 | |
| 17290 | Patch 8.0.0460 (after 8.0.0452) |
| 17291 | Problem: Can't build on HPUX. |
| 17292 | Solution: Fix argument names in vim_stat(). (John Marriott) |
| 17293 | Files: src/misc2.c |
| 17294 | |
| 17295 | Patch 8.0.0461 (after 8.0.0457) |
| 17296 | Problem: Test 45 hangs on MS-Windows. |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 17297 | Solution: Reset 'shiftwidth'. Also remove redundant function. |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 17298 | Files: src/fold.c, src/testdir/test45.in |
| 17299 | |
| 17300 | Patch 8.0.0462 |
| 17301 | Problem: If an MS-Windows tests succeeds at first and then fails in a way |
| 17302 | it does not produce a test.out file it looks like the test |
| 17303 | succeeded. |
| 17304 | Solution: Delete the previous output file. |
| 17305 | Files: src/testdir/Make_dos.mak |
| 17306 | |
| 17307 | Patch 8.0.0463 |
| 17308 | Problem: Resetting 'compatible' in defaults.vim has unexpected side |
| 17309 | effects. (David Fishburn) |
| 17310 | Solution: Only reset 'compatible' if it was set. |
| 17311 | Files: runtime/defaults.vim |
| 17312 | |
| 17313 | Patch 8.0.0464 |
| 17314 | Problem: Can't find executable name on Solaris and FreeBSD. |
| 17315 | Solution: Check for "/proc/self/path/a.out". (Danek Duvall) And for |
| 17316 | "/proc/curproc/file". |
| 17317 | Files: src/config.h.in, src/configure.ac, src/main.c, |
| 17318 | src/auto/configure |
| 17319 | |
| 17320 | Patch 8.0.0465 |
| 17321 | Problem: Off-by-one error in using :move with folding. |
| 17322 | Solution: Correct off-by-one mistakes and add more tests. (Matthew |
| 17323 | Malcomson) |
| 17324 | Files: src/fold.c, src/testdir/test_fold.vim |
| 17325 | |
| 17326 | Patch 8.0.0466 |
| 17327 | Problem: There are still a few macros that should be all-caps. |
| 17328 | Solution: Make a few more macros all-caps. |
| 17329 | Files: src/buffer.c, src/edit.c, src/ex_cmds.c, src/ex_cmds2.c, |
| 17330 | src/ex_docmd.c, src/ex_getln.c, src/farsi.c, src/fileio.c, |
| 17331 | src/getchar.c, src/gui_beval.c, src/hardcopy.c, src/if_cscope.c, |
| 17332 | src/if_xcmdsrv.c, src/mark.c, src/memline.c, src/menu.c, |
| 17333 | src/message.c, src/misc1.c, src/normal.c, src/ops.c, src/option.c, |
| 17334 | src/quickfix.c, src/screen.c, src/search.c, src/syntax.c, |
| 17335 | src/tag.c, src/term.c, src/term.h, src/ui.c, src/undo.c, |
| 17336 | src/userfunc.c, src/version.c, src/vim.h |
| 17337 | |
| 17338 | Patch 8.0.0467 |
| 17339 | Problem: Using g< after :for does not show the right output. (Marcin |
| 17340 | Szamotulski) |
| 17341 | Solution: Call msg_sb_eol() in :echomsg. |
| 17342 | Files: src/eval.c |
| 17343 | |
| 17344 | Patch 8.0.0468 |
| 17345 | Problem: After aborting an Ex command g< does not work. (Marcin |
| 17346 | Szamotulski) |
| 17347 | Solution: Postpone clearing scrollback messages to until the command line |
| 17348 | has been entered. Also fix that the screen isn't redrawn if after |
| 17349 | g< the command line is cancelled. |
| 17350 | Files: src/message.c, src/proto/message.pro, src/ex_getln.c, src/misc2.c, |
| 17351 | src/gui.c |
| 17352 | |
| 17353 | Patch 8.0.0469 |
| 17354 | Problem: Compiler warnings on MS-Windows. |
| 17355 | Solution: Add type casts. (Christian Brabandt) |
| 17356 | Files: src/fold.c |
| 17357 | |
| 17358 | Patch 8.0.0470 |
| 17359 | Problem: Not enough testing for help commands. |
| 17360 | Solution: Add a few more help tests. (Dominique Pelle, closes #1565) |
| 17361 | Files: src/testdir/test_help.vim, src/testdir/test_help_tagjump.vim |
| 17362 | |
| 17363 | Patch 8.0.0471 |
| 17364 | Problem: Exit callback test sometimes fails. |
| 17365 | Solution: Add it to the list of flaky tests. |
| 17366 | Files: src/testdir/runtest.vim |
| 17367 | |
| 17368 | Patch 8.0.0472 |
| 17369 | Problem: When a test fails and test.log is created, Test_edit_CTRL_I |
| 17370 | matches it instead of test1.in. |
| 17371 | Solution: Match with runtest.vim instead. |
| 17372 | Files: src/testdir/test_edit.vim |
| 17373 | |
| 17374 | Patch 8.0.0473 |
| 17375 | Problem: No test covering arg_all(). |
| 17376 | Solution: Add a test expanding ##. |
| 17377 | Files: src/testdir/test_arglist.vim |
| 17378 | |
| 17379 | Patch 8.0.0474 |
| 17380 | Problem: The client-server feature is not tested. |
| 17381 | Solution: Add a test. |
| 17382 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/shared.vim, |
| 17383 | src/testdir/test_clientserver.vim, src/os_mswin.c |
| 17384 | |
| 17385 | Patch 8.0.0475 |
| 17386 | Problem: Not enough testing for the client-server feature. |
| 17387 | Solution: Add more tests. Add the remote_startserver() function. Fix that |
| 17388 | a locally evaluated expression uses function-local variables. |
| 17389 | Files: src/if_xcmdsrv.c, src/evalfunc.c, src/os_mswin.c, |
| 17390 | src/proto/main.pro, src/testdir/test_clientserver.vim, |
| 17391 | runtime/doc/eval.txt |
| 17392 | |
| 17393 | Patch 8.0.0476 (after 8.0.0475) |
| 17394 | Problem: Missing change to main.c. |
| 17395 | Solution: Add new function. |
| 17396 | Files: src/main.c |
| 17397 | |
| 17398 | Patch 8.0.0477 |
| 17399 | Problem: The client-server test may hang when failing. |
| 17400 | Solution: Set a timer. Add assert_report() |
| 17401 | Files: src/testdir/test_clientserver.vim, src/testdir/runtest.vim, |
| 17402 | src/eval.c, src/evalfunc.c, src/proto/eval.pro, src/if_xcmdsrv.c, |
| 17403 | src/os_mswin.c, runtime/doc/eval.txt |
| 17404 | |
| 17405 | Patch 8.0.0478 |
| 17406 | Problem: Tests use assert_true(0) and assert_false(1) to report errors. |
| 17407 | Solution: Use assert_report(). |
| 17408 | Files: src/testdir/test_cscope.vim, src/testdir/test_expr.vim, |
| 17409 | src/testdir/test_perl.vim, src/testdir/test_channel.vim, |
| 17410 | src/testdir/test_cursor_func.vim, src/testdir/test_gui.vim, |
| 17411 | src/testdir/test_menu.vim, src/testdir/test_popup.vim, |
| 17412 | src/testdir/test_viminfo.vim, src/testdir/test_vimscript.vim, |
| 17413 | src/testdir/test_assert.vim |
| 17414 | |
| 17415 | Patch 8.0.0479 |
| 17416 | Problem: remote_peek() is not tested. |
| 17417 | Solution: Add a test. |
| 17418 | Files: src/testdir/test_clientserver.vim, src/testdir/runtest.vim |
| 17419 | |
| 17420 | Patch 8.0.0480 |
| 17421 | Problem: The remote_peek() test fails on MS-Windows. |
| 17422 | Solution: Check for pending messages. Also report errors in the first run if |
| 17423 | a flaky test fails twice. |
| 17424 | Files: src/os_mswin.c, src/testdir/runtest.vim |
| 17425 | |
| 17426 | Patch 8.0.0481 |
| 17427 | Problem: Unnecessary if statement. |
| 17428 | Solution: Remove the statement. Fix "it's" vs "its" mistakes. (Dominique |
| 17429 | Pelle, closes #1568) |
| 17430 | Files: src/syntax.c |
| 17431 | |
| 17432 | Patch 8.0.0482 |
| 17433 | Problem: The setbufvar() function may mess up the window layout. (Kay Z.) |
| 17434 | Solution: Do not check the window to be valid if it is NULL. |
| 17435 | Files: src/window.c, src/testdir/test_functions.vim |
| 17436 | |
| 17437 | Patch 8.0.0483 |
| 17438 | Problem: Illegal memory access when using :all. (Dominique Pelle) |
| 17439 | Solution: Adjust the cursor position right after setting "curwin". |
| 17440 | Files: src/window.c, src/testdir/test_window_cmd.vim |
| 17441 | |
| 17442 | Patch 8.0.0484 |
| 17443 | Problem: Using :lhelpgrep with an argument that should fail does not |
| 17444 | produce an error if the previous :helpgrep worked. |
| 17445 | Solution: Use another way to detect that autocommands made the quickfix info |
| 17446 | invalid. (Yegappan Lakshmanan) |
| 17447 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 17448 | |
| 17449 | Patch 8.0.0485 |
| 17450 | Problem: Not all windows commands are tested. |
| 17451 | Solution: Add more tests for windows commands. (Dominique Pelle, |
| 17452 | closes #1575) Run test_autocmd separately, it interferes with |
| 17453 | other tests. Fix tests that depended on side effects. |
| 17454 | Files: src/testdir/test_window_cmd.vim, src/testdir/test_alot.vim, |
| 17455 | src/testdir/test_autocmd.vim, src/testdir/test_fnamemodify.vim, |
| 17456 | src/testdir/test_functions.vim, src/testdir/test_delete.vim, |
| 17457 | src/testdir/Make_all.mak |
| 17458 | |
| 17459 | Patch 8.0.0486 |
| 17460 | Problem: Crash and endless loop when closing windows in a SessionLoadPost |
| 17461 | autocommand. |
| 17462 | Solution: Check for valid tabpage. (partly neovim #6308) |
| 17463 | Files: src/testdir/test_autocmd.vim, src/fileio.c, src/proto/window.pro, |
| 17464 | src/window.c |
| 17465 | |
| 17466 | Patch 8.0.0487 |
| 17467 | Problem: The autocmd test hangs on MS-Windows. |
| 17468 | Solution: Skip the hanging tests for now. |
| 17469 | Files: src/testdir/test_autocmd.vim |
| 17470 | |
| 17471 | Patch 8.0.0488 |
| 17472 | Problem: Running tests leaves an "xxx" file behind. |
| 17473 | Solution: Delete the 'verbosefile' after resetting the option. |
| 17474 | Files: src/testdir/gen_opt_test.vim |
| 17475 | |
| 17476 | Patch 8.0.0489 |
| 17477 | Problem: Clipboard and "* register is not tested. |
| 17478 | Solution: Add a test for Mac and X11. (Kazunobu Kuriyama) |
| 17479 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 17480 | src/testdir/test_quotestar.vim, src/testdir/runtest.vim |
| 17481 | |
| 17482 | Patch 8.0.0490 |
| 17483 | Problem: Splitting a 'winfixwidth' window vertically makes it one column |
| 17484 | smaller. (Dominique Pelle) |
| 17485 | Solution: Add one to the width for the separator. |
| 17486 | Files: src/window.c, src/testdir/test_window_cmd.vim |
| 17487 | |
| 17488 | Patch 8.0.0491 |
| 17489 | Problem: The quotestar test fails when a required feature is missing. |
| 17490 | Solution: Prepend "Skipped" to the thrown exception. |
| 17491 | Files: src/testdir/test_quotestar.vim |
| 17492 | |
| 17493 | Patch 8.0.0492 |
| 17494 | Problem: A failing client-server request can make Vim hang. |
| 17495 | Solution: Add a timeout argument to functions that wait. |
| 17496 | Files: src/evalfunc.c, src/if_xcmdsrv.c, src/proto/if_xcmdsrv.pro, |
| 17497 | src/main.c, src/os_mswin.c, src/proto/os_mswin.pro, |
| 17498 | src/vim.h, runtime/doc/eval.txt, src/testdir/test_clientserver.vim |
| 17499 | |
| 17500 | Patch 8.0.0493 |
| 17501 | Problem: Crash with cd command with very long argument. |
Bram Moolenaar | 74675a6 | 2017-07-15 13:53:23 +0200 | [diff] [blame] | 17502 | Solution: Check for running out of space. (Dominique Pelle, closes #1576) |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 17503 | Files: src/testdir/test_alot.vim, src/testdir/test_cd.vim, src/Makefile, |
| 17504 | src/misc2.c |
| 17505 | |
| 17506 | Patch 8.0.0494 |
| 17507 | Problem: Build failure with older compiler on MS-Windows. |
| 17508 | Solution: Move declaration to start of block. |
| 17509 | Files: src/evalfunc.c, src/main.c, src/os_mswin.c |
| 17510 | |
| 17511 | Patch 8.0.0495 |
| 17512 | Problem: The quotestar test uses a timer instead of a timeout, thus it |
| 17513 | cannot be rerun like a flaky test. |
| 17514 | Solution: Remove the timer and add a timeout. (Kazunobu Kuriyama) |
| 17515 | Files: src/testdir/test_quotestar.vim |
| 17516 | |
| 17517 | Patch 8.0.0496 |
| 17518 | Problem: Insufficient testing for folding. |
| 17519 | Solution: Add a couple more fold tests. (Dominique Pelle, closes #1579) |
| 17520 | Files: src/testdir/test_fold.vim |
| 17521 | |
| 17522 | Patch 8.0.0497 |
| 17523 | Problem: Arabic support is not fully tested. |
| 17524 | Solution: Add more tests for the untested functions. Comment out |
| 17525 | unreachable code. |
| 17526 | Files: src/arabic.c, src/testdir/test_arabic.vim |
| 17527 | |
| 17528 | Patch 8.0.0498 |
| 17529 | Problem: Two autocmd tests are skipped on MS-Windows. |
| 17530 | Solution: Make the test pass on MS-Windows. Write the messages in a file |
| 17531 | instead of getting the output of system(). |
| 17532 | Files: src/testdir/test_autocmd.vim |
| 17533 | |
| 17534 | Patch 8.0.0499 |
| 17535 | Problem: taglist() does not prioritize tags for a buffer. |
| 17536 | Solution: Add an optional buffer argument. (Duncan McDougall, closes #1194) |
| 17537 | Files: runtime/doc/eval.txt, src/evalfunc.c, src/proto/tag.pro, |
| 17538 | src/Makefile, src/tag.c, src/testdir/test_alot.vim, |
| 17539 | src/testdir/test_taglist.vim |
| 17540 | |
| 17541 | Patch 8.0.0500 |
| 17542 | Problem: Quotestar test is still a bit flaky. |
| 17543 | Solution: Add a slower check for v:version. |
| 17544 | Files: src/testdir/test_quotestar.vim |
| 17545 | |
| 17546 | Patch 8.0.0501 |
| 17547 | Problem: On MS-Windows ":!start" does not work as expected. |
| 17548 | Solution: When creating a process fails try passing the argument to |
| 17549 | ShellExecute(). (Katsuya Hino, closes #1570) |
| 17550 | Files: runtime/doc/os_win32.txt, src/os_win32.c |
| 17551 | |
| 17552 | Patch 8.0.0502 |
| 17553 | Problem: Coverity complains about possible NULL pointer. |
| 17554 | Solution: Add an assert(), let's see if this works on all systems. |
| 17555 | Files: src/window.c |
| 17556 | |
| 17557 | Patch 8.0.0503 |
| 17558 | Problem: Endless loop in updating folds with 32 bit ints. |
| 17559 | Solution: Subtract from LHS instead of add to the RHS. (Matthew Malcomson) |
| 17560 | Files: src/fold.c |
| 17561 | |
| 17562 | Patch 8.0.0504 |
| 17563 | Problem: Looking up an Ex command is a bit slow. |
| 17564 | Solution: Instead of just using the first letter, also use the second letter |
| 17565 | to skip ahead in the list of commands. Generate the table with a |
| 17566 | Perl script. (Dominique Pelle, closes #1589) |
| 17567 | Files: src/Makefile, src/create_cmdidxs.pl, src/ex_docmd.c, Filelist |
| 17568 | |
| 17569 | Patch 8.0.0505 |
| 17570 | Problem: Failed window split for :stag not handled. (Coverity CID 99204) |
| 17571 | Solution: If the split fails skip to the end. (bstaletic, closes #1577) |
| 17572 | Files: src/tag.c |
| 17573 | |
| 17574 | Patch 8.0.0506 (after 8.0.0504) |
| 17575 | Problem: Can't build with ANSI C. |
| 17576 | Solution: Move declarations to start of block. |
| 17577 | Files: src/ex_docmd.c |
| 17578 | |
| 17579 | Patch 8.0.0507 |
| 17580 | Problem: Client-server tests fail when $DISPLAY is not set. |
| 17581 | Solution: Check for E240 before running the test. |
| 17582 | Files: src/testdir/test_quotestar.vim, src/testdir/test_clientserver.vim |
| 17583 | |
| 17584 | Patch 8.0.0508 |
| 17585 | Problem: Coveralls no longer shows per-file coverage. |
| 17586 | Solution: Add coverage from codecov.io. (Christian Brabandt) |
| 17587 | Files: .travis.yml |
| 17588 | |
| 17589 | Patch 8.0.0509 |
| 17590 | Problem: No link to codecov.io results. |
| 17591 | Solution: Add a badge to the readme file. |
| 17592 | Files: README.md |
| 17593 | |
| 17594 | Patch 8.0.0510 (after 8.0.0509) |
| 17595 | Problem: Typo in link to codecov.io results. |
| 17596 | Solution: Remove duplicate https:. |
| 17597 | Files: README.md |
| 17598 | |
| 17599 | Patch 8.0.0511 |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 17600 | Problem: Message for skipping client-server tests is unclear. |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 17601 | Solution: Be more specific about what's missing (Hirohito Higashi, Kazunobu |
| 17602 | Kuriyama) |
| 17603 | Files: src/testdir/test_quotestar.vim, src/testdir/test_clientserver.vim |
| 17604 | |
| 17605 | Patch 8.0.0512 |
| 17606 | Problem: Check for available characters takes too long. |
| 17607 | Solution: Only check did_start_blocking if wtime is negative. (Daisuke |
| 17608 | Suzuki, closes #1591) |
| 17609 | Files: src/os_unix.c |
| 17610 | |
| 17611 | Patch 8.0.0513 (after 8.0.0201) |
| 17612 | Problem: Getting name of cleared highlight group is wrong. (Matt Wozniski) |
| 17613 | Solution: Only skip over cleared names for completion. (closes #1592) |
| 17614 | Also fix that a cleared group causes duplicate completions. |
| 17615 | Files: src/syntax.c, src/proto/syntax.pro, src/evalfunc.c, |
| 17616 | src/ex_cmds.c, src/testdir/test_syntax.vim, |
| 17617 | src/testdir/test_cmdline.vim |
| 17618 | |
| 17619 | Patch 8.0.0514 |
| 17620 | Problem: Script for creating cmdidxs can be improved. |
| 17621 | Solution: Count skipped lines instead of collecting the lines. Add "const". |
| 17622 | (Dominique Pelle, closes #1594) |
| 17623 | Files: src/create_cmdidxs.pl, src/ex_docmd.c |
| 17624 | |
| 17625 | Patch 8.0.0515 |
| 17626 | Problem: ml_get errors in silent Ex mode. (Dominique Pelle) |
| 17627 | Solution: Clear valid flags when setting the cursor. Set the topline when |
| 17628 | not in full screen mode. |
| 17629 | Files: src/ex_docmd.c, src/move.c, src/testdir/test_startup.vim |
| 17630 | |
| 17631 | Patch 8.0.0516 |
| 17632 | Problem: A large count on a normal command causes trouble. (Dominique |
| 17633 | Pelle) |
| 17634 | Solution: Make "opcount" long. |
| 17635 | Files: src/globals.h, src/testdir/test_normal.vim |
| 17636 | |
| 17637 | Patch 8.0.0517 |
| 17638 | Problem: There is no way to remove quickfix lists (for testing). |
| 17639 | Solution: Add the 'f' action to setqflist(). Add tests. (Yegappan |
| 17640 | Lakshmanan) |
| 17641 | Files: runtime/doc/eval.txt, src/evalfunc.c, src/quickfix.c, |
| 17642 | src/testdir/test_quickfix.vim |
| 17643 | |
| 17644 | Patch 8.0.0518 |
| 17645 | Problem: Storing a zero byte from a multi-byte character causes fold text |
| 17646 | to show up wrong. |
| 17647 | Solution: Avoid putting zero in ScreenLines. (Christian Brabandt, |
| 17648 | closes #1567) |
| 17649 | Files: src/screen.c, src/testdir/test_display.vim |
| 17650 | |
| 17651 | Patch 8.0.0519 |
| 17652 | Problem: Character classes are not well tested. They can differ between |
| 17653 | platforms. |
| 17654 | Solution: Add tests. In the documentation make clear which classes depend |
| 17655 | on what library function. Only use :cntrl: and :graph: for ASCII. |
| 17656 | (Kazunobu Kuriyama, Dominique Pelle, closes #1560) |
| 17657 | Update the documentation. |
| 17658 | Files: src/regexp.c, src/regexp_nfa.c, runtime/doc/pattern.txt, |
| 17659 | src/testdir/test_regexp_utf8.vim |
| 17660 | |
| 17661 | Patch 8.0.0520 |
| 17662 | Problem: Using a function pointer instead of the actual function, which we |
| 17663 | know. |
| 17664 | Solution: Change mb_ functions to utf_ functions when already checked for |
| 17665 | Unicode. (Dominique Pelle, closes #1582) |
| 17666 | Files: src/message.c, src/misc2.c, src/regexp.c, src/regexp_nfa.c, |
| 17667 | src/screen.c, src/spell.c |
| 17668 | |
| 17669 | Patch 8.0.0521 |
| 17670 | Problem: GtkForm handling is outdated. |
| 17671 | Solution: Get rid of event filter functions. Get rid of GtkForm.width and |
| 17672 | .height. Eliminate gtk_widget_size_request() calls. (Kazunobu |
| 17673 | Kuriyama) |
| 17674 | Files: src/gui_gtk_f.c, src/gui_gtk_f.h |
| 17675 | |
| 17676 | Patch 8.0.0522 |
| 17677 | Problem: MS-Windows: when 'clipboard' is "unnamed" yyp does not work in a |
| 17678 | :global command. |
| 17679 | Solution: When setting the clipboard was postponed, do not clear the |
| 17680 | register. |
| 17681 | Files: src/ops.c, src/proto/ui.pro, src/ui.c, src/globals.h, |
| 17682 | src/testdir/test_global.vim, src/Makefile, |
| 17683 | src/testdir/test_alot.vim |
| 17684 | |
| 17685 | Patch 8.0.0523 |
| 17686 | Problem: dv} deletes part of a multi-byte character. (Urtica Dioica) |
| 17687 | Solution: Include the whole character. |
| 17688 | Files: src/search.c, src/testdir/test_normal.vim |
| 17689 | |
| 17690 | Patch 8.0.0524 (after 8.0.0518) |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 17691 | Problem: Folds are messed up when 'encoding' is "utf-8". |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 17692 | Solution: Also set the fold character when it's not multi-byte. |
| 17693 | Files: src/screen.c, src/testdir/test_display.vim |
| 17694 | |
| 17695 | Patch 8.0.0525 |
| 17696 | Solution: Completion for user command argument not tested. |
| 17697 | Problem: Add a test. |
| 17698 | Files: src/testdir/test_cmdline.vim |
| 17699 | |
| 17700 | Patch 8.0.0526 |
| 17701 | Problem: Coverity complains about possible negative value. |
| 17702 | Solution: Check return value of ftell() not to be negative. |
| 17703 | Files: src/os_unix.c |
| 17704 | |
| 17705 | Patch 8.0.0527 |
| 17706 | Problem: RISC OS support was removed long ago, but one file is still |
| 17707 | included. |
| 17708 | Solution: Delete the file. (Thomas Dziedzic, closes #1603) |
| 17709 | Files: Filelist, src/swis.s |
| 17710 | |
| 17711 | Patch 8.0.0528 |
| 17712 | Problem: When 'wildmenu' is set and 'wildmode' has "longest" then the first |
| 17713 | file name is highlighted, even though the text shows the longest |
| 17714 | match. |
| 17715 | Solution: Do not highlight the first match. (LemonBoy, closes #1602) |
| 17716 | Files: src/ex_getln.c |
| 17717 | |
| 17718 | Patch 8.0.0529 |
| 17719 | Problem: Line in test commented out. |
| 17720 | Solution: Uncomment the lines for character classes that were failing before |
| 17721 | 8.0.0519. (Dominique Pelle, closes #1599) |
| 17722 | Files: src/testdir/test_regexp_utf8.vim |
| 17723 | |
| 17724 | Patch 8.0.0530 |
| 17725 | Problem: Buffer overflow when 'columns' is very big. (Nikolai Pavlov) |
| 17726 | Solution: Correctly compute where to truncate. Fix translation. |
| 17727 | (closes #1600) |
| 17728 | Files: src/edit.c, src/testdir/test_edit.vim |
| 17729 | |
| 17730 | Patch 8.0.0531 (after 8.0.0530) |
| 17731 | Problem: Test with long directory name fails on non-unix systems. |
| 17732 | Solution: Skip the test on non-unix systems. |
| 17733 | Files: src/testdir/test_edit.vim |
| 17734 | |
| 17735 | Patch 8.0.0532 (after 8.0.0531) |
| 17736 | Problem: Test with long directory name fails on Mac. |
| 17737 | Solution: Skip the test on Mac systems. |
| 17738 | Files: src/testdir/test_edit.vim |
| 17739 | |
| 17740 | Patch 8.0.0533 |
| 17741 | Problem: Abbreviation doesn't work after backspacing newline. (Hkonrk) |
| 17742 | Solution: Set the insert start column. (closes #1609) |
| 17743 | Files: src/testdir/test_mapping.vim, src/edit.c |
| 17744 | |
| 17745 | Patch 8.0.0534 |
| 17746 | Problem: Defaults.vim does not work well with tiny features. (crd477) |
| 17747 | Solution: When the +eval feature is not available always reset 'compatible'. |
| 17748 | Files: runtime/defaults.vim |
| 17749 | |
| 17750 | Patch 8.0.0535 |
| 17751 | Problem: Memory leak when exiting from within a user function. |
| 17752 | Solution: Clear the function call stack on exit. |
| 17753 | Files: src/userfunc.c |
| 17754 | |
| 17755 | Patch 8.0.0536 |
| 17756 | Problem: Quickfix window not updated when freeing quickfix stack. |
| 17757 | Solution: Update the quickfix window. (Yegappan Lakshmanan) |
| 17758 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 17759 | |
| 17760 | Patch 8.0.0537 |
| 17761 | Problem: Illegal memory access with :z and large count. |
| 17762 | Solution: Check for number overflow, using long instead of int. (Dominique |
| 17763 | Pelle, closes #1612) |
| 17764 | Files: src/Makefile, src/ex_cmds.c, src/testdir/test_alot.vim, |
| 17765 | src/testdir/test_ex_z.vim |
| 17766 | |
| 17767 | Patch 8.0.0538 |
| 17768 | Problem: No test for falling back to default term value. |
| 17769 | Solution: Add a test. |
| 17770 | Files: src/testdir/test_startup.vim |
| 17771 | |
| 17772 | Patch 8.0.0539 (after 8.0.0538) |
| 17773 | Problem: Startup test fails on Mac. |
| 17774 | Solution: Use another term name, "unknown" is known. Avoid a 2 second delay. |
| 17775 | Files: src/testdir/test_startup.vim, src/main.c, src/proto/main.pro, |
| 17776 | src/term.c |
| 17777 | |
| 17778 | Patch 8.0.0540 (after 8.0.0540) |
| 17779 | Problem: Building unit tests fails. |
| 17780 | Solution: Move params outside of #ifdef. |
| 17781 | Files: src/main.c, src/message_test.c |
| 17782 | |
| 17783 | Patch 8.0.0541 |
| 17784 | Problem: Compiler warning on MS-Windows. |
| 17785 | Solution: Add a type cast. (Mike Williams) |
| 17786 | Files: src/edit.c |
| 17787 | |
| 17788 | Patch 8.0.0542 |
| 17789 | Problem: getpos() can return a negative line number. (haya14busa) |
| 17790 | Solution: Handle a zero topline and botline. (closes #1613) |
| 17791 | Files: src/eval.c, runtime/doc/eval.txt |
| 17792 | |
| 17793 | Patch 8.0.0543 |
| 17794 | Problem: Test_edit causes older xfce4-terminal to close. (Dominique Pelle) |
| 17795 | Solution: Reduce number of columns to 2000. Try to restore the window |
| 17796 | position. |
| 17797 | Files: src/testdir/test_edit.vim, src/evalfunc.c, src/term.c, |
| 17798 | src/proto/term.pro, src/term.h |
| 17799 | |
| 17800 | Patch 8.0.0544 |
| 17801 | Problem: Cppcheck warnings. |
| 17802 | Solution: Use temp variable. Change NUL to NULL. Swap conditions. (Dominique |
| 17803 | Pelle) |
| 17804 | Files: src/channel.c, src/edit.c, src/farsi.c |
| 17805 | |
| 17806 | Patch 8.0.0545 |
| 17807 | Problem: Edit test may fail on some systems. |
| 17808 | Solution: If creating a directory with a very long path fails, bail out. |
| 17809 | Files: src/testdir/test_edit.vim |
| 17810 | |
| 17811 | Patch 8.0.0546 |
| 17812 | Problem: Swap file exists briefly when opening the command window. |
| 17813 | Solution: Set the noswapfile command modifier before splitting the window. |
| 17814 | (James McCoy, closes #1620) |
| 17815 | Files: src/ex_getln.c, src/option.c |
| 17816 | |
| 17817 | Patch 8.0.0547 |
| 17818 | Problem: Extra line break in verbosefile when using ":echomsg". (Ingo |
| 17819 | Karkat) |
| 17820 | Solution: Don't call msg_start(). (closes #1618) |
| 17821 | Files: src/eval.c, src/testdir/test_cmdline.vim |
| 17822 | |
| 17823 | Patch 8.0.0548 |
| 17824 | Problem: Saving the redo buffer only works one time, resulting in the "." |
| 17825 | command not working well for a function call inside another |
| 17826 | function call. (Ingo Karkat) |
| 17827 | Solution: Save the redo buffer at every user function call. (closes #1619) |
| 17828 | Files: src/getchar.c, src/proto/getchar.pro, src/structs.h, |
| 17829 | src/fileio.c, src/userfunc.c, src/testdir/test_functions.vim |
| 17830 | |
| 17831 | Patch 8.0.0549 |
| 17832 | Problem: No test for the 8g8 command. |
| 17833 | Solution: Add a test. (Dominique Pelle, closes #1615) |
| 17834 | Files: src/testdir/test_normal.vim |
| 17835 | |
| 17836 | Patch 8.0.0550 |
| 17837 | Problem: Some etags format tags file use 0x01, breaking the parsing. |
| 17838 | Solution: Use 0x02 for TAG_SEP. (James McCoy, closes #1614) |
| 17839 | Files: src/tag.c, src/testdir/test_taglist.vim |
| 17840 | |
| 17841 | Patch 8.0.0551 |
| 17842 | Problem: The typeahead buffer is reallocated too often. |
| 17843 | Solution: Re-use the existing buffer if possible. |
| 17844 | Files: src/getchar.c |
| 17845 | |
| 17846 | Patch 8.0.0552 |
| 17847 | Problem: Toupper and tolower don't work properly for Turkish when 'casemap' |
| 17848 | is empty. (Bjorn Linse) |
| 17849 | Solution: Check the 'casemap' options when deciding how to upper/lower case. |
| 17850 | Files: src/charset.c, src/testdir/test_normal.vim |
| 17851 | |
| 17852 | Patch 8.0.0553 (after 8.0.0552) |
| 17853 | Problem: Toupper/tolower test with Turkish locale fails on Mac. |
| 17854 | Solution: Skip the test on Mac. |
| 17855 | Files: src/testdir/test_normal.vim |
| 17856 | |
| 17857 | Patch 8.0.0554 (after 8.0.0552) |
| 17858 | Problem: Toupper and tolower don't work properly for Turkish when 'casemap' |
| 17859 | contains "keepascii". (Bjorn Linse) |
| 17860 | Solution: When 'casemap' contains "keepascii" use ASCII toupper/tolower. |
| 17861 | Files: src/charset.c, src/testdir/test_normal.vim |
| 17862 | |
| 17863 | Patch 8.0.0555 (after 8.0.0552) |
| 17864 | Problem: Toupper/tolower test fails on OSX without Darwin. |
| 17865 | Solution: Skip that part of the test also for OSX. (Kazunobu Kuriyama) |
| 17866 | Files: src/testdir/test_normal.vim |
| 17867 | |
| 17868 | Patch 8.0.0556 |
| 17869 | Problem: Getting the window position fails if both the GUI and term |
| 17870 | code is built in. |
| 17871 | Solution: Return after getting the GUI window position. (Kazunobu Kuriyama) |
| 17872 | Files: src/evalfunc.c |
| 17873 | |
| 17874 | Patch 8.0.0557 |
| 17875 | Problem: GTK: using static gravities is not useful. |
| 17876 | Solution: Remove setting static gravities. (Kazunobu Kuriyama) |
| 17877 | Files: src/gui_gtk_f.c |
| 17878 | |
| 17879 | Patch 8.0.0558 |
| 17880 | Problem: The :ownsyntax command is not tested. |
| 17881 | Solution: Add a test. (Dominique Pelle, closes #1622) |
| 17882 | Files: src/testdir/test_syntax.vim |
| 17883 | |
| 17884 | Patch 8.0.0559 |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 17885 | Problem: Setting 'ttytype' to xxx does not always fail as expected. (Marvin |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 17886 | Schmidt) |
| 17887 | Solution: Catch both possible errors. (closes #1601) |
| 17888 | Files: src/testdir/test_options.vim |
| 17889 | |
| 17890 | Patch 8.0.0560 |
| 17891 | Problem: :windo allows for ! but it's not supported. |
| 17892 | Solution: Disallow passing !. (Hirohito Higashi) |
| 17893 | Files: src/ex_cmds.h |
| 17894 | |
| 17895 | Patch 8.0.0561 |
| 17896 | Problem: Undefined behavior when using backslash after empty line. |
| 17897 | Solution: Check for an empty line. (Dominique Pelle, closes #1631) |
| 17898 | Files: src/misc2.c, src/testdir/test_vimscript.vim |
| 17899 | |
| 17900 | Patch 8.0.0562 |
| 17901 | Problem: Not enough test coverage for syntax commands. |
| 17902 | Solution: Add a few more tests. (Dominique Pelle, closes #1624) |
| 17903 | Files: src/testdir/test_cmdline.vim, src/testdir/test_syntax.vim |
| 17904 | |
| 17905 | Patch 8.0.0563 |
| 17906 | Problem: Crash when getting the window position in tmux. (Marvin Schmidt) |
| 17907 | Solution: Add t_GP to the list of terminal options. (closes #1627) |
| 17908 | Files: src/option.c |
| 17909 | |
| 17910 | Patch 8.0.0564 |
| 17911 | Problem: Cannot detect Bazel BUILD files on some systems. |
| 17912 | Solution: Check for BUILD after script checks. (Issue #1340) |
| 17913 | Files: runtime/filetype.vim |
| 17914 | |
| 17915 | Patch 8.0.0565 |
| 17916 | Problem: Using freed memory in :caddbuf after clearing quickfix list. |
| 17917 | (Dominique Pelle) |
| 17918 | Solution: Set qf_last to NULL. |
| 17919 | Files: src/quickfix.c |
| 17920 | |
| 17921 | Patch 8.0.0566 |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 17922 | Problem: Setting 'nocompatible' for the tiny version moves the cursor. |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 17923 | Solution: Use another trick to skip commands when the +eval feature is |
| 17924 | present. (Christian Brabandt, closes #1630) |
| 17925 | Files: runtime/defaults.vim |
| 17926 | |
| 17927 | Patch 8.0.0567 |
| 17928 | Problem: Call for requesting color and ambiwidth is too early. (Hirohito |
| 17929 | Higashi) |
| 17930 | Solution: Move the call down to below resetting "starting". |
| 17931 | Files: src/main.c |
| 17932 | |
| 17933 | Patch 8.0.0568 |
| 17934 | Problem: "1gd" may hang. |
| 17935 | Solution: Don't get stuck in one position. (Christian Brabandt, closes #1643) |
| 17936 | Files: src/testdir/test_goto.vim, src/normal.c |
| 17937 | |
| 17938 | Patch 8.0.0569 |
| 17939 | Problem: Bracketed paste is still enabled when executing a shell command. |
| 17940 | (Michael Smith) |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 17941 | Solution: Disable bracketed paste when going into cooked mode. (closes #1638) |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 17942 | Files: src/term.c |
| 17943 | |
| 17944 | Patch 8.0.0570 |
| 17945 | Problem: Can't run make with several jobs, creating directories has a race |
| 17946 | condition. |
| 17947 | Solution: Use the MKDIR_P autoconf mechanism. (Eric N. Vander Weele, |
| 17948 | closes #1639) |
| 17949 | Files: src/configure.ac, src/auto/configure, src/Makefile, |
| 17950 | src/config.mk.in, src/install-sh, src/mkinstalldirs, Filelist |
| 17951 | |
| 17952 | Patch 8.0.0571 |
| 17953 | Problem: The cursor line number becomes negative when using :z^ in an empty |
| 17954 | buffer. (neovim #6557) |
| 17955 | Solution: Correct the line number. Also reset the column. |
| 17956 | Files: src/testdir/test_ex_z.vim, src/ex_cmds.c |
| 17957 | |
| 17958 | Patch 8.0.0572 |
| 17959 | Problem: Building the command table requires Perl. |
| 17960 | Solution: Use a Vim script solution. (Dominique Pelle, closes #1641) |
| 17961 | Files: src/Makefile, src/create_cmdidxs.pl, src/create_cmdidxs.vim, |
| 17962 | src/ex_cmdidxs.h, src/ex_docmd.c, Filelist |
| 17963 | |
| 17964 | Patch 8.0.0573 |
| 17965 | Problem: Running parallel make after distclean fails. (Manuel Ortega) |
| 17966 | Solution: Instead of using targets "scratch config myself" use "reconfig". |
| 17967 | Files: src/Makefile, src/config.mk.dist |
| 17968 | |
| 17969 | Patch 8.0.0574 |
| 17970 | Problem: Get only one quickfix list after :caddbuf. |
| 17971 | Solution: Reset qf_multiline. (Yegappan Lakshmanan) |
| 17972 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 17973 | |
| 17974 | Patch 8.0.0575 |
| 17975 | Problem: Using freed memory when resetting 'indentexpr' while evaluating |
| 17976 | it. (Dominique Pelle) |
| 17977 | Solution: Make a copy of 'indentexpr'. |
| 17978 | Files: src/misc1.c, src/testdir/test_options.vim |
| 17979 | |
| 17980 | Patch 8.0.0576 (after 8.0.0570 and 8.0.0573) |
Bram Moolenaar | b4d6c3e | 2017-05-27 16:45:17 +0200 | [diff] [blame] | 17981 | Problem: Can't build when configure chooses "install-sh". (Daniel Hahler) |
Bram Moolenaar | 0635ee6 | 2017-04-28 20:32:33 +0200 | [diff] [blame] | 17982 | Solution: Always use install-sh. Fix remaining use of mkinstalldirs. |
| 17983 | (closes #1647) |
| 17984 | Files: src/installman.sh, src/installml.sh, src/config.mk.in, |
| 17985 | src/configure.ac, src/auto/configure, src/Makefile |
| 17986 | |
| 17987 | Patch 8.0.0577 (after 8.0.0575) |
| 17988 | Problem: Warning for uninitialized variable. (John Marriott) |
| 17989 | Solution: Initialize "indent". |
| 17990 | Files: src/misc1.c |
| 17991 | |
| 17992 | Patch 8.0.0578 |
| 17993 | Problem: :simalt on MS-Windows does not work properly. |
| 17994 | Solution: Put something in the typeahead buffer. (Christian Brabandt) |
| 17995 | Files: src/gui_w32.c |
| 17996 | |
| 17997 | Patch 8.0.0579 |
| 17998 | Problem: Duplicate test case for quickfix. |
| 17999 | Solution: Remove the function. (Yegappan Lakshmanan) |
| 18000 | Files: src/testdir/test_quickfix.vim |
| 18001 | |
| 18002 | Patch 8.0.0580 |
| 18003 | Problem: Cannot set the valid flag with setqflist(). |
| 18004 | Solution: Add the "valid" argument. (Yegappan Lakshmanan, closes #1642) |
| 18005 | Files: runtime/doc/eval.txt, src/quickfix.c, |
| 18006 | src/testdir/test_quickfix.vim |
| 18007 | |
| 18008 | Patch 8.0.0581 |
| 18009 | Problem: Moving folded text is sometimes not correct. |
| 18010 | Solution: Bail out when "move_end" is zero. (Matthew Malcomson) |
| 18011 | Files: src/fold.c, src/testdir/test_fold.vim |
| 18012 | |
| 18013 | Patch 8.0.0582 |
| 18014 | Problem: Illegal memory access with z= command. (Dominique Pelle) |
| 18015 | Solution: Avoid case folded text to be longer than the original text. Use |
| 18016 | MB_PTR2LEN() instead of MB_BYTE2LEN(). |
| 18017 | Files: src/spell.c, src/testdir/test_spell.vim |
| 18018 | |
| 18019 | Patch 8.0.0583 |
| 18020 | Problem: Fold test hangs on MS-Windows. |
| 18021 | Solution: Avoid overflow in compare. |
| 18022 | Files: src/fold.c |
| 18023 | |
| 18024 | Patch 8.0.0584 |
| 18025 | Problem: Memory leak when executing quickfix tests. |
| 18026 | Solution: Free the list reference. (Yegappan Lakshmanan) |
| 18027 | Files: src/quickfix.c |
| 18028 | |
| 18029 | Patch 8.0.0585 |
| 18030 | Problem: Test_options fails when run in the GUI. |
| 18031 | Solution: Also check the 'imactivatekey' value when the GUI is not running. |
| 18032 | Specify test values that work and that fail. |
| 18033 | Files: src/option.c, src/testdir/gen_opt_test.vim |
| 18034 | |
| 18035 | Patch 8.0.0586 |
| 18036 | Problem: No test for mapping timing out. |
| 18037 | Solution: Add a test. |
| 18038 | Files: src/testdir/test_mapping.vim |
| 18039 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 18040 | vim:tw=78:ts=8:ft=help:norl: |