Bram Moolenaar | c0514bf | 2016-11-17 14:50:09 +0100 | [diff] [blame] | 1 | *version8.txt* For Vim version 8.0. Last change: 2016 Nov 06 |
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 | |
| 184 | Options: ~ |
| 185 | |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 186 | 'belloff' do not ring the bell for these reasons |
| 187 | 'breakindent' wrapped line repeats indent |
| 188 | 'breakindentopt' settings for 'breakindent'. |
| 189 | 'emoji' emoji characters are considered full width |
| 190 | 'fixendofline' make sure last line in file has <EOL> |
Bram Moolenaar | e4a3bcf | 2016-08-26 19:52:37 +0200 | [diff] [blame] | 191 | 'langremap' do apply 'langmap' to mapped characters |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 192 | 'luadll' name of the Lua dynamic library |
| 193 | 'packpath' list of directories used for packages |
| 194 | 'perldll' name of the Perl dynamic library |
| 195 | 'pythondll' name of the Python 2 dynamic library |
| 196 | 'pythonthreedll' name of the Python 3 dynamic library |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 197 | 'signcolumn' when to display the sign column |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 198 | 'renderoptions' options for text rendering on Windows |
| 199 | 'rubydll' name of the Ruby dynamic library |
| 200 | 'tagcase' how to handle case when searching in tags files |
| 201 | 'tcldll' name of the Tcl dynamic library |
| 202 | 'termguicolors' use GUI colors for the terminal |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 203 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 204 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 205 | Ex commands: ~ |
| 206 | |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 207 | |:cbottom| scroll to the bottom of the quickfix window |
| 208 | |:cdo| execute command in each valid error list entry |
| 209 | |:cfdo| execute command in each file in error list |
| 210 | |:chistory| display quickfix list stack |
| 211 | |:clearjumps| clear the jump list |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 212 | |:filter| only output lines that (do not) match a pattern |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 213 | |:helpclose| close one help window |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 214 | |:lbottom| scroll to the bottom of the location window |
| 215 | |:ldo| execute command in valid location list entries |
| 216 | |:lfdo| execute command in each file in location list |
| 217 | |:lhistory| display location list stack |
| 218 | |:noswapfile| following commands don't create a swap file |
| 219 | |:packadd| add a plugin from 'packpath' |
| 220 | |:packloadall| load all packages under 'packpath' |
| 221 | |:smile| make the user happy |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 222 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 223 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 224 | Ex command modifiers: ~ |
| 225 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 226 | |:keeppatterns| following command keeps search pattern history |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 227 | |
| 228 | |
| 229 | New and extended functions: ~ |
| 230 | |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 231 | |arglistid()| get id of the argument list |
| 232 | |assert_equal()| assert that two expressions values are equal |
| 233 | |assert_exception()| assert that a command throws an exception |
| 234 | |assert_fails()| assert that a function call fails |
| 235 | |assert_false()| assert that an expression is false |
| 236 | |assert_inrange()| assert that an expression is inside a range |
| 237 | |assert_match()| assert that a pattern matches the value |
| 238 | |assert_notequal()| assert that two expressions values are not equal |
| 239 | |assert_notmatch()| assert that a pattern does not match the value |
| 240 | |assert_true()| assert that an expression is true |
| 241 | |bufwinid()| get the window ID of a specific buffer |
| 242 | |byteidxcomp()| like byteidx() but count composing characters |
| 243 | |ch_close()| close a channel |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 244 | |ch_close_in()| close the in part of a channel |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 245 | |ch_evalexpr()| evaluates an expression over channel |
| 246 | |ch_evalraw()| evaluates a raw string over channel |
| 247 | |ch_getbufnr()| get the buffer number of a channel |
| 248 | |ch_getjob()| get the job associated with a channel |
| 249 | |ch_info()| get channel information |
| 250 | |ch_log()| write a message in the channel log file |
| 251 | |ch_logfile()| set the channel log file |
| 252 | |ch_open()| open a channel |
| 253 | |ch_read()| read a message from a channel |
| 254 | |ch_readraw()| read a raw message from a channel |
| 255 | |ch_sendexpr()| send a JSON message over a channel |
| 256 | |ch_sendraw()| send a raw message over a channel |
| 257 | |ch_setoptions()| set the options for a channel |
| 258 | |ch_status()| get status of a channel |
| 259 | |execute()| execute an Ex command and get the output |
| 260 | |exepath()| full path of an executable program |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 261 | |funcref()| return a reference to function {name} |
| 262 | |getbufinfo()| get a list with buffer information |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 263 | |getcharsearch()| return character search information |
| 264 | |getcmdwintype()| return the current command-line window type |
| 265 | |getcompletion()| return a list of command-line completion matches |
| 266 | |getcurpos()| get position of the cursor |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 267 | |gettabinfo()| get a list with tab page information |
| 268 | |getwininfo()| get a list with window information |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 269 | |glob2regpat()| convert a glob pattern into a search pattern |
| 270 | |isnan()| check for not a number |
| 271 | |job_getchannel()| get the channel used by a job |
| 272 | |job_info()| get information about a job |
| 273 | |job_setoptions()| set options for a job |
| 274 | |job_start()| start a job |
| 275 | |job_status()| get the status of a job |
| 276 | |job_stop()| stop a job |
| 277 | |js_decode()| decode a JSON string to Vim types |
| 278 | |js_encode()| encode an expression to a JSON string |
| 279 | |json_decode()| decode a JSON string to Vim types |
| 280 | |json_encode()| encode an expression to a JSON string |
| 281 | |matchaddpos()| define a list of positions to highlight |
| 282 | |matchstrpos()| match and positions of a pattern in a string |
| 283 | |perleval()| evaluate Perl expression |
| 284 | |reltimefloat()| convert reltime() result to a Float |
| 285 | |setcharsearch()| set character search information |
| 286 | |setfperm()| set the permissions of a file |
| 287 | |strcharpart()| get part of a string using char index |
| 288 | |strgetchar()| get character from a string using char index |
| 289 | |systemlist()| get the result of a shell command as a list |
| 290 | |test_alloc_fail()| make memory allocation fail |
| 291 | |test_autochdir()| test 'autochdir' functionality |
| 292 | |test_disable_char_avail()| test without typeahead |
| 293 | |test_garbagecollect_now()| free memory right now |
| 294 | |test_null_channel()| return a null Channel |
| 295 | |test_null_dict()| return a null Dict |
| 296 | |test_null_job()| return a null Job |
| 297 | |test_null_list()| return a null List |
| 298 | |test_null_partial()| return a null Partial function |
| 299 | |test_null_string()| return a null String |
| 300 | |test_settime()| set the time Vim uses internally |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 301 | |timer_info()| get information about timers |
| 302 | |timer_pause()| pause or unpause a timer |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 303 | |timer_start()| create a timer |
| 304 | |timer_stop()| stop a timer |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 305 | |timer_stopall()| stop all timers |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 306 | |uniq()| remove copies of repeated adjacent items |
| 307 | |win_findbuf()| find windows containing a buffer |
| 308 | |win_getid()| get window ID of a window |
| 309 | |win_gotoid()| go to window with ID |
| 310 | |win_id2tabwin()| get tab and window nr from window ID |
| 311 | |win_id2win()| get window nr from window ID |
| 312 | |wordcount()| get byte/word/char count of buffer |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 313 | |
| 314 | |
| 315 | New Vim variables: ~ |
| 316 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 317 | |v:beval_winid| Window ID of the window where the mouse pointer is |
| 318 | |v:completed_item| complete items for the most recently completed word |
| 319 | |v:errors| errors found by assert functions |
| 320 | |v:false| a Number with value zero |
| 321 | |v:hlsearch| indicates whether search highlighting is on |
| 322 | |v:mouse_winid| Window ID for a mouse click obtained with |getchar()| |
| 323 | |v:none| an empty String, used for JSON |
| 324 | |v:null| an empty String, used for JSON |
| 325 | |v:option_new| new value of the option, used by |OptionSet| |
| 326 | |v:option_old| old value of the option, used by |OptionSet| |
| 327 | |v:option_type| scope of the set command, used by |OptionSet| |
| 328 | |v:progpath| the command with which Vim was invoked |
| 329 | |v:t_bool| value of Boolean type |
| 330 | |v:t_channel| value of Channel type |
| 331 | |v:t_dict| value of Dictionary type |
| 332 | |v:t_float| value of Float type |
| 333 | |v:t_func| value of Funcref type |
| 334 | |v:t_job| value of Job type |
| 335 | |v:t_list| value of List type |
| 336 | |v:t_none| value of None type |
| 337 | |v:t_number| value of Number type |
| 338 | |v:t_string| value of String type |
| 339 | |v:testing| must be set before using `test_garbagecollect_now()` |
| 340 | |v:true| a Number with value one |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 341 | |v:vim_did_enter| set just before VimEnter autocommands are triggered |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 342 | |
| 343 | |
| 344 | New autocommand events: ~ |
| 345 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 346 | |CmdUndefined| a user command is used but it isn't defined |
| 347 | |OptionSet| after setting any option |
| 348 | |TabClosed| after closing a tab page |
| 349 | |TabNew| after creating a new tab page |
| 350 | |TextChangedI| after a change was made to the text in Insert mode |
| 351 | |TextChanged| after a change was made to the text in Normal mode |
| 352 | |WinNew| after creating a new window |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 353 | |
| 354 | |
| 355 | New highlight groups: ~ |
| 356 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 357 | EndOfBuffer filler lines (~) after the last line in the buffer. |
| 358 | |hl-EndOfBuffer| |
| 359 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 360 | |
| 361 | New items in search patterns: ~ |
| 362 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 363 | |/\%C| \%C match any composing characters |
| 364 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 365 | |
| 366 | New Syntax/Indent/FTplugin files: ~ |
| 367 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 368 | AVR Assembler (Avra) syntax |
| 369 | Arduino syntax |
| 370 | Bazel syntax and indent and ftplugin |
| 371 | Dockerfile syntax and ftplugin |
| 372 | Eiffel ftplugin |
| 373 | Euphoria 3 and 4 syntax |
| 374 | Go syntax and indent and ftplugin |
| 375 | Godoc syntax |
| 376 | Groovy ftplugin |
| 377 | HGcommit ftplugin |
| 378 | Hog indent and ftplugin |
| 379 | Innovation Data Processing upstream.pt syntax |
| 380 | J syntax and indent and ftplugin |
| 381 | Jproperties ftplugin |
| 382 | Json syntax and indent and ftplugin |
| 383 | Kivy syntax |
| 384 | Less syntax and indent |
| 385 | Mix syntax |
| 386 | Motorola S-Record syntax |
| 387 | R ftplugin |
| 388 | ReStructuredText syntax and indent and ftplugin |
| 389 | Registry ftplugin |
| 390 | Rhelp indent and ftplugin |
| 391 | Rmd (markdown with R code chunks) syntax and indent |
| 392 | Rmd ftplugin |
| 393 | Rnoweb ftplugin |
| 394 | Rnoweb indent |
Bram Moolenaar | e4a3bcf | 2016-08-26 19:52:37 +0200 | [diff] [blame] | 395 | Scala syntax and indent and ftplugin |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 396 | SystemVerilog syntax and indent and ftplugin |
| 397 | Systemd syntax and indent and ftplugin |
| 398 | Teraterm (TTL) syntax and indent |
| 399 | Text ftplugin |
| 400 | Vroom syntax and indent and ftplugin |
| 401 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 402 | |
| 403 | New Keymaps: ~ |
| 404 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 405 | Armenian eastern and western |
| 406 | Russian jcukenwintype |
| 407 | Vietnamese telex and vni |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 408 | |
| 409 | ============================================================================== |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 410 | INCOMPATIBLE CHANGES *incompatible-8* |
| 411 | |
| 412 | These changes are incompatible with previous releases. Check this list if you |
| 413 | run into a problem when upgrading from Vim 7.4 to 8.0. |
| 414 | |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 415 | |
| 416 | Better defaults without a vimrc ~ |
| 417 | |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 418 | When no vimrc file is found, the |defaults.vim| script is loaded to set more |
| 419 | useful default values for new users. That includes setting 'nocompatible'. |
| 420 | Thus Vim no longer starts up in Vi compatible mode. If you do want that, |
| 421 | either create a .vimrc file that does "set compatible" or start Vim with |
| 422 | "Vim -C". |
| 423 | |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 424 | |
| 425 | Support removed ~ |
| 426 | |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 427 | 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] | 428 | (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] | 429 | |
| 430 | The support for Windows 16 bit (Windows 95 and older) has been removed. |
| 431 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 432 | The support for OS/2 has been removed. It probably hasn't been working for a |
| 433 | while since nobody uses it. |
| 434 | |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 435 | The SNiFF+ support has been removed. |
| 436 | |
| 437 | |
| 438 | Minor incompatibilities: ~ |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 439 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 440 | Probably... |
Bram Moolenaar | 063b9d1 | 2016-07-09 20:21:48 +0200 | [diff] [blame] | 441 | |
| 442 | ============================================================================== |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 443 | IMPROVEMENTS *improvements-8* |
| 444 | |
| 445 | The existing blowfish encryption turned out to be much weaker than it was |
| 446 | supposed to be. The blowfish2 method has been added to fix that. Note that |
| 447 | this still isn't a state-of-the-art encryption, but good enough for most |
| 448 | usage. See 'cryptmethod'. |
| 449 | |
Bram Moolenaar | 36f44c2 | 2016-08-28 18:17:20 +0200 | [diff] [blame] | 450 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 451 | ============================================================================== |
| 452 | COMPILE TIME CHANGES *compile-changes-8* |
| 453 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 454 | The Vim repository was moved from Google code to github, since Google code |
| 455 | 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] | 456 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 457 | Functions now use ANSI-C declarations. At least a C-89 compatible compiler is |
| 458 | required. |
| 459 | |
| 460 | The +visual feature is now always included. |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 461 | |
| 462 | ============================================================================== |
| 463 | PATCHES *patches-8* *bug-fixes-8* |
| 464 | |
| 465 | The list of patches that got included since 7.4.0. This includes all the new |
| 466 | features, but does not include runtime file changes (syntax, indent, help, |
| 467 | etc.) |
| 468 | |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 469 | Patch 7.4.001 |
| 470 | Problem: Character classes such as [a-z] do not react to 'ignorecase'. |
| 471 | Breaks man page highlighting. (Mario Grgic) |
| 472 | Solution: Add separate items for classes that react to 'ignorecase'. Clean |
| 473 | up logic handling character classes. Add more tests. |
| 474 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 475 | |
| 476 | Patch 7.4.002 |
| 477 | Problem: Pattern with two alternative look-behind matches does not match. |
| 478 | (Amadeus Demarzi) |
| 479 | Solution: When comparing PIMs also compare their state ID to see if they are |
| 480 | different. |
| 481 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 482 | |
| 483 | Patch 7.4.003 |
| 484 | Problem: Memory access error in Ruby syntax highlighting. (Christopher Chow) |
| 485 | Solution: Refresh stale pointer. (James McCoy) |
| 486 | Files: src/regexp_nfa.c |
| 487 | |
| 488 | Patch 7.4.004 |
| 489 | Problem: When closing a window fails ":bwipe" may hang. |
| 490 | Solution: Let win_close() return FAIL and break out of the loop. |
| 491 | Files: src/window.c, src/proto/window.pro, src/buffer.c |
| 492 | |
| 493 | Patch 7.4.005 |
| 494 | Problem: Using "vaB" while 'virtualedit' is set selects the wrong area. |
| 495 | (Dimitar Dimitrov) |
| 496 | Solution: Reset coladd when finding a match. |
| 497 | Files: src/search.c |
| 498 | |
| 499 | Patch 7.4.006 |
| 500 | Problem: mkdir("foo/bar/", "p") gives an error message. (David Barnett) |
| 501 | Solution: Remove the trailing slash. (lcd) |
| 502 | Files: src/eval.c |
| 503 | |
| 504 | Patch 7.4.007 |
| 505 | Problem: Creating a preview window on startup leaves the screen layout in a |
| 506 | messed up state. (Marius Gedminas) |
| 507 | Solution: Don't change firstwin. (Christian Brabandt) |
| 508 | Files: src/main.c |
| 509 | |
| 510 | Patch 7.4.008 |
| 511 | Problem: New regexp engine can't be interrupted. |
| 512 | Solution: Check for CTRL-C pressed. (Yasuhiro Matsumoto) |
| 513 | Files: src/regexp_nfa.c, src/regexp.c |
| 514 | |
| 515 | Patch 7.4.009 |
| 516 | Problem: When a file was not decrypted (yet), writing it may destroy the |
| 517 | contents. |
| 518 | Solution: Mark the file as readonly until decryption was done. (Christian |
| 519 | Brabandt) |
| 520 | Files: src/fileio.c |
| 521 | |
| 522 | Patch 7.4.010 (after 7.4.006) |
| 523 | Problem: Crash with invalid argument to mkdir(). |
| 524 | Solution: Check for empty string. (lcd47) |
| 525 | Files: src/eval.c |
| 526 | |
| 527 | Patch 7.4.011 |
| 528 | Problem: Cannot find out if "acl" and "xpm" features are supported. |
| 529 | Solution: Add "acl" and "xpm" to the list of features. (Ken Takata) |
| 530 | Files: src/eval.c, src/version.c |
| 531 | |
| 532 | Patch 7.4.012 |
| 533 | Problem: MS-Windows: resolving shortcut does not work properly with |
| 534 | multi-byte characters. |
| 535 | Solution: Use wide system functions. (Ken Takata) |
| 536 | Files: src/os_mswin.c |
| 537 | |
| 538 | Patch 7.4.013 |
| 539 | Problem: MS-Windows: File name buffer too small for utf-8. |
| 540 | Solution: Use character count instead of byte count. (Ken Takata) |
| 541 | Files: src/os_mswin.c |
| 542 | |
| 543 | Patch 7.4.014 |
| 544 | Problem: MS-Windows: check for writing to device does not work. |
| 545 | Solution: Fix #ifdefs. (Ken Takata) |
| 546 | Files: src/fileio.c |
| 547 | |
| 548 | Patch 7.4.015 |
| 549 | Problem: MS-Windows: Detecting node type does not work for multi-byte |
| 550 | characters. |
| 551 | Solution: Use wide character function when needed. (Ken Takata) |
| 552 | Files: src/os_win32.c |
| 553 | |
| 554 | Patch 7.4.016 |
| 555 | Problem: MS-Windows: File name case can be wrong. |
| 556 | Solution: Add fname_casew(). (Ken Takata) |
| 557 | Files: src/os_win32.c |
| 558 | |
| 559 | Patch 7.4.017 |
| 560 | Problem: ":help !!" does not find the "!!" tag in the help file. (Ben |
| 561 | Fritz) |
| 562 | Solution: When reading the start of the tags file do parse lines that are |
| 563 | not header lines. |
| 564 | Files: src/tag.c |
| 565 | |
| 566 | Patch 7.4.018 |
| 567 | Problem: When completing item becomes unselected. (Shougo Matsu) |
| 568 | Solution: Revert patch 7.3.1269. |
| 569 | Files: src/edit.c |
| 570 | |
| 571 | Patch 7.4.019 |
| 572 | Problem: MS-Windows: File name completion doesn't work properly with |
| 573 | Chinese characters. (Yue Wu) |
| 574 | Solution: Take care of multi-byte characters when looking for the start of |
| 575 | the file name. (Ken Takata) |
| 576 | Files: src/edit.c |
| 577 | |
| 578 | Patch 7.4.020 |
| 579 | Problem: NFA engine matches too much with \@>. (John McGowan) |
| 580 | Solution: When a whole pattern match is found stop searching. |
| 581 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 582 | |
| 583 | Patch 7.4.021 |
| 584 | Problem: NFA regexp: Using \ze in one branch which doesn't match may cause |
| 585 | end of another branch to be wrong. (William Fugh) |
| 586 | Solution: Set end position if it wasn't set yet. |
| 587 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 588 | |
| 589 | Patch 7.4.022 |
| 590 | Problem: Deadlock while exiting, because of allocating memory. |
| 591 | Solution: Do not use gettext() in deathtrap(). (James McCoy) |
| 592 | Files: src/os_unix.c, src/misc1.c |
| 593 | |
| 594 | Patch 7.4.023 |
| 595 | Problem: Compiler warning on 64 bit windows. |
| 596 | Solution: Add type cast. (Mike Williams) |
| 597 | Files: src/edit.c |
| 598 | |
| 599 | Patch 7.4.024 |
| 600 | Problem: When root edits a file the undo file is owned by root while the |
| 601 | edited file may be owned by another user, which is not allowed. |
| 602 | (cac2s) |
| 603 | Solution: Accept an undo file owned by the current user. |
| 604 | Files: src/undo.c |
| 605 | |
| 606 | Patch 7.4.025 (after 7.4.019) |
| 607 | Problem: Reading before start of a string. |
| 608 | Solution: Do not call mb_ptr_back() at start of a string. (Dominique Pelle) |
| 609 | Files: src/edit.c |
| 610 | |
| 611 | Patch 7.4.026 |
| 612 | Problem: Clang warning for int shift overflow. |
| 613 | Solution: Use unsigned and cast back to int. (Dominique Pelle) |
| 614 | Files: src/misc2.c |
| 615 | |
| 616 | Patch 7.4.027 (after 7.4.025) |
| 617 | Problem: Another valgrind error when using CTRL-X CTRL-F at the start of |
| 618 | the line. (Dominique Pelle) |
| 619 | Solution: Don't call mb_ptr_back() at the start of the line. Add a test. |
| 620 | Files: src/edit.c, src/testdir/test32.in |
| 621 | |
| 622 | Patch 7.4.028 |
| 623 | Problem: Equivalence classes are not working for multi-byte characters. |
| 624 | Solution: Copy the rules from the old to the new regexp engine. Add a test |
| 625 | to check both engines. |
| 626 | Files: src/regexp_nfa.c, src/testdir/test44.in, src/testdir/test99.in, |
| 627 | src/testdir/test99.ok, src/testdir/Make_amiga.mak, |
| 628 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 629 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 630 | src/testdir/Makefile |
| 631 | |
| 632 | Patch 7.4.029 |
| 633 | Problem: An error in a pattern is reported twice. |
| 634 | Solution: Remove the retry with the backtracking engine, it won't work. |
| 635 | Files: src/regexp.c |
| 636 | |
| 637 | Patch 7.4.030 |
| 638 | Problem: The -mno-cygwin argument is no longer supported by Cygwin. |
| 639 | Solution: Remove the arguments. (Steve Hall) |
| 640 | Files: src/GvimExt/Make_cyg.mak, src/Make_cyg.mak, src/xxd/Make_cyg.mak |
| 641 | |
| 642 | Patch 7.4.031 |
| 643 | Problem: ":diffoff!" resets options even when 'diff' is not set. (Charles |
| 644 | Cooper) |
| 645 | Solution: Only resets related options in a window where 'diff' is set. |
| 646 | Files: src/diff.c |
| 647 | |
| 648 | Patch 7.4.032 |
| 649 | Problem: NFA engine does not match the NUL character. (Jonathon Merz) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 650 | Solution: Use 0x0a instead of NUL. (Christian Brabandt) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 651 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 652 | |
| 653 | Patch 7.4.033 |
| 654 | Problem: When the terminal has only 20 lines test 92 and 93 overwrite the |
| 655 | input file. |
| 656 | Solution: Explicitly write test.out. Check that the terminal is large enough |
| 657 | to run the tests. (Hirohito Higashi) |
| 658 | Files: src/testdir/test92.in, src/testdir/test93.in, |
| 659 | src/testdir/test1.in, src/testdir/Makefile |
| 660 | |
| 661 | Patch 7.4.034 |
| 662 | Problem: Using "p" in Visual block mode only changes the first line. |
| 663 | Solution: Repeat the put in all text in the block. (Christian Brabandt) |
| 664 | Files: runtime/doc/change.txt, src/ops.c, src/normal.c, |
| 665 | src/testdir/test20.in, src/testdir/test20.ok |
| 666 | |
| 667 | Patch 7.4.035 |
| 668 | Problem: MS-Windows: The mouse pointer flickers when going from command |
| 669 | line mode to Normal mode. |
| 670 | Solution: Check for WM_NCMOUSEMOVE. (Ken Takata) |
| 671 | Files: src/gui_w48.c |
| 672 | |
| 673 | Patch 7.4.036 |
| 674 | Problem: NFA engine does not capture group correctly when using \@>. (ZyX) |
| 675 | Solution: Copy submatches before doing the recursive match. |
| 676 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 677 | |
| 678 | Patch 7.4.037 |
| 679 | Problem: Using "\ze" in a sub-pattern does not result in the end of the |
| 680 | match to be set. (Axel Bender) |
| 681 | Solution: Copy the end of match position when a recursive match was |
| 682 | successful. |
| 683 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 684 | |
| 685 | Patch 7.4.038 |
| 686 | Problem: Using "zw" and "zg" when 'spell' is off give a confusing error |
| 687 | message. (Gary Johnson) |
| 688 | Solution: Ignore the error when locating the word. Explicitly mention what |
| 689 | word was added. (Christian Brabandt) |
| 690 | Files: src/normal.c, src/spell.c |
| 691 | |
| 692 | Patch 7.4.039 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 693 | Problem: MS-Windows: MSVC10 and earlier can't handle symlinks to a |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 694 | directory properly. |
| 695 | Solution: Add stat_symlink_aware() and wstat_symlink_aware(). (Ken Takata) |
| 696 | Files: src/os_mswin.c, src/os_win32.c, src/os_win32.h |
| 697 | |
| 698 | Patch 7.4.040 |
| 699 | Problem: Valgrind error on exit when a script-local variable holds a |
| 700 | reference to the scope of another script. |
| 701 | Solution: First clear all variables, then free the scopes. (ZyX) |
| 702 | Files: src/eval.c |
| 703 | |
| 704 | Patch 7.4.041 (after 7.4.034) |
| 705 | Problem: Visual selection does not remain after being copied over. (Axel |
| 706 | Bender) |
| 707 | Solution: Move when VIsual_active is reset. (Christian Brabandt) |
| 708 | Files: src/ops.c |
| 709 | |
| 710 | Patch 7.4.042 |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 711 | Problem: When using ":setlocal" for 'spell' and 'spelllang' then :spelldump |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 712 | doesn't work. (Dimitar Dimitrov) |
| 713 | Solution: Copy the option variables to the new window used to show the dump. |
| 714 | (Christian Brabandt) |
| 715 | Files: src/spell.c |
| 716 | |
| 717 | Patch 7.4.043 |
| 718 | Problem: VMS can't handle long function names. |
| 719 | Solution: Shorten may_req_ambiguous_character_width. (Samuel Ferencik) |
| 720 | Files: src/main.c, src/term.c, src/proto/term.pro |
| 721 | |
| 722 | |
| 723 | Patch 7.4.044 (after 7.4.039) |
| 724 | Problem: Can't build with old MSVC. (Wang Shoulin) |
| 725 | Solution: Define OPEN_OH_ARGTYPE instead of using intptr_t directly. |
| 726 | Files: src/os_mswin.c |
| 727 | |
| 728 | Patch 7.4.045 |
| 729 | Problem: substitute() does not work properly when the pattern starts with |
| 730 | "\ze". |
| 731 | Solution: Detect an empty match. (Christian Brabandt) |
| 732 | Files: src/eval.c, src/testdir/test80.in, src/testdir/test80.ok |
| 733 | |
| 734 | Patch 7.4.046 |
| 735 | Problem: Can't use Tcl 8.6. |
| 736 | Solution: Change how Tcl_FindExecutable is called. (Jan Nijtmans) |
| 737 | Files: src/if_tcl.c |
| 738 | |
| 739 | Patch 7.4.047 |
| 740 | Problem: When using input() in a function invoked by a mapping it doesn't |
| 741 | work. |
| 742 | Solution: Temporarily reset ex_normal_busy. (Yasuhiro Matsumoto) |
| 743 | Files: src/eval.c |
| 744 | |
| 745 | Patch 7.4.048 |
| 746 | Problem: Recent clang version complains about -fno-strength-reduce. |
| 747 | Solution: Add a configure check for the clang version. (Kazunobu Kuriyama) |
| 748 | Files: src/configure.in, src/auto/configure |
| 749 | |
| 750 | Patch 7.4.049 |
| 751 | Problem: In Ex mode, when line numbers are enabled the substitute prompt is |
| 752 | wrong. |
| 753 | Solution: Adjust for the line number size. (Benoit Pierre) |
| 754 | Files: src/ex_cmds.c |
| 755 | |
| 756 | Patch 7.4.050 |
| 757 | Problem: "gn" selects too much for the pattern "\d" when there are two |
| 758 | lines with a single digit. (Ryan Carney) |
| 759 | Solution: Adjust the logic of is_one_char(). (Christian Brabandt) |
| 760 | Files: src/search.c, src/testdir/test53.in, src/testdir/test53.ok |
| 761 | |
| 762 | Patch 7.4.051 |
| 763 | Problem: Syntax highlighting a Yaml file causes a crash. (Blake Preston) |
| 764 | Solution: Copy the pim structure before calling addstate() to avoid it |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 765 | becoming invalid when the state list is reallocated. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 766 | Files: src/regexp_nfa.c |
| 767 | |
| 768 | Patch 7.4.052 |
| 769 | Problem: With 'fo' set to "a2" inserting a space in the first column may |
| 770 | cause the cursor to jump to the previous line. |
| 771 | Solution: Handle the case when there is no comment leader properly. (Tor |
| 772 | Perkins) Also fix that cursor is in the wrong place when spaces |
| 773 | get replaced with a Tab. |
| 774 | Files: src/misc1.c, src/ops.c, src/testdir/test68.in, |
| 775 | src/testdir/test68.ok |
| 776 | |
| 777 | Patch 7.4.053 |
| 778 | Problem: Test75 has a wrong header. (ZyX) |
| 779 | Solution: Fix the text and remove leading ". |
| 780 | Files: src/testdir/test75.in |
| 781 | |
| 782 | Patch 7.4.054 |
| 783 | Problem: Reading past end of the 'stl' string. |
| 784 | Solution: Don't increment pointer when already at the NUL. (Christian |
| 785 | Brabandt) |
| 786 | Files: src/buffer.c |
| 787 | |
| 788 | Patch 7.4.055 |
| 789 | Problem: Mac: Where availability macros are defined depends on the system. |
| 790 | Solution: Add a configure check. (Felix Bünemann) |
| 791 | Files: src/config.h.in, src/configure.in, src/auto/configure, |
| 792 | src/os_mac.h |
| 793 | |
| 794 | Patch 7.4.056 |
| 795 | Problem: Mac: Compilation problem with OS X 10.9 Mavericks. |
| 796 | Solution: Include AvailabilityMacros.h when available. (Kazunobu Kuriyama) |
| 797 | Files: src/os_unix.c |
| 798 | |
| 799 | Patch 7.4.057 |
| 800 | Problem: byteidx() does not work for composing characters. |
| 801 | Solution: Add byteidxcomp(). |
| 802 | Files: src/eval.c, src/testdir/test69.in, src/testdir/test69.ok, |
| 803 | runtime/doc/eval.txt |
| 804 | |
| 805 | Patch 7.4.058 |
| 806 | Problem: Warnings on 64 bit Windows. |
| 807 | Solution: Add type casts. (Mike Williams) |
| 808 | Files: src/ops.c |
| 809 | |
| 810 | Patch 7.4.059 |
| 811 | Problem: set_last_cursor() may encounter w_buffer being NULL. (Matt |
| 812 | Mkaniaris) |
| 813 | Solution: Check for NULL. |
| 814 | Files: src/mark.c |
| 815 | |
| 816 | Patch 7.4.060 |
| 817 | Problem: Declaration has wrong return type for PyObject_SetAttrString(). |
| 818 | Solution: Use int instead of PyObject. (Andreas Schwab) |
| 819 | Files: src/if_python.c, src/if_python3.c |
| 820 | |
| 821 | Patch 7.4.061 (after 7.4.055 and 7.4.056) |
| 822 | Problem: Availability macros configure check in wrong place. |
| 823 | Solution: Also check when not using Darwin. Remove version check. |
| 824 | Files: src/configure.in, src/auto/configure, src/os_unix.c |
| 825 | |
| 826 | Patch 7.4.062 (after 7.4.061) |
| 827 | Problem: Configure check for AvailabilityMacros.h is wrong. |
| 828 | Solution: Use AC_CHECK_HEADERS(). |
| 829 | Files: src/configure.in, src/auto/configure |
| 830 | |
| 831 | Patch 7.4.063 |
| 832 | Problem: Crash when using invalid key in Python dictionary. |
| 833 | Solution: Check for object to be NULL. Add tests. (ZyX) |
| 834 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok, |
| 835 | src/testdir/test87.in, src/testdir/test87.ok |
| 836 | |
| 837 | Patch 7.4.064 |
| 838 | Problem: When replacing a character in Visual block mode, entering a CR |
| 839 | does not cause a repeated line break. |
| 840 | Solution: Recognize the situation and repeat the line break. (Christian |
| 841 | Brabandt) |
| 842 | Files: src/normal.c, src/ops.c, src/testdir/test39.in, |
| 843 | src/testdir/test39.ok |
| 844 | |
| 845 | Patch 7.4.065 |
| 846 | Problem: When recording, the character typed at the hit-enter prompt is |
| 847 | recorded twice. (Urtica Dioica) |
| 848 | Solution: Avoid recording the character twice. (Christian Brabandt) |
| 849 | Files: src/message.c |
| 850 | |
| 851 | Patch 7.4.066 |
| 852 | Problem: MS-Windows: When there is a colon in the file name (sub-stream |
| 853 | feature) the swap file name is wrong. |
| 854 | Solution: Change the colon to "%". (Yasuhiro Matsumoto) |
| 855 | Files: src/fileio.c, src/memline.c, src/misc1.c, src/proto/misc1.pro |
| 856 | |
| 857 | Patch 7.4.067 |
| 858 | Problem: After inserting comment leader, CTRL-\ CTRL-O does move the |
| 859 | cursor. (Wiktor Ruben) |
| 860 | Solution: Avoid moving the cursor. (Christian Brabandt) |
| 861 | Files: src/edit.c |
| 862 | |
| 863 | Patch 7.4.068 |
| 864 | Problem: Cannot build Vim on Mac with non-Apple compilers. |
| 865 | Solution: Remove the -no-cpp-precomp flag. (Misty De Meo) |
| 866 | Files: src/configure.in, src/auto/configure, src/osdef.sh |
| 867 | |
| 868 | Patch 7.4.069 |
| 869 | Problem: Cannot right shift lines starting with #. |
| 870 | Solution: Allow the right shift when 'cino' contains #N with N > 0. |
| 871 | (Christian Brabandt) |
| 872 | Refactor parsing 'cino', store the values in the buffer. |
| 873 | Files: runtime/doc/indent.txt, src/buffer.c, src/edit.c, src/eval.c, |
| 874 | src/ex_getln.c, src/fold.c, src/misc1.c, src/ops.c, |
| 875 | src/proto/misc1.pro, src/proto/option.pro, src/structs.h, |
| 876 | src/option.c |
| 877 | |
| 878 | Patch 7.4.070 (after 7.4.069) |
| 879 | Problem: Can't compile with tiny features. (Tony Mechelynck) |
| 880 | Solution: Add #ifdef. |
| 881 | Files: src/buffer.c |
| 882 | |
| 883 | Patch 7.4.071 (after 7.4.069) |
| 884 | Problem: Passing limits around too often. |
| 885 | Solution: Use limits from buffer. |
| 886 | Files: src/edit.c, src/misc1.c, src/proto/misc1.pro |
| 887 | |
| 888 | Patch 7.4.072 |
| 889 | Problem: Crash when using Insert mode completion. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 890 | 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] | 891 | Files: src/popupmnu.c |
| 892 | |
| 893 | Patch 7.4.073 |
| 894 | Problem: Setting undolevels for one buffer changes undo in another. |
| 895 | Solution: Make 'undolevels' a global-local option. (Christian Brabandt) |
| 896 | Files: runtime/doc/options.txt, src/buffer.c, src/option.c, src/option.h |
| 897 | src/structs.h, src/undo.c |
| 898 | |
| 899 | Patch 7.4.074 |
| 900 | Problem: When undo'ing all changes and creating a new change the undo |
| 901 | structure is incorrect. (Christian Brabandt) |
| 902 | Solution: When deleting the branch starting at the old header, delete the |
| 903 | whole branch, not just the first entry. |
| 904 | Files: src/undo.c |
| 905 | |
| 906 | Patch 7.4.075 |
| 907 | Problem: Locally setting 'undolevels' is not tested. |
| 908 | Solution: Add a test. (Christian Brabandt) |
| 909 | Files: src/testdir/test100.in, src/testdir/test100.ok, |
| 910 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 911 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 912 | src/testdir/Make_vms.mms, src/testdir/Makefile, src/Makefile |
| 913 | |
| 914 | Patch 7.4.076 |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 915 | 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] | 916 | Solution: Restore 'wrapscan' earlier. (Christian Brabandt) |
| 917 | Files: src/search.c |
| 918 | |
| 919 | Patch 7.4.077 |
| 920 | Problem: DOS installer creates shortcut without a path, resulting in the |
| 921 | current directory to be C:\Windows\system32. |
| 922 | Solution: Use environment variables. |
| 923 | Files: src/dosinst.c |
| 924 | |
| 925 | Patch 7.4.078 |
| 926 | Problem: MSVC 2013 is not supported. |
| 927 | Solution: Recognize and support MSVC 2013. (Ed Brown) |
| 928 | Files: src/Make_mvc.mak |
| 929 | |
| 930 | Patch 7.4.079 |
| 931 | Problem: A script cannot detect whether 'hlsearch' highlighting is actually |
| 932 | displayed. |
| 933 | Solution: Add the "v:hlsearch" variable. (ZyX) |
| 934 | Files: src/eval.c, src/ex_docmd.c, |
| 935 | src/option.c, src/screen.c, src/search.c, src/tag.c, src/vim.h, |
| 936 | src/testdir/test101.in, src/testdir/test101.ok, |
| 937 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 938 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 939 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 940 | |
| 941 | Patch 7.4.080 (after 7.4.079) |
| 942 | Problem: Missing documentation for v:hlsearch. |
| 943 | Solution: Include the right file in the patch. |
| 944 | Files: runtime/doc/eval.txt |
| 945 | |
| 946 | Patch 7.4.081 (after 7.4.078) |
| 947 | Problem: Wrong logic when ANALYZE is "yes". |
| 948 | Solution: Use or instead of and. (KF Leong) |
| 949 | Files: src/Make_mvc.mak |
| 950 | |
| 951 | Patch 7.4.082 |
| 952 | Problem: Using "gf" in a changed buffer suggests adding "!", which is not |
| 953 | possible. (Tim Chase) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 954 | Solution: Pass a flag to check_changed() whether adding ! make sense. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 955 | Files: src/vim.h, src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/globals.h, |
| 956 | src/ex_cmds.c, src/ex_docmd.c |
| 957 | |
| 958 | Patch 7.4.083 |
| 959 | Problem: It's hard to avoid adding a used pattern to the search history. |
| 960 | Solution: Add the ":keeppatterns" modifier. (Christian Brabandt) |
| 961 | Files: runtime/doc/cmdline.txt, src/ex_cmds.h, src/ex_docmd.c, |
| 962 | src/ex_getln.c, src/structs.h |
| 963 | |
| 964 | Patch 7.4.084 |
| 965 | Problem: Python: interrupt not being properly discarded. (Yggdroot Chen) |
| 966 | Solution: Discard interrupt in VimTryEnd. (ZyX) |
| 967 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok, |
| 968 | src/testdir/test87.in, src/testdir/test87.ok |
| 969 | |
| 970 | Patch 7.4.085 |
| 971 | Problem: When inserting text in Visual block mode and moving the cursor the |
| 972 | wrong text gets repeated in other lines. |
| 973 | Solution: Use the '[ mark to find the start of the actually inserted text. |
| 974 | (Christian Brabandt) |
| 975 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 976 | |
| 977 | Patch 7.4.086 |
| 978 | Problem: Skipping over an expression when not evaluating it does not work |
| 979 | properly for dict members. |
| 980 | Solution: Skip over unrecognized expression. (ZyX) |
| 981 | Files: src/eval.c, src/testdir/test34.in, src/testdir/test34.ok |
| 982 | |
| 983 | Patch 7.4.087 |
| 984 | Problem: Compiler warning on 64 bit Windows systems. |
| 985 | Solution: Fix type cast. (Mike Williams) |
| 986 | Files: src/ops.c |
| 987 | |
| 988 | Patch 7.4.088 |
| 989 | Problem: When spell checking is enabled Asian characters are always marked |
| 990 | as error. |
| 991 | Solution: When 'spelllang' contains "cjk" do not mark Asian characters as |
| 992 | error. (Ken Takata) |
| 993 | Files: runtime/doc/options.txt, runtime/doc/spell.txt, src/mbyte.c, |
| 994 | src/option.c, src/spell.c, src/structs.h |
| 995 | |
| 996 | Patch 7.4.089 |
| 997 | Problem: When editing a file in a directory mounted through sshfs Vim |
| 998 | doesn't set the security context on a renamed file. |
| 999 | Solution: Add mch_copy_sec() to vim_rename(). (Peter Backes) |
| 1000 | Files: src/fileio.c |
| 1001 | |
| 1002 | Patch 7.4.090 |
| 1003 | Problem: Win32: When a directory name contains an exclamation mark, |
| 1004 | completion doesn't complete the contents of the directory. |
| 1005 | Solution: Escape the exclamation mark. (Jan Stocker) |
| 1006 | Files: src/ex_getln.c, src/testdir/test102.in, src/testdir/test102.ok, |
| 1007 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 1008 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 1009 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 1010 | |
| 1011 | Patch 7.4.091 (after 7.4.089) |
| 1012 | Problem: Missing semicolon. |
| 1013 | Solution: Add the semicolon. |
| 1014 | Files: src/fileio.c |
| 1015 | |
| 1016 | Patch 7.4.092 (after 7.4.088) |
| 1017 | Problem: Can't build small version. |
| 1018 | Solution: Add #ifdef where the b_cjk flag is used. (Ken Takata) |
| 1019 | Files: src/spell.c |
| 1020 | |
| 1021 | Patch 7.4.093 |
| 1022 | Problem: Configure can't use LuaJIT on ubuntu 12.04. |
| 1023 | Solution: Adjust the configure regexp that locates the version number. |
| 1024 | (Charles Strahan) |
| 1025 | Files: src/configure.in, src/auto/configure |
| 1026 | |
| 1027 | Patch 7.4.094 |
| 1028 | Problem: Configure may not find that -lint is needed for gettext(). |
| 1029 | Solution: Check for gettext() with empty $LIBS. (Thomas De Schampheleire) |
| 1030 | Files: src/configure.in, src/auto/configure |
| 1031 | |
| 1032 | Patch 7.4.095 (after 7.4.093) |
| 1033 | Problem: Regexp for LuaJIT version doesn't work on BSD. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 1034 | Solution: Use "*" instead of "\+" and "\?". (Ozaki Kiichi) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1035 | Files: src/configure.in, src/auto/configure |
| 1036 | |
| 1037 | Patch 7.4.096 |
| 1038 | Problem: Can't change directory to an UNC path. |
| 1039 | Solution: Use win32_getattrs() in mch_getperm(). (Christian Brabandt) |
| 1040 | Files: src/os_win32.c |
| 1041 | |
| 1042 | Patch 7.4.097 (after 7.4.034) |
| 1043 | Problem: Unexpected behavior change related to 'virtualedit'. (Ingo Karkat) |
| 1044 | Solution: Update the valid cursor position. (Christian Brabandt) |
| 1045 | Files: src/ops.c |
| 1046 | |
| 1047 | Patch 7.4.098 |
| 1048 | Problem: When using ":'<,'>del" errors may be given for the visual line |
| 1049 | numbers being out of range. |
| 1050 | Solution: Reset Visual mode in ":del". (Lech Lorens) |
| 1051 | Files: src/ex_docmd.c, src/testdir/test103.in, src/testdir/test103.ok, |
| 1052 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 1053 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 1054 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 1055 | |
| 1056 | Patch 7.4.099 |
| 1057 | Problem: Append in blockwise Visual mode with "$" is wrong. |
| 1058 | Solution: After "$" don't use the code that checks if the cursor was moved. |
| 1059 | (Hirohito Higashi, Ken Takata) |
| 1060 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 1061 | |
| 1062 | Patch 7.4.100 |
| 1063 | Problem: NFA regexp doesn't handle backreference correctly. (Ryuichi |
| 1064 | Hayashida, Urtica Dioica) |
| 1065 | Solution: Always add NFA_SKIP, also when it already exists at the start |
| 1066 | position. |
| 1067 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 1068 | |
| 1069 | Patch 7.4.101 |
| 1070 | Problem: Using \1 in pattern goes one line too far. (Bohr Shaw, John Little) |
| 1071 | Solution: Only advance the match end for the matched characters in the last |
| 1072 | line. |
| 1073 | Files: src/regexp.c, src/testdir/test64.in, src/testdir/test64.ok |
| 1074 | |
| 1075 | Patch 7.4.102 |
| 1076 | Problem: Crash when interrupting "z=". |
| 1077 | Solution: Add safety check for word length. (Christian Brabandt, Dominique |
| 1078 | Pelle) |
| 1079 | Files: src/spell.c |
| 1080 | |
| 1081 | Patch 7.4.103 |
| 1082 | Problem: Dos installer uses an old way to escape spaces in the diff |
| 1083 | command. |
| 1084 | Solution: Adjust the quoting to the new default shellxquote. (Ben Fritz) |
| 1085 | Files: src/dosinst.c |
| 1086 | |
| 1087 | Patch 7.4.104 |
| 1088 | Problem: ":help s/\_" reports an internal error. (John Beckett) |
| 1089 | Solution: Check for NUL and invalid character classes. |
| 1090 | Files: src/regexp_nfa.c |
| 1091 | |
| 1092 | Patch 7.4.105 |
| 1093 | Problem: Completing a tag pattern may give an error for invalid pattern. |
| 1094 | Solution: Suppress the error, just return no matches. |
| 1095 | Files: src/tag.c |
| 1096 | |
| 1097 | Patch 7.4.106 |
| 1098 | Problem: Can't build with Ruby using Cygwin. |
| 1099 | Solution: Fix library name in makefile. (Steve Hall) |
| 1100 | Files: src/Make_cyg.mak |
| 1101 | |
| 1102 | Patch 7.4.107 |
| 1103 | Problem: Python: When vim.eval() encounters a Vim error, a try/catch in the |
| 1104 | Python code doesn't catch it. (Yggdroot Chen) |
| 1105 | Solution: Throw exceptions on errors in vim.eval(). (ZyX) |
| 1106 | Files: src/ex_eval.c, src/if_py_both.h, src/proto/ex_eval.pro, |
| 1107 | src/testdir/test86.in, src/testdir/test86.ok, |
| 1108 | src/testdir/test87.in, src/testdir/test87.ok |
| 1109 | |
| 1110 | Patch 7.4.108 |
| 1111 | Problem: "zG" and "zW" leave temp files around on MS-Windows. |
| 1112 | Solution: Delete the temp files when exiting. (Ken Takata) |
| 1113 | Files: src/memline.c, src/proto/spell.pro, src/spell.c |
| 1114 | |
| 1115 | Patch 7.4.109 |
| 1116 | Problem: ColorScheme autocommand matches with the current buffer name. |
| 1117 | Solution: Match with the colorscheme name. (Christian Brabandt) |
| 1118 | Files: runtime/doc/autocmd.txt, src/fileio.c, src/syntax.c |
| 1119 | |
| 1120 | Patch 7.4.110 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1121 | Problem: "gUgn" cannot be repeated. (Dimitar Dimitrov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1122 | Solution: Don't put "gn" in a different order in the redo buffer. Restore |
| 1123 | 'wrapscan' when the pattern isn't found. (Christian Wellenbrock) |
| 1124 | Files: src/normal.c, src/search.c, src/test53.in, src/test53.ok |
| 1125 | |
| 1126 | Patch 7.4.111 |
| 1127 | Problem: Memory leak in Python OptionsAssItem. (Ken Takata) |
| 1128 | Solution: Call Py_XDECREF() where needed. (ZyX) |
| 1129 | Files: src/if_py_both.h |
| 1130 | |
| 1131 | Patch 7.4.112 |
| 1132 | Problem: The defaults for 'directory' and 'backupdir' on MS-Windows do not |
| 1133 | include a directory that exists. |
| 1134 | Solution: Use $TEMP. |
| 1135 | Files: src/os_dos.h |
| 1136 | |
| 1137 | Patch 7.4.113 |
| 1138 | Problem: MSVC static analysis gives warnings. |
| 1139 | Solution: Avoid the warnings and avoid possible bugs. (Ken Takata) |
| 1140 | Files: src/os_win32.c |
| 1141 | |
| 1142 | Patch 7.4.114 |
| 1143 | Problem: New GNU make outputs messages about changing directory in another |
| 1144 | format. |
| 1145 | Solution: Recognize the new format. |
| 1146 | Files: src/option.h |
| 1147 | |
| 1148 | Patch 7.4.115 |
| 1149 | Problem: When using Zsh expanding ~abc doesn't work when the result |
| 1150 | contains a space. |
| 1151 | Solution: Off-by-one error in detecting the NUL. (Pavol Juhas) |
| 1152 | Files: src/os_unix.c |
| 1153 | |
| 1154 | Patch 7.4.116 |
| 1155 | Problem: When a mapping starts with a space, the typed space does not show |
| 1156 | up for 'showcmd'. |
| 1157 | Solution: Show "<20>". (Brook Hong) |
| 1158 | Files: src/normal.c |
| 1159 | |
| 1160 | Patch 7.4.117 |
| 1161 | Problem: Can't build with Cygwin/MingW and Perl 5.18. |
| 1162 | Solution: Add a linker argument for the Perl library. (Cesar Romani) |
| 1163 | Adjust CFLAGS and LIB. (Cesar Romani) |
| 1164 | Move including inline.h further down. (Ken Takata) |
| 1165 | Files: src/Make_cyg.mak, src/Make_ming.mak, src/if_perl.xs |
| 1166 | |
| 1167 | Patch 7.4.118 |
| 1168 | Problem: It's possible that redrawing the status lines causes |
| 1169 | win_redr_custom() to be called recursively. |
| 1170 | Solution: Protect against recursiveness. (Yasuhiro Matsumoto) |
| 1171 | Files: src/screen.c |
| 1172 | |
| 1173 | Patch 7.4.119 |
| 1174 | Problem: Vim doesn't work well on OpenVMS. |
| 1175 | Solution: Fix various problems. (Samuel Ferencik) |
| 1176 | Files: src/os_unix.c, src/os_unix.h, src/os_vms.c |
| 1177 | |
| 1178 | Patch 7.4.120 (after 7.4.117) |
| 1179 | Problem: Can't build with Perl 5.18 on Linux. (Lcd 47) |
| 1180 | Solution: Add #ifdef. (Ken Takata) |
| 1181 | Files: src/if_perl.xs |
| 1182 | |
| 1183 | Patch 7.4.121 |
| 1184 | Problem: Completion doesn't work for ":py3d" and ":py3f". (Bohr Shaw) |
| 1185 | Solution: Skip over letters after ":py3". |
| 1186 | Files: src/ex_docmd.c |
| 1187 | |
| 1188 | Patch 7.4.122 |
| 1189 | Problem: Win32: When 'encoding' is set to "utf-8" and the active codepage |
| 1190 | is cp932 then ":grep" and other commands don't work for multi-byte |
| 1191 | characters. |
| 1192 | Solution: (Yasuhiro Matsumoto) |
| 1193 | Files: src/os_win32.c |
| 1194 | |
| 1195 | Patch 7.4.123 |
| 1196 | Problem: Win32: Getting user name does not use wide function. |
| 1197 | Solution: Use GetUserNameW() if possible. (Ken Takata) |
| 1198 | Files: src/os_win32.c |
| 1199 | |
| 1200 | Patch 7.4.124 |
| 1201 | Problem: Win32: Getting host name does not use wide function. |
| 1202 | Solution: Use GetComputerNameW() if possible. (Ken Takata) |
| 1203 | Files: src/os_win32.c |
| 1204 | |
| 1205 | Patch 7.4.125 |
| 1206 | Problem: Win32: Dealing with messages may not work for multi-byte chars. |
| 1207 | Solution: Use pDispatchMessage(). (Ken Takata) |
| 1208 | Files: src/os_win32.c |
| 1209 | |
| 1210 | Patch 7.4.126 |
| 1211 | Problem: Compiler warnings for "const" and incompatible types. |
| 1212 | Solution: Remove "const", add type cast. (Ken Takata) |
| 1213 | Files: src/os_win32.c |
| 1214 | |
| 1215 | Patch 7.4.127 |
| 1216 | Problem: Perl 5.18 on Unix doesn't work. |
| 1217 | Solution: Move workaround to after including vim.h. (Ken Takata) |
| 1218 | Files: src/if_perl.xs |
| 1219 | |
| 1220 | Patch 7.4.128 |
| 1221 | Problem: Perl 5.18 for MSVC doesn't work. |
| 1222 | Solution: Add check in makefile and define __inline. (Ken Takata) |
| 1223 | Files: src/Make_mvc.mak, src/if_perl.xs |
| 1224 | |
| 1225 | Patch 7.4.129 |
| 1226 | Problem: getline(-1) returns zero. (mvxxc) |
| 1227 | Solution: Return an empty string. |
| 1228 | Files: src/eval.c |
| 1229 | |
| 1230 | Patch 7.4.130 |
| 1231 | Problem: Relative line numbers mix up windows when using folds. |
| 1232 | Solution: Use hasFoldingWin() instead of hasFolding(). (Lech Lorens) |
| 1233 | Files: src/misc2.c |
| 1234 | |
| 1235 | Patch 7.4.131 |
| 1236 | Problem: Syncbind causes E315 errors in some situations. (Liang Li) |
| 1237 | Solution: Set and restore curbuf in ex_syncbind(). (Christian Brabandt) |
| 1238 | Files: src/ex_docmd.c, src/testdir/test37.ok |
| 1239 | |
| 1240 | Patch 7.4.132 (after 7.4.122) |
| 1241 | Problem: Win32: flags and inherit_handles arguments mixed up. |
| 1242 | Solution: Swap the argument. (cs86661) |
| 1243 | Files: src/os_win32.c |
| 1244 | |
| 1245 | Patch 7.4.133 |
| 1246 | Problem: Clang warns for using NUL. |
| 1247 | Solution: Change NUL to NULL. (Dominique Pelle) |
| 1248 | Files: src/eval.c, src/misc2.c |
| 1249 | |
| 1250 | Patch 7.4.134 |
| 1251 | Problem: Spurious space in MingW Makefile. |
| 1252 | Solution: Remove the space. (Michael Soyka) |
| 1253 | Files: src/Make_ming.mak |
| 1254 | |
| 1255 | Patch 7.4.135 |
| 1256 | Problem: Missing dot in MingW test Makefile. |
| 1257 | Solution: Add the dot. (Michael Soyka) |
| 1258 | Files: src/testdir/Make_ming.mak |
| 1259 | |
| 1260 | Patch 7.4.136 (after 7.4.096) |
| 1261 | Problem: MS-Windows: When saving a file with a UNC path the file becomes |
| 1262 | read-only. |
| 1263 | Solution: Don't mix up Win32 attributes and Unix attributes. (Ken Takata) |
| 1264 | Files: src/os_mswin.c, src/os_win32.c |
| 1265 | |
| 1266 | Patch 7.4.137 |
| 1267 | Problem: Cannot use IME with Windows 8 console. |
| 1268 | Solution: Change the user of ReadConsoleInput() and PeekConsoleInput(). |
| 1269 | (Nobuhiro Takasaki) |
| 1270 | Files: src/os_win32.c |
| 1271 | |
| 1272 | Patch 7.4.138 (after 7.4.114) |
| 1273 | Problem: Directory change messages are not recognized. |
| 1274 | Solution: Fix using a character range literally. (Lech Lorens) |
| 1275 | Files: src/option.h |
| 1276 | |
| 1277 | Patch 7.4.139 |
| 1278 | Problem: Crash when using :cd in autocommand. (François Ingelrest) |
| 1279 | Solution: Set w_localdir to NULL after freeing it. (Dominique Pelle) |
| 1280 | Files: src/ex_docmd.c, src/window.c |
| 1281 | |
| 1282 | Patch 7.4.140 |
| 1283 | Problem: Crash when wiping out buffer triggers autocommand that wipes out |
| 1284 | only other buffer. |
| 1285 | Solution: Do not delete the last buffer, make it empty. (Hirohito Higashi) |
| 1286 | Files: src/buffer.c |
| 1287 | |
| 1288 | Patch 7.4.141 |
| 1289 | Problem: Problems when building with Borland: st_mode is signed short; |
| 1290 | can't build with Python; temp files not ignored by Mercurial; |
| 1291 | building with DEBUG doesn't define _DEBUG. |
| 1292 | Solution: Fix the problems. (Ken Takata) |
| 1293 | Files: src/Make_bc5.mak, src/if_py_both.h, src/os_win32.c |
| 1294 | |
| 1295 | Patch 7.4.142 (after 7.4.137) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1296 | Problem: On MS-Windows 8 IME input doesn't work correctly. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1297 | Solution: Work around the problem. (Nobuhiro Takasaki) |
| 1298 | Files: src/os_win32.c |
| 1299 | |
| 1300 | Patch 7.4.143 |
| 1301 | Problem: TextChangedI is not triggered. |
| 1302 | Solution: Reverse check for "ready". (lilydjwg) |
| 1303 | Files: src/edit.c |
| 1304 | |
| 1305 | Patch 7.4.144 |
| 1306 | Problem: MingW also supports intptr_t for OPEN_OH_ARGTYPE. |
| 1307 | Solution: Adjust #ifdef. (Ken Takata) |
| 1308 | Files: src/os_mswin.c |
| 1309 | |
| 1310 | Patch 7.4.145 |
| 1311 | Problem: getregtype() does not return zero for unknown register. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1312 | Solution: Adjust documentation: return empty string for unknown register. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1313 | Check the register name to be valid. (Yukihiro Nakadaira) |
| 1314 | Files: runtime/doc/eval.txt, src/ops.c |
| 1315 | |
| 1316 | Patch 7.4.146 |
| 1317 | Problem: When starting Vim with "-u NONE" v:oldfiles is NULL. |
| 1318 | Solution: Set v:oldfiles to an empty list. (Yasuhiro Matsumoto) |
| 1319 | Files: src/main.c |
| 1320 | |
| 1321 | Patch 7.4.147 |
| 1322 | Problem: Cursor moves to wrong position when using "gj" after "$" and |
| 1323 | virtual editing is active. |
| 1324 | Solution: Make "gj" behave differently when virtual editing is active. |
| 1325 | (Hirohito Higashi) |
| 1326 | Files: src/normal.c, src/testdir/test39.in, src/testdir/test39.ok |
| 1327 | |
| 1328 | Patch 7.4.148 |
| 1329 | Problem: Cannot build with Cygwin and X11. |
| 1330 | Solution: Include Xwindows.h instead of windows.h. (Lech Lorens) |
| 1331 | Files: src/mbyte.c |
| 1332 | |
| 1333 | Patch 7.4.149 |
| 1334 | Problem: Get E685 error when assigning a function to an autoload variable. |
| 1335 | (Yukihiro Nakadaira) |
| 1336 | Solution: Instead of having a global no_autoload variable, pass an autoload |
| 1337 | flag down to where it is used. (ZyX) |
| 1338 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok, |
| 1339 | src/testdir/test60.in, src/testdir/test60.ok, |
| 1340 | src/testdir/sautest/autoload/footest.vim |
| 1341 | |
| 1342 | Patch 7.4.150 |
| 1343 | Problem: :keeppatterns is not respected for :s. |
| 1344 | Solution: Check the keeppatterns flag. (Yasuhiro Matsumoto) |
| 1345 | Files: src/search.c, src/testdir/test14.in, src/testdir/test14.ok |
| 1346 | |
| 1347 | Patch 7.4.151 |
| 1348 | Problem: Python: slices with steps are not supported. |
| 1349 | Solution: Support slices in Python vim.List. (ZyX) |
| 1350 | Files: src/eval.c, src/if_py_both.h, src/if_python3.c, src/if_python.c, |
| 1351 | src/proto/eval.pro, src/testdir/test86.in, src/testdir/test86.ok, |
| 1352 | src/testdir/test87.in, src/testdir/test87.ok |
| 1353 | |
| 1354 | Patch 7.4.152 |
| 1355 | Problem: Python: Cannot iterate over options. |
| 1356 | Solution: Add options iterator. (ZyX) |
| 1357 | Files: src/if_py_both.h, src/option.c, src/proto/option.pro, |
| 1358 | src/testdir/test86.in, src/testdir/test86.ok, |
| 1359 | src/testdir/test87.in, src/testdir/test87.ok, src/vim.h |
| 1360 | |
| 1361 | Patch 7.4.153 |
| 1362 | Problem: Compiler warning for pointer type. |
| 1363 | Solution: Add type cast. |
| 1364 | Files: src/if_py_both.h, src/if_python.c, src/if_python3.c |
| 1365 | |
| 1366 | Patch 7.4.154 (after 7.4.149) |
| 1367 | Problem: Still a problem with auto-loading. |
| 1368 | Solution: Pass no_autoload to deref_func_name(). (Yukihiro Nakadaira) |
| 1369 | Files: src/eval.c |
| 1370 | |
| 1371 | Patch 7.4.155 |
| 1372 | Problem: ":keeppatterns /pat" does not keep search pattern offset. |
| 1373 | Solution: Restore the offset after doing the search. |
| 1374 | Files: src/search.c, src/testdir/test14.in, src/testdir/test14.ok |
| 1375 | |
| 1376 | Patch 7.4.156 |
| 1377 | Problem: Test file missing from distribution. |
| 1378 | Solution: Add new directory to file list. |
| 1379 | Files: Filelist |
| 1380 | |
| 1381 | Patch 7.4.157 |
| 1382 | Problem: Error number used twice. (Yukihiro Nakadaira) |
| 1383 | Solution: Change the one not referred in the docs. |
| 1384 | Files: src/undo.c |
| 1385 | |
| 1386 | Patch 7.4.158 (after 7.4.045) |
| 1387 | Problem: Pattern containing \zs is not handled correctly by substitute(). |
| 1388 | Solution: Change how an empty match is skipped. (Yukihiro Nakadaira) |
| 1389 | Files: src/eval.c, src/testdir/test80.in, src/testdir/test80.ok |
| 1390 | |
| 1391 | Patch 7.4.159 |
| 1392 | Problem: Completion hangs when scanning the current buffer after doing |
| 1393 | keywords. (Christian Brabandt) |
| 1394 | Solution: Set the first match position when starting to scan the current |
| 1395 | buffer. |
| 1396 | Files: src/edit.c |
| 1397 | |
| 1398 | Patch 7.4.160 |
| 1399 | Problem: Win32: Crash when executing external command. |
| 1400 | Solution: Only close the handle when it was created. (Yasuhiro Matsumoto) |
| 1401 | Files: src/os_win32.c |
| 1402 | |
| 1403 | Patch 7.4.161 |
| 1404 | Problem: Crash in Python exception handling. |
| 1405 | Solution: Only use exception variables if did_throw is set. (ZyX) |
| 1406 | Files: if_py_both.h |
| 1407 | |
| 1408 | Patch 7.4.162 |
| 1409 | Problem: Running tests in shadow dir doesn't work. |
| 1410 | Solution: Add testdir/sautest to the shadow target. (James McCoy) |
| 1411 | Files: src/Makefile |
| 1412 | |
| 1413 | Patch 7.4.163 (after 7.4.142) |
| 1414 | Problem: MS-Windows input doesn't work properly on Windows 7 and earlier. |
| 1415 | Solution: Add a check for Windows 8. (Yasuhiro Matsumoto) |
| 1416 | Files: src/os_win32.c |
| 1417 | |
| 1418 | Patch 7.4.164 (after 7.4.163) |
| 1419 | Problem: Problem with event handling on Windows 8. |
| 1420 | Solution: Ignore duplicate WINDOW_BUFFER_SIZE_EVENTs. (Nobuhiro Takasaki) |
| 1421 | Files: src/os_win32.c |
| 1422 | |
| 1423 | Patch 7.4.165 |
| 1424 | Problem: By default, after closing a buffer changes can't be undone. |
| 1425 | Solution: In the example vimrc file set 'undofile'. |
| 1426 | Files: runtime/vimrc_example.vim |
| 1427 | |
| 1428 | Patch 7.4.166 |
| 1429 | Problem: Auto-loading a function for code that won't be executed. |
| 1430 | Solution: Do not auto-load when evaluation is off. (Yasuhiro Matsumoto) |
| 1431 | Files: src/eval.c |
| 1432 | |
| 1433 | Patch 7.4.167 (after 7.4.149) |
| 1434 | Problem: Fixes are not tested. |
| 1435 | Solution: Add a test for not autoloading on assignment. (Yukihiro Nakadaira) |
| 1436 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 1437 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 1438 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 1439 | src/testdir/sautest/autoload/Test104.vim, src/testdir/test104.in, |
| 1440 | src/testdir/test104.ok |
| 1441 | |
| 1442 | Patch 7.4.168 |
| 1443 | Problem: Can't compile with Ruby 2.1.0. |
| 1444 | Solution: Add support for new GC. (Kohei Suzuki) |
| 1445 | Files: src/if_ruby.c |
| 1446 | |
| 1447 | Patch 7.4.169 |
| 1448 | Problem: ":sleep" puts cursor in the wrong column. (Liang Li) |
| 1449 | Solution: Add the window offset. (Christian Brabandt) |
| 1450 | Files: src/ex_docmd.c |
| 1451 | |
| 1452 | Patch 7.4.170 |
| 1453 | Problem: Some help tags don't work with ":help". (Tim Chase) |
| 1454 | Solution: Add exceptions. |
| 1455 | Files: src/ex_cmds.c |
| 1456 | |
| 1457 | Patch 7.4.171 |
| 1458 | Problem: Redo does not set v:count and v:count1. |
| 1459 | Solution: Use a separate buffer for redo, so that we can set the counts when |
| 1460 | performing redo. |
| 1461 | Files: src/getchar.c, src/globals.h, src/normal.c, src/proto/getchar.pro, |
| 1462 | src/structs.h |
| 1463 | |
| 1464 | Patch 7.4.172 |
| 1465 | Problem: The blowfish code mentions output feedback, but the code is |
| 1466 | actually doing cipher feedback. |
| 1467 | Solution: Adjust names and comments. |
| 1468 | Files: src/blowfish.c, src/fileio.c, src/proto/blowfish.pro, |
| 1469 | src/memline.c |
| 1470 | |
| 1471 | Patch 7.4.173 |
| 1472 | Problem: When using scrollbind the cursor can end up below the last line. |
| 1473 | (mvxxc) |
| 1474 | Solution: Reset w_botfill when scrolling up. (Christian Brabandt) |
| 1475 | Files: src/move.c |
| 1476 | |
| 1477 | Patch 7.4.174 |
| 1478 | Problem: Compiler warnings for Python interface. (Tony Mechelynck) |
| 1479 | Solution: Add type casts, initialize variable. |
| 1480 | Files: src/if_py_both.h |
| 1481 | |
| 1482 | Patch 7.4.175 |
| 1483 | Problem: When a wide library function fails, falling back to the non-wide |
| 1484 | function may do the wrong thing. |
| 1485 | Solution: Check the platform, when the wide function is supported don't fall |
| 1486 | back to the non-wide function. (Ken Takata) |
| 1487 | Files: src/os_mswin.c, src/os_win32.c |
| 1488 | |
| 1489 | Patch 7.4.176 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1490 | Problem: Dictionary.update() throws an error when used without arguments. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1491 | Python programmers don't expect that. |
| 1492 | Solution: Make Dictionary.update() without arguments do nothing. (ZyX) |
| 1493 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test87.in |
| 1494 | |
| 1495 | Patch 7.4.177 |
| 1496 | Problem: Compiler warning for unused variable. (Tony Mechelynck) |
| 1497 | Solution: Add #ifdef. |
| 1498 | Files: src/move.c |
| 1499 | |
| 1500 | Patch 7.4.178 |
| 1501 | Problem: The J command does not update '[ and '] marks. (William Gardner) |
| 1502 | Solution: Set the marks. (Christian Brabandt) |
| 1503 | Files: src/ops.c |
| 1504 | |
| 1505 | Patch 7.4.179 |
| 1506 | Problem: Warning for type-punned pointer. (Tony Mechelynck) |
| 1507 | Solution: Use intermediate variable. |
| 1508 | Files: src/if_py_both.h |
| 1509 | |
| 1510 | Patch 7.4.180 (after 7.4.174) |
| 1511 | Problem: Older Python versions don't support %ld. |
| 1512 | Solution: Use %d instead. (ZyX) |
| 1513 | Files: src/if_py_both.h |
| 1514 | |
| 1515 | Patch 7.4.181 |
| 1516 | Problem: When using 'pastetoggle' the status lines are not updated. (Samuel |
| 1517 | Ferencik, Jan Christoph Ebersbach) |
| 1518 | Solution: Update the status lines. (Nobuhiro Takasaki) |
| 1519 | Files: src/getchar.c |
| 1520 | |
| 1521 | Patch 7.4.182 |
| 1522 | Problem: Building with mzscheme and racket does not work. (David Chimay) |
| 1523 | Solution: Adjust autoconf. (Sergey Khorev) |
| 1524 | Files: src/configure.in, src/auto/configure |
| 1525 | |
| 1526 | Patch 7.4.183 |
| 1527 | Problem: MSVC Visual Studio update not supported. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 1528 | Solution: Add version number. (Mike Williams) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1529 | Files: src/Make_mvc.mak |
| 1530 | |
| 1531 | Patch 7.4.184 |
| 1532 | Problem: match() does not work properly with a {count} argument. |
| 1533 | Solution: Compute the length once and update it. Quit the loop when at the |
| 1534 | end. (Hirohito Higashi) |
| 1535 | Files: src/eval.c, src/testdir/test53.in, src/testdir/test53.ok |
| 1536 | |
| 1537 | Patch 7.4.185 |
| 1538 | Problem: Clang gives warnings. |
| 1539 | Solution: Adjust how bigness is set. (Dominique Pelle) |
| 1540 | Files: src/ex_cmds.c |
| 1541 | |
| 1542 | Patch 7.4.186 (after 7.4.085) |
| 1543 | Problem: Insert in Visual mode sometimes gives incorrect results. |
| 1544 | (Dominique Pelle) |
| 1545 | Solution: Remember the original insert start position. (Christian Brabandt, |
| 1546 | Dominique Pelle) |
| 1547 | Files: src/edit.c, src/globals.h, src/ops.c, src/structs.h |
| 1548 | |
| 1549 | Patch 7.4.187 |
| 1550 | Problem: Delete that crosses line break splits multi-byte character. |
| 1551 | Solution: Advance a character instead of a byte. (Cade Foster) |
| 1552 | Files: src/normal.c, src/testdir/test69.in, src/testdir/test69.ok |
| 1553 | |
| 1554 | Patch 7.4.188 |
| 1555 | Problem: SIZEOF_LONG clashes with similar defines in header files. |
| 1556 | Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT. |
| 1557 | Files: src/if_ruby.c, src/vim.h, src/configure.in, src/auto/configure, |
| 1558 | src/config.h.in, src/fileio.c, src/if_python.c, src/message.c, |
| 1559 | src/spell.c, src/feature.h, src/os_os2_cfg.h, src/os_vms_conf.h, |
| 1560 | src/os_win16.h, src/structs.h |
| 1561 | |
| 1562 | Patch 7.4.189 |
| 1563 | Problem: Compiler warning for unused argument. |
| 1564 | Solution: Add UNUSED. |
| 1565 | Files: src/eval.c |
| 1566 | |
| 1567 | Patch 7.4.190 |
| 1568 | Problem: Compiler warning for using %lld for off_t. |
| 1569 | Solution: Add type cast. |
| 1570 | Files: src/fileio.c |
| 1571 | |
| 1572 | Patch 7.4.191 |
| 1573 | Problem: Escaping a file name for shell commands can't be done without a |
| 1574 | function. |
| 1575 | Solution: Add the :S file name modifier. |
| 1576 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 1577 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 1578 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 1579 | src/testdir/test105.in, src/testdir/test105.ok, |
| 1580 | runtime/doc/cmdline.txt, runtime/doc/eval.txt, |
| 1581 | runtime/doc/map.txt, runtime/doc/options.txt, |
| 1582 | runtime/doc/quickfix.txt, runtime/doc/usr_30.txt, |
| 1583 | runtime/doc/usr_40.txt, runtime/doc/usr_42.txt, |
| 1584 | runtime/doc/vi_diff.txt, src/eval.c, src/misc2.c, src/normal.c, |
| 1585 | src/proto/misc2.pro |
| 1586 | |
| 1587 | Patch 7.4.192 |
| 1588 | Problem: Memory leak when giving E853. |
| 1589 | Solution: Free the argument. (Dominique Pelle) |
| 1590 | Files: src/eval.c |
| 1591 | |
| 1592 | Patch 7.4.193 |
| 1593 | Problem: Typos in messages. |
| 1594 | Solution: "then" -> "than". (Dominique Pelle) |
| 1595 | Files: src/if_py_both.h, src/spell.c |
| 1596 | |
| 1597 | Patch 7.4.194 |
| 1598 | Problem: Can't build for Android. |
| 1599 | Solution: Add #if condition. (Fredrik Fornwall) |
| 1600 | Files: src/mbyte.c |
| 1601 | |
| 1602 | Patch 7.4.195 (after 7.4.193) |
| 1603 | Problem: Python tests fail. |
| 1604 | Solution: Change "then" to "than" in more places. (Dominique Pelle, Taro |
| 1605 | Muraoka) |
| 1606 | Files: src/testdir/test86.in, src/testdir/test86.ok, |
| 1607 | src/testdir/test87.in, src/testdir/test87.ok |
| 1608 | |
| 1609 | Patch 7.4.196 |
| 1610 | Problem: Tests fail on Solaris 9 and 10. |
| 1611 | Solution: Use "test -f" instead of "test -e". (Laurent Blume) |
| 1612 | Files: src/testdir/Makefile |
| 1613 | |
| 1614 | Patch 7.4.197 |
| 1615 | Problem: Various problems on VMS. |
| 1616 | Solution: Fix several VMS problems. (Zoltan Arpadffy) |
| 1617 | Files: runtime/doc/os_vms.txt, src/Make_vms.mms, src/fileio.c, |
| 1618 | src/os_unix.c, src/os_unix.h, src/os_vms.c, src/os_vms_conf.h, |
| 1619 | src/proto/os_vms.pro, src/testdir/Make_vms.mms, |
| 1620 | src/testdir/test72.in, src/testdir/test77a.com, |
| 1621 | src/testdir/test77a.in, src/testdir/test77a.ok src/undo.c |
| 1622 | |
| 1623 | Patch 7.4.198 |
| 1624 | Problem: Can't build Vim with Perl when -Dusethreads is not specified for |
| 1625 | building Perl, and building Vim with --enable-perlinterp=dynamic. |
| 1626 | Solution: Adjust #ifdefs. (Yasuhiro Matsumoto) |
| 1627 | Files: src/if_perl.xs |
| 1628 | |
| 1629 | Patch 7.4.199 |
| 1630 | Problem: (issue 197) ]P doesn't paste over Visual selection. |
| 1631 | Solution: Handle Visual mode specifically. (Christian Brabandt) |
| 1632 | Files: src/normal.c |
| 1633 | |
| 1634 | Patch 7.4.200 |
| 1635 | Problem: Too many #ifdefs in the code. |
| 1636 | Solution: Enable FEAT_VISUAL always, await any complaints |
| 1637 | Files: src/feature.h |
| 1638 | |
| 1639 | Patch 7.4.201 |
| 1640 | Problem: 'lispwords' is a global option. |
| 1641 | Solution: Make 'lispwords' global-local. (Sung Pae) |
| 1642 | Files: runtime/doc/options.txt, runtime/optwin.vim, src/buffer.c, |
| 1643 | src/misc1.c, src/option.c, src/option.h, src/structs.h, |
| 1644 | src/testdir/test100.in, src/testdir/test100.ok |
| 1645 | |
| 1646 | Patch 7.4.202 |
| 1647 | Problem: MS-Windows: non-ASCII font names don't work. |
| 1648 | Solution: Convert between the current code page and 'encoding'. (Ken Takata) |
| 1649 | Files: src/gui_w48.c, src/os_mswin.c, src/proto/winclip.pro, |
| 1650 | src/winclip.c |
| 1651 | |
| 1652 | Patch 7.4.203 |
| 1653 | Problem: Parsing 'errorformat' is not correct. |
| 1654 | Solution: Reset "multiignore" at the start of a multi-line message. (Lcd) |
| 1655 | Files: src/quickfix.c, src/testdir/Make_amiga.mak, |
| 1656 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 1657 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 1658 | src/testdir/Makefile, src/testdir/test106.in, |
| 1659 | src/testdir/test106.ok |
| 1660 | |
| 1661 | Patch 7.4.204 |
| 1662 | Problem: A mapping where the second byte is 0x80 doesn't work. |
| 1663 | Solution: Unescape before checking for incomplete multi-byte char. (Nobuhiro |
| 1664 | Takasaki) |
| 1665 | Files: src/getchar.c, src/testdir/test75.in, src/testdir/test75.ok |
| 1666 | |
| 1667 | Patch 7.4.205 |
| 1668 | Problem: ":mksession" writes command to move to second argument while it |
| 1669 | does not exist. When it does exist the order might be wrong. |
| 1670 | Solution: Use ":argadd" for each argument instead of using ":args" with a |
| 1671 | list of names. (Nobuhiro Takasaki) |
| 1672 | Files: src/ex_docmd.c |
| 1673 | |
| 1674 | Patch 7.4.206 |
| 1675 | Problem: Compiler warnings on 64 bit Windows. |
| 1676 | Solution: Add type casts. (Mike Williams) |
| 1677 | Files: src/gui_w48.c, src/os_mswin.c |
| 1678 | |
| 1679 | Patch 7.4.207 |
| 1680 | Problem: The cursor report sequence is sometimes not recognized and results |
| 1681 | in entering replace mode. |
| 1682 | Solution: Also check for the cursor report when not asked for. |
| 1683 | Files: src/term.c |
| 1684 | |
| 1685 | Patch 7.4.208 |
| 1686 | Problem: Mercurial picks up some files that are not distributed. |
| 1687 | Solution: Add patterns to the ignore list. (Cade Forester) |
| 1688 | Files: .hgignore |
| 1689 | |
| 1690 | Patch 7.4.209 |
| 1691 | Problem: When repeating a filter command "%" and "#" are expanded. |
| 1692 | Solution: Escape the command when storing for redo. (Christian Brabandt) |
| 1693 | Files: src/ex_cmds.c |
| 1694 | |
| 1695 | Patch 7.4.210 |
| 1696 | Problem: Visual block mode plus virtual edit doesn't work well with tabs. |
| 1697 | (Liang Li) |
| 1698 | Solution: Take coladd into account. (Christian Brabandt) |
| 1699 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 1700 | |
| 1701 | Patch 7.4.211 |
| 1702 | Problem: ":lu" is an abbreviation for ":lua", but it should be ":lunmap". |
| 1703 | (ZyX) |
| 1704 | Solution: Move "lunmap" to above "lua". |
| 1705 | Files: src/ex_cmds.h |
| 1706 | |
| 1707 | Patch 7.4.212 (after 7.4.200) |
| 1708 | Problem: Now that the +visual feature is always enabled the #ifdefs for it |
| 1709 | are not useful. |
| 1710 | Solution: Remove the checks for FEAT_VISUAL. |
| 1711 | Files: src/buffer.c, src/charset.c, src/edit.c, src/eval.c, |
| 1712 | src/ex_cmds.c, src/ex_docmd.c, src/fold.c, src/getchar.c, |
| 1713 | src/gui.c, src/gui_mac.c, src/gui_w48.c, src/main.c, src/mark.c, |
| 1714 | src/menu.c, src/misc2.c, src/move.c, src/netbeans.c, src/normal.c, |
| 1715 | src/ops.c, src/option.c, src/os_msdos.c, src/os_qnx.c, |
| 1716 | src/quickfix.c, src/regexp.c, src/regexp_nfa.c, src/screen.c, |
| 1717 | src/search.c, src/spell.c, src/syntax.c, src/term.c, src/ui.c, |
| 1718 | src/undo.c, src/version.c, src/window.c, src/feature.h, |
| 1719 | src/globals.h, src/option.h, src/os_win32.h, src/structs.h |
| 1720 | |
| 1721 | Patch 7.4.213 |
| 1722 | Problem: It's not possible to open a new buffer without creating a swap |
| 1723 | file. |
| 1724 | Solution: Add the ":noswapfile" modifier. (Christian Brabandt) |
| 1725 | Files: runtime/doc/recover.txt, src/ex_cmds.h, src/ex_docmd.c, |
| 1726 | src/memline.c, src/structs.h |
| 1727 | |
| 1728 | Patch 7.4.214 |
| 1729 | Problem: Compilation problems on HP_nonStop (Tandem). |
| 1730 | Solution: Add #defines. (Joachim Schmitz) |
| 1731 | Files: src/vim.h |
| 1732 | |
| 1733 | Patch 7.4.215 |
| 1734 | Problem: Inconsistency: ":sp foo" does not reload "foo", unless "foo" is |
| 1735 | the current buffer. (Liang Li) |
| 1736 | Solution: Do not reload the current buffer on a split command. |
| 1737 | Files: runtime/doc/windows.txt, src/ex_docmd.c |
| 1738 | |
| 1739 | Patch 7.4.216 |
| 1740 | Problem: Compiler warnings. (Tony Mechelynck) |
| 1741 | Solution: Initialize variables, add #ifdef. |
| 1742 | Files: src/term.c, src/os_unix.h |
| 1743 | |
| 1744 | Patch 7.4.217 |
| 1745 | Problem: When src/auto/configure was updated, "make clean" would run |
| 1746 | configure pointlessly. |
| 1747 | Solution: Do not run configure for "make clean" and "make distclean" when |
| 1748 | the make program supports $MAKECMDGOALS. (Ken Takata) |
| 1749 | Files: src/Makefile |
| 1750 | |
| 1751 | Patch 7.4.218 |
| 1752 | Problem: It's not easy to remove duplicates from a list. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 1753 | Solution: Add the uniq() function. (Lcd) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1754 | Files: runtime/doc/change.txt, runtime/doc/eval.txt, |
| 1755 | runtime/doc/usr_41.txt, runtime/doc/version7.txt, src/eval.c, |
| 1756 | src/testdir/test55.in, src/testdir/test55.ok |
| 1757 | |
| 1758 | Patch 7.4.219 |
| 1759 | Problem: When 'relativenumber' or 'cursorline' are set the window is |
| 1760 | redrawn much to often. (Patrick Hemmer, Dominique Pelle) |
| 1761 | Solution: Check the VALID_CROW flag instead of VALID_WROW. |
| 1762 | Files: src/move.c |
| 1763 | |
| 1764 | Patch 7.4.220 |
| 1765 | Problem: Test 105 does not work in a shadow dir. (James McCoy) |
| 1766 | Solution: Omit "src/" from the checked path. |
| 1767 | Files: src/testdir/test105.in, src/testdir/test105.ok |
| 1768 | |
| 1769 | Patch 7.4.221 |
| 1770 | Problem: Quickfix doesn't resize on ":copen 20". (issue 199) |
| 1771 | Solution: Resize the window when requested. (Christian Brabandt) |
| 1772 | Files: src/quickfix.c |
| 1773 | |
| 1774 | Patch 7.4.222 |
| 1775 | Problem: The Ruby directory is constructed from parts. |
| 1776 | Solution: Use 'rubyarchhdrdir' if it exists. (James McCoy) |
| 1777 | Files: src/configure.in, src/auto/configure |
| 1778 | |
| 1779 | Patch 7.4.223 |
| 1780 | Problem: Still using an older autoconf version. |
| 1781 | Solution: Switch to autoconf 2.69. |
| 1782 | Files: src/Makefile, src/configure.in, src/auto/configure |
| 1783 | |
| 1784 | Patch 7.4.224 |
| 1785 | Problem: /usr/bin/grep on Solaris does not support -F. |
| 1786 | Solution: Add configure check to find a good grep. (Danek Duvall) |
| 1787 | Files: src/configure.in, src/auto/configure |
| 1788 | |
| 1789 | Patch 7.4.225 |
| 1790 | Problem: Dynamic Ruby doesn't work on Solaris. |
| 1791 | Solution: Always use the stubs. (Danek Duvall, Yukihiro Nakadaira) |
| 1792 | Files: src/if_ruby.c |
| 1793 | |
| 1794 | Patch 7.4.226 (after 7.4.219) |
| 1795 | Problem: Cursurline highlighting not redrawn when scrolling. (John |
| 1796 | Marriott) |
| 1797 | Solution: Check for required redraw in two places. |
| 1798 | Files: src/move.c |
| 1799 | |
| 1800 | Patch 7.4.227 (after 7.4.225) |
| 1801 | Problem: Can't build with Ruby 1.8. |
| 1802 | Solution: Do include a check for the Ruby version. (Ken Takata) |
| 1803 | Files: src/if_ruby.c |
| 1804 | |
| 1805 | Patch 7.4.228 |
| 1806 | Problem: Compiler warnings when building with Python 3.2. |
| 1807 | Solution: Make type cast depend on Python version. (Ken Takata) |
| 1808 | Files: src/if_py_both.h, src/if_python.c, src/if_python3.c |
| 1809 | |
| 1810 | Patch 7.4.229 |
| 1811 | Problem: Using ":let" for listing variables and the second one is a curly |
| 1812 | braces expression may fail. |
| 1813 | Solution: Check for an "=" in a better way. (ZyX) |
| 1814 | Files: src/eval.c, src/testdir/test104.in, src/testdir/test104.ok |
| 1815 | |
| 1816 | Patch 7.4.230 |
| 1817 | Problem: Error when using ":options". |
| 1818 | Solution: Fix the entry for 'lispwords'. (Kenichi Ito) |
| 1819 | Files: runtime/optwin.vim |
| 1820 | |
| 1821 | Patch 7.4.231 |
| 1822 | Problem: An error in ":options" is not caught by the tests. |
| 1823 | Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that |
| 1824 | it uses the current runtime files instead of the installed ones. |
| 1825 | Files: src/Makefile, src/testdir/Makefile, src/testdir/test_options.in, |
| 1826 | src/testdir/test_options.ok, src/testdir/Make_amiga.mak, |
| 1827 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 1828 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms |
| 1829 | |
| 1830 | Patch 7.4.232 |
| 1831 | Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin) |
| 1832 | Solution: Turn this into a join command. (Christian Brabandt) |
| 1833 | Files: src/ex_cmds.c, src/ex_docmd.c, src/proto/ex_docmd.pro |
| 1834 | |
| 1835 | Patch 7.4.233 |
| 1836 | Problem: Escaping special characters for using "%" with a shell command is |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1837 | inconsistent, parentheses are escaped but spaces are not. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 1838 | Solution: Only escape "!". (Gary Johnson) |
| 1839 | Files: src/ex_docmd.c |
| 1840 | |
| 1841 | Patch 7.4.234 |
| 1842 | Problem: Can't get the command that was used to start Vim. |
| 1843 | Solution: Add v:progpath. (Viktor Kojouharov) |
| 1844 | Files: runtime/doc/eval.txt, src/eval.c, src/main.c, src/vim.h |
| 1845 | |
| 1846 | Patch 7.4.235 |
| 1847 | Problem: It is not easy to get the full path of a command. |
| 1848 | Solution: Add the exepath() function. |
| 1849 | Files: src/eval.c, src/misc1.c, src/os_amiga.c, src/os_msdos.c, |
| 1850 | src/os_unix.c, src/os_vms.c, src/os_win32.c, |
| 1851 | src/proto/os_amiga.pro, src/proto/os_msdos.pro, |
| 1852 | src/proto/os_unix.pro, src/proto/os_win32.pro, |
| 1853 | runtime/doc/eval.txt |
| 1854 | |
| 1855 | Patch 7.4.236 |
| 1856 | Problem: It's not that easy to check the Vim patch version. |
| 1857 | Solution: Make has("patch-7.4.123") work. (partly by Marc Weber) |
| 1858 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test60.in, |
| 1859 | src/testdir/test60.ok |
| 1860 | |
| 1861 | Patch 7.4.237 (after 7.4.236) |
| 1862 | Problem: When some patches was not included has("patch-7.4.123") may return |
| 1863 | true falsely. |
| 1864 | Solution: Check for the specific patch number. |
| 1865 | Files: runtime/doc/eval.txt, src/eval.c |
| 1866 | |
| 1867 | Patch 7.4.238 |
| 1868 | Problem: Vim does not support the smack library. |
| 1869 | Solution: Add smack support (Jose Bollo) |
| 1870 | Files: src/config.h.in, src/configure.in, src/fileio.c, src/memfile.c, |
| 1871 | src/os_unix.c, src/undo.c, src/auto/configure |
| 1872 | |
| 1873 | Patch 7.4.239 |
| 1874 | Problem: ":e +" does not position cursor at end of the file. |
| 1875 | Solution: Check for "+" being the last character (ZyX) |
| 1876 | Files: src/ex_docmd.c |
| 1877 | |
| 1878 | Patch 7.4.240 |
| 1879 | Problem: ":tjump" shows "\n" as "\\n". |
| 1880 | Solution: Skip over "\" that escapes a backslash. (Gary Johnson) |
| 1881 | Files: src/tag.c |
| 1882 | |
| 1883 | Patch 7.4.241 |
| 1884 | Problem: The string returned by submatch() does not distinguish between a |
| 1885 | NL from a line break and a NL that stands for a NUL character. |
| 1886 | Solution: Add a second argument to return a list. (ZyX) |
| 1887 | Files: runtime/doc/eval.txt, src/eval.c, src/proto/regexp.pro, |
| 1888 | src/regexp.c, src/testdir/test79.in, src/testdir/test79.ok, |
| 1889 | src/testdir/test80.in, src/testdir/test80.ok |
| 1890 | |
| 1891 | Patch 7.4.242 |
| 1892 | Problem: getreg() does not distinguish between a NL used for a line break |
| 1893 | and a NL used for a NUL character. |
| 1894 | Solution: Add another argument to return a list. (ZyX) |
| 1895 | Files: runtime/doc/eval.txt, src/eval.c src/ops.c, src/proto/ops.pro, |
| 1896 | src/vim.h, src/Makefile, src/testdir/test_eval.in, |
| 1897 | src/testdir/test_eval.ok, src/testdir/Make_amiga.mak, |
| 1898 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 1899 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms |
| 1900 | |
| 1901 | Patch 7.4.243 |
| 1902 | Problem: Cannot use setreg() to add text that includes a NUL. |
| 1903 | Solution: Make setreg() accept a list. |
| 1904 | Files: runtime/doc/eval.txt, src/eval.c, src/ops.c, src/proto/ops.pro, |
| 1905 | src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 1906 | |
| 1907 | Patch 7.4.244 (after 7.4.238) |
| 1908 | Problem: The smack feature causes stray error messages. |
| 1909 | Solution: Remove the error messages. |
| 1910 | Files: src/os_unix.c |
| 1911 | |
| 1912 | Patch 7.4.245 |
| 1913 | Problem: Crash for "vim -u NONE -N -c '&&'". |
| 1914 | Solution: Check for the pattern to be NULL. (Dominique Pelle) |
| 1915 | Files: src/ex_cmds.c |
| 1916 | |
| 1917 | Patch 7.4.246 |
| 1918 | Problem: Configure message for detecting smack are out of sequence. |
| 1919 | Solution: Put the messages in the right place. (Kazunobu Kuriyama) |
| 1920 | Files: src/configure.in, src/auto/configure |
| 1921 | |
| 1922 | Patch 7.4.247 |
| 1923 | Problem: When passing input to system() there is no way to keep NUL and |
| 1924 | NL characters separate. |
| 1925 | Solution: Optionally use a list for the system() input. (ZyX) |
| 1926 | Files: runtime/doc/eval.txt, src/eval.c |
| 1927 | |
| 1928 | Patch 7.4.248 |
| 1929 | Problem: Cannot distinguish between NL and NUL in output of system(). |
| 1930 | Solution: Add systemlist(). (ZyX) |
| 1931 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_cmds2.c, src/misc1.c, |
| 1932 | src/proto/misc1.pro |
| 1933 | |
| 1934 | Patch 7.4.249 |
| 1935 | Problem: Using setreg() with a list of numbers does not work. |
| 1936 | Solution: Use a separate buffer for numbers. (ZyX) |
| 1937 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 1938 | |
| 1939 | Patch 7.4.250 |
| 1940 | Problem: Some test files missing from distribution. |
| 1941 | Solution: Add pattern for newly added tests. |
| 1942 | Files: Filelist |
| 1943 | |
| 1944 | Patch 7.4.251 |
| 1945 | Problem: Crash when BufAdd autocommand wipes out the buffer. |
| 1946 | Solution: Check for buffer to still be valid. Postpone freeing the buffer |
| 1947 | structure. (Hirohito Higashi) |
| 1948 | Files: src/buffer.c, src/ex_cmds.c, src/fileio.c, src/globals.h |
| 1949 | |
| 1950 | Patch 7.4.252 |
| 1951 | Problem: Critical error in GTK, removing timer twice. |
| 1952 | Solution: Clear the timer after removing it. (James McCoy) |
| 1953 | Files: src/gui_gtk_x11.c |
| 1954 | |
| 1955 | Patch 7.4.253 |
| 1956 | Problem: Crash when using cpp syntax file with pattern using external |
| 1957 | match. (Havard Garnes) |
| 1958 | Solution: Discard match when end column is before start column. |
| 1959 | Files: src/regexp.c, src/regexp_nfa.c |
| 1960 | |
| 1961 | Patch 7.4.254 |
| 1962 | Problem: Smack support detection is incomplete. |
| 1963 | Solution: Check for attr/xattr.h and specific macro. |
| 1964 | Files: src/configure.in, src/auto/configure |
| 1965 | |
| 1966 | Patch 7.4.255 |
| 1967 | Problem: Configure check for smack doesn't work with all shells. (David |
| 1968 | Larson) |
| 1969 | Solution: Remove spaces in set command. |
| 1970 | Files: src/configure.in, src/auto/configure |
| 1971 | |
| 1972 | Patch 7.4.256 (after 7.4.248) |
| 1973 | Problem: Using systemlist() may cause a crash and does not handle NUL |
| 1974 | characters properly. |
| 1975 | Solution: Increase the reference count, allocate memory by length. (Yasuhiro |
| 1976 | Matsumoto) |
| 1977 | Files: src/eval.c |
| 1978 | |
| 1979 | Patch 7.4.257 |
| 1980 | Problem: Compiler warning, possibly for mismatch in parameter name. |
| 1981 | Solution: Rename the parameter in the declaration. |
| 1982 | Files: src/ops.c |
| 1983 | |
| 1984 | Patch 7.4.258 |
| 1985 | Problem: Configure fails if $CC contains options. |
| 1986 | Solution: Remove quotes around $CC. (Paul Barker) |
| 1987 | Files: src/configure.in, src/auto/configure |
| 1988 | |
| 1989 | Patch 7.4.259 |
| 1990 | Problem: Warning for misplaced "const". |
| 1991 | Solution: Move the "const". (Yukihiro Nakadaira) |
| 1992 | Files: src/os_unix.c |
| 1993 | |
| 1994 | Patch 7.4.260 |
| 1995 | Problem: It is possible to define a function with a colon in the name. It |
| 1996 | is possible to define a function with a lower case character if a |
| 1997 | "#" appears after the name. |
| 1998 | Solution: Disallow using a colon other than with "s:". Ignore "#" after the |
| 1999 | name. |
| 2000 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_eval.in, |
| 2001 | src/testdir/test_eval.ok |
| 2002 | |
| 2003 | Patch 7.4.261 |
| 2004 | Problem: When updating the window involves a regexp pattern, an interactive |
| 2005 | substitute to replace a "\n" with a line break fails. (Ingo |
| 2006 | Karkat) |
| 2007 | Solution: Set reg_line_lbr in vim_regsub() and vim_regsub_multi(). |
| 2008 | Files: src/regexp.c, src/testdir/test79.in, src/testdir/test79.ok |
| 2009 | |
| 2010 | Patch 7.4.262 |
| 2011 | Problem: Duplicate code in regexec(). |
| 2012 | Solution: Add line_lbr flag to regexec_nl(). |
| 2013 | Files: src/regexp.c, src/regexp_nfa.c, src/regexp.h |
| 2014 | |
| 2015 | Patch 7.4.263 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2016 | 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] | 2017 | Solution: Remove the second declaration. |
| 2018 | Files: src/eval.c |
| 2019 | |
| 2020 | Patch 7.4.264 (after 7.4.260) |
| 2021 | Problem: Can't define a function starting with "g:". Can't assign a |
| 2022 | funcref to a buffer-local variable. |
| 2023 | Solution: Skip "g:" at the start of a function name. Don't check for colons |
| 2024 | when assigning to a variable. |
| 2025 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 2026 | |
| 2027 | Patch 7.4.265 (after 7.4.260) |
| 2028 | Problem: Can't call a global function with "g:" in an expression. |
| 2029 | Solution: Skip the "g:" when looking up the function. |
| 2030 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 2031 | |
| 2032 | Patch 7.4.266 |
| 2033 | Problem: Test 62 fails. |
| 2034 | Solution: Set the language to C. (Christian Brabandt) |
| 2035 | Files: src/testdir/test62.in |
| 2036 | |
| 2037 | Patch 7.4.267 (after 7.4.178) |
| 2038 | Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat) |
| 2039 | Solution: Add the setmark argument to do_join(). (Christian Brabandt) |
| 2040 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2041 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2042 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2043 | src/testdir/test_autoformat_join.in, |
| 2044 | src/testdir/test_autoformat_join.ok, src/Makefile, src/edit.c, |
| 2045 | src/ex_cmds.c, src/ex_docmd.c, src/normal.c, src/ops.c, |
| 2046 | src/proto/ops.pro |
| 2047 | |
| 2048 | Patch 7.4.268 |
| 2049 | Problem: Using exists() on a funcref for a script-local function does not |
| 2050 | work. |
| 2051 | Solution: Translate <SNR> to the special byte sequence. Add a test. |
| 2052 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok, |
| 2053 | src/testdir/test_eval_func.vim, Filelist |
| 2054 | |
| 2055 | Patch 7.4.269 |
| 2056 | Problem: CTRL-U in Insert mode does not work after using a cursor key. |
| 2057 | (Pine Wu) |
| 2058 | Solution: Use the original insert start position. (Christian Brabandt) |
| 2059 | Files: src/edit.c, src/testdir/test29.in, src/testdir/test29.ok |
| 2060 | |
| 2061 | Patch 7.4.270 |
| 2062 | Problem: Comparing pointers instead of the string they point to. |
| 2063 | Solution: Use strcmp(). (Ken Takata) |
| 2064 | Files: src/gui_gtk_x11.c |
| 2065 | |
| 2066 | Patch 7.4.271 |
| 2067 | Problem: Compiler warning on 64 bit windows. |
| 2068 | Solution: Add type cast. (Mike Williams) |
| 2069 | Files: src/ops.c |
| 2070 | |
| 2071 | Patch 7.4.272 |
| 2072 | Problem: Using just "$" does not cause an error message. |
| 2073 | Solution: Check for empty environment variable name. (Christian Brabandt) |
| 2074 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 2075 | |
| 2076 | Patch 7.4.273 |
| 2077 | Problem: "make autoconf" and "make reconfig" may first run configure and |
| 2078 | then remove the output. |
| 2079 | Solution: Add these targets to the exceptions. (Ken Takata) |
| 2080 | Files: src/Makefile |
| 2081 | |
| 2082 | Patch 7.4.274 |
| 2083 | Problem: When doing ":update" just before running an external command that |
| 2084 | changes the file, the timestamp may be unchanged and the file |
| 2085 | is not reloaded. |
| 2086 | Solution: Also check the file size. |
| 2087 | Files: src/fileio.c |
| 2088 | |
| 2089 | Patch 7.4.275 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2090 | 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] | 2091 | no error message. |
| 2092 | Solution: Add an error message. (Christian Brabandt) |
| 2093 | Files: src/ex_cmds.c |
| 2094 | |
| 2095 | Patch 7.4.276 |
| 2096 | Problem: The fish shell is not supported. |
| 2097 | Solution: Use begin/end instead of () for fish. (Andy Russell) |
| 2098 | Files: src/ex_cmds.c, src/misc1.c, src/option.c, src/proto/misc1.pro |
| 2099 | |
| 2100 | Patch 7.4.277 |
| 2101 | Problem: Using ":sign unplace *" may leave the cursor in the wrong position |
| 2102 | (Christian Brabandt) |
| 2103 | Solution: Update the cursor position when removing all signs. |
| 2104 | Files: src/buffer.c |
| 2105 | |
| 2106 | Patch 7.4.278 |
| 2107 | Problem: list_remove() conflicts with function defined in Sun header file. |
| 2108 | Solution: Rename the function. (Richard Palo) |
| 2109 | Files: src/eval.c, src/if_lua.c, src/if_py_both.h, src/proto/eval.pro |
| 2110 | |
| 2111 | Patch 7.4.279 |
| 2112 | Problem: globpath() returns a string, making it difficult to get a list of |
| 2113 | matches. (Greg Novack) |
| 2114 | Solution: Add an optional argument like with glob(). (Adnan Zafar) |
| 2115 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_getln.c, src/misc1.c, |
| 2116 | src/misc2.c, src/proto/ex_getln.pro, src/proto/misc2.pro, |
| 2117 | src/testdir/test97.in, src/testdir/test97.ok |
| 2118 | |
| 2119 | Patch 7.4.280 |
| 2120 | Problem: When using a session file the relative position of the cursor is |
| 2121 | not restored if there is another tab. (Nobuhiro Takasaki) |
| 2122 | Solution: Update w_wrow before calculating the fraction. |
| 2123 | Files: src/window.c |
| 2124 | |
| 2125 | Patch 7.4.281 |
| 2126 | Problem: When a session file has more than one tabpage and 'showtabline' is |
| 2127 | one the positions may be slightly off. |
| 2128 | Solution: Set 'showtabline' to two while positioning windows. |
| 2129 | Files: src/ex_docmd.c |
| 2130 | |
| 2131 | Patch 7.4.282 (after 7.4.279) |
| 2132 | Problem: Test 97 fails on Mac. |
| 2133 | Solution: Do not ignore case in file names. (Jun Takimoto) |
| 2134 | Files: src/testdir/test97.in |
| 2135 | |
| 2136 | Patch 7.4.283 (after 7.4.276) |
| 2137 | Problem: Compiler warning about unused variable. (Charles Cooper) |
| 2138 | Solution: Move the variable inside the #if block. |
| 2139 | Files: src/ex_cmds.c |
| 2140 | |
| 2141 | Patch 7.4.284 |
| 2142 | Problem: Setting 'langmap' in the modeline can cause trouble. E.g. mapping |
| 2143 | ":" breaks many commands. (Jens-Wolfhard Schicke-Uffmann) |
| 2144 | Solution: Disallow setting 'langmap' from the modeline. |
| 2145 | Files: src/option.c |
| 2146 | |
| 2147 | Patch 7.4.285 |
| 2148 | Problem: When 'relativenumber' is set and deleting lines or undoing that, |
| 2149 | line numbers are not always updated. (Robert Arkwright) |
| 2150 | Solution: (Christian Brabandt) |
| 2151 | Files: src/misc1.c |
| 2152 | |
| 2153 | Patch 7.4.286 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2154 | Problem: Error messages are inconsistent. (ZyX) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2155 | Solution: Change "Lists" to "list". |
| 2156 | Files: src/eval.c |
| 2157 | |
| 2158 | Patch 7.4.287 |
| 2159 | Problem: Patches for .hgignore don't work, since the file is not in the |
| 2160 | distribution. |
| 2161 | Solution: Add .hgignore to the distribution. Will be effective with the |
| 2162 | next version. |
| 2163 | Files: Filelist |
| 2164 | |
| 2165 | Patch 7.4.288 |
| 2166 | Problem: When 'spellfile' is set the screen is not redrawn. |
| 2167 | Solution: Redraw when updating the spelling info. (Christian Brabandt) |
| 2168 | Files: src/spell.c |
| 2169 | |
| 2170 | Patch 7.4.289 |
| 2171 | Problem: Pattern with repeated backreference does not match with new regexp |
| 2172 | engine. (Urtica Dioica) |
| 2173 | Solution: Also check the end of a submatch when deciding to put a state in |
| 2174 | the state list. |
| 2175 | Files: src/testdir/test64.in, src/testdir/test64.ok, src/regexp_nfa.c |
| 2176 | |
| 2177 | Patch 7.4.290 |
| 2178 | Problem: A non-greedy match followed by a branch is too greedy. (Ingo |
| 2179 | Karkat) |
| 2180 | Solution: Add NFA_MATCH when it is already in the state list if the position |
| 2181 | differs. |
| 2182 | Files: src/testdir/test64.in, src/testdir/test64.ok, src/regexp_nfa.c |
| 2183 | |
| 2184 | Patch 7.4.291 |
| 2185 | Problem: Compiler warning for int to pointer of different size when DEBUG |
| 2186 | is defined. |
| 2187 | Solution: use smsg() instead of EMSG3(). |
| 2188 | Files: src/regexp.c |
| 2189 | |
| 2190 | Patch 7.4.292 |
| 2191 | Problem: Searching for "a" does not match accented "a" with new regexp |
| 2192 | engine, does match with old engine. (David Bürgin) |
| 2193 | "ca" does not match "ca" with accented "a" with either engine. |
| 2194 | Solution: Change the old engine, check for following composing character |
| 2195 | also for single-byte patterns. |
| 2196 | Files: src/regexp.c, src/testdir/test95.in, src/testdir/test95.ok |
| 2197 | |
| 2198 | Patch 7.4.293 |
| 2199 | Problem: It is not possible to ignore composing characters at a specific |
| 2200 | point in a pattern. |
| 2201 | Solution: Add the %C item. |
| 2202 | Files: src/regexp.c, src/regexp_nfa.c, src/testdir/test95.in, |
| 2203 | src/testdir/test95.ok, runtime/doc/pattern.txt |
| 2204 | |
| 2205 | Patch 7.4.294 (7.4.293) |
| 2206 | Problem: Test files missing from patch. |
| 2207 | Solution: Patch the test files. |
| 2208 | Files: src/testdir/test95.in, src/testdir/test95.ok |
| 2209 | |
| 2210 | Patch 7.4.295 |
| 2211 | Problem: Various typos, bad white space and unclear comments. |
| 2212 | Solution: Fix typos. Improve white space. Update comments. |
| 2213 | Files: src/testdir/test49.in, src/macros.h, src/screen.c, src/structs.h, |
| 2214 | src/gui_gtk_x11.c, src/os_unix.c |
| 2215 | |
| 2216 | Patch 7.4.296 |
| 2217 | Problem: Can't run tests on Solaris. |
| 2218 | Solution: Change the way VIMRUNTIME is set. (Laurent Blume) |
| 2219 | Files: src/testdir/Makefile |
| 2220 | |
| 2221 | Patch 7.4.297 |
| 2222 | Problem: Memory leak from result of get_isolated_shell_name(). |
| 2223 | Solution: Free the memory. (Dominique Pelle) |
| 2224 | Files: src/ex_cmds.c, src/misc1.c |
| 2225 | |
| 2226 | Patch 7.4.298 |
| 2227 | Problem: Can't have a funcref start with "t:". |
| 2228 | Solution: Add "t" to the list of accepted names. (Yukihiro Nakadaira) |
| 2229 | Files: src/eval.c |
| 2230 | |
| 2231 | Patch 7.4.299 |
| 2232 | Problem: When running configure twice DYNAMIC_PYTHON_DLL may become empty. |
| 2233 | Solution: Use AC_CACHE_VAL. (Ken Takata) |
| 2234 | Files: src/configure.in, src/auto/configure |
| 2235 | |
| 2236 | Patch 7.4.300 |
| 2237 | Problem: The way config.cache is removed doesn't always work. |
| 2238 | Solution: Always remove config.cache. (Ken Takata) |
| 2239 | Files: src/Makefile |
| 2240 | |
| 2241 | Patch 7.4.301 (after 7.4.280) |
| 2242 | Problem: Still a scrolling problem when loading a session file. |
| 2243 | Solution: Fix off-by-one mistake. (Nobuhiro Takasaki) |
| 2244 | Files: src/window.c |
| 2245 | |
| 2246 | Patch 7.4.302 |
| 2247 | Problem: Signs placed with 'foldcolumn' set don't show up after filler |
| 2248 | lines. |
| 2249 | Solution: Take filler lines into account. (Olaf Dabrunz) |
| 2250 | Files: src/screen.c |
| 2251 | |
| 2252 | Patch 7.4.303 |
| 2253 | Problem: When using double-width characters the text displayed on the |
| 2254 | command line is sometimes truncated. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 2255 | Solution: Reset the string length. (Nobuhiro Takasaki) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2256 | Files: src/screen.c |
| 2257 | |
| 2258 | Patch 7.4.304 |
| 2259 | Problem: Cannot always use Python with Vim. |
| 2260 | Solution: Add the manifest to the executable. (Jacques Germishuys) |
| 2261 | Files: src/Make_mvc.mak |
| 2262 | |
| 2263 | Patch 7.4.305 |
| 2264 | Problem: Making 'ttymouse' empty after the xterm version was requested |
| 2265 | causes problems. (Elijah Griffin) |
| 2266 | Solution: Do not check for DEC mouse sequences when the xterm version was |
| 2267 | requested. Also don't request the xterm version when DEC mouse |
| 2268 | was enabled. |
| 2269 | Files: src/term.c, src/os_unix.c, src/proto/term.pro, src/globals.h |
| 2270 | |
| 2271 | Patch 7.4.306 |
| 2272 | Problem: getchar(0) does not return Esc. |
| 2273 | Solution: Do not wait for an Esc sequence to be complete. (Yasuhiro |
| 2274 | Matsumoto) |
| 2275 | Files: src/eval.c, src/getchar.c |
| 2276 | |
| 2277 | Patch 7.4.307 (after 7.4.305) |
| 2278 | Problem: Can't build without the +termresponse feature. |
| 2279 | Solution: Add proper #ifdefs. |
| 2280 | Files: src/os_unix.c, src/term.c |
| 2281 | |
| 2282 | Patch 7.4.308 |
| 2283 | Problem: When using ":diffsplit" on an empty file the cursor is displayed |
| 2284 | on the command line. |
| 2285 | Solution: Limit the value of w_topfill. |
| 2286 | Files: src/diff.c |
| 2287 | |
| 2288 | Patch 7.4.309 |
| 2289 | Problem: When increasing the size of the lower window, the upper window |
| 2290 | jumps back to the top. (Ron Aaron) |
| 2291 | Solution: Change setting the topline. (Nobuhiro Takasaki) |
| 2292 | Files: src/window.c |
| 2293 | |
| 2294 | Patch 7.4.310 |
| 2295 | Problem: getpos()/setpos() don't include curswant. |
| 2296 | Solution: Add a fifth number when getting/setting the cursor. |
| 2297 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok, |
| 2298 | runtime/doc/eval.txt |
| 2299 | |
| 2300 | Patch 7.4.311 |
| 2301 | Problem: Can't use winrestview to only restore part of the view. |
| 2302 | Solution: Handle missing items in the dict. (Christian Brabandt) |
| 2303 | Files: src/eval.c, runtime/doc/eval.txt |
| 2304 | |
| 2305 | Patch 7.4.312 |
| 2306 | Problem: Cannot figure out what argument list is being used for a window. |
| 2307 | Solution: Add the arglistid() function. (Marcin Szamotulski) |
| 2308 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c, |
| 2309 | src/ex_docmd.c, src/globals.h, src/structs.h, src/main.c |
| 2310 | |
| 2311 | Patch 7.4.313 (after 7.4.310) |
| 2312 | Problem: Changing the return value of getpos() causes an error. (Jie Zhu) |
| 2313 | Solution: Revert getpos() and add getcurpos(). |
| 2314 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok, |
| 2315 | runtime/doc/eval.txt |
| 2316 | |
| 2317 | Patch 7.4.314 |
| 2318 | Problem: Completion messages can get in the way of a plugin. |
| 2319 | Solution: Add 'c' flag to 'shortmess' option. (Shougo Matsu) |
| 2320 | Files: runtime/doc/options.txt, src/edit.c, src/option.h, src/screen.c |
| 2321 | |
| 2322 | Patch 7.4.315 (after 7.4.309) |
| 2323 | Problem: Fixes for computation of topline not tested. |
| 2324 | Solution: Add test. (Hirohito Higashi) |
| 2325 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2326 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2327 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2328 | src/testdir/test107.in, src/testdir/test107.ok |
| 2329 | |
| 2330 | Patch 7.4.316 |
| 2331 | Problem: Warning from 64-bit compiler. |
| 2332 | Solution: Add type cast. (Mike Williams) |
| 2333 | Files: src/ex_getln.c |
| 2334 | |
| 2335 | Patch 7.4.317 |
| 2336 | Problem: Crash when starting gvim. Issue 230. |
| 2337 | Solution: Check for a pointer to be NULL. (Christian Brabandt) |
| 2338 | Files: src/window.c |
| 2339 | |
| 2340 | Patch 7.4.318 |
| 2341 | Problem: Check for whether a highlight group has settings ignores fg and bg |
| 2342 | color settings. |
| 2343 | Solution: Also check cterm and GUI color settings. (Christian Brabandt) |
| 2344 | Files: src/syntax.c |
| 2345 | |
| 2346 | Patch 7.4.319 |
| 2347 | Problem: Crash when putting zero bytes on the clipboard. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2348 | 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] | 2349 | encoding. (Naofumi Honda) |
| 2350 | Files: src/ui.c |
| 2351 | |
| 2352 | Patch 7.4.320 |
| 2353 | Problem: Possible crash when an BufLeave autocommand deletes the buffer. |
| 2354 | Solution: Check for the window pointer being valid. Postpone freeing the |
| 2355 | window until autocommands are done. (Yasuhiro Matsumoto) |
| 2356 | Files: src/buffer.c, src/fileio.c, src/globals.h, src/window.c |
| 2357 | |
| 2358 | Patch 7.4.321 |
| 2359 | Problem: Can't build with strawberry perl 5.20 + mingw-w64-4.9.0. |
| 2360 | Solution: Define save_strlen. (Ken Takata) |
| 2361 | Files: src/if_perl.xs |
| 2362 | |
| 2363 | Patch 7.4.322 |
| 2364 | Problem: Using "msgfmt" is hard coded, cannot use "gmsgfmt". |
| 2365 | Solution: Use the msgfmt command found by configure. (Danek Duvall) |
| 2366 | Files: src/config.mk.in, src/po/Makefile |
| 2367 | |
| 2368 | Patch 7.4.323 |
| 2369 | Problem: Substitute() with zero width pattern breaks multi-byte character. |
| 2370 | Solution: Take multi-byte character size into account. (Yukihiro Nakadaira) |
| 2371 | Files: src/eval.c src/testdir/test69.in, src/testdir/test69.ok |
| 2372 | |
| 2373 | Patch 7.4.324 |
| 2374 | Problem: In Ex mode, cyrillic characters are not handled. (Stas Malavin) |
| 2375 | Solution: Support multi-byte characters in Ex mode. (Yukihiro Nakadaira) |
| 2376 | Files: src/ex_getln.c |
| 2377 | |
| 2378 | Patch 7.4.325 |
| 2379 | Problem: When starting the gui and changing the window size the status line |
| 2380 | may not be drawn correctly. |
| 2381 | Solution: Catch new_win_height() being called recursively. (Christian |
| 2382 | Brabandt) |
| 2383 | Files: src/window.c |
| 2384 | |
| 2385 | Patch 7.4.326 |
| 2386 | Problem: Can't build Tiny version. (Elimar Riesebieter) |
| 2387 | Solution: Add #ifdef. |
| 2388 | Files: src/window.c |
| 2389 | |
| 2390 | Patch 7.4.327 |
| 2391 | Problem: When 'verbose' is set to display the return value of a function, |
| 2392 | may get E724 repeatedly. |
| 2393 | Solution: Do not give an error for verbose messages. Abort conversion to |
| 2394 | string after an error. |
| 2395 | Files: src/eval.c |
| 2396 | |
| 2397 | Patch 7.4.328 |
| 2398 | Problem: Selection of inner block is inconsistent. |
| 2399 | Solution: Skip indent not only for '}' but all parens. (Tom McDonald) |
| 2400 | Files: src/search.c |
| 2401 | |
| 2402 | Patch 7.4.329 |
| 2403 | Problem: When moving the cursor and then switching to another window the |
| 2404 | previous window isn't scrolled. (Yukihiro Nakadaira) |
| 2405 | Solution: Call update_topline() before leaving the window. (Christian |
| 2406 | Brabandt) |
| 2407 | Files: src/window.c |
| 2408 | |
| 2409 | Patch 7.4.330 |
| 2410 | Problem: Using a regexp pattern to highlight a specific position can be |
| 2411 | slow. |
| 2412 | Solution: Add matchaddpos() to highlight specific positions efficiently. |
| 2413 | (Alexey Radkov) |
| 2414 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, |
| 2415 | runtime/plugin/matchparen.vim, src/eval.c, src/ex_docmd.c, |
| 2416 | src/proto/window.pro, src/screen.c, src/structs.h, |
| 2417 | src/testdir/test63.in, src/testdir/test63.ok, src/window.c |
| 2418 | |
| 2419 | Patch 7.4.331 |
| 2420 | Problem: Relative numbering not updated after a linewise yank. Issue 235. |
| 2421 | Solution: Redraw after the yank. (Christian Brabandt) |
| 2422 | Files: src/ops.c |
| 2423 | |
| 2424 | Patch 7.4.332 |
| 2425 | Problem: GTK: When a sign icon doesn't fit exactly there can be ugly gaps. |
| 2426 | Solution: Scale the sign to fit when the aspect ratio is not too far off. |
| 2427 | (Christian Brabandt) |
| 2428 | Files: src/gui_gtk_x11.c |
| 2429 | |
| 2430 | Patch 7.4.333 |
| 2431 | Problem: Compiler warning for unused function. |
| 2432 | Solution: Put the function inside the #ifdef. |
| 2433 | Files: src/screen.c |
| 2434 | |
| 2435 | Patch 7.4.334 (after 7.4.330) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2436 | Problem: Uninitialized variables, causing some problems. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2437 | Solution: Initialize the variables. (Dominique Pelle) |
| 2438 | Files: src/screen.c, src/window.c |
| 2439 | |
| 2440 | Patch 7.4.335 |
| 2441 | Problem: No digraph for the new rouble sign. |
| 2442 | Solution: Add the digraphs =R and =P. |
| 2443 | Files: src/digraph.c, runtime/doc/digraph.txt |
| 2444 | |
| 2445 | Patch 7.4.336 |
| 2446 | Problem: Setting 'history' to a big value causes out-of-memory errors. |
| 2447 | Solution: Limit the value to 10000. (Hirohito Higashi) |
| 2448 | Files: runtime/doc/options.txt, src/option.c |
| 2449 | |
| 2450 | Patch 7.4.337 |
| 2451 | Problem: When there is an error preparing to edit the command line, the |
| 2452 | command won't be executed. (Hirohito Higashi) |
| 2453 | Solution: Reset did_emsg before editing. |
| 2454 | Files: src/ex_getln.c |
| 2455 | |
| 2456 | Patch 7.4.338 |
| 2457 | Problem: Cannot wrap lines taking indent into account. |
| 2458 | Solution: Add the 'breakindent' option. (many authors, final improvements by |
| 2459 | Christian Brabandt) |
| 2460 | Files: runtime/doc/eval.txt, runtime/doc/options.txt, runtime/optwin.vim, |
| 2461 | src/buffer.c, src/charset.c, src/edit.c, src/ex_getln.c, |
| 2462 | src/getchar.c, src/misc1.c, src/misc2.c, src/ops.c, src/option.c, |
| 2463 | src/option.h, src/proto/charset.pro, src/proto/misc1.pro, |
| 2464 | src/proto/option.pro, src/screen.c, src/structs.h, |
| 2465 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2466 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2467 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2468 | src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok, |
| 2469 | src/ui.c, src/version.c |
| 2470 | |
| 2471 | Patch 7.4.339 |
| 2472 | Problem: Local function is available globally. |
| 2473 | Solution: Add "static". |
| 2474 | Files: src/option.c, src/proto/option.pro |
| 2475 | |
| 2476 | Patch 7.4.340 |
| 2477 | Problem: Error from sed about illegal bytes when installing Vim. |
| 2478 | Solution: Prepend LC_ALL=C. (Itchyny) |
| 2479 | Files: src/installman.sh |
| 2480 | |
| 2481 | Patch 7.4.341 |
| 2482 | Problem: sort() doesn't handle numbers well. |
| 2483 | Solution: Add an argument to specify sorting on numbers. (Christian Brabandt) |
| 2484 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test55.in, |
| 2485 | src/testdir/test55.ok |
| 2486 | |
| 2487 | Patch 7.4.342 |
| 2488 | Problem: Clang gives warnings. |
| 2489 | Solution: Add an else block. (Dominique Pelle) |
| 2490 | Files: src/gui_beval.c |
| 2491 | |
| 2492 | Patch 7.4.343 |
| 2493 | Problem: matchdelete() does not always update the right lines. |
| 2494 | Solution: Fix off-by-one error. (Ozaki Kiichi) |
| 2495 | Files: src/window.c |
| 2496 | |
| 2497 | Patch 7.4.344 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2498 | Problem: Unnecessary initializations and other things related to |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2499 | matchaddpos(). |
| 2500 | Solution: Code cleanup. (Alexey Radkov) |
| 2501 | Files: runtime/doc/eval.txt, src/screen.c, src/window.c |
| 2502 | |
| 2503 | Patch 7.4.345 (after 7.4.338) |
| 2504 | Problem: Indent is not updated when deleting indent. |
| 2505 | Solution: Remember changedtick. |
| 2506 | Files: src/misc1.c |
| 2507 | |
| 2508 | Patch 7.4.346 (after 7.4.338) |
| 2509 | Problem: Indent is not updated when changing 'breakindentopt'. (itchyny) |
| 2510 | Solution: Do not cache "brishift". (Christian Brabandt) |
| 2511 | Files: src/misc1.c |
| 2512 | |
| 2513 | Patch 7.4.347 |
| 2514 | Problem: test55 fails on some systems. |
| 2515 | Solution: Remove the elements that all result in zero and can end up in an |
| 2516 | arbitrary position. |
| 2517 | Files: src/testdir/test55.in, src/testdir/test55.ok |
| 2518 | |
| 2519 | Patch 7.4.348 |
| 2520 | Problem: When using "J1" in 'cinoptions' a line below a continuation line |
| 2521 | gets too much indent. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2522 | Solution: Fix parentheses in condition. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2523 | Files: src/misc1.c |
| 2524 | |
| 2525 | Patch 7.4.349 |
| 2526 | Problem: When there are matches to highlight the whole window is redrawn, |
| 2527 | which is slow. |
| 2528 | Solution: Only redraw everything when lines were inserted or deleted. |
| 2529 | Reset b_mod_xlines when needed. (Alexey Radkov) |
| 2530 | Files: src/screen.c, src/window.c |
| 2531 | |
| 2532 | Patch 7.4.350 |
| 2533 | 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] | 2534 | inside parentheses. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2535 | Solution: When looking for a matching paren ignore one that is before the |
| 2536 | start of a {} block. |
| 2537 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 2538 | |
| 2539 | Patch 7.4.351 |
| 2540 | Problem: sort() is not stable. |
| 2541 | Solution: When the items are identical, compare the pointers. |
| 2542 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok |
| 2543 | |
| 2544 | Patch 7.4.352 |
| 2545 | Problem: With 'linebreak' a tab causes a missing line break. |
| 2546 | Solution: Count a tab for what it's worth also for shorter lines. |
| 2547 | (Christian Brabandt) |
| 2548 | Files: src/charset.c |
| 2549 | |
| 2550 | Patch 7.4.353 |
| 2551 | Problem: 'linebreak' doesn't work with the 'list' option. |
| 2552 | Solution: Make it work. (Christian Brabandt) |
| 2553 | Files: runtime/doc/options.txt, src/charset.c, src/screen.c, |
| 2554 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2555 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2556 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2557 | src/testdir/test_listlbr.in, src/testdir/test_listlbr.ok |
| 2558 | |
| 2559 | Patch 7.4.354 |
| 2560 | Problem: Compiler warning. |
| 2561 | Solution: Change NUL to NULL. (Ken Takata) |
| 2562 | Files: src/screen.c |
| 2563 | |
| 2564 | Patch 7.4.355 |
| 2565 | Problem: Several problems with Javascript indenting. |
| 2566 | Solution: Improve Javascript indenting. |
| 2567 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 2568 | |
| 2569 | Patch 7.4.356 |
| 2570 | Problem: Mercurial does not ignore memfile_test. (Daniel Hahler) |
| 2571 | Solution: Add memfile_test to ignored files, remove trailing spaces. |
| 2572 | Files: .hgignore |
| 2573 | |
| 2574 | Patch 7.4.357 |
| 2575 | Problem: After completion some characters are not redrawn. |
| 2576 | Solution: Clear the command line unconditionally. (Jacob Niehus) |
| 2577 | Files: src/edit.c |
| 2578 | |
| 2579 | Patch 7.4.358 (after 7.4.351) |
| 2580 | Problem: Sort is not always stable. |
| 2581 | Solution: Add an index instead of relying on the pointer to remain the same. |
| 2582 | Idea by Jun Takimoto. |
| 2583 | Files: src/eval.c |
| 2584 | |
| 2585 | Patch 7.4.359 |
| 2586 | Problem: When 'ttymouse' is set to 'uxterm' the xterm version is not |
| 2587 | requested. (Tomas Janousek) |
| 2588 | Solution: Do not mark uxterm as a conflict mouse and add |
| 2589 | resume_get_esc_sequence(). |
| 2590 | Files: src/term.c, src/os_unix.c, src/proto/term.pro |
| 2591 | |
| 2592 | Patch 7.4.360 |
| 2593 | Problem: In a regexp pattern a "$" followed by \v or \V is not seen as the |
| 2594 | end-of-line. |
| 2595 | Solution: Handle the situation. (Ozaki Kiichi) |
| 2596 | Files: src/regexp.c |
| 2597 | |
| 2598 | Patch 7.4.361 |
| 2599 | Problem: Lots of flickering when filling the preview window for 'omnifunc'. |
| 2600 | Solution: Disable redrawing. (Hirohito Higashi) |
| 2601 | Files: src/popupmnu.c |
| 2602 | |
| 2603 | Patch 7.4.362 |
| 2604 | Problem: When matchaddpos() uses a length smaller than the number of bytes |
| 2605 | in the (last) character the highlight continues until the end of |
| 2606 | the line. |
| 2607 | Solution: Change condition from equal to larger-or-equal. |
| 2608 | Files: src/screen.c |
| 2609 | |
| 2610 | Patch 7.4.363 |
| 2611 | Problem: In Windows console typing 0xCE does not work. |
| 2612 | Solution: Convert 0xCE to K_NUL 3. (Nobuhiro Takasaki et al.) |
| 2613 | Files: src/os_win32.c, src/term.c |
| 2614 | |
| 2615 | Patch 7.4.364 |
| 2616 | Problem: When the viminfo file can't be renamed there is no error message. |
| 2617 | (Vladimir Berezhnoy) |
| 2618 | Solution: Check for the rename to fail. |
| 2619 | Files: src/ex_cmds.c |
| 2620 | |
| 2621 | Patch 7.4.365 |
| 2622 | Problem: Crash when using ":botright split" when there isn't much space. |
| 2623 | Solution: Add a check for the minimum width/height. (Yukihiro Nakadaira) |
| 2624 | Files: src/window.c |
| 2625 | |
| 2626 | Patch 7.4.366 |
| 2627 | Problem: Can't run the linebreak test on MS-Windows. |
| 2628 | Solution: Fix the output file name. (Taro Muraoka) |
| 2629 | Files: src/testdir/Make_dos.mak |
| 2630 | |
| 2631 | Patch 7.4.367 (after 7.4.357) |
| 2632 | Problem: Other solution for redrawing after completion. |
| 2633 | Solution: Schedule a window redraw instead of just clearing the command |
| 2634 | line. (Jacob Niehus) |
| 2635 | Files: src/edit.c |
| 2636 | |
| 2637 | Patch 7.4.368 |
| 2638 | Problem: Restoring the window sizes after closing the command line window |
| 2639 | doesn't work properly if there are nested splits. |
| 2640 | Solution: Restore the sizes twice. (Hirohito Higashi) |
| 2641 | Files: src/window.c |
| 2642 | |
| 2643 | Patch 7.4.369 |
| 2644 | Problem: Using freed memory when exiting while compiled with EXITFREE. |
| 2645 | Solution: Set curwin to NULL and check for that. (Dominique Pelle) |
| 2646 | Files: src/buffer.c, src/window.c |
| 2647 | |
| 2648 | Patch 7.4.370 |
| 2649 | Problem: Linebreak test fails when encoding is not utf-8. (Danek Duvall) |
| 2650 | Solution: Split the test in a single byte one and a utf-8 one. (Christian |
| 2651 | Brabandt) |
| 2652 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2653 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2654 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2655 | src/testdir/test_listlbr.in, src/testdir/test_listlbr.ok, |
| 2656 | src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok |
| 2657 | |
| 2658 | Patch 7.4.371 |
| 2659 | Problem: When 'linebreak' is set control characters are not correctly |
| 2660 | displayed. (Kimmy Lindvall) |
| 2661 | Solution: Set n_extra. (Christian Brabandt) |
| 2662 | Files: src/screen.c |
| 2663 | |
| 2664 | Patch 7.4.372 |
| 2665 | Problem: When 'winminheight' is zero there might not be one line for the |
| 2666 | current window. |
| 2667 | Solution: Change the size computations. (Yukihiro Nakadaira) |
| 2668 | Files: src/window.c |
| 2669 | |
| 2670 | Patch 7.4.373 |
| 2671 | Problem: Compiler warning for unused argument and unused variable. |
| 2672 | Solution: Add UNUSED. Move variable inside #ifdef. |
| 2673 | Files: src/charset.c, src/window.c |
| 2674 | |
| 2675 | Patch 7.4.374 |
| 2676 | Problem: Character after "fb" command not mapped if it might be a composing |
| 2677 | character. |
| 2678 | Solution: Don't disable mapping when looking for a composing character. |
| 2679 | (Jacob Niehus) |
| 2680 | Files: src/normal.c |
| 2681 | |
| 2682 | Patch 7.4.375 |
| 2683 | Problem: Test 63 fails when run with GUI-only Vim. |
| 2684 | Solution: Add guibg attributes. (suggested by Mike Soyka) |
| 2685 | Files: src/testdir/test63.in |
| 2686 | |
| 2687 | Patch 7.4.376 (after 7.4.367) |
| 2688 | Problem: Popup menu flickers too much. |
| 2689 | Solution: Remove the forced redraw. (Hirohito Higashi) |
| 2690 | Files: src/edit.c |
| 2691 | |
| 2692 | Patch 7.4.377 |
| 2693 | Problem: When 'equalalways' is set a split may report "no room" even though |
| 2694 | there is plenty of room. |
| 2695 | Solution: Compute the available room properly. (Yukihiro Nakadaira) |
| 2696 | Files: src/window.c |
| 2697 | |
| 2698 | Patch 7.4.378 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 2699 | Problem: Title of quickfix list is not kept for setqflist(list, 'r'). |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2700 | Solution: Keep the title. Add a test. (Lcd) |
| 2701 | Files: src/quickfix.c, src/testdir/Make_amiga.mak, |
| 2702 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 2703 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 2704 | src/testdir/Makefile, src/testdir/test_qf_title.in, |
| 2705 | src/testdir/test_qf_title.ok |
| 2706 | |
| 2707 | Patch 7.4.379 |
| 2708 | Problem: Accessing freed memory after using setqflist(list, 'r'). (Lcd) |
| 2709 | Solution: Reset qf_index. |
| 2710 | Files: src/quickfix.c |
| 2711 | |
| 2712 | Patch 7.4.380 |
| 2713 | Problem: Loading python may cause Vim to exit. |
| 2714 | Solution: Avoid loading the "site" module. (Taro Muraoka) |
| 2715 | Files: src/if_python.c |
| 2716 | |
| 2717 | Patch 7.4.381 |
| 2718 | Problem: Get u_undo error when backspacing in Insert mode deletes more than |
| 2719 | one line break. (Ayberk Ozgur) |
| 2720 | Solution: Also decrement Insstart.lnum. |
| 2721 | Files: src/edit.c |
| 2722 | |
| 2723 | Patch 7.4.382 |
| 2724 | Problem: Mapping characters may not work after typing Esc in Insert mode. |
| 2725 | Solution: Fix the noremap flags for inserted characters. (Jacob Niehus) |
| 2726 | Files: src/getchar.c |
| 2727 | |
| 2728 | Patch 7.4.383 |
| 2729 | Problem: Bad interaction between preview window and omnifunc. |
| 2730 | Solution: Avoid redrawing the status line. (Hirohito Higashi) |
| 2731 | Files: src/popupmnu.c |
| 2732 | |
| 2733 | Patch 7.4.384 |
| 2734 | Problem: Test 102 fails when compiled with small features. |
| 2735 | Solution: Source small.vim. (Jacob Niehus) |
| 2736 | Files: src/testdir/test102.in |
| 2737 | |
| 2738 | Patch 7.4.385 |
| 2739 | Problem: When building with tiny or small features building the .mo files |
| 2740 | fails. |
| 2741 | Solution: In autoconf do not setup for building the .mo files when it would |
| 2742 | fail. |
| 2743 | Files: src/configure.in, src/auto/configure |
| 2744 | |
| 2745 | Patch 7.4.386 |
| 2746 | Problem: When splitting a window the changelist position is wrong. |
| 2747 | Solution: Copy the changelist position. (Jacob Niehus) |
| 2748 | Files: src/window.c, src/testdir/Make_amiga.mak, |
| 2749 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 2750 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 2751 | src/testdir/Makefile, src/testdir/test_changelist.in, |
| 2752 | src/testdir/test_changelist.ok |
| 2753 | |
| 2754 | Patch 7.4.387 |
| 2755 | Problem: "4gro" replaces one character then executes "ooo". (Urtica Dioica) |
| 2756 | Solution: Write the ESC in the second stuff buffer. |
| 2757 | Files: src/getchar.c, src/proto/getchar.pro, src/edit.c, |
| 2758 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2759 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2760 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 2761 | src/testdir/test_insertcount.in, src/testdir/test_insertcount.ok |
| 2762 | |
| 2763 | Patch 7.4.388 |
| 2764 | Problem: With 'linebreak' set and 'list' unset a Tab is not counted |
| 2765 | properly. (Kent Sibilev) |
| 2766 | Solution: Check the 'list' option. (Christian Brabandt) |
| 2767 | Files: src/screen.c, src/testdir/test_listlbr_utf8.in, |
| 2768 | src/testdir/test_listlbr_utf8.ok |
| 2769 | |
| 2770 | Patch 7.4.389 |
| 2771 | Problem: Still sometimes Vim enters Replace mode when starting up. |
| 2772 | Solution: Use a different solution in detecting the termresponse and |
| 2773 | location response. (Hayaki Saito) |
| 2774 | Files: src/globals.h, src/os_unix.c, src/term.c, src/proto/term.pro |
| 2775 | |
| 2776 | Patch 7.4.390 |
| 2777 | Problem: Advancing pointer over end of a string. |
| 2778 | Solution: Init quote character to -1 instead of zero. (Dominique Pelle) |
| 2779 | Files: src/misc1.c |
| 2780 | |
| 2781 | Patch 7.4.391 |
| 2782 | Problem: No 'cursorline' highlighting when the cursor is on a line with |
| 2783 | diff highlighting. (Benjamin Fritz) |
| 2784 | Solution: Combine the highlight attributes. (Christian Brabandt) |
| 2785 | Files: src/screen.c |
| 2786 | |
| 2787 | Patch 7.4.392 |
| 2788 | Problem: Not easy to detect type of command line window. |
| 2789 | Solution: Add the getcmdwintype() function. (Jacob Niehus) |
| 2790 | Files: src/eval.c |
| 2791 | |
| 2792 | Patch 7.4.393 |
| 2793 | Problem: Text drawing on newer MS-Windows systems is suboptimal. Some |
| 2794 | multi-byte characters are not displayed, even though the same font |
| 2795 | in Notepad can display them. (Srinath Avadhanula) |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 2796 | Solution: Add the 'renderoptions' option to enable DirectX drawing. (Taro |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 2797 | Muraoka) |
| 2798 | Files: runtime/doc/eval.txt, runtime/doc/options.txt, |
| 2799 | runtime/doc/various.txt, src/Make_cyg.mak, src/Make_ming.mak, |
| 2800 | src/Make_mvc.mak, src/eval.c, src/gui_dwrite.cpp, |
| 2801 | src/gui_dwrite.h, src/gui_w32.c, src/gui_w48.c, src/option.c, |
| 2802 | src/option.h, src/version.c, src/vim.h, src/proto/gui_w32.pro |
| 2803 | |
| 2804 | Patch 7.4.394 (after 7.4.393) |
| 2805 | Problem: When using DirectX last italic character is incomplete. |
| 2806 | Solution: Add one to the number of cells. (Ken Takata) |
| 2807 | Files: src/gui_w32.c |
| 2808 | |
| 2809 | Patch 7.4.395 (after 7.4.355) |
| 2810 | Problem: C indent is wrong below an if with wrapped condition followed by |
| 2811 | curly braces. (Trevor Powell) |
| 2812 | Solution: Make a copy of tryposBrace. |
| 2813 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 2814 | |
| 2815 | Patch 7.4.396 |
| 2816 | Problem: When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful) |
| 2817 | Solution: Only set the clipboard after the last delete. (Christian Brabandt) |
| 2818 | Files: src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/globals.h, |
| 2819 | src/ops.c, src/proto/ui.pro, src/ui.c |
| 2820 | |
| 2821 | Patch 7.4.397 |
| 2822 | Problem: Matchparen only uses the topmost syntax item. |
| 2823 | Solution: Go through the syntax stack to find items. (James McCoy) |
| 2824 | Also use getcurpos() when possible. |
| 2825 | Files: runtime/plugin/matchparen.vim |
| 2826 | |
| 2827 | Patch 7.4.398 (after 7.4.393) |
| 2828 | Problem: Gcc error for the argument of InterlockedIncrement() and |
| 2829 | InterlockedDecrement(). (Axel Bender) |
| 2830 | Solution: Remove "unsigned" from the cRefCount_ declaration. |
| 2831 | Files: src/gui_dwrite.cpp |
| 2832 | |
| 2833 | Patch 7.4.399 |
| 2834 | Problem: Encryption implementation is messy. Blowfish encryption has a |
| 2835 | weakness. |
| 2836 | Solution: Refactor the encryption, store the state in an allocated struct |
| 2837 | instead of using a save/restore mechanism. Introduce the |
| 2838 | "blowfish2" method, which does not have the weakness and encrypts |
| 2839 | the whole undo file. (largely by David Leadbeater) |
| 2840 | Files: runtime/doc/editing.txt, runtime/doc/options.txt, src/Makefile, |
| 2841 | src/blowfish.c, src/crypt.c, src/crypt_zip.c, src/ex_docmd.c, |
| 2842 | src/fileio.c, src/globals.h, src/main.c, src/memline.c, |
| 2843 | src/misc2.c, src/option.c, src/proto.h, src/proto/blowfish.pro, |
| 2844 | src/proto/crypt.pro, src/proto/crypt_zip.pro, |
| 2845 | src/proto/fileio.pro, src/proto/misc2.pro, src/structs.h, |
| 2846 | src/undo.c, src/testdir/test71.in, src/testdir/test71.ok, |
| 2847 | src/testdir/test71a.in, src/testdir/test72.in, |
| 2848 | src/testdir/test72.ok |
| 2849 | |
| 2850 | Patch 7.4.400 |
| 2851 | Problem: List of distributed files is incomplete. |
| 2852 | Solution: Add recently added files. |
| 2853 | Files: Filelist |
| 2854 | |
| 2855 | Patch 7.4.401 (after 7.4.399) |
| 2856 | Problem: Can't build on MS-Windows. |
| 2857 | Solution: Include the new files in all the Makefiles. |
| 2858 | Files: src/Make_bc3.mak, src/Make_bc5.mak, src/Make_cyg.mak, |
| 2859 | src/Make_dice.mak, src/Make_djg.mak, src/Make_ivc.mak, |
| 2860 | src/Make_manx.mak, src/Make_ming.mak, src/Make_morph.mak, |
| 2861 | src/Make_mvc.mak, src/Make_os2.mak, src/Make_sas.mak, |
| 2862 | Make_vms.mms |
| 2863 | |
| 2864 | Patch 7.4.402 |
| 2865 | Problem: Test 72 crashes under certain conditions. (Kazunobu Kuriyama) |
| 2866 | Solution: Clear the whole bufinfo_T early. |
| 2867 | Files: src/undo.c |
| 2868 | |
| 2869 | Patch 7.4.403 |
| 2870 | Problem: Valgrind reports errors when running test 72. (Dominique Pelle) |
| 2871 | Solution: Reset the local 'cryptmethod' option before storing the seed. |
| 2872 | Set the seed in the memfile even when there is no block0 yet. |
| 2873 | Files: src/fileio.c, src/option.c, src/memline.c |
| 2874 | |
| 2875 | Patch 7.4.404 |
| 2876 | Problem: Windows 64 bit compiler warnings. |
| 2877 | Solution: Add type casts. (Mike Williams) |
| 2878 | Files: src/crypt.c, src/undo.c |
| 2879 | |
| 2880 | Patch 7.4.405 |
| 2881 | Problem: Screen updating is slow when using matches. |
| 2882 | Solution: Do not use the ">=" as in patch 7.4.362, check the lnum. |
| 2883 | Files: src/screen.c, src/testdir/test63.in, src/testdir/test63.ok |
| 2884 | |
| 2885 | Patch 7.4.406 |
| 2886 | Problem: Test 72 and 100 fail on MS-Windows. |
| 2887 | Solution: Set fileformat to unix in the tests. (Taro Muraoka) |
| 2888 | Files: src/testdir/test72.in, src/testdir/test100.in |
| 2889 | |
| 2890 | Patch 7.4.407 |
| 2891 | Problem: Inserting text for Visual block mode, with cursor movement, |
| 2892 | repeats the wrong text. (Aleksandar Ivanov) |
| 2893 | Solution: Reset the update_Insstart_orig flag. (Christian Brabandt) |
| 2894 | Files: src/edit.c, src/testdir/test39.in, src/testdir/test39.ok |
| 2895 | |
| 2896 | Patch 7.4.408 |
| 2897 | Problem: Visual block insert breaks a multi-byte character. |
| 2898 | Solution: Calculate the position properly. (Yasuhiro Matsumoto) |
| 2899 | Files: src/ops.c, src/testdir/test_utf8.in, src/testdir/test_utf8.ok, |
| 2900 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 2901 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 2902 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 2903 | |
| 2904 | Patch 7.4.409 |
| 2905 | Problem: Can't build with Perl on Fedora 20. |
| 2906 | Solution: Find xsubpp in another directory. (Michael Henry) |
| 2907 | Files: src/Makefile, src/config.mk.in, src/configure.in, |
| 2908 | src/auto/configure |
| 2909 | |
| 2910 | Patch 7.4.410 |
| 2911 | Problem: Fold does not open after search when there is a CmdwinLeave |
| 2912 | autocommand. |
| 2913 | Solution: Restore KeyTyped. (Jacob Niehus) |
| 2914 | Files: src/ex_getln.c |
| 2915 | |
| 2916 | Patch 7.4.411 |
| 2917 | Problem: "foo bar" sorts before "foo" with sort(). (John Little) |
| 2918 | Solution: Avoid putting quotes around strings before comparing them. |
| 2919 | Files: src/eval.c |
| 2920 | |
| 2921 | Patch 7.4.412 |
| 2922 | Problem: Can't build on Windows XP with MSVC. |
| 2923 | Solution: Add SUBSYSTEM_VER to the Makefile. (Yongwei Wu) |
| 2924 | Files: src/Make_mvc.mak, src/INSTALLpc.txt |
| 2925 | |
| 2926 | Patch 7.4.413 |
| 2927 | Problem: MS-Windows: Using US international keyboard layout, inserting dead |
| 2928 | key by pressing space does not always work. Issue 250. |
| 2929 | Solution: Let MS-Windows translate the message. (John Wellesz) |
| 2930 | Files: src/gui_w48.c |
| 2931 | |
| 2932 | Patch 7.4.414 |
| 2933 | Problem: Cannot define a command only when it's used. |
| 2934 | Solution: Add the CmdUndefined autocommand event. (partly by Yasuhiro |
| 2935 | Matsumoto) |
| 2936 | Files: runtime/doc/autocmd.txt, src/ex_docmd.c, src/fileio.c, |
| 2937 | src/proto/fileio.pro |
| 2938 | |
| 2939 | Patch 7.4.415 (after 7.4.414) |
| 2940 | Problem: Cannot build. Warning for shadowed variable. (John Little) |
| 2941 | Solution: Add missing change. Remove declaration. |
| 2942 | Files: src/vim.h, src/ex_docmd.c |
| 2943 | |
| 2944 | Patch 7.4.416 |
| 2945 | Problem: Problem with breakindent/showbreak and tabs. |
| 2946 | Solution: Handle tabs differently. (Christian Brabandt) |
| 2947 | Files: src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok, |
| 2948 | src/charset.c |
| 2949 | |
| 2950 | Patch 7.4.417 |
| 2951 | Problem: After splitting a window and setting 'breakindent' the default |
| 2952 | minimum with is not respected. |
| 2953 | Solution: Call briopt_check() when copying options to a new window. |
| 2954 | Files: src/option.c, src/proto/option.pro, |
| 2955 | src/testdir/test_breakindent.in |
| 2956 | |
| 2957 | Patch 7.4.418 |
| 2958 | Problem: When leaving ":append" the cursor shape is like in Insert mode. |
| 2959 | (Jacob Niehus) |
| 2960 | Solution: Do not have State set to INSERT when calling getline(). |
| 2961 | Files: src/ex_cmds.c |
| 2962 | |
| 2963 | Patch 7.4.419 |
| 2964 | Problem: When part of a list is locked it's possible to make changes. |
| 2965 | Solution: Check if any of the list items is locked before make a change. |
| 2966 | (ZyX) |
| 2967 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok |
| 2968 | |
| 2969 | Patch 7.4.420 |
| 2970 | Problem: It's not obvious how to add a new test. |
| 2971 | Solution: Add a README file. (Christian Brabandt) |
| 2972 | Files: src/testdir/README.txt |
| 2973 | |
| 2974 | Patch 7.4.421 |
| 2975 | Problem: Crash when searching for "\ze*". (Urtica Dioica) |
| 2976 | Solution: Disallow a multi after \ze and \zs. |
| 2977 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 2978 | |
| 2979 | Patch 7.4.422 |
| 2980 | Problem: When using conceal with linebreak some text is not displayed |
| 2981 | correctly. (Grüner Gimpel) |
| 2982 | Solution: Check for conceal mode when using linebreak. (Christian Brabandt) |
| 2983 | Files: src/screen.c, src/testdir/test_listlbr.in, |
| 2984 | src/testdir/test_listlbr.ok |
| 2985 | |
| 2986 | Patch 7.4.423 |
| 2987 | Problem: expand("$shell") does not work as documented. |
| 2988 | Solution: Do not escape the $ when expanding environment variables. |
| 2989 | Files: src/os_unix.c, src/misc1.c, src/vim.h |
| 2990 | |
| 2991 | Patch 7.4.424 |
| 2992 | Problem: Get ml_get error when using Python to delete lines in a buffer |
| 2993 | that is not in a window. issue 248. |
| 2994 | Solution: Do not try adjusting the cursor for a different buffer. |
| 2995 | Files: src/if_py_both.h |
| 2996 | |
| 2997 | Patch 7.4.425 |
| 2998 | Problem: When 'showbreak' is used "gj" may move to the wrong position. |
| 2999 | (Nazri Ramliy) |
| 3000 | Solution: Adjust virtcol when 'showbreak' is set. (Christian Brabandt) |
| 3001 | Files: src/normal.c |
| 3002 | |
| 3003 | Patch 7.4.426 |
| 3004 | Problem: README File missing from list of files. |
| 3005 | Solution: Update the list of files. |
| 3006 | Files: Filelist |
| 3007 | |
| 3008 | Patch 7.4.427 |
| 3009 | Problem: When an InsertCharPre autocommand executes system() typeahead may |
| 3010 | be echoed and messes up the display. (Jacob Niehus) |
| 3011 | Solution: Do not set cooked mode when invoked from ":silent". |
| 3012 | Files: src/eval.c, runtime/doc/eval.txt |
| 3013 | |
| 3014 | Patch 7.4.428 |
| 3015 | Problem: executable() may return a wrong result on MS-Windows. |
| 3016 | Solution: Change the way SearchPath() is called. (Yasuhiro Matsumoto, Ken |
| 3017 | Takata) |
| 3018 | Files: src/os_win32.c |
| 3019 | |
| 3020 | Patch 7.4.429 |
| 3021 | Problem: Build fails with fewer features. (Elimar Riesebieter) |
| 3022 | Solution: Add #ifdef. |
| 3023 | Files: src/normal.c |
| 3024 | |
| 3025 | Patch 7.4.430 |
| 3026 | Problem: test_listlbr fails when compiled with normal features. |
| 3027 | Solution: Check for the +conceal feature. |
| 3028 | Files: src/testdir/test_listlbr.in |
| 3029 | |
| 3030 | Patch 7.4.431 |
| 3031 | Problem: Compiler warning. |
| 3032 | Solution: Add type cast. (Mike Williams) |
| 3033 | Files: src/ex_docmd.c |
| 3034 | |
| 3035 | Patch 7.4.432 |
| 3036 | Problem: When the startup code expands command line arguments, setting |
| 3037 | 'encoding' will not properly convert the arguments. |
| 3038 | Solution: Call get_cmd_argsW() early in main(). (Yasuhiro Matsumoto) |
| 3039 | Files: src/os_win32.c, src/main.c, src/os_mswin.c |
| 3040 | |
| 3041 | Patch 7.4.433 |
| 3042 | Problem: Test 75 fails on MS-Windows. |
| 3043 | Solution: Use ":normal" instead of feedkeys(). (Michael Soyka) |
| 3044 | Files: src/testdir/test75.in |
| 3045 | |
| 3046 | Patch 7.4.434 |
| 3047 | Problem: gettabvar() is not consistent with getwinvar() and getbufvar(). |
| 3048 | Solution: Return a dict with all variables when the varname is empty. |
| 3049 | (Yasuhiro Matsumoto) |
| 3050 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test91.in, |
| 3051 | src/testdir/test91.ok |
| 3052 | |
| 3053 | Patch 7.4.435 |
| 3054 | Problem: Line formatting behaves differently when 'linebreak' is set. |
| 3055 | (mvxxc) |
| 3056 | Solution: Disable 'linebreak' temporarily. (Christian Brabandt) |
| 3057 | Files: src/edit.c |
| 3058 | |
| 3059 | Patch 7.4.436 |
| 3060 | Problem: ml_get error for autocommand that moves the cursor of the current |
| 3061 | window. |
| 3062 | Solution: Check the cursor position after switching back to the current |
| 3063 | buffer. (Christian Brabandt) |
| 3064 | Files: src/fileio.c |
| 3065 | |
| 3066 | Patch 7.4.437 |
| 3067 | Problem: New and old regexp engine are not consistent. |
| 3068 | Solution: Also give an error for "\ze*" for the old regexp engine. |
| 3069 | Files: src/regexp.c, src/regexp_nfa.c |
| 3070 | |
| 3071 | Patch 7.4.438 |
| 3072 | Problem: Cached values for 'cino' not reset for ":set all&". |
| 3073 | Solution: Call parse_cino(). (Yukihiro Nakadaira) |
| 3074 | Files: src/option.c |
| 3075 | |
| 3076 | Patch 7.4.439 |
| 3077 | Problem: Duplicate message in message history. Some quickfix messages |
| 3078 | appear twice. (Gary Johnson) |
| 3079 | Solution: Do not reset keep_msg too early. (Hirohito Higashi) |
| 3080 | Files: src/main.c |
| 3081 | |
| 3082 | Patch 7.4.440 |
| 3083 | Problem: Omni complete popup drawn incorrectly. |
| 3084 | Solution: Call validate_cursor() instead of check_cursor(). (Hirohito |
| 3085 | Higashi) |
| 3086 | Files: src/edit.c |
| 3087 | |
| 3088 | Patch 7.4.441 |
| 3089 | Problem: Endless loop and other problems when 'cedit' is set to CTRL-C. |
| 3090 | Solution: Do not call ex_window() when ex_normal_busy or got_int was set. |
| 3091 | (Yasuhiro Matsumoto) |
| 3092 | Files: src/ex_getln.c |
| 3093 | |
| 3094 | Patch 7.4.442 (after 7.4.434) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3095 | Problem: Using uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3096 | Solution: Pass the first window of the tabpage. |
| 3097 | Files: src/eval.c |
| 3098 | |
| 3099 | Patch 7.4.443 |
| 3100 | Problem: Error reported by ubsan when running test 72. |
| 3101 | Solution: Add type cast to unsigned. (Dominique Pelle) |
| 3102 | Files: src/undo.c |
| 3103 | |
| 3104 | Patch 7.4.444 |
| 3105 | Problem: Reversed question mark not recognized as punctuation. (Issue 258) |
| 3106 | Solution: Add the Supplemental Punctuation range. |
| 3107 | Files: src/mbyte.c |
| 3108 | |
| 3109 | Patch 7.4.445 |
| 3110 | Problem: Clipboard may be cleared on startup. |
| 3111 | Solution: Set clip_did_set_selection to -1 during startup. (Christian |
| 3112 | Brabandt) |
| 3113 | Files: src/main.c, src/ui.c |
| 3114 | |
| 3115 | Patch 7.4.446 |
| 3116 | Problem: In some situations, when setting up an environment to trigger an |
| 3117 | autocommand, the environment is not properly restored. |
| 3118 | Solution: Check the return value of switch_win() and call restore_win() |
| 3119 | always. (Daniel Hahler) |
| 3120 | Files: src/eval.c, src/misc2.c, src/window.c |
| 3121 | |
| 3122 | Patch 7.4.447 |
| 3123 | Problem: Spell files from Hunspell may generate a lot of errors. |
| 3124 | Solution: Add the IGNOREEXTRA flag. |
| 3125 | Files: src/spell.c, runtime/doc/spell.txt |
| 3126 | |
| 3127 | Patch 7.4.448 |
| 3128 | Problem: Using ETO_IGNORELANGUAGE causes problems. |
| 3129 | Solution: Remove this flag. (Paul Moore) |
| 3130 | Files: src/gui_w32.c |
| 3131 | |
| 3132 | Patch 7.4.449 |
| 3133 | Problem: Can't easily close the help window. (Chris Gaal) |
| 3134 | Solution: Add ":helpclose". (Christian Brabandt) |
| 3135 | Files: runtime/doc/helphelp.txt, runtime/doc/index.txt, src/ex_cmds.c, |
| 3136 | src/ex_cmds.h, src/proto/ex_cmds.pro |
| 3137 | |
| 3138 | Patch 7.4.450 |
| 3139 | Problem: Not all commands that edit another buffer support the +cmd |
| 3140 | argument. |
| 3141 | Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski) |
| 3142 | Files: runtime/doc/windows.txt, src/ex_cmds.h, src/ex_docmd.c |
| 3143 | |
| 3144 | Patch 7.4.451 |
| 3145 | Problem: Calling system() with empty input gives an error for writing the |
| 3146 | temp file. |
| 3147 | Solution: Do not try writing if the string length is zero. (Olaf Dabrunz) |
| 3148 | Files: src/eval.c |
| 3149 | |
| 3150 | Patch 7.4.452 |
| 3151 | Problem: Can't build with tiny features. (Tony Mechelynck) |
| 3152 | Solution: Use "return" instead of "break". |
| 3153 | Files: src/ex_cmds.c |
| 3154 | |
| 3155 | Patch 7.4.453 |
| 3156 | Problem: Still can't build with tiny features. |
| 3157 | Solution: Add #ifdef. |
| 3158 | Files: src/ex_cmds.c |
| 3159 | |
| 3160 | Patch 7.4.454 |
| 3161 | Problem: When using a Visual selection of multiple words and doing CTRL-W_] |
| 3162 | it jumps to the tag matching the word under the cursor, not the |
| 3163 | selected text. (Patrick hemmer) |
| 3164 | Solution: Do not reset Visual mode. (idea by Christian Brabandt) |
| 3165 | Files: src/window.c |
| 3166 | |
| 3167 | Patch 7.4.455 |
| 3168 | Problem: Completion for :buf does not use 'wildignorecase'. (Akshay H) |
| 3169 | Solution: Pass the 'wildignorecase' flag around. |
| 3170 | Files: src/buffer.c |
| 3171 | |
| 3172 | Patch 7.4.456 |
| 3173 | Problem: 'backupcopy' is global, cannot write only some files in a |
| 3174 | different way. |
| 3175 | Solution: Make 'backupcopy' global-local. (Christian Brabandt) |
| 3176 | Files: runtime/doc/options.txt, src/buffer.c, src/fileio.c, src/option.c, |
| 3177 | src/option.h, src/proto/option.pro, src/structs.h |
| 3178 | |
| 3179 | Patch 7.4.457 |
| 3180 | Problem: Using getchar() in an expression mapping may result in |
| 3181 | K_CURSORHOLD, which can't be recognized. |
| 3182 | Solution: Add the <CursorHold> key. (Hirohito Higashi) |
| 3183 | Files: src/misc2.c |
| 3184 | |
| 3185 | Patch 7.4.458 |
| 3186 | Problem: Issue 252: Cursor moves in a zero-height window. |
| 3187 | Solution: Check for zero height. (idea by Christian Brabandt) |
| 3188 | Files: src/move.c |
| 3189 | |
| 3190 | Patch 7.4.459 |
| 3191 | Problem: Can't change the icon after building Vim. |
| 3192 | Solution: Load the icon from a file on startup. (Yasuhiro Matsumoto) |
| 3193 | Files: src/gui_w32.c, src/os_mswin.c, src/os_win32.c, |
| 3194 | src/proto/os_mswin.pro |
| 3195 | |
| 3196 | Patch 7.4.460 (after 7.4.454) |
| 3197 | Problem: Can't build without the quickfix feature. (Erik Falor) |
| 3198 | Solution: Add a #ifdef. |
| 3199 | Files: src/window.c |
| 3200 | |
| 3201 | Patch 7.4.461 |
| 3202 | Problem: MS-Windows: When collate is on the number of copies is too high. |
| 3203 | Solution: Only set the collated/uncollated count when collate is on. |
| 3204 | (Yasuhiro Matsumoto) |
| 3205 | Files: src/os_mswin.c |
| 3206 | |
| 3207 | Patch 7.4.462 |
| 3208 | Problem: Setting the local value of 'backupcopy' empty gives an error. |
| 3209 | (Peter Mattern) |
| 3210 | Solution: When using an empty value set the flags to zero. (Hirohito |
| 3211 | Higashi) |
| 3212 | Files: src/option.c |
| 3213 | |
| 3214 | Patch 7.4.463 |
| 3215 | Problem: Test 86 and 87 may hang on MS-Windows. |
| 3216 | Solution: Call inputrestore() after inputsave(). (Ken Takata) |
| 3217 | Files: src/testdir/test86.in, src/testdir/test87.in |
| 3218 | |
| 3219 | Patch 7.4.464 (after 7.4.459) |
| 3220 | Problem: Compiler warning. |
| 3221 | Solution: Add type cast. (Ken Takata) |
| 3222 | Files: src/gui_w32.c |
| 3223 | |
| 3224 | Patch 7.4.465 (after 7.4.016) |
| 3225 | Problem: Crash when expanding a very long string. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3226 | Solution: Use wcsncpy() instead of wcscpy(). (Ken Takata) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3227 | Files: src/os_win32.c |
| 3228 | |
| 3229 | Patch 7.4.466 (after 7.4.460) |
| 3230 | Problem: CTRL-W } does not open preview window. (Erik Falor) |
| 3231 | Solution: Don't set g_do_tagpreview for CTRL-W }. |
| 3232 | Files: src/window.c |
| 3233 | |
| 3234 | Patch 7.4.467 |
| 3235 | Problem: 'linebreak' does not work well together with Visual mode. |
| 3236 | Solution: Disable 'linebreak' while applying an operator. Fix the test. |
| 3237 | (Christian Brabandt) |
| 3238 | Files: src/normal.c, src/screen.c, src/testdir/test_listlbr.in, |
| 3239 | src/testdir/test_listlbr.ok |
| 3240 | |
| 3241 | Patch 7.4.468 |
| 3242 | Problem: Issue 26: CTRL-C does not interrupt after it was mapped and then |
| 3243 | unmapped. |
| 3244 | Solution: Reset mapped_ctrl_c. (Christian Brabandt) |
| 3245 | Files: src/getchar.c |
| 3246 | |
| 3247 | Patch 7.4.469 (after 7.4.467) |
| 3248 | Problem: Can't build with MSVC. (Ken Takata) |
| 3249 | Solution: Move the assignment after the declarations. |
| 3250 | Files: src/normal.c |
| 3251 | |
| 3252 | Patch 7.4.470 |
| 3253 | Problem: Test 11 and 100 do not work properly on Windows. |
| 3254 | Solution: Avoid using feedkeys(). (Ken Takata) |
| 3255 | Files: src/testdir/Make_dos.mak, src/testdir/test11.in, |
| 3256 | src/testdir/test100.in |
| 3257 | |
| 3258 | Patch 7.4.471 |
| 3259 | Problem: MS-Windows: When printer name contains multi-byte, the name is |
| 3260 | displayed as ???. |
| 3261 | Solution: Convert the printer name from the active codepage to 'encoding'. |
| 3262 | (Yasuhiro Matsumoto) |
| 3263 | Files: src/os_mswin.c |
| 3264 | |
| 3265 | Patch 7.4.472 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3266 | Problem: The "precedes" entry in 'listchar' will be drawn when 'showbreak' |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3267 | is set and 'list' is not. |
| 3268 | Solution: Only draw this character when 'list' is on. (Christian Brabandt) |
| 3269 | Files: src/screen.c |
| 3270 | |
| 3271 | Patch 7.4.473 |
| 3272 | Problem: Cursor movement is incorrect when there is a number/sign/fold |
| 3273 | column and 'sbr' is displayed. |
| 3274 | Solution: Adjust the column for 'sbr'. (Christian Brabandt) |
| 3275 | Files: src/charset.c |
| 3276 | |
| 3277 | Patch 7.4.474 |
| 3278 | Problem: AIX compiler can't handle // comment. Issue 265. |
| 3279 | Solution: Remove that line. |
| 3280 | Files: src/regexp_nfa.c |
| 3281 | |
| 3282 | Patch 7.4.475 |
| 3283 | Problem: Can't compile on a system where Xutf8SetWMProperties() is not in |
| 3284 | the X11 library. Issue 265. |
| 3285 | Solution: Add a configure check. |
| 3286 | Files: src/configure.in, src/auto/configure, src/config.h.in, |
| 3287 | src/os_unix.c |
| 3288 | |
| 3289 | Patch 7.4.476 |
| 3290 | Problem: MingW: compiling with "XPM=no" doesn't work. |
| 3291 | Solution: Check for the "no" value. (KF Leong) Also for Cygwin. (Ken |
| 3292 | Takata) |
| 3293 | Files: src/Make_ming.mak, src/Make_cyg.mak |
| 3294 | |
| 3295 | Patch 7.4.477 |
| 3296 | Problem: When using ":%diffput" and the other file is empty an extra empty |
| 3297 | line remains. |
| 3298 | Solution: Set the buf_empty flag. |
| 3299 | Files: src/diff.c |
| 3300 | |
| 3301 | Patch 7.4.478 |
| 3302 | Problem: Using byte length instead of character length for 'showbreak'. |
| 3303 | Solution: Compute the character length. (Marco Hinz) |
| 3304 | Files: src/charset.c |
| 3305 | |
| 3306 | Patch 7.4.479 |
| 3307 | Problem: MS-Windows: The console title can be wrong. |
| 3308 | Solution: Take the encoding into account. When restoring the title use the |
| 3309 | right function. (Yasuhiro Matsumoto) |
| 3310 | Files: src/os_mswin.c, src/os_win32.c |
| 3311 | |
| 3312 | Patch 7.4.480 (after 7.4.479) |
| 3313 | Problem: MS-Windows: Can't build. |
| 3314 | Solution: Remove goto, use a flag instead. |
| 3315 | Files: src/os_win32.c |
| 3316 | |
| 3317 | Patch 7.4.481 (after 7.4.471) |
| 3318 | Problem: Compiler warning on MS-Windows. |
| 3319 | Solution: Add type casts. (Ken Takata) |
| 3320 | Files: src/os_mswin.c |
| 3321 | |
| 3322 | Patch 7.4.482 |
| 3323 | Problem: When 'balloonexpr' results in a list, the text has a trailing |
| 3324 | newline. (Lcd) |
| 3325 | Solution: Remove one trailing newline. |
| 3326 | Files: src/gui_beval.c |
| 3327 | |
| 3328 | Patch 7.4.483 |
| 3329 | Problem: A 0x80 byte is not handled correctly in abbreviations. |
| 3330 | Solution: Unescape special characters. Add a test. (Christian Brabandt) |
| 3331 | Files: src/getchar.c, src/testdir/Make_amiga.mak, |
| 3332 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3333 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3334 | src/testdir/Makefile, src/testdir/test_mapping.in, |
| 3335 | src/testdir/test_mapping.ok |
| 3336 | |
| 3337 | Patch 7.4.484 (after 7.4.483) |
| 3338 | Problem: Compiler warning on MS-Windows. (Ken Takata) |
| 3339 | Solution: Add type cast. |
| 3340 | Files: src/getchar.c |
| 3341 | |
| 3342 | Patch 7.4.485 (after 7.4.484) |
| 3343 | Problem: Abbreviations don't work. (Toothpik) |
| 3344 | Solution: Move the length computation inside the for loop. Compare against |
| 3345 | the unescaped key. |
| 3346 | Files: src/getchar.c |
| 3347 | |
| 3348 | Patch 7.4.486 |
| 3349 | Problem: Check for writing to a yank register is wrong. |
| 3350 | Solution: Negate the check. (Zyx). Also clean up the #ifdefs. |
| 3351 | Files: src/ex_docmd.c, src/ex_cmds.h |
| 3352 | |
| 3353 | Patch 7.4.487 |
| 3354 | Problem: ":sign jump" may use another window even though the file is |
| 3355 | already edited in the current window. |
| 3356 | Solution: First check if the file is in the current window. (James McCoy) |
| 3357 | Files: src/window.c, src/testdir/Make_amiga.mak, |
| 3358 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3359 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3360 | src/testdir/Makefile, src/testdir/test_signs.in, |
| 3361 | src/testdir/test_signs.ok |
| 3362 | |
| 3363 | Patch 7.4.488 |
| 3364 | Problem: test_mapping fails for some people. |
| 3365 | Solution: Set the 'encoding' option. (Ken Takata) |
| 3366 | Files: src/testdir/test_mapping.in |
| 3367 | |
| 3368 | Patch 7.4.489 |
| 3369 | Problem: Cursor movement still wrong when 'lbr' is set and there is a |
| 3370 | number column. (Hirohito Higashi) |
| 3371 | Solution: Add correction for number column. (Hiroyuki Takagi) |
| 3372 | Files: src/charset.c |
| 3373 | |
| 3374 | Patch 7.4.490 |
| 3375 | Problem: Cannot specify the buffer to use for "do" and "dp", making them |
| 3376 | useless for three-way diff. |
| 3377 | Solution: Use the count as the buffer number. (James McCoy) |
| 3378 | Files: runtime/doc/diff.txt, src/diff.c, src/normal.c, src/proto/diff.pro |
| 3379 | |
| 3380 | Patch 7.4.491 |
| 3381 | Problem: When winrestview() has a negative "topline" value there are |
| 3382 | display errors. |
| 3383 | Solution: Correct a negative value to 1. (Hirohito Higashi) |
| 3384 | Files: src/eval.c |
| 3385 | |
| 3386 | Patch 7.4.492 |
| 3387 | Problem: In Insert mode, after inserting a newline that inserts a comment |
| 3388 | leader, CTRL-O moves to the right. (ZyX) Issue 57. |
| 3389 | Solution: Correct the condition for moving the cursor back to the NUL. |
| 3390 | (Christian Brabandt) |
| 3391 | Files: src/edit.c, src/testdir/test4.in, src/testdir/test4.ok |
| 3392 | |
| 3393 | Patch 7.4.493 |
| 3394 | Problem: A TextChanged autocommand is triggered when saving a file. |
| 3395 | (William Gardner) |
| 3396 | Solution: Update last_changedtick after calling unchanged(). (Christian |
| 3397 | Brabandt) |
| 3398 | Files: src/fileio.c |
| 3399 | |
| 3400 | Patch 7.4.494 |
| 3401 | Problem: Cursor shape is wrong after a CompleteDone autocommand. |
| 3402 | Solution: Update the cursor and mouse shape after ":normal" restores the |
| 3403 | state. (Jacob Niehus) |
| 3404 | Files: src/ex_docmd.c |
| 3405 | |
| 3406 | Patch 7.4.495 |
| 3407 | Problem: XPM isn't used correctly in the Cygwin Makefile. |
| 3408 | Solution: Include the rules like in Make_ming.mak. (Ken Takata) |
| 3409 | Files: src/Make_cyg.mak |
| 3410 | |
| 3411 | Patch 7.4.496 |
| 3412 | Problem: Many lines are both in Make_cyg.mak and Make_ming.mak |
| 3413 | Solution: Move the common parts to one file. (Ken Takata) |
| 3414 | Files: src/INSTALLpc.txt, src/Make_cyg.mak, src/Make_cyg_ming.mak, |
| 3415 | src/Make_ming.mak, src/Make_mvc.mak, Filelist |
| 3416 | |
| 3417 | Patch 7.4.497 |
| 3418 | Problem: With some regexp patterns the NFA engine uses many states and |
| 3419 | becomes very slow. To the user it looks like Vim freezes. |
| 3420 | Solution: When the number of states reaches a limit fall back to the old |
| 3421 | engine. (Christian Brabandt) |
| 3422 | Files: runtime/doc/options.txt, src/Makefile, src/regexp.c, src/regexp.h, |
| 3423 | src/regexp_nfa.c, src/testdir/Make_dos.mak, |
| 3424 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 3425 | src/testdir/Makefile, src/testdir/samples/re.freeze.txt, |
| 3426 | src/testdir/bench_re_freeze.in, src/testdir/bench_re_freeze.vim, |
| 3427 | Filelist |
| 3428 | |
| 3429 | Patch 7.4.498 (after 7.4.497) |
| 3430 | Problem: Typo in DOS makefile. |
| 3431 | Solution: Change exists to exist. (Ken Takata) |
| 3432 | Files: src/testdirMake_dos.mak |
| 3433 | |
| 3434 | Patch 7.4.499 |
| 3435 | Problem: substitute() can be slow with long strings. |
| 3436 | Solution: Store a pointer to the end, instead of calling strlen() every |
| 3437 | time. (Ozaki Kiichi) |
| 3438 | Files: src/eval.c |
| 3439 | |
| 3440 | Patch 7.4.500 |
| 3441 | Problem: Test 72 still fails once in a while. |
| 3442 | Solution: Don't set 'fileformat' to unix, reset it. (Ken Takata) |
| 3443 | Files: src/testdir/test72.in |
| 3444 | |
| 3445 | Patch 7.4.501 (after 7.4.497) |
| 3446 | Problem: Typo in file pattern. |
| 3447 | Solution: Insert a slash and remove a dot. |
| 3448 | Files: Filelist |
| 3449 | |
| 3450 | Patch 7.4.502 |
| 3451 | Problem: Language mapping also applies to mapped characters. |
| 3452 | Solution: Add the 'langnoremap' option, when on 'langmap' does not apply to |
| 3453 | mapped characters. (Christian Brabandt) |
| 3454 | Files: runtime/doc/options.txt, runtime/vimrc_example.vim, src/macros.h, |
| 3455 | src/option.c, src/option.h |
| 3456 | |
| 3457 | Patch 7.4.503 |
| 3458 | Problem: Cannot append a list of lines to a file. |
| 3459 | Solution: Add the append option to writefile(). (Yasuhiro Matsumoto) |
| 3460 | Files: runtime/doc/eval.txt, src/Makefile, src/eval.c, |
| 3461 | src/testdir/test_writefile.in, src/testdir/test_writefile.ok |
| 3462 | |
| 3463 | Patch 7.4.504 |
| 3464 | Problem: Restriction of the MS-Windows installer that the path must end in |
| 3465 | "Vim" prevents installing more than one version. |
| 3466 | Solution: Remove the restriction. (Tim Lebedkov) |
| 3467 | Files: nsis/gvim.nsi |
| 3468 | |
| 3469 | Patch 7.4.505 |
| 3470 | Problem: On MS-Windows when 'encoding' is a double-byte encoding a file |
| 3471 | name longer than MAX_PATH bytes but shorter than that in |
| 3472 | characters causes problems. |
| 3473 | Solution: Fail on file names longer than MAX_PATH bytes. (Ken Takata) |
| 3474 | Files: src/os_win32.c |
| 3475 | |
| 3476 | Patch 7.4.506 |
| 3477 | Problem: MS-Windows: Cannot open a file with 259 characters. |
| 3478 | Solution: Fix off-by-one error. (Ken Takata) |
| 3479 | Files: src/os_mswin.c |
| 3480 | |
| 3481 | Patch 7.4.507 (after 7.4.496) |
| 3482 | Problem: Building with MingW and Perl. |
| 3483 | Solution: Remove quotes. (Ken Takata) |
| 3484 | Files: src/Make_cyg_ming.mak |
| 3485 | |
| 3486 | Patch 7.4.508 |
| 3487 | Problem: When generating ja.sjis.po the header is not correctly adjusted. |
| 3488 | Solution: Check for the right header string. (Ken Takata) |
| 3489 | Files: src/po/sjiscorr.c |
| 3490 | |
| 3491 | Patch 7.4.509 |
| 3492 | Problem: Users are not aware their encryption is weak. |
| 3493 | Solution: Give a warning when prompting for the key. |
| 3494 | Files: src/crypt.c, src/ex_docmd.c, src/fileio.c, src/main.c, |
| 3495 | src/proto/crypt.pro |
| 3496 | |
| 3497 | Patch 7.4.510 |
| 3498 | Problem: "-fwrapv" argument breaks use of cproto. |
| 3499 | Solution: Remove the alphabetic arguments in a drastic way. |
| 3500 | Files: src/Makefile |
| 3501 | |
| 3502 | Patch 7.4.511 |
| 3503 | Problem: Generating proto for if_ruby.c uses type not defined elsewhere. |
| 3504 | Solution: Do not generate a prototype for |
| 3505 | rb_gc_writebarrier_unprotect_promoted() |
| 3506 | Files: src/if_ruby.c |
| 3507 | |
| 3508 | Patch 7.4.512 |
| 3509 | Problem: Cannot generate prototypes for Win32 files and VMS. |
| 3510 | Solution: Add typedefs and #ifdef |
| 3511 | Files: src/os_win32.c, src/gui_w32.c, src/os_vms.c |
| 3512 | |
| 3513 | Patch 7.4.513 |
| 3514 | Problem: Crash because reference count is wrong for list returned by |
| 3515 | getreg(). |
| 3516 | Solution: Increment the reference count. (Kimmy Lindvall) |
| 3517 | Files: src/eval.c |
| 3518 | |
| 3519 | Patch 7.4.514 (after 7.4.492) |
| 3520 | Problem: Memory access error. (Dominique Pelle) |
| 3521 | Solution: Update tpos. (Christian Brabandt) |
| 3522 | Files: src/edit.c |
| 3523 | |
| 3524 | Patch 7.4.515 |
| 3525 | Problem: In a help buffer the global 'foldmethod' is used. (Paul Marshall) |
| 3526 | Solution: Reset 'foldmethod' when starting to edit a help file. Move the |
| 3527 | code to a separate function. |
| 3528 | Files: src/ex_cmds.c |
| 3529 | |
| 3530 | Patch 7.4.516 |
| 3531 | Problem: Completing a function name containing a # does not work. Issue |
| 3532 | 253. |
| 3533 | Solution: Recognize the # character. (Christian Brabandt) |
| 3534 | Files: src/eval.c |
| 3535 | |
| 3536 | Patch 7.4.517 |
| 3537 | Problem: With a wrapping line the cursor may not end up in the right place. |
| 3538 | (Nazri Ramliy) |
| 3539 | Solution: Adjust n_extra for a Tab that wraps. (Christian Brabandt) |
| 3540 | Files: src/screen.c |
| 3541 | |
| 3542 | Patch 7.4.518 |
| 3543 | Problem: Using status line height in width computations. |
| 3544 | Solution: Use one instead. (Hirohito Higashi) |
| 3545 | Files: src/window.c |
| 3546 | |
| 3547 | Patch 7.4.519 (after 7.4.497) |
| 3548 | Problem: Crash when using syntax highlighting. |
| 3549 | Solution: When regprog is freed and replaced, store the result. |
| 3550 | Files: src/buffer.c, src/regexp.c, src/syntax.c, src/spell.c, |
| 3551 | src/ex_cmds2.c, src/fileio.c, src/proto/fileio.pro, |
| 3552 | src/proto/regexp.pro, src/os_unix.c |
| 3553 | |
| 3554 | Patch 7.4.520 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3555 | Problem: Sun PCK locale is not recognized. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3556 | Solution: Add PCK in the table. (Keiichi Oono) |
| 3557 | Files: src/mbyte.c |
| 3558 | |
| 3559 | Patch 7.4.521 |
| 3560 | Problem: When using "vep" a mark is moved to the next line. (Maxi Padulo, |
| 3561 | Issue 283) |
| 3562 | Solution: Decrement the line number. (Christian Brabandt) |
| 3563 | Files: src/ops.c |
| 3564 | |
| 3565 | Patch 7.4.522 |
| 3566 | Problem: Specifying wrong buffer size for GetLongPathName(). |
| 3567 | Solution: Use the actual size. (Ken Takata) |
| 3568 | Files: src/eval.c |
| 3569 | |
| 3570 | Patch 7.4.523 |
| 3571 | Problem: When the X11 server is stopped and restarted, while Vim is kept in |
| 3572 | the background, copy/paste no longer works. (Issue 203) |
| 3573 | Solution: Setup the clipboard again. (Christian Brabandt) |
| 3574 | Files: src/os_unix.c |
| 3575 | |
| 3576 | Patch 7.4.524 |
| 3577 | Problem: When using ":ownsyntax" spell checking is messed up. (Issue 78) |
| 3578 | Solution: Use the window-local option values. (Christian Brabandt) |
| 3579 | Files: src/option.c, src/syntax.c |
| 3580 | |
| 3581 | Patch 7.4.525 |
| 3582 | Problem: map() leaks memory when there is an error in the expression. |
| 3583 | Solution: Call clear_tv(). (Christian Brabandt) |
| 3584 | Files: src/eval.c |
| 3585 | |
| 3586 | Patch 7.4.526 |
| 3587 | Problem: matchstr() fails on long text. (Daniel Hahler) |
| 3588 | Solution: Return NFA_TOO_EXPENSIVE from regexec_nl(). (Christian Brabandt) |
| 3589 | Files: src/regexp.c |
| 3590 | |
| 3591 | Patch 7.4.527 |
| 3592 | Problem: Still confusing regexp failure and NFA_TOO_EXPENSIVE. |
| 3593 | Solution: NFA changes equivalent of 7.4.526. |
| 3594 | Files: src/regexp_nfa.c |
| 3595 | |
| 3596 | Patch 7.4.528 |
| 3597 | Problem: Crash when using matchadd() (Yasuhiro Matsumoto) |
| 3598 | Solution: Copy the match regprog. |
| 3599 | Files: src/screen.c |
| 3600 | |
| 3601 | Patch 7.4.529 |
| 3602 | Problem: No test for what 7.4.517 fixes. |
| 3603 | Solution: Adjust the tests for breakindent. (Christian Brabandt) |
| 3604 | Files: src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok |
| 3605 | |
| 3606 | Patch 7.4.530 |
| 3607 | Problem: Many commands take a count or range that is not using line |
| 3608 | numbers. |
| 3609 | Solution: For each command specify what kind of count it uses. For windows, |
| 3610 | buffers and arguments have "$" and "." have a relevant meaning. |
| 3611 | (Marcin Szamotulski) |
| 3612 | Files: runtime/doc/editing.txt, runtime/doc/tabpage.txt, |
| 3613 | runtime/doc/windows.txt, src/Makefile, src/ex_cmds.h, |
| 3614 | src/ex_docmd.c, src/testdir/Make_amiga.mak |
| 3615 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3616 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3617 | src/testdir/Makefile, src/testdir/test_argument_count.in, |
| 3618 | src/testdir/test_argument_count.ok, |
| 3619 | src/testdir/test_close_count.in, src/testdir/test_close_count.ok, |
| 3620 | src/window.c |
| 3621 | |
| 3622 | Patch 7.4.531 |
| 3623 | Problem: Comments about parsing an Ex command are wrong. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3624 | Solution: Correct the step numbers. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3625 | Files: src/ex_docmd.c |
| 3626 | |
| 3627 | Patch 7.4.532 |
| 3628 | Problem: When using 'incsearch' "2/pattern/e" highlights the first match. |
| 3629 | Solution: Move the code to set extra_col inside the loop for count. (Ozaki |
| 3630 | Kiichi) |
| 3631 | Files: src/search.c |
| 3632 | |
| 3633 | Patch 7.4.533 |
| 3634 | Problem: ":hardcopy" leaks memory in case of errors. |
| 3635 | Solution: Free memory in all code paths. (Christian Brabandt) |
| 3636 | Files: src/hardcopy.c |
| 3637 | |
| 3638 | Patch 7.4.534 |
| 3639 | Problem: Warnings when compiling if_ruby.c. |
| 3640 | Solution: Avoid the warnings. (Ken Takata) |
| 3641 | Files: src/if_ruby.c |
| 3642 | |
| 3643 | Patch 7.4.535 (after 7.4.530) |
| 3644 | Problem: Can't build with tiny features. |
| 3645 | Solution: Add #ifdefs and skip a test. |
| 3646 | Files: src/ex_docmd.c, src/testdir/test_argument_count.in |
| 3647 | |
| 3648 | Patch 7.4.536 |
| 3649 | Problem: Test 63 fails when using a black&white terminal. |
| 3650 | Solution: Add attributes for a non-color terminal. (Christian Brabandt) |
| 3651 | Files: src/testdir/test63.in |
| 3652 | |
| 3653 | Patch 7.4.537 |
| 3654 | Problem: Value of v:hlsearch reflects an internal variable. |
| 3655 | Solution: Make the value reflect whether search highlighting is actually |
| 3656 | displayed. (Christian Brabandt) |
| 3657 | Files: runtime/doc/eval.txt, src/testdir/test101.in, |
| 3658 | src/testdir/test101.ok, src/vim.h |
| 3659 | |
| 3660 | Patch 7.4.538 |
| 3661 | Problem: Tests fail with small features plus Python. |
| 3662 | Solution: Disallow weird combination of options. Do not set "fdm" when |
| 3663 | folding is disabled. |
| 3664 | Files: src/option.c, src/ex_cmds.c, src/configure.in, src/auto/configure, |
| 3665 | src/feature.h |
| 3666 | |
| 3667 | Patch 7.4.539 (after 7.4.530) |
| 3668 | Problem: Crash when computing buffer count. Problem with range for user |
| 3669 | commands. Line range wrong in Visual area. |
| 3670 | Solution: Avoid segfault in compute_buffer_local_count(). Check for |
| 3671 | CMD_USER when checking type of range. (Marcin Szamotulski) |
| 3672 | Files: runtime/doc/windows.txt, src/ex_docmd.c |
| 3673 | |
| 3674 | Patch 7.4.540 (after 7.4.539) |
| 3675 | Problem: Cannot build with tiny and small features. (Taro Muraoka) |
| 3676 | Solution: Add #ifdef around CMD_USER. |
| 3677 | Files: src/ex_docmd.c |
| 3678 | |
| 3679 | Patch 7.4.541 |
| 3680 | Problem: Crash when doing a range assign. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3681 | Solution: Check for NULL pointer. (Yukihiro Nakadaira) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3682 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok |
| 3683 | |
| 3684 | Patch 7.4.542 |
| 3685 | Problem: Using a range for window and buffer commands has a few problems. |
| 3686 | Cannot specify the type of range for a user command. |
| 3687 | Solution: Add the -addr argument for user commands. Fix problems. (Marcin |
| 3688 | Szamotulski) |
| 3689 | Files: src/testdir/test_command_count.in, |
| 3690 | src/testdir/test_command_count.ok src/testdir/Make_amiga.mak |
| 3691 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3692 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3693 | src/testdir/Makefile, runtime/doc/map.txt, src/Makefile, |
| 3694 | src/ex_cmds.h, src/ex_docmd.c, src/ex_getln.c, |
| 3695 | src/proto/ex_docmd.pro, src/vim.h, |
| 3696 | |
| 3697 | Patch 7.4.543 |
| 3698 | Problem: Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three. |
| 3699 | (Eliseo MartÃnez) Issue 287 |
| 3700 | Solution: Correct the line count. (Christian Brabandt) |
| 3701 | Also set the last used search pattern. |
| 3702 | Files: src/ex_cmds.c, src/search.c, src/proto/search.pro |
| 3703 | |
| 3704 | Patch 7.4.544 |
| 3705 | Problem: Warnings for unused arguments when compiling with a combination of |
| 3706 | features. |
| 3707 | Solution: Add "UNUSED". |
| 3708 | Files: src/if_cscope.c |
| 3709 | |
| 3710 | Patch 7.4.545 |
| 3711 | Problem: Highlighting for multi-line matches is not correct. |
| 3712 | Solution: Stop highlight at the end of the match. (Hirohito Higashi) |
| 3713 | Files: src/screen.c |
| 3714 | |
| 3715 | Patch 7.4.546 |
| 3716 | Problem: Repeated use of vim_snprintf() with a number. |
| 3717 | Solution: Move these vim_snprintf() calls into a function. |
| 3718 | Files: src/window.c |
| 3719 | |
| 3720 | Patch 7.4.547 |
| 3721 | Problem: Using "vit" does not select a multi-byte character at the end |
| 3722 | correctly. |
| 3723 | Solution: Advance the cursor over the multi-byte character. (Christian |
| 3724 | Brabandt) |
| 3725 | Files: src/search.c |
| 3726 | |
| 3727 | Patch 7.4.548 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3728 | Problem: Compilation fails with native version of MinGW-w64, because |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3729 | it doesn't have x86_64-w64-mingw32-windres.exe. |
| 3730 | Solution: Use windres instead. (Ken Takata) |
| 3731 | Files: src/Make_cyg_ming.mak |
| 3732 | |
| 3733 | Patch 7.4.549 |
| 3734 | Problem: Function name not recognized correctly when inside a function. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3735 | Solution: Don't check for an alpha character. (Ozaki Kiichi) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3736 | Files: src/eval.c, src/testdir/test_nested_function.in, |
| 3737 | src/testdir/test_nested_function.ok, src/testdir/Make_amiga.mak, |
| 3738 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3739 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3740 | src/testdir/Makefile |
| 3741 | |
| 3742 | Patch 7.4.550 |
| 3743 | Problem: curs_rows() function is always called with the second argument |
| 3744 | false. |
| 3745 | Solution: Remove the argument. (Christian Brabandt) |
| 3746 | validate_botline_win() can then also be removed. |
| 3747 | Files: src/move.c |
| 3748 | |
| 3749 | Patch 7.4.551 |
| 3750 | Problem: "ygn" may yank too much. (Fritzophrenic) Issue 295. |
| 3751 | Solution: Check the width of the next match. (Christian Brabandt) |
| 3752 | Files: src/search.c, src/testdir/test53.in, src/testdir/test53.ok |
| 3753 | |
| 3754 | Patch 7.4.552 |
| 3755 | Problem: Langmap applies to Insert mode expression mappings. |
| 3756 | Solution: Check for Insert mode. (Daniel Hahler) |
| 3757 | Files: src/getchar.c, src/testdir/test_mapping.in, |
| 3758 | src/testdir/test_mapping.ok |
| 3759 | |
| 3760 | Patch 7.4.553 |
| 3761 | Problem: Various small issues. |
| 3762 | Solution: Fix those issues. |
| 3763 | Files: src/ex_cmds.h, src/gui.h, src/message.c, src/testdir/test39.in, |
| 3764 | src/proto/eval.pro, src/proto/misc1.pro, src/proto/ops.pro, |
| 3765 | src/proto/screen.pro, src/proto/window.pro. src/os_unix.c, |
| 3766 | src/Make_vms.mms, src/proto/os_vms.pro, src/INSTALL |
| 3767 | |
| 3768 | Patch 7.4.554 |
| 3769 | Problem: Missing part of patch 7.4.519. |
| 3770 | Solution: Copy back regprog after calling vim_regexec. |
| 3771 | Files: src/quickfix.c |
| 3772 | |
| 3773 | Patch 7.4.555 |
| 3774 | Problem: test_close_count may fail for some combination of features. |
| 3775 | Solution: Require normal features. |
| 3776 | Files: src/testdir/test_close_count.in |
| 3777 | |
| 3778 | Patch 7.4.556 |
| 3779 | Problem: Failed commands in Python interface not handled correctly. |
| 3780 | Solution: Restore window and buffer on failure. |
| 3781 | Files: src/if_py_both.h |
| 3782 | |
| 3783 | Patch 7.4.557 |
| 3784 | Problem: One more small issue. |
| 3785 | Solution: Update function proto. |
| 3786 | Files: src/proto/window.pro |
| 3787 | |
| 3788 | Patch 7.4.558 |
| 3789 | Problem: When the X server restarts Vim may get stuck. |
| 3790 | Solution: Destroy the application context and create it again. (Issue 203) |
| 3791 | Files: src/os_unix.c |
| 3792 | |
| 3793 | Patch 7.4.559 |
| 3794 | Problem: Appending a block in the middle of a tab does not work correctly |
| 3795 | when virtualedit is set. |
| 3796 | Solution: Decrement spaces and count, don't reset them. (James McCoy) |
| 3797 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 3798 | |
| 3799 | Patch 7.4.560 |
| 3800 | Problem: Memory leak using :wviminfo. Issue 296. |
| 3801 | Solution: Free memory when needed. (idea by Christian Brabandt) |
| 3802 | Files: src/ops.c |
| 3803 | |
| 3804 | Patch 7.4.561 |
| 3805 | Problem: Ex range handling is wrong for buffer-local user commands. |
| 3806 | Solution: Check for CMD_USER_BUF. (Marcin Szamotulski) |
| 3807 | Files: src/ex_docmd.c, src/testdir/test_command_count.in, |
| 3808 | src/testdir/test_command_count.ok |
| 3809 | |
| 3810 | Patch 7.4.562 |
| 3811 | Problem: Segfault with wide screen and error in 'rulerformat'. (Ingo Karkat) |
| 3812 | Solution: Check there is enough space. (Christian Brabandt) |
| 3813 | Files: src/buffer.c, src/screen.c |
| 3814 | |
| 3815 | Patch 7.4.563 |
| 3816 | Problem: No test for replacing on a tab in Virtual replace mode. |
| 3817 | Solution: Add a test. (Elias Diem) |
| 3818 | Files: src/testdir/test48.in, src/testdir/test48.ok |
| 3819 | |
| 3820 | Patch 7.4.564 |
| 3821 | Problem: FEAT_OSFILETYPE is used even though it's never defined. |
| 3822 | Solution: Remove the code. (Christian Brabandt) |
| 3823 | Files: src/fileio.c |
| 3824 | |
| 3825 | Patch 7.4.565 |
| 3826 | Problem: Ranges for arguments, buffers, tabs, etc. are not checked to be |
| 3827 | valid but limited to the maximum. This can cause the wrong thing |
| 3828 | to happen. |
| 3829 | Solution: Give an error for an invalid value. (Marcin Szamotulski) |
| 3830 | Use windows range for ":wincmd". |
| 3831 | Files: src/ex_docmd.c, src/ex_cmds.h, src/testdir/test62.in, |
| 3832 | src/testdir/test_argument_count.in, |
| 3833 | src/testdir/test_argument_count.ok, |
| 3834 | src/testdir/test_close_count.in, |
| 3835 | src/testdir/test_command_count.in, |
| 3836 | src/testdir/test_command_count.ok |
| 3837 | |
| 3838 | Patch 7.4.566 |
| 3839 | Problem: :argdo, :bufdo, :windo and :tabdo don't take a range. |
| 3840 | Solution: Support the range. (Marcin Szamotulski) |
| 3841 | Files: runtime/doc/editing.txt, runtime/doc/tabpage.txt, |
| 3842 | runtime/doc/windows.txt, src/ex_cmds.h, src/ex_cmds2.c, |
| 3843 | src/testdir/test_command_count.in, |
| 3844 | src/testdir/test_command_count.ok |
| 3845 | |
| 3846 | Patch 7.4.567 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3847 | Problem: Non-ascii vertical separator characters are always redrawn. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3848 | Solution: Compare only the one byte that's stored. (Thiago Padilha) |
| 3849 | Files: src/screen.c |
| 3850 | |
| 3851 | Patch 7.4.568 |
| 3852 | Problem: Giving an error for ":0wincmd w" is a problem for some plugins. |
| 3853 | Solution: Allow the zero in the range. (Marcin Szamotulski) |
| 3854 | Files: src/ex_docmd.c, src/testdir/test_command_count.ok |
| 3855 | |
| 3856 | Patch 7.4.569 (after 7.4.468) |
| 3857 | Problem: Having CTRL-C interrupt or not does not check the mode of the |
| 3858 | mapping. (Ingo Karkat) |
| 3859 | Solution: Use a bitmask with the map mode. (Christian Brabandt) |
| 3860 | Files: src/getchar.c, src/structs.h, src/testdir/test_mapping.in, |
| 3861 | src/testdir/test_mapping.ok, src/ui.c, src/globals.h |
| 3862 | |
| 3863 | Patch 7.4.570 |
| 3864 | Problem: Building with dynamic library does not work for Ruby 2.2.0 |
| 3865 | Solution: Change #ifdefs and #defines. (Ken Takata) |
| 3866 | Files: src/if_ruby.c |
| 3867 | |
| 3868 | Patch 7.4.571 (after 7.4.569) |
| 3869 | Problem: Can't build with tiny features. (Ike Devolder) |
| 3870 | Solution: Add #ifdef. |
| 3871 | Files: src/getchar.c |
| 3872 | |
| 3873 | Patch 7.4.572 |
| 3874 | Problem: Address type of :wincmd depends on the argument. |
| 3875 | Solution: Check the argument. |
| 3876 | Files: src/ex_docmd.c, src/window.c, src/proto/window.pro |
| 3877 | |
| 3878 | Patch 7.4.573 (after 7.4.569) |
| 3879 | Problem: Mapping CTRL-C in Visual mode doesn't work. (Ingo Karkat) |
| 3880 | Solution: Call get_real_state() instead of using State directly. |
| 3881 | Files: src/ui.c, src/testdir/test_mapping.in, src/testdir/test_mapping.ok |
| 3882 | |
| 3883 | Patch 7.4.574 |
| 3884 | Problem: No error for eval('$'). |
| 3885 | Solution: Check for empty name. (Yasuhiro Matsumoto) |
| 3886 | Files: src/eval.c |
| 3887 | |
| 3888 | Patch 7.4.575 |
| 3889 | Problem: Unicode character properties are outdated. |
| 3890 | Solution: Update the tables with the latest version. |
| 3891 | Files: src/mbyte.c |
| 3892 | |
| 3893 | Patch 7.4.576 |
| 3894 | Problem: Redrawing problem with 'relativenumber' and 'linebreak'. |
| 3895 | Solution: Temporarily reset 'linebreak' and restore it in more places. |
| 3896 | (Christian Brabandt) |
| 3897 | Files: src/normal.c |
| 3898 | |
| 3899 | Patch 7.4.577 |
| 3900 | Problem: Matching with a virtual column has a lot of overhead on very long |
| 3901 | lines. (Issue 310) |
| 3902 | Solution: Bail out early if there can't be a match. (Christian Brabandt) |
| 3903 | Also check for CTRL-C at every position. |
| 3904 | Files: src/regexp_nfa.c |
| 3905 | |
| 3906 | Patch 7.4.578 |
| 3907 | Problem: Using getcurpos() after "$" in an empty line returns a negative |
| 3908 | number. |
| 3909 | Solution: Don't add one when this would overflow. (Hirohito Higashi) |
| 3910 | Files: src/eval.c |
| 3911 | |
| 3912 | Patch 7.4.579 |
| 3913 | Problem: Wrong cursor positioning when 'linebreak' is set and lines wrap. |
| 3914 | Solution: Fix it. (Christian Brabandt) |
| 3915 | Files: src/charset.c, src/screen.c |
| 3916 | |
| 3917 | Patch 7.4.580 |
| 3918 | Problem: ":52wincmd v" still gives an invalid range error. (Charles |
| 3919 | Campbell) |
| 3920 | Solution: Skip over white space. |
| 3921 | Files: src/ex_docmd.c |
| 3922 | |
| 3923 | Patch 7.4.581 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 3924 | Problem: Compiler warnings for uninitialized variables. (John Little) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 3925 | Solution: Initialize the variables. |
| 3926 | Files: src/ops.c |
| 3927 | |
| 3928 | Patch 7.4.582 (after 7.4.577) |
| 3929 | Problem: Can't match "%>80v" properly. (Axel Bender) |
| 3930 | Solution: Correctly handle ">". (Christian Brabandt) |
| 3931 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 3932 | |
| 3933 | Patch 7.4.583 |
| 3934 | Problem: With tiny features test 16 may fail. |
| 3935 | Solution: Source small.vim. (Christian Brabandt) |
| 3936 | Files: src/testdir/test16.in |
| 3937 | |
| 3938 | Patch 7.4.584 |
| 3939 | Problem: With tiny features test_command_count may fail. |
| 3940 | Solution: Source small.vim. (Christian Brabandt) |
| 3941 | Files: src/testdir/test_command_count.in |
| 3942 | |
| 3943 | Patch 7.4.585 |
| 3944 | Problem: Range for :bdelete does not work. (Ronald Schild) |
| 3945 | Solution: Also allow unloaded buffers. |
| 3946 | Files: src/ex_cmds.h, src/testdir/test_command_count.in, |
| 3947 | src/testdir/test_command_count.ok |
| 3948 | |
| 3949 | Patch 7.4.586 |
| 3950 | Problem: Parallel building of the documentation html files is not reliable. |
| 3951 | Solution: Remove a cyclic dependency. (Reiner Herrmann) |
| 3952 | Files: runtime/doc/Makefile |
| 3953 | |
| 3954 | Patch 7.4.587 |
| 3955 | Problem: Conceal does not work properly with 'linebreak'. (cs86661) |
| 3956 | Solution: Save and restore boguscols. (Christian Brabandt) |
| 3957 | Files: src/screen.c, src/testdir/test_listlbr_utf8.in, |
| 3958 | src/testdir/test_listlbr_utf8.ok |
| 3959 | |
| 3960 | Patch 7.4.588 |
| 3961 | Problem: ":0argedit foo" puts the new argument in the second place instead |
| 3962 | of the first. |
| 3963 | Solution: Adjust the range type. (Ingo Karkat) |
| 3964 | Files: src/ex_cmds.h, src/testdir/Make_amiga.mak, |
| 3965 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 3966 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 3967 | src/testdir/Makefile, src/testdir/test_argument_0count.in, |
| 3968 | src/testdir/test_argument_0count.ok |
| 3969 | |
| 3970 | Patch 7.4.589 |
| 3971 | Problem: In the MS-Windows console Vim can't handle greek characters when |
| 3972 | encoding is utf-8. |
| 3973 | Solution: Escape K_NUL. (Yasuhiro Matsumoto) |
| 3974 | Files: src/os_win32.c |
| 3975 | |
| 3976 | Patch 7.4.590 |
| 3977 | Problem: Using ctrl_x_mode as if it contains flags. |
| 3978 | Solution: Don't use AND with CTRL_X_OMNI. (Hirohito Higashi) |
| 3979 | Files: src/edit.c |
| 3980 | |
| 3981 | Patch 7.4.591 (after 7.4.587) |
| 3982 | Problem: test_listlbr_utf8 fails when the conceal feature is not available. |
| 3983 | Solution: Check for the conceal feature. (Kazunobu Kuriyama) |
| 3984 | Files: src/testdir/test_listlbr_utf8.in |
| 3985 | |
| 3986 | Patch 7.4.592 |
| 3987 | Problem: When doing ":e foobar" when already editing "foobar" and 'buftype' |
| 3988 | is "nofile" the buffer is cleared. (Xavier de Gaye) |
| 3989 | Solution: Do no clear the buffer. |
| 3990 | Files: src/ex_cmds.c |
| 3991 | |
| 3992 | Patch 7.4.593 |
| 3993 | Problem: Crash when searching for "x\{0,90000}". (Dominique Pelle) |
| 3994 | Solution: Bail out from the NFA engine when the max limit is much higher |
| 3995 | than the min limit. |
| 3996 | Files: src/regexp_nfa.c, src/regexp.c, src/vim.h |
| 3997 | |
| 3998 | Patch 7.4.594 |
| 3999 | Problem: Using a block delete while 'breakindent' is set does not work |
| 4000 | properly. |
| 4001 | Solution: Use "line" instead of "prev_pend" as the first argument to |
| 4002 | lbr_chartabsize_adv(). (Hirohito Higashi) |
| 4003 | Files: src/ops.c, src/testdir/test_breakindent.in, |
| 4004 | src/testdir/test_breakindent.ok |
| 4005 | |
| 4006 | Patch 7.4.595 |
| 4007 | Problem: The test_command_count test fails when using Japanese. |
| 4008 | Solution: Force the language to C. (Hirohito Higashi) |
| 4009 | Files: src/testdir/test_command_count.in |
| 4010 | |
| 4011 | Patch 7.4.596 (after 7.4.592) |
| 4012 | Problem: Tiny build doesn't compile. (Ike Devolder) |
| 4013 | Solution: Add #ifdef. |
| 4014 | Files: src/ex_cmds.c |
| 4015 | |
| 4016 | Patch 7.4.597 |
| 4017 | Problem: Cannot change the result of systemlist(). |
| 4018 | Solution: Initialize v_lock. (Yukihiro Nakadaira) |
| 4019 | Files: src/eval.c |
| 4020 | |
| 4021 | Patch 7.4.598 |
| 4022 | Problem: ":tabdo windo echo 'hi'" causes "* register not to be changed. |
| 4023 | (Salman Halim) |
| 4024 | Solution: Change how clip_did_set_selection is used and add |
| 4025 | clipboard_needs_update and global_change_count. (Christian |
| 4026 | Brabandt) |
| 4027 | Files: src/main.c, src/ui.c, src/testdir/test_eval.in, |
| 4028 | src/testdir/test_eval.ok |
| 4029 | |
| 4030 | Patch 7.4.599 |
| 4031 | Problem: Out-of-memory error. |
| 4032 | Solution: Avoid trying to allocate a negative amount of memory, use size_t |
| 4033 | instead of int. (Dominique Pelle) |
| 4034 | Files: src/regexp_nfa.c |
| 4035 | |
| 4036 | Patch 7.4.600 |
| 4037 | Problem: Memory wasted in struct because of aligning. |
| 4038 | Solution: Split pos in lnum and col. (Dominique Pelle) |
| 4039 | Files: src/regexp_nfa.c |
| 4040 | |
| 4041 | Patch 7.4.601 |
| 4042 | Problem: It is not possible to have feedkeys() insert characters. |
| 4043 | Solution: Add the 'i' flag. |
| 4044 | Files: src/eval.c, runtime/doc/eval.txt |
| 4045 | |
| 4046 | Patch 7.4.602 |
| 4047 | Problem: ":set" does not accept hex numbers as documented. |
| 4048 | Solution: Use vim_str2nr(). (ZyX) |
| 4049 | Files: src/option.c, runtime/doc/options.txt |
| 4050 | |
| 4051 | Patch 7.4.603 |
| 4052 | Problem: 'foldcolumn' may be set such that it fills the whole window, not |
| 4053 | leaving space for text. |
| 4054 | Solution: Reduce the foldcolumn width when there is not sufficient room. |
| 4055 | (idea by Christian Brabandt) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4056 | Files: src/screen.c |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4057 | |
| 4058 | Patch 7.4.604 |
| 4059 | Problem: Running tests changes viminfo. |
| 4060 | Solution: Disable viminfo. |
| 4061 | Files: src/testdir/test_breakindent.in |
| 4062 | |
| 4063 | Patch 7.4.605 |
| 4064 | Problem: The # register is not writable, it cannot be restored after |
| 4065 | jumping around. |
| 4066 | Solution: Make the # register writable. (Marcin Szamotulski) |
| 4067 | Files: runtime/doc/change.txt, src/ops.c, src/buffer.c, src/globals.h |
| 4068 | |
| 4069 | Patch 7.4.606 |
| 4070 | Problem: May crash when using a small window. |
| 4071 | Solution: Avoid dividing by zero. (Christian Brabandt) |
| 4072 | Files: src/normal.c |
| 4073 | |
| 4074 | Patch 7.4.607 (after 7.4.598) |
| 4075 | Problem: Compiler warnings for unused variables. |
| 4076 | Solution: Move them inside #ifdef. (Kazunobu Kuriyama) |
| 4077 | Files: src/ui.c |
| 4078 | |
| 4079 | Patch 7.4.608 (after 7.4.598) |
| 4080 | Problem: test_eval fails when the clipboard feature is missing. |
| 4081 | Solution: Skip part of the test. Reduce the text used. |
| 4082 | Files: src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 4083 | |
| 4084 | Patch 7.4.609 |
| 4085 | Problem: For complicated list and dict use the garbage collector can run |
| 4086 | out of stack space. |
| 4087 | Solution: Use a stack of dicts and lists to be marked, thus making it |
| 4088 | iterative instead of recursive. (Ben Fritz) |
| 4089 | Files: src/eval.c, src/if_lua.c, src/if_py_both.h, src/if_python.c, |
| 4090 | src/if_python3.c, src/proto/eval.pro, src/proto/if_lua.pro, |
| 4091 | src/proto/if_python.pro, src/proto/if_python3.pro, src/structs.h |
| 4092 | |
| 4093 | Patch 7.4.610 |
| 4094 | Problem: Some function headers may be missing from generated .pro files. |
| 4095 | Solution: Add PROTO to the #ifdef. |
| 4096 | Files: src/option.c, src/syntax.c |
| 4097 | |
| 4098 | Patch 7.4.611 (after 7.4.609) |
| 4099 | Problem: Syntax error. |
| 4100 | Solution: Change statement to return. |
| 4101 | Files: src/if_python3.c |
| 4102 | |
| 4103 | Patch 7.4.612 |
| 4104 | Problem: test_eval fails on Mac. |
| 4105 | Solution: Use the * register instead of the + register. (Jun Takimoto) |
| 4106 | Files: src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 4107 | |
| 4108 | Patch 7.4.613 |
| 4109 | Problem: The NFA engine does not implement the 'redrawtime' time limit. |
| 4110 | Solution: Implement the time limit. |
| 4111 | Files: src/regexp_nfa.c |
| 4112 | |
| 4113 | Patch 7.4.614 |
| 4114 | Problem: There is no test for what patch 7.4.601 fixes. |
| 4115 | Solution: Add a test. (Christian Brabandt) |
| 4116 | Files: src/testdir/test_mapping.in, src/testdir/test_mapping.ok |
| 4117 | |
| 4118 | Patch 7.4.615 |
| 4119 | Problem: Vim hangs when freeing a lot of objects. |
| 4120 | Solution: Do not go back to the start of the list every time. (Yasuhiro |
| 4121 | Matsumoto and Ariya Mizutani) |
| 4122 | Files: src/eval.c |
| 4123 | |
| 4124 | Patch 7.4.616 |
| 4125 | Problem: Cannot insert a tab in front of a block. |
| 4126 | Solution: Correctly compute aop->start. (Christian Brabandt) |
| 4127 | Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok |
| 4128 | |
| 4129 | Patch 7.4.617 |
| 4130 | Problem: Wrong ":argdo" range does not cause an error. |
| 4131 | Solution: Reset "cmd" to NULL. (Marcin Szamotulski, Ingo Karkat) |
| 4132 | Files: src/ex_docmd.c |
| 4133 | |
| 4134 | Patch 7.4.618 (after 7.4.609) |
| 4135 | Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi) |
| 4136 | Solution: Put the return statement back. |
| 4137 | Files: src/if_lua.c |
| 4138 | |
| 4139 | Patch 7.4.619 (after 7.4.618) |
| 4140 | Problem: luaV_setref() not returning the correct value. |
| 4141 | Solution: Return one. |
| 4142 | Files: src/if_lua.c |
| 4143 | |
| 4144 | Patch 7.4.620 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4145 | Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4146 | Solution: Initialize "did_free". (Ben Fritz) |
| 4147 | Files: src/eval.c |
| 4148 | |
| 4149 | Patch 7.4.621 (after 7.4.619) |
| 4150 | Problem: Returning 1 in the wrong function. (Raymond Ko) |
| 4151 | Solution: Return 1 in the right function (hopefully). |
| 4152 | Files: src/if_lua.c |
| 4153 | |
| 4154 | Patch 7.4.622 |
| 4155 | Problem: Compiler warning for unused argument. |
| 4156 | Solution: Add UNUSED. |
| 4157 | Files: src/regexp_nfa.c |
| 4158 | |
| 4159 | Patch 7.4.623 |
| 4160 | Problem: Crash with pattern: \(\)\{80000} (Dominique Pelle) |
| 4161 | Solution: When the max limit is large fall back to the old engine. |
| 4162 | Files: src/regexp_nfa.c |
| 4163 | |
| 4164 | Patch 7.4.624 |
| 4165 | Problem: May leak memory or crash when vim_realloc() returns NULL. |
| 4166 | Solution: Handle a NULL value properly. (Mike Williams) |
| 4167 | Files: src/if_cscope.c, src/memline.c, src/misc1.c, src/netbeans.c |
| 4168 | |
| 4169 | Patch 7.4.625 |
| 4170 | Problem: Possible NULL pointer dereference. |
| 4171 | Solution: Check for NULL before using it. (Mike Williams) |
| 4172 | Files: src/if_py_both.h |
| 4173 | |
| 4174 | Patch 7.4.626 |
| 4175 | Problem: MSVC with W4 gives useless warnings. |
| 4176 | Solution: Disable more warnings. (Mike Williams) |
| 4177 | Files: src/vim.h |
| 4178 | |
| 4179 | Patch 7.4.627 |
| 4180 | Problem: The last screen cell is not updated. |
| 4181 | Solution: Respect the "tn" termcap feature. (Hayaki Saito) |
| 4182 | Files: runtime/doc/term.txt, src/option.c, src/screen.c, src/term.c, |
| 4183 | src/term.h |
| 4184 | |
| 4185 | Patch 7.4.628 |
| 4186 | Problem: Compiler warning for variable might be clobbered by longjmp. |
| 4187 | Solution: Add volatile. (Michael Jarvis) |
| 4188 | Files: src/main.c |
| 4189 | |
| 4190 | Patch 7.4.629 |
| 4191 | Problem: Coverity warning for Out-of-bounds read. |
| 4192 | Solution: Increase MAXWLEN to 254. (Eliseo MartÃnez) |
| 4193 | Files: src/spell.c |
| 4194 | |
| 4195 | Patch 7.4.630 |
| 4196 | Problem: When using Insert mode completion combined with autocommands the |
| 4197 | redo command may not work. |
| 4198 | Solution: Do not save the redo buffer when executing autocommands. (Yasuhiro |
| 4199 | Matsumoto) |
| 4200 | Files: src/fileio.c |
| 4201 | |
| 4202 | Patch 7.4.631 |
| 4203 | Problem: The default conceal character is documented to be a space but it's |
| 4204 | initially a dash. (Christian Brabandt) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4205 | Solution: Make the initial value a space. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4206 | Files: src/globals.h |
| 4207 | |
| 4208 | Patch 7.4.632 (after 7.4.592) |
| 4209 | Problem: 7.4.592 breaks the netrw plugin, because the autocommands are |
| 4210 | skipped. |
| 4211 | Solution: Roll back the change. |
| 4212 | Files: src/ex_cmds.c |
| 4213 | |
| 4214 | Patch 7.4.633 |
| 4215 | Problem: After 7.4.630 the problem persists. |
| 4216 | Solution: Also skip redo when calling a user function. |
| 4217 | Files: src/eval.c |
| 4218 | |
| 4219 | Patch 7.4.634 |
| 4220 | Problem: Marks are not restored after redo + undo. |
| 4221 | Solution: Fix the way marks are restored. (Olaf Dabrunz) |
| 4222 | Files: src/undo.c, src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 4223 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 4224 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 4225 | src/testdir/test_marks.in, src/testdir/test_marks.ok |
| 4226 | |
| 4227 | Patch 7.4.635 |
| 4228 | Problem: If no NL or CR is found in the first block of a file then the |
| 4229 | 'fileformat' may be set to "mac". (Issue 77) |
| 4230 | Solution: Check if a CR was found. (eswald) |
| 4231 | Files: src/fileio.c |
| 4232 | |
| 4233 | Patch 7.4.636 |
| 4234 | Problem: A search with end offset gets stuck at end of file. (Gary Johnson) |
| 4235 | Solution: When a search doesn't move the cursor repeat it with a higher |
| 4236 | count. (Christian Brabandt) |
| 4237 | Files: src/normal.c, src/testdir/test44.in, src/testdir/test44.ok |
| 4238 | |
| 4239 | Patch 7.4.637 |
| 4240 | Problem: Incorrectly read the number of buffer for which an autocommand |
| 4241 | should be registered. |
| 4242 | Solution: Reverse check for "<buffer=abuf>". (Lech Lorens) |
| 4243 | Files: src/fileio.c |
| 4244 | |
| 4245 | Patch 7.4.638 |
| 4246 | Problem: Can't build with Lua 5.3 on Windows. |
| 4247 | Solution: use luaL_optinteger() instead of LuaL_optlong(). (Ken Takata) |
| 4248 | Files: src/if_lua.c |
| 4249 | |
| 4250 | Patch 7.4.639 |
| 4251 | Problem: Combination of linebreak and conceal doesn't work well. |
| 4252 | Solution: Fix the display problems. (Christian Brabandt) |
| 4253 | Files: src/screen.c, src/testdir/test88.in, src/testdir/test88.ok, |
| 4254 | src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok |
| 4255 | |
| 4256 | Patch 7.4.640 |
| 4257 | Problem: After deleting characters in Insert mode such that lines are |
| 4258 | joined undo does not work properly. (issue 324) |
| 4259 | Solution: Use Insstart instead of Insstart_orig. (Christian Brabandt) |
| 4260 | Files: src/edit.c |
| 4261 | |
| 4262 | Patch 7.4.641 |
| 4263 | Problem: The tabline menu was using ":999tabnew" which is now invalid. |
| 4264 | Solution: Use ":$tabnew" instead. (Florian Degner) |
| 4265 | Files: src/normal.c |
| 4266 | |
| 4267 | Patch 7.4.642 |
| 4268 | Problem: When using "gf" escaped spaces are not handled. |
| 4269 | Solution: Recognize escaped spaces. |
| 4270 | Files: src/vim.h, src/normal.h, src/window.c, src/misc2.c |
| 4271 | |
| 4272 | Patch 7.4.643 |
| 4273 | Problem: Using the default file format for Mac files. (Issue 77) |
| 4274 | Solution: Reset the try_mac counter in the right place. (Oswald) |
| 4275 | Files: src/fileio.c, src/testdir/test30.in, src/testdir/test30.ok |
| 4276 | |
| 4277 | Patch 7.4.644 |
| 4278 | Problem: Stratus VOS doesn't have sync(). |
| 4279 | Solution: Use fflush(). (Karli Aurelia) |
| 4280 | Files: src/memfile.c |
| 4281 | |
| 4282 | Patch 7.4.645 |
| 4283 | Problem: When splitting the window in a BufAdd autocommand while still in |
| 4284 | the first, empty buffer the window count is wrong. |
| 4285 | Solution: Do not reset b_nwindows to zero and don't increment it. |
| 4286 | Files: src/buffer.c, src/ex_cmds.c |
| 4287 | |
| 4288 | Patch 7.4.646 |
| 4289 | Problem: ":bufdo" may start at a deleted buffer. |
| 4290 | Solution: Find the first not deleted buffer. (Shane Harper) |
| 4291 | Files: src/ex_cmds2.c, src/testdir/test_command_count.in, |
| 4292 | src/testdir/test_command_count.ok |
| 4293 | |
| 4294 | Patch 7.4.647 |
| 4295 | Problem: After running the tests on MS-Windows many files differ from their |
| 4296 | originals as they were checked out. |
| 4297 | Solution: Use a temp directory for executing the tests. (Ken Takata, Taro |
| 4298 | Muraoka) |
| 4299 | Files: src/testdir/Make_dos.mak |
| 4300 | |
| 4301 | Patch 7.4.648 (after 7.4.647) |
| 4302 | Problem: Tests broken on MS-Windows. |
| 4303 | Solution: Delete wrong copy line. (Ken Takata) |
| 4304 | Files: src/testdir/Make_dos.mak |
| 4305 | |
| 4306 | Patch 7.4.649 |
| 4307 | Problem: Compiler complains about ignoring return value of fwrite(). |
| 4308 | (Michael Jarvis) |
| 4309 | Solution: Add (void). |
| 4310 | Files: src/misc2.c |
| 4311 | |
| 4312 | Patch 7.4.650 |
| 4313 | Problem: Configure check may fail because the dl library is not used. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 4314 | Solution: Put "-ldl" in LIBS rather than LDFLAGS. (Ozaki Kiichi) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4315 | Files: src/configure.in, src/auto/configure |
| 4316 | |
| 4317 | Patch 7.4.651 (after 7.4.582) |
| 4318 | Problem: Can't match "%>80v" properly for multi-byte characters. |
| 4319 | Solution: Multiply the character number by the maximum number of bytes in a |
| 4320 | character. (Yasuhiro Matsumoto) |
| 4321 | Files: src/regexp_nfa.c |
| 4322 | |
| 4323 | Patch 7.4.652 |
| 4324 | Problem: Xxd lacks a few features. |
| 4325 | Solution: Use 8 characters for the file position. Add the -e and -o |
| 4326 | arguments. (Vadim Vygonets) |
| 4327 | Files: src/xxd/xxd.c, runtime/doc/xxd.1 |
| 4328 | |
| 4329 | Patch 7.4.653 |
| 4330 | Problem: Insert mode completion with complete() may have CTRL-L work like |
| 4331 | CTRL-P. |
| 4332 | Solution: Handle completion with complete() differently. (Yasuhiro |
| 4333 | Matsumoto, Christian Brabandt, Hirohito Higashi) |
| 4334 | Files: src/edit.c |
| 4335 | |
| 4336 | Patch 7.4.654 |
| 4337 | Problem: glob() and globpath() cannot include links to non-existing files. |
| 4338 | (Charles Campbell) |
| 4339 | Solution: Add an argument to include all links with glob(). (James McCoy) |
| 4340 | Also for globpath(). |
| 4341 | Files: src/vim.h, src/eval.c, src/ex_getln.c |
| 4342 | |
| 4343 | Patch 7.4.655 |
| 4344 | Problem: Text deleted by "dit" depends on indent of closing tag. |
| 4345 | (Jan Parthey) |
| 4346 | Solution: Do not adjust oap->end in do_pending_operator(). (Christian |
| 4347 | Brabandt) |
| 4348 | Files: src/normal.c, src/search.c, src/testdir/test53.in, |
| 4349 | src/testdir/test53.ok |
| 4350 | |
| 4351 | Patch 7.4.656 (after 7.4.654) |
| 4352 | Problem: Missing changes for glob() in one file. |
| 4353 | Solution: Add the missing changes. |
| 4354 | Files: src/misc1.c |
| 4355 | |
| 4356 | Patch 7.4.657 (after 7.4.656) |
| 4357 | Problem: Compiler warnings for pointer mismatch. |
| 4358 | Solution: Add a typecast. (John Marriott) |
| 4359 | Files: src/misc1.c |
| 4360 | |
| 4361 | Patch 7.4.658 |
| 4362 | Problem: 'formatexpr' is evaluated too often. |
| 4363 | Solution: Only invoke it when beyond the 'textwidth' column, as it is |
| 4364 | documented. (James McCoy) |
| 4365 | Files: src/edit.c |
| 4366 | |
| 4367 | Patch 7.4.659 |
| 4368 | Problem: When 'ruler' is set the preferred column is reset. (Issue 339) |
| 4369 | Solution: Don't set curswant when redrawing the status lines. |
| 4370 | Files: src/option.c |
| 4371 | |
| 4372 | Patch 7.4.660 |
| 4373 | Problem: Using freed memory when g:colors_name is changed in the colors |
| 4374 | script. (oni-link) |
| 4375 | Solution: Make a copy of the variable value. |
| 4376 | Files: src/syntax.c |
| 4377 | |
| 4378 | Patch 7.4.661 |
| 4379 | Problem: Using "0 CTRL-D" in Insert mode may have CursorHoldI interfere. |
| 4380 | (Gary Johnson) |
| 4381 | Solution: Don't store K_CURSORHOLD as the last character. (Christian |
| 4382 | Brabandt) |
| 4383 | Files: src/edit.c |
| 4384 | |
| 4385 | Patch 7.4.662 |
| 4386 | 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] | 4387 | parentheses does not work correctly. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4388 | Solution: Keep 'M' in 'cpo' when finding a match. (Hirohito Higashi) |
| 4389 | Files: src/search.c, src/testdir/Make_amiga.mak, |
| 4390 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 4391 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 4392 | src/testdir/Makefile, src/testdir/test_textobjects.in, |
| 4393 | src/testdir/test_textobjects.ok |
| 4394 | |
| 4395 | Patch 7.4.663 |
| 4396 | Problem: When using netbeans a buffer is not found in another tab. |
| 4397 | Solution: When 'switchbuf' is set to "usetab" then switch to another tab |
| 4398 | when possible. (Xavier de Gaye) |
| 4399 | Files: src/netbeans.c |
| 4400 | |
| 4401 | Patch 7.4.664 |
| 4402 | Problem: When 'compatible' is reset 'numberwidth' is set to 4, but the |
| 4403 | effect doesn't show until a change is made. |
| 4404 | Solution: Check if 'numberwidth' changed. (Christian Brabandt) |
| 4405 | Files: src/screen.c, src/structs.h |
| 4406 | |
| 4407 | Patch 7.4.665 |
| 4408 | Problem: 'linebreak' does not work properly with multi-byte characters. |
| 4409 | Solution: Compute the pointer offset with mb_head_off(). (Yasuhiro |
| 4410 | Matsumoto) |
| 4411 | Files: src/screen.c |
| 4412 | |
| 4413 | Patch 7.4.666 |
| 4414 | Problem: There is a chance that Vim may lock up. |
| 4415 | Solution: Handle timer events differently. (Aaron Burrow) |
| 4416 | Files: src/os_unix.c |
| 4417 | |
| 4418 | Patch 7.4.667 |
| 4419 | Problem: 'colorcolumn' isn't drawn in a closed fold while 'cursorcolumn' |
| 4420 | is. (Carlos Pita) |
| 4421 | Solution: Make it consistent. (Christian Brabandt) |
| 4422 | Files: src/screen.c |
| 4423 | |
| 4424 | Patch 7.4.668 |
| 4425 | Problem: Can't use a glob pattern as a regexp pattern. |
| 4426 | Solution: Add glob2regpat(). (Christian Brabandt) |
| 4427 | Files: src/eval.c, runtime/doc/eval.txt |
| 4428 | |
| 4429 | Patch 7.4.669 |
| 4430 | Problem: When netbeans is active the sign column always shows up. |
| 4431 | Solution: Only show the sign column once a sign has been added. (Xavier de |
| 4432 | Gaye) |
| 4433 | Files: src/buffer.c, src/edit.c, src/move.c, src/netbeans.c, |
| 4434 | src/screen.c, src/structs.h |
| 4435 | |
| 4436 | Patch 7.4.670 |
| 4437 | Problem: Using 'cindent' for Javascript is less than perfect. |
| 4438 | Solution: Improve indenting of continuation lines. (Hirohito Higashi) |
| 4439 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 4440 | |
| 4441 | Patch 7.4.671 (after 7.4.665) |
| 4442 | Problem: Warning for shadowing a variable. |
| 4443 | Solution: Rename off to mb_off. (Kazunobu Kuriyama) |
| 4444 | Files: src/screen.c |
| 4445 | |
| 4446 | Patch 7.4.672 |
| 4447 | Problem: When completing a shell command, directories in the current |
| 4448 | directory are not listed. |
| 4449 | Solution: When "." is not in $PATH also look in the current directory for |
| 4450 | directories. |
| 4451 | Files: src/ex_getln.c, src/vim.h, src/misc1.c, src/eval.c, |
| 4452 | src/os_amiga.c, src/os_msdos.c, src/os_unix.c, src/os_vms.c, |
| 4453 | src/proto/os_amiga.pro, src/proto/os_msdos.pro, |
| 4454 | src/proto/os_unix.pro, src/proto/os_win32.pro |
| 4455 | |
| 4456 | Patch 7.4.673 |
| 4457 | Problem: The first syntax entry gets sequence number zero, which doesn't |
| 4458 | work. (Clinton McKay) |
| 4459 | Solution: Start at number one. (Bjorn Linse) |
| 4460 | Files: src/syntax.c |
| 4461 | |
| 4462 | Patch 7.4.674 (after 7.4.672) |
| 4463 | Problem: Missing changes in one file. |
| 4464 | Solution: Also change the win32 file. |
| 4465 | Files: src/os_win32.c |
| 4466 | |
| 4467 | Patch 7.4.675 |
| 4468 | Problem: When a FileReadPost autocommand moves the cursor inside a line it |
| 4469 | gets moved back. |
| 4470 | Solution: When checking whether an autocommand moved the cursor store the |
| 4471 | column as well. (Christian Brabandt) |
| 4472 | Files: src/ex_cmds.c |
| 4473 | |
| 4474 | Patch 7.4.676 |
| 4475 | Problem: On Mac, when not using the default Python framework configure |
| 4476 | doesn't do the right thing. |
| 4477 | Solution: Use a linker search path. (Kazunobu Kuriyama) |
| 4478 | Files: src/configure.in, src/auto/configure |
| 4479 | |
| 4480 | Patch 7.4.677 (after 7.4.676) |
| 4481 | Problem: Configure fails when specifying a python-config-dir. (Lcd) |
| 4482 | Solution: Check if PYTHONFRAMEWORKPREFIX is set. |
| 4483 | Files: src/configure.in, src/auto/configure |
| 4484 | |
| 4485 | Patch 7.4.678 |
| 4486 | Problem: When using --remote the directory may end up being wrong. |
| 4487 | Solution: Use localdir() to find out what to do. (Xaizek) |
| 4488 | Files: src/main.c |
| 4489 | |
| 4490 | Patch 7.4.679 |
| 4491 | Problem: Color values greater than 255 cause problems on MS-Windows. |
| 4492 | Solution: Truncate to 255 colors. (Yasuhiro Matsumoto) |
| 4493 | Files: src/os_win32.c |
| 4494 | |
| 4495 | Patch 7.4.680 |
| 4496 | Problem: CTRL-W in Insert mode does not work well for multi-byte |
| 4497 | characters. |
| 4498 | Solution: Use mb_get_class(). (Yasuhiro Matsumoto) |
| 4499 | Files: src/edit.c, src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 4500 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 4501 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 4502 | src/testdir/test_erasebackword.in, |
| 4503 | src/testdir/test_erasebackword.ok, |
| 4504 | |
| 4505 | Patch 7.4.681 |
| 4506 | Problem: MS-Windows: When Vim is minimized the window height is computed |
| 4507 | incorrectly. |
| 4508 | Solution: When minimized use the previously computed size. (Ingo Karkat) |
| 4509 | Files: src/gui_w32.c |
| 4510 | |
| 4511 | Patch 7.4.682 |
| 4512 | Problem: The search highlighting and match highlighting replaces the |
| 4513 | cursorline highlighting, this doesn't look good. |
| 4514 | Solution: Combine the highlighting. (Yasuhiro Matsumoto) |
| 4515 | Files: src/screen.c |
| 4516 | |
| 4517 | Patch 7.4.683 |
| 4518 | Problem: Typo in the vimtutor command. |
| 4519 | Solution: Fix the typo. (Corey Farwell, github pull 349) |
| 4520 | Files: vimtutor.com |
| 4521 | |
| 4522 | Patch 7.4.684 |
| 4523 | Problem: When starting several Vim instances in diff mode, the temp files |
| 4524 | used may not be unique. (Issue 353) |
| 4525 | Solution: Add an argument to vim_tempname() to keep the file. |
| 4526 | Files: src/diff.c, src/eval.c, src/ex_cmds.c, src/fileio.c, |
| 4527 | src/hardcopy.c, src/proto/fileio.pro, src/if_cscope.c, |
| 4528 | src/memline.c, src/misc1.c, src/os_unix.c, src/quickfix.c, |
| 4529 | src/spell.c |
| 4530 | |
| 4531 | Patch 7.4.685 |
| 4532 | Problem: When there are illegal utf-8 characters the old regexp engine may |
| 4533 | go past the end of a string. |
| 4534 | Solution: Only advance to the end of the string. (Dominique Pelle) |
| 4535 | Files: src/regexp.c |
| 4536 | |
| 4537 | Patch 7.4.686 |
| 4538 | Problem: "zr" and "zm" do not take a count. |
| 4539 | Solution: Implement the count, restrict the fold level to the maximum |
| 4540 | nesting depth. (Marcin Szamotulski) |
| 4541 | Files: runtime/doc/fold.txt, src/normal.c |
| 4542 | |
| 4543 | Patch 7.4.687 |
| 4544 | Problem: There is no way to use a different in Replace mode for a terminal. |
| 4545 | Solution: Add t_SR. (Omar Sandoval) |
| 4546 | Files: runtime/doc/options.txt, runtime/doc/term.txt, |
| 4547 | runtime/syntax/vim.vim, src/option.c, src/term.c, src/term.h |
| 4548 | |
| 4549 | Patch 7.4.688 |
| 4550 | Problem: When "$" is in 'cpo' the popup menu isn't undrawn correctly. |
| 4551 | (Issue 166) |
| 4552 | Solution: When using the popup menu remove the "$". |
| 4553 | Files: src/edit.c |
| 4554 | |
| 4555 | Patch 7.4.689 |
| 4556 | Problem: On MS-Windows, when 'autochdir' is set, diff mode with files in |
| 4557 | different directories does not work. (Axel Bender) |
| 4558 | Solution: Remember the current directory and use it where needed. (Christian |
| 4559 | Brabandt) |
| 4560 | Files: src/main.c |
| 4561 | |
| 4562 | Patch 7.4.690 |
| 4563 | Problem: Memory access errors when changing indent in Ex mode. Also missing |
| 4564 | redraw when using CTRL-U. (Knil Ino) |
| 4565 | Solution: Update pointers after calling ga_grow(). |
| 4566 | Files: src/ex_getln.c |
| 4567 | |
| 4568 | Patch 7.4.691 (after 7.4.689) |
| 4569 | Problem: Can't build with MzScheme. |
| 4570 | Solution: Change "cwd" into the global variable "start_dir". |
| 4571 | Files: src/main.c |
| 4572 | |
| 4573 | Patch 7.4.692 |
| 4574 | Problem: Defining SOLARIS for no good reason. (Danek Duvall) |
| 4575 | Solution: Remove it. |
| 4576 | Files: src/os_unix.h |
| 4577 | |
| 4578 | Patch 7.4.693 |
| 4579 | Problem: Session file is not correct when there are multiple tab pages. |
| 4580 | Solution: Reset the current window number for each tab page. (Jacob Niehus) |
| 4581 | Files: src/ex_docmd.c |
| 4582 | |
| 4583 | Patch 7.4.694 |
| 4584 | Problem: Running tests changes the .viminfo file. |
| 4585 | Solution: Disable viminfo in the text objects test. |
| 4586 | Files: src/testdir/test_textobjects.in |
| 4587 | |
| 4588 | Patch 7.4.695 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4589 | Problem: Out-of-bounds read, detected by Coverity. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4590 | Solution: Remember the value of cmap for the first matching encoding. Reset |
| 4591 | cmap to that value if first matching encoding is going to be used. |
| 4592 | (Eliseo MartÃnez) |
| 4593 | Files: src/hardcopy.c |
| 4594 | |
| 4595 | Patch 7.4.696 |
| 4596 | Problem: Not freeing memory when encountering an error. |
| 4597 | Solution: Free the stack before returning. (Eliseo MartÃnez) |
| 4598 | Files: src/regexp_nfa.c |
| 4599 | |
| 4600 | Patch 7.4.697 |
| 4601 | Problem: The filename used for ":profile" must be given literally. |
| 4602 | Solution: Expand "~" and environment variables. (Marco Hinz) |
| 4603 | Files: src/ex_cmds2.c |
| 4604 | |
| 4605 | Patch 7.4.698 |
| 4606 | Problem: Various problems with locked and fixed lists and dictionaries. |
| 4607 | Solution: Disallow changing locked items, fix a crash, add tests. (Olaf |
| 4608 | Dabrunz) |
| 4609 | Files: src/structs.h, src/eval.c, src/testdir/test55.in, |
| 4610 | src/testdir/test55.ok |
| 4611 | |
| 4612 | Patch 7.4.699 |
| 4613 | Problem: E315 when trying to delete a fold. (Yutao Yuan) |
| 4614 | Solution: Make sure the fold doesn't go beyond the last buffer line. |
| 4615 | (Christian Brabandt) |
| 4616 | Files: src/fold.c |
| 4617 | |
| 4618 | Patch 7.4.700 |
| 4619 | Problem: Fold can't be opened after ":move". (Ein Brown) |
| 4620 | Solution: Delete the folding information and update it afterwards. |
| 4621 | (Christian Brabandt) |
| 4622 | Files: src/ex_cmds.c, src/fold.c, src/testdir/test45.in, |
| 4623 | src/testdir/test45.ok |
| 4624 | |
| 4625 | Patch 7.4.701 |
| 4626 | Problem: Compiler warning for using uninitialized variable. (Yasuhiro |
| 4627 | Matsumoto) |
| 4628 | Solution: Initialize it. |
| 4629 | Files: src/hardcopy.c |
| 4630 | |
| 4631 | Patch 7.4.702 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4632 | Problem: Joining an empty list does unnecessary work. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4633 | Solution: Let join() return early. (Marco Hinz) |
| 4634 | Files: src/eval.c |
| 4635 | |
| 4636 | Patch 7.4.703 |
| 4637 | Problem: Compiler warning for start_dir unused when building unittests. |
| 4638 | Solution: Move start_dir inside the #ifdef. |
| 4639 | Files: src/main.c |
| 4640 | |
| 4641 | Patch 7.4.704 |
| 4642 | Problem: Searching for a character matches an illegal byte and causes |
| 4643 | invalid memory access. (Dominique Pelle) |
| 4644 | Solution: Do not match an invalid byte when search for a character in a |
| 4645 | string. Fix equivalence classes using negative numbers, which |
| 4646 | result in illegal bytes. |
| 4647 | Files: src/misc2.c, src/regexp.c, src/testdir/test44.in |
| 4648 | |
| 4649 | Patch 7.4.705 |
| 4650 | Problem: Can't build with Ruby 2.2. |
| 4651 | Solution: Add #ifdefs to handle the incompatible change. (Andrei Olsen) |
| 4652 | Files: src/if_ruby.c |
| 4653 | |
| 4654 | Patch 7.4.706 |
| 4655 | Problem: Window drawn wrong when 'laststatus' is zero and there is a |
| 4656 | command-line window. (Yclept Nemo) |
| 4657 | Solution: Set the status height a bit later. (Christian Brabandt) |
| 4658 | Files: src/window.c |
| 4659 | |
| 4660 | Patch 7.4.707 |
| 4661 | Problem: Undo files can have their executable bit set. |
| 4662 | Solution: Strip of the executable bit. (Mikael Berthe) |
| 4663 | Files: src/undo.c |
| 4664 | |
| 4665 | Patch 7.4.708 |
| 4666 | Problem: gettext() is called too often. |
| 4667 | Solution: Do not call gettext() for messages until they are actually used. |
| 4668 | (idea by Yasuhiro Matsumoto) |
| 4669 | Files: src/eval.c |
| 4670 | |
| 4671 | Patch 7.4.709 |
| 4672 | Problem: ":tabmove" does not work as documented. |
| 4673 | Solution: Make it work consistently. Update documentation and add tests. |
| 4674 | (Hirohito Higashi) |
| 4675 | Files: src/window.c, runtime/doc/tabpage.txt, src/ex_docmd.c, |
| 4676 | src/testdir/test62.in, src/testdir/test62.ok |
| 4677 | |
| 4678 | Patch 7.4.710 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 4679 | Problem: It is not possible to make spaces visible in list mode. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4680 | Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350) |
| 4681 | Files: runtime/doc/options.txt, src/globals.h, src/message.h, |
| 4682 | src/screen.c, src/testdir/test_listchars.in, |
| 4683 | src/testdir/test_listchars.ok, src/testdir/Make_amiga.mak, |
| 4684 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 4685 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 4686 | src/testdir/Makefile |
| 4687 | |
| 4688 | Patch 7.4.711 (after 7.4.710) |
| 4689 | Problem: Missing change in one file. |
| 4690 | Solution: Also change option.c |
| 4691 | Files: src/option.c |
| 4692 | |
| 4693 | Patch 7.4.712 (after 7.4.710) |
| 4694 | Problem: Missing change in another file. |
| 4695 | Solution: Also change message.c |
| 4696 | Files: src/message.c |
| 4697 | |
| 4698 | Patch 7.4.713 |
| 4699 | Problem: Wrong condition for #ifdef. |
| 4700 | Solution: Change USR_EXRC_FILE2 to USR_VIMRC_FILE2. (Mikael Fourrier) |
| 4701 | Files: src/os_unix.h |
| 4702 | |
| 4703 | Patch 7.4.714 |
| 4704 | Problem: Illegal memory access when there are illegal bytes. |
| 4705 | Solution: Check the byte length of the character. (Dominique Pelle) |
| 4706 | Files: src/regexp.c |
| 4707 | |
| 4708 | Patch 7.4.715 |
| 4709 | Problem: Invalid memory access when there are illegal bytes. |
| 4710 | Solution: Get the length from the text, not from the character. (Dominique |
| 4711 | Pelle) |
| 4712 | Files: src/regexp_nfa.c |
| 4713 | |
| 4714 | Patch 7.4.716 |
| 4715 | Problem: When using the 'c' flag of ":substitute" and selecting "a" or "l" |
| 4716 | at the prompt the flags are not remembered for ":&&". (Ingo |
| 4717 | Karkat) |
| 4718 | Solution: Save the flag values and restore them. (Hirohito Higashi) |
| 4719 | Files: src/ex_cmds.c |
| 4720 | |
| 4721 | Patch 7.4.717 |
| 4722 | Problem: ":let list += list" can change a locked list. |
| 4723 | Solution: Check for the lock earlier. (Olaf Dabrunz) |
| 4724 | Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok |
| 4725 | |
| 4726 | Patch 7.4.718 |
| 4727 | Problem: Autocommands triggered by quickfix cannot get the current title |
| 4728 | value. |
| 4729 | Solution: Set w:quickfix_title earlier. (Yannick) |
| 4730 | Also move the check for a title into the function. |
| 4731 | Files: src/quickfix.c |
| 4732 | |
| 4733 | Patch 7.4.719 |
| 4734 | Problem: Overflow when adding MAXCOL to a pointer. |
| 4735 | Solution: Subtract pointers instead. (James McCoy) |
| 4736 | Files: src/screen.c |
| 4737 | |
| 4738 | Patch 7.4.720 |
| 4739 | Problem: Can't build with Visual Studio 2015. |
| 4740 | Solution: Recognize the "version 14" numbers and omit /nodefaultlib when |
| 4741 | appropriate. (Paul Moore) |
| 4742 | Files: src/Make_mvc.mak |
| 4743 | |
| 4744 | Patch 7.4.721 |
| 4745 | Problem: When 'list' is set Visual mode does not highlight anything in |
| 4746 | empty lines. (mgaleski) |
| 4747 | Solution: Check the value of lcs_eol in another place. (Christian Brabandt) |
| 4748 | Files: src/screen.c |
| 4749 | |
| 4750 | Patch 7.4.722 |
| 4751 | Problem: 0x202f is not recognized as a non-breaking space character. |
| 4752 | Solution: Add 0x202f to the list. (Christian Brabandt) |
| 4753 | Files: runtime/doc/options.txt, src/message.c, src/screen.c |
| 4754 | |
| 4755 | Patch 7.4.723 |
| 4756 | Problem: For indenting, finding the C++ baseclass can be slow. |
| 4757 | Solution: Cache the result. (Hirohito Higashi) |
| 4758 | Files: src/misc1.c |
| 4759 | |
| 4760 | Patch 7.4.724 |
| 4761 | Problem: Vim icon does not show in Windows context menu. (issue 249) |
| 4762 | Solution: Load the icon in GvimExt. |
| 4763 | Files: src/GvimExt/gvimext.cpp, src/GvimExt/gvimext.h |
| 4764 | |
| 4765 | Patch 7.4.725 |
| 4766 | Problem: ":call setreg('"', [])" reports an internal error. |
| 4767 | Solution: Make the register empty. (Yasuhiro Matsumoto) |
| 4768 | Files: src/ops.c |
| 4769 | |
| 4770 | Patch 7.4.726 (after 7.4.724) |
| 4771 | Problem: Cannot build GvimExt. |
| 4772 | Solution: Set APPVER to 5.0. (KF Leong) |
| 4773 | Files: src/GvimExt/Makefile |
| 4774 | |
| 4775 | Patch 7.4.727 (after 7.4.724) |
| 4776 | Problem: Cannot build GvimExt with MingW. |
| 4777 | Solution: Add -lgdi32. (KF Leong) |
| 4778 | Files: src/GvimExt/Make_ming.mak |
| 4779 | |
| 4780 | Patch 7.4.728 |
| 4781 | Problem: Can't build with some version of Visual Studio 2015. |
| 4782 | Solution: Recognize another version 14 number. (Sinan) |
| 4783 | Files: src/Make_mvc.mak |
| 4784 | |
| 4785 | Patch 7.4.729 (after 7.4.721) |
| 4786 | Problem: Occasional crash with 'list' set. |
| 4787 | Solution: Fix off-by-one error. (Christian Brabandt) |
| 4788 | Files: src/screen.c |
| 4789 | |
| 4790 | Patch 7.4.730 |
| 4791 | Problem: When setting the crypt key and using a swap file, text may be |
| 4792 | encrypted twice or unencrypted text remains in the swap file. |
| 4793 | (Issue 369) |
| 4794 | Solution: Call ml_preserve() before re-encrypting. Set correct index for |
| 4795 | next pointer block. |
| 4796 | Files: src/memfile.c, src/memline.c, src/proto/memline.pro, src/option.c |
| 4797 | |
| 4798 | Patch 7.4.731 |
| 4799 | Problem: The tab menu shows "Close tab" even when it doesn't work. |
| 4800 | Solution: Don't show "Close tab" for the last tab. (John Marriott) |
| 4801 | Files: src/gui_w48.c, src/gui_gtk_x11.c, src/gui_mac.c, src/gui_motif.c |
| 4802 | |
| 4803 | Patch 7.4.732 |
| 4804 | Problem: The cursor line is not always updated for the "O" command. |
| 4805 | Solution: Reset the VALID_CROW flag. (Christian Brabandt) |
| 4806 | Files: src/normal.c |
| 4807 | |
| 4808 | Patch 7.4.733 |
| 4809 | Problem: test_listchars breaks on MS-Windows. (Kenichi Ito) |
| 4810 | Solution: Set fileformat to "unix". (Christian Brabandt) |
| 4811 | Files: src/testdir/test_listchars.in |
| 4812 | |
| 4813 | Patch 7.4.734 |
| 4814 | Problem: ml_get error when using "p" in a Visual selection in the last |
| 4815 | line. |
| 4816 | Solution: Change the behavior at the last line. (Yukihiro Nakadaira) |
| 4817 | Files: src/normal.c, src/ops.c, src/testdir/test94.in, |
| 4818 | src/testdir/test94.ok |
| 4819 | |
| 4820 | Patch 7.4.735 |
| 4821 | Problem: Wrong argument for sizeof(). |
| 4822 | Solution: Use a pointer argument. (Chris Hall) |
| 4823 | Files: src/eval.c |
| 4824 | |
| 4825 | Patch 7.4.736 |
| 4826 | Problem: Invalid memory access. |
| 4827 | Solution: Avoid going over the end of a NUL terminated string. (Dominique |
| 4828 | Pelle) |
| 4829 | Files: src/regexp.c |
| 4830 | |
| 4831 | Patch 7.4.737 |
| 4832 | Problem: On MS-Windows vimgrep over arglist doesn't work (Issue 361) |
| 4833 | Solution: Only escape backslashes in ## expansion when it is not used as the |
| 4834 | path separator. (James McCoy) |
| 4835 | Files: src/ex_docmd.c |
| 4836 | |
| 4837 | Patch 7.4.738 (after 7.4.732) |
| 4838 | Problem: Can't compile without the syntax highlighting feature. |
| 4839 | Solution: Add #ifdef around use of w_p_cul. (Hirohito Higashi) |
| 4840 | Files: src/normal.c, src/screen.c |
| 4841 | |
| 4842 | Patch 7.4.739 |
| 4843 | Problem: In a string "\U" only takes 4 digits, while after CTRL-V U eight |
| 4844 | digits can be used. |
| 4845 | Solution: Make "\U" also take eight digits. (Christian Brabandt) |
| 4846 | Files: src/eval.c |
| 4847 | |
| 4848 | Patch 7.4.740 |
| 4849 | Problem: ":1quit" works like ":.quit". (Bohr Shaw) |
| 4850 | Solution: Don't exit Vim when a range is specified. (Christian Brabandt) |
| 4851 | Files: src/ex_docmd.c, src/testdir/test13.in, src/testdir/test13.ok |
| 4852 | |
| 4853 | Patch 7.4.741 |
| 4854 | Problem: When using += with ":set" a trailing comma is not recognized. |
| 4855 | (Issue 365) |
| 4856 | Solution: Don't add a second comma. Add a test. (partly by Christian |
| 4857 | Brabandt) |
| 4858 | Files: src/option.c, src/testdir/test_set.in, src/testdir/test_set.ok, |
| 4859 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 4860 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 4861 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 4862 | |
| 4863 | Patch 7.4.742 |
| 4864 | Problem: Cannot specify a vertical split when loading a buffer for a |
| 4865 | quickfix command. |
| 4866 | Solution: Add the "vsplit" value to 'switchbuf'. (Brook Hong) |
| 4867 | Files: runtime/doc/options.txt, src/buffer.c, src/option.h |
| 4868 | |
| 4869 | Patch 7.4.743 |
| 4870 | Problem: "p" in Visual mode causes an unexpected line split. |
| 4871 | Solution: Advance the cursor first. (Yukihiro Nakadaira) |
| 4872 | Files: src/ops.c, src/testdir/test94.in, src/testdir/test94.ok |
| 4873 | |
| 4874 | Patch 7.4.744 |
| 4875 | Problem: No tests for Ruby and Perl. |
| 4876 | Solution: Add minimal tests. (Ken Takata) |
| 4877 | Files: src/testdir/test_perl.in, src/testdir/test_perl.ok, |
| 4878 | src/testdir/test_ruby.in, src/testdir/test_ruby.ok, |
| 4879 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 4880 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 4881 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 4882 | |
| 4883 | Patch 7.4.745 |
| 4884 | Problem: The entries added by matchaddpos() are returned by getmatches() |
| 4885 | but can't be set with setmatches(). (Lcd) |
| 4886 | Solution: Fix setmatches(). (Christian Brabandt) |
| 4887 | Files: src/eval.c, src/testdir/test63.in, src/testdir/test63.ok |
| 4888 | |
| 4889 | Patch 7.4.746 |
| 4890 | Problem: ":[count]tag" is not always working. (cs86661) |
| 4891 | Solution: Set cur_match a bit later. (Hirohito Higashi) |
| 4892 | Files: src/tag.c, |
| 4893 | |
| 4894 | Patch 7.4.747 |
| 4895 | Problem: ":cnext" may jump to the wrong column when setting |
| 4896 | 'virtualedit=all' (cs86661) |
| 4897 | Solution: Reset the coladd field. (Hirohito Higashi) |
| 4898 | Files: src/quickfix.c |
| 4899 | |
| 4900 | Patch 7.4.748 (after 7.4.745) |
| 4901 | Problem: Buffer overflow. |
| 4902 | Solution: Make the buffer larger. (Kazunobu Kuriyama) |
| 4903 | Files: src/eval.c |
| 4904 | |
| 4905 | Patch 7.4.749 (after 7.4.741) |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 4906 | Problem: For some options two consecutive commas are OK. (Nikolai Pavlov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 4907 | Solution: Add the P_ONECOMMA flag. |
| 4908 | Files: src/option.c |
| 4909 | |
| 4910 | Patch 7.4.750 |
| 4911 | Problem: Cannot build with clang 3.5 on Cygwin with perl enabled. |
| 4912 | Solution: Strip "-fdebug-prefix-map" in configure. (Ken Takata) |
| 4913 | Files: src/configure.in, src/auto/configure |
| 4914 | |
| 4915 | Patch 7.4.751 |
| 4916 | Problem: It is not obvious how to enable the address sanitizer. |
| 4917 | Solution: Add commented-out flags in the Makefile. (Dominique Pelle) |
| 4918 | Also add missing test targets. |
| 4919 | Files: src/Makefile |
| 4920 | |
| 4921 | Patch 7.4.752 |
| 4922 | Problem: Unicode 8.0 not supported. |
| 4923 | Solution: Update tables for Unicode 8.0. Avoid E36 when running the script. |
| 4924 | (James McCoy) |
| 4925 | Files: runtime/tools/unicode.vim, src/mbyte.c |
| 4926 | |
| 4927 | Patch 7.4.753 |
| 4928 | Problem: Appending in Visual mode with 'linebreak' set does not work |
| 4929 | properly. Also when 'selection' is "exclusive". (Ingo Karkat) |
| 4930 | Solution: Recalculate virtual columns. (Christian Brabandt) |
| 4931 | Files: src/normal.c, src/testdir/test_listlbr.in, |
| 4932 | src/testdir/test_listlbr.ok, src/testdir/test_listlbr_utf8.in, |
| 4933 | src/testdir/test_listlbr_utf8.ok |
| 4934 | |
| 4935 | Patch 7.4.754 |
| 4936 | Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson) |
| 4937 | Solution: Make it increment all numbers in the Visual area. (Christian |
| 4938 | Brabandt) |
| 4939 | Files: runtime/doc/change.txt, src/normal.c, src/ops.c, |
| 4940 | src/proto/ops.pro, src/testdir/Make_amiga.mak, |
| 4941 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 4942 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 4943 | src/testdir/Makefile, src/testdir/test_increment.in, |
| 4944 | src/testdir/test_increment.ok |
| 4945 | |
| 4946 | Patch 7.4.755 |
| 4947 | Problem: It is not easy to count the number of characters. |
| 4948 | Solution: Add the skipcc argument to strchars(). (Hirohito Higashi, Ken |
| 4949 | Takata) |
| 4950 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_utf8.in, |
| 4951 | src/testdir/test_utf8.ok |
| 4952 | |
| 4953 | Patch 7.4.756 |
| 4954 | Problem: Can't use strawberry Perl 5.22 x64 on MS-Windows. |
| 4955 | Solution: Add new defines and #if. (Ken Takata) |
| 4956 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak, src/if_perl.xs |
| 4957 | |
| 4958 | Patch 7.4.757 |
| 4959 | Problem: Cannot detect the background color of a terminal. |
| 4960 | Solution: Add T_RBG to request the background color if possible. (Lubomir |
| 4961 | Rintel) |
| 4962 | Files: src/main.c, src/term.c, src/term.h, src/proto/term.pro |
| 4963 | |
| 4964 | Patch 7.4.758 |
| 4965 | Problem: When 'conceallevel' is 1 and quitting the command-line window with |
| 4966 | CTRL-C the first character ':' is erased. |
| 4967 | Solution: Reset 'conceallevel' in the command-line window. (Hirohito |
| 4968 | Higashi) |
| 4969 | Files: src/ex_getln.c |
| 4970 | |
| 4971 | Patch 7.4.759 |
| 4972 | Problem: Building with Lua 5.3 doesn't work, symbols have changed. |
| 4973 | Solution: Use the new names for the new version. (Felix Schnizlein) |
| 4974 | Files: src/if_lua.c |
| 4975 | |
| 4976 | Patch 7.4.760 |
| 4977 | Problem: Spelling mistakes are not displayed after ":syn spell". |
| 4978 | Solution: Force a redraw after ":syn spell" command. (Christian Brabandt) |
| 4979 | Files: src/syntax.c |
| 4980 | |
| 4981 | Patch 7.4.761 (after 7.4.757) |
| 4982 | Problem: The request-background termcode implementation is incomplete. |
| 4983 | Solution: Add the missing pieces. |
| 4984 | Files: src/option.c, src/term.c |
| 4985 | |
| 4986 | Patch 7.4.762 (after 7.4.757) |
| 4987 | Problem: Comment for may_req_bg_color() is wrong. (Christ van Willegen) |
| 4988 | Solution: Rewrite the comment. |
| 4989 | Files: src/term.c |
| 4990 | |
| 4991 | Patch 7.4.763 (after 7.4.759) |
| 4992 | Problem: Building with Lua 5.1 doesn't work. |
| 4993 | Solution: Define lua_replace and lua_remove. (KF Leong) |
| 4994 | Files: src/if_lua.c |
| 4995 | |
| 4996 | Patch 7.4.764 (after 7.4.754) |
| 4997 | Problem: test_increment fails on MS-Windows. (Ken Takata) |
| 4998 | Solution: Clear Visual mappings. (Taro Muraoka) |
| 4999 | Files: src/testdir/test_increment.in |
| 5000 | |
| 5001 | Patch 7.4.765 (after 7.4.754) |
| 5002 | Problem: CTRL-A and CTRL-X in Visual mode do not always work well. |
| 5003 | Solution: Improvements for increment and decrement. (Christian Brabandt) |
| 5004 | Files: src/normal.c, src/ops.c, src/testdir/test_increment.in, |
| 5005 | src/testdir/test_increment.ok |
| 5006 | |
| 5007 | Patch 7.4.766 (after 7.4.757) |
| 5008 | Problem: Background color check does not work on Tera Term. |
| 5009 | Solution: Also recognize ST as a termination character. (Hirohito Higashi) |
| 5010 | Files: src/term.c |
| 5011 | |
| 5012 | Patch 7.4.767 |
| 5013 | Problem: --remote-tab-silent can fail on MS-Windows. |
| 5014 | Solution: Use single quotes to avoid problems with backslashes. (Idea by |
| 5015 | Weiyong Mao) |
| 5016 | Files: src/main.c |
| 5017 | |
| 5018 | Patch 7.4.768 |
| 5019 | Problem: :diffoff only works properly once. |
| 5020 | Solution: Also make :diffoff work when used a second time. (Olaf Dabrunz) |
| 5021 | Files: src/diff.c |
| 5022 | |
| 5023 | Patch 7.4.769 (after 7.4 768) |
| 5024 | Problem: Behavior of :diffoff is not tested. |
| 5025 | Solution: Add a bit of testing. (Olaf Dabrunz) |
| 5026 | Files: src/testdir/test47.in, src/testdir/test47.ok |
| 5027 | |
| 5028 | Patch 7.4.770 (after 7.4.766) |
| 5029 | Problem: Background color response with transparency is not ignored. |
| 5030 | Solution: Change the way escape sequences are recognized. (partly by |
| 5031 | Hirohito Higashi) |
| 5032 | Files: src/ascii.h, src/term.c |
| 5033 | |
| 5034 | Patch 7.4.771 |
| 5035 | Problem: Search does not handle multi-byte character at the start position |
| 5036 | correctly. |
| 5037 | Solution: Take byte size of character into account. (Yukihiro Nakadaira) |
| 5038 | Files: src/search.c, src/testdir/Make_amiga.mak, |
| 5039 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 5040 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 5041 | src/testdir/Makefile, src/testdir/test_search_mbyte.in, |
| 5042 | src/testdir/test_search_mbyte.ok |
| 5043 | |
| 5044 | Patch 7.4.772 |
| 5045 | Problem: Racket 6.2 is not supported on MS-Windows. |
| 5046 | Solution: Check for the "racket" subdirectory. (Weiyong Mao) |
| 5047 | Files: src/Make_mvc.mak, src/if_mzsch.c |
| 5048 | |
| 5049 | Patch 7.4.773 |
| 5050 | Problem: 'langmap' is used in command-line mode when checking for mappings. |
| 5051 | Issue 376. |
| 5052 | Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez) |
| 5053 | Files: src/getchar.c, src/testdir/test_mapping.in, |
| 5054 | src/testdir/test_mapping.ok |
| 5055 | |
| 5056 | Patch 7.4.774 |
| 5057 | Problem: When using the CompleteDone autocommand event it's difficult to |
| 5058 | get to the completed items. |
| 5059 | Solution: Add the v:completed_items variable. (Shougo Matsu) |
| 5060 | Files: runtime/doc/autocmd.txt, runtime/doc/eval.txt, src/edit.c, |
| 5061 | src/eval.c, src/macros.h, src/proto/eval.pro, src/vim.h |
| 5062 | |
| 5063 | Patch 7.4.775 |
| 5064 | Problem: It is not possible to avoid using the first item of completion. |
| 5065 | Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo |
| 5066 | Matsu) |
| 5067 | Files: runtime/doc/options.txt, src/edit.c, src/option.c |
| 5068 | |
| 5069 | Patch 7.4.776 |
| 5070 | Problem: Equivalence class for 'd' does not work correctly. |
| 5071 | Solution: Fix 0x1e0f and 0x1d0b. (Dominique Pelle) |
| 5072 | Files: src/regexp.c, src/regexp_nfa.c |
| 5073 | |
| 5074 | Patch 7.4.777 |
| 5075 | Problem: The README file doesn't look nice on github. |
| 5076 | Solution: Add a markdown version of the README file. |
| 5077 | Files: Filelist, README.md |
| 5078 | |
| 5079 | Patch 7.4.778 |
| 5080 | Problem: Coverity warns for uninitialized variable. |
| 5081 | Solution: Change condition of assignment. |
| 5082 | Files: src/ops.c |
| 5083 | |
| 5084 | Patch 7.4.779 |
| 5085 | Problem: Using CTRL-A in a line without a number moves the cursor. May |
| 5086 | cause a crash when at the start of the line. (Urtica Dioica) |
| 5087 | Solution: Do not move the cursor if no number was changed. |
| 5088 | Files: src/ops.c |
| 5089 | |
| 5090 | Patch 7.4.780 |
| 5091 | Problem: Compiler complains about uninitialized variable and clobbered |
| 5092 | variables. |
| 5093 | Solution: Add Initialization. Make variables static. |
| 5094 | Files: src/ops.c, src/main.c |
| 5095 | |
| 5096 | Patch 7.4.781 |
| 5097 | Problem: line2byte() returns one less when 'bin' and 'noeol' are set. |
| 5098 | Solution: Only adjust the size for the last line. (Rob Wu) |
| 5099 | Files: src/memline.c |
| 5100 | |
| 5101 | Patch 7.4.782 |
| 5102 | Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode. |
| 5103 | Solution: Fix the reported problems. (Christian Brabandt) |
| 5104 | Files: src/charset.c, src/eval.c, src/ex_cmds.c, src/ex_getln.c, |
| 5105 | src/misc2.c, src/normal.c, src/ops.c, src/option.c, |
| 5106 | src/proto/charset.pro, src/testdir/test_increment.in, |
| 5107 | src/testdir/test_increment.ok |
| 5108 | |
| 5109 | Patch 7.4.783 |
| 5110 | Problem: copy_chars() and copy_spaces() are inefficient. |
| 5111 | Solution: Use memset() instead. (Dominique Pelle) |
| 5112 | Files: src/ex_getln.c, src/misc2.c, src/ops.c, src/proto/misc2.pro, |
| 5113 | src/screen.c |
| 5114 | |
| 5115 | Patch 7.4.784 |
| 5116 | Problem: Using both "noinsert" and "noselect" in 'completeopt' does not |
| 5117 | work properly. |
| 5118 | Solution: Change the ins_complete() calls. (Ozaki Kiichi) |
| 5119 | Files: src/edit.c |
| 5120 | |
| 5121 | Patch 7.4.785 |
| 5122 | Problem: On some systems automatically adding the missing EOL causes |
| 5123 | problems. Setting 'binary' has too many side effects. |
| 5124 | Solution: Add the 'fixeol' option, default on. (Pavel Samarkin) |
| 5125 | Files: src/buffer.c, src/fileio.c, src/memline.c, src/netbeans.c, |
| 5126 | src/ops.c, src/option.c, src/option.h, src/os_unix.c, |
| 5127 | src/os_win32.c, src/structs.h, src/testdir/Make_amiga.mak, |
| 5128 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 5129 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 5130 | src/testdir/Makefile, src/testdir/test_fixeol.in, |
| 5131 | src/testdir/test_fixeol.ok, runtime/doc/options.txt, |
| 5132 | runtime/optwin.vim |
| 5133 | |
| 5134 | Patch 7.4.786 |
| 5135 | Problem: It is not possible for a plugin to adjust to a changed setting. |
| 5136 | Solution: Add the OptionSet autocommand event. (Christian Brabandt) |
| 5137 | Files: runtime/doc/autocmd.txt, runtime/doc/eval.txt, src/eval.c, |
| 5138 | src/fileio.c, src/option.c, src/proto/eval.pro, |
| 5139 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 5140 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 5141 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 5142 | src/testdir/test_autocmd_option.in, |
| 5143 | src/testdir/test_autocmd_option.ok, src/vim.h |
| 5144 | |
| 5145 | Patch 7.4.787 (after 7.4.786) |
| 5146 | Problem: snprintf() isn't available everywhere. |
| 5147 | Solution: Use vim_snprintf(). (Ken Takata) |
| 5148 | Files: src/option.c |
| 5149 | |
| 5150 | Patch 7.4.788 (after 7.4.787) |
| 5151 | Problem: Can't build without the crypt feature. (John Marriott) |
| 5152 | Solution: Add #ifdef's. |
| 5153 | Files: src/option.c |
| 5154 | |
| 5155 | Patch 7.4.789 (after 7.4.788) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5156 | Problem: Using freed memory and crash. (Dominique Pelle) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5157 | Solution: Correct use of pointers. (Hirohito Higashi) |
| 5158 | Files: src/option.c |
| 5159 | |
| 5160 | Patch 7.4.790 (after 7.4.786) |
| 5161 | Problem: Test fails when the autochdir feature is not available. Test |
| 5162 | output contains the test script. |
| 5163 | Solution: Check for the autochdir feature. (Kazunobu Kuriyama) Only write |
| 5164 | the relevant test output. |
| 5165 | Files: src/testdir/test_autocmd_option.in, |
| 5166 | src/testdir/test_autocmd_option.ok |
| 5167 | |
| 5168 | Patch 7.4.791 |
| 5169 | Problem: The buffer list can be very long. |
| 5170 | Solution: Add an argument to ":ls" to specify the type of buffer to list. |
| 5171 | (Marcin Szamotulski) |
| 5172 | Files: runtime/doc/windows.txt, src/buffer.c, src/ex_cmds.h |
| 5173 | |
| 5174 | Patch 7.4.792 |
| 5175 | Problem: Can only conceal text by defining syntax items. |
| 5176 | Solution: Use matchadd() to define concealing. (Christian Brabandt) |
| 5177 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_docmd.c, |
| 5178 | src/proto/window.pro, src/screen.c, src/structs.h, |
| 5179 | src/testdir/Make_amiga.mak, |
| 5180 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 5181 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 5182 | src/testdir/Makefile, src/testdir/test_match_conceal.in, |
| 5183 | src/testdir/test_match_conceal.ok, src/window.c |
| 5184 | |
| 5185 | Patch 7.4.793 |
| 5186 | Problem: Can't specify when not to ring the bell. |
| 5187 | Solution: Add the 'belloff' option. (Christian Brabandt) |
| 5188 | Files: runtime/doc/options.txt, src/edit.c, src/ex_getln.c, |
| 5189 | src/hangulin.c, src/if_lua.c, src/if_mzsch.c, src/if_tcl.c, |
| 5190 | src/message.c, src/misc1.c, src/normal.c, src/option.c, |
| 5191 | src/option.h, src/proto/misc1.pro, src/search.c, src/spell.c |
| 5192 | |
| 5193 | Patch 7.4.794 |
| 5194 | Problem: Visual Studio 2015 is not recognized. |
| 5195 | Solution: Add the version numbers to the makefile. (Taro Muraoka) |
| 5196 | Files: src/Make_mvc.mak |
| 5197 | |
| 5198 | Patch 7.4.795 |
| 5199 | Problem: The 'fixeol' option is not copied to a new window. |
| 5200 | Solution: Copy the option value. (Yasuhiro Matsumoto) |
| 5201 | Files: src/option.c |
| 5202 | |
| 5203 | Patch 7.4.796 |
| 5204 | Problem: Warning from 64 bit compiler. |
| 5205 | Solution: Add type cast. (Mike Williams) |
| 5206 | Files: src/ops.c |
| 5207 | |
| 5208 | Patch 7.4.797 |
| 5209 | Problem: Crash when using more lines for the command line than |
| 5210 | 'maxcombine'. |
| 5211 | Solution: Use the correct array index. Also, do not try redrawing when |
| 5212 | exiting. And use screen_Columns instead of Columns. |
| 5213 | Files: src/screen.c |
| 5214 | |
| 5215 | Patch 7.4.798 (after 7.4.753) |
| 5216 | Problem: Repeating a change in Visual mode does not work as expected. |
| 5217 | (Urtica Dioica) |
| 5218 | Solution: Make redo in Visual mode work better. (Christian Brabandt) |
| 5219 | Files: src/normal.c, src/testdir/test_listlbr.in, |
| 5220 | src/testdir/test_listlbr.ok |
| 5221 | |
| 5222 | Patch 7.4.799 |
| 5223 | Problem: Accessing memory before an allocated block. |
| 5224 | Solution: Check for not going before the start of a pattern. (Dominique |
| 5225 | Pelle) |
| 5226 | Files: src/fileio.c |
| 5227 | |
| 5228 | Patch 7.4.800 |
| 5229 | Problem: Using freed memory when triggering CmdUndefined autocommands. |
| 5230 | Solution: Set pointer to NULL. (Dominique Pelle) |
| 5231 | Files: src/ex_docmd.c |
| 5232 | |
| 5233 | Patch 7.4.801 (after 7.4.769) |
| 5234 | Problem: Test for ":diffoff" doesn't catch all potential problems. |
| 5235 | Solution: Add a :diffthis and a :diffoff command. (Olaf Dabrunz) |
| 5236 | Files: src/testdir/test47.in |
| 5237 | |
| 5238 | Patch 7.4.802 |
| 5239 | Problem: Using "A" in Visual mode while 'linebreak' is set is not tested. |
| 5240 | Solution: Add a test for this, verifies the problem is fixed. (Ingo Karkat) |
| 5241 | Files: src/testdir/test39.in, src/testdir/test39.ok |
| 5242 | |
| 5243 | Patch 7.4.803 |
| 5244 | Problem: C indent does not support C11 raw strings. (Mark Lodato) |
| 5245 | Solution: Do not change indent inside the raw string. |
| 5246 | Files: src/search.c, src/misc1.c, src/edit.c, src/ops.c, |
| 5247 | src/testdir/test3.in, src/testdir/test3.ok |
| 5248 | |
| 5249 | Patch 7.4.804 |
| 5250 | Problem: Xxd doesn't have a license notice. |
| 5251 | Solution: Add license as indicated by Juergen. |
| 5252 | Files: src/xxd/xxd.c |
| 5253 | |
| 5254 | Patch 7.4.805 |
| 5255 | Problem: The ruler shows "Bot" even when there are only filler lines |
| 5256 | missing. (Gary Johnson) |
| 5257 | Solution: Use "All" when the first line and one filler line are visible. |
| 5258 | Files: src/buffer.c |
| 5259 | |
| 5260 | Patch 7.4.806 |
| 5261 | 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] | 5262 | 'nrformats'. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5263 | Solution: Make it work. (Christian Brabandt) |
| 5264 | Files: src/ops.c, src/testdir/test_increment.in, |
| 5265 | src/testdir/test_increment.ok |
| 5266 | |
| 5267 | Patch 7.4.807 (after 7.4.798) |
| 5268 | Problem: After CTRL-V CTRL-A mode isn't updated. (Hirohito Higashi) |
| 5269 | Solution: Clear the command line or update the displayed command. |
| 5270 | Files: src/normal.c |
| 5271 | |
| 5272 | Patch 7.4.808 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5273 | Problem: On MS-Windows 8 IME input doesn't work correctly. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5274 | Solution: Read console input before calling MsgWaitForMultipleObjects(). |
| 5275 | (vim-jp, Nobuhiro Takasaki) |
| 5276 | Files: src/os_win32.c |
| 5277 | |
| 5278 | Patch 7.4.809 (after 7.4.802) |
| 5279 | Problem: Test is duplicated. |
| 5280 | Solution: Roll back 7.4.802. |
| 5281 | Files: src/testdir/test39.in, src/testdir/test39.ok |
| 5282 | |
| 5283 | Patch 7.4.810 |
| 5284 | Problem: With a sequence of commands using buffers in diff mode E749 is |
| 5285 | given. (itchyny) |
| 5286 | Solution: Skip unloaded buffer. (Hirohito Higashi) |
| 5287 | Files: src/diff.c |
| 5288 | |
| 5289 | Patch 7.4.811 |
| 5290 | Problem: Invalid memory access when using "exe 'sc'". |
| 5291 | Solution: Avoid going over the end of the string. (Dominique Pelle) |
| 5292 | Files: src/ex_docmd.c |
| 5293 | |
| 5294 | Patch 7.4.812 |
| 5295 | Problem: Gcc sanitizer complains about using a NULL pointer to memmove(). |
| 5296 | Solution: Only call memmove when there is something to move. (Vittorio |
| 5297 | Zecca) |
| 5298 | Files: src/memline.c |
| 5299 | |
| 5300 | Patch 7.4.813 |
| 5301 | Problem: It is not possible to save and restore character search state. |
| 5302 | Solution: Add getcharsearch() and setcharsearch(). (James McCoy) |
| 5303 | Files: runtime/doc/eval.txt, src/eval.c, src/proto/search.pro, |
| 5304 | src/search.c, src/testdir/test_charsearch.in, |
| 5305 | src/testdir/test_charsearch.ok, src/testdir/Makefile, |
| 5306 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 5307 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 5308 | src/testdir/Make_vms.mms |
| 5309 | |
| 5310 | Patch 7.4.814 |
| 5311 | Problem: Illegal memory access with "sy match a fold". |
| 5312 | Solution: Check for empty string. (Dominique Pelle) |
| 5313 | Files: src/syntax.c |
| 5314 | |
| 5315 | Patch 7.4.815 |
| 5316 | Problem: Invalid memory access when doing ":call g:". |
| 5317 | Solution: Check for an empty name. (Dominique Pelle) |
| 5318 | Files: src/eval.c |
| 5319 | |
| 5320 | Patch 7.4.816 |
| 5321 | Problem: Invalid memory access when doing ":fun X(". |
| 5322 | Solution: Check for missing ')'. (Dominique Pelle) |
| 5323 | Files: src/eval.c |
| 5324 | |
| 5325 | Patch 7.4.817 |
| 5326 | Problem: Invalid memory access in file_pat_to_reg_pat(). |
| 5327 | Solution: Use vim_isspace() instead of checking for a space only. (Dominique |
| 5328 | Pelle) |
| 5329 | Files: src/fileio.c |
| 5330 | |
| 5331 | Patch 7.4.818 |
| 5332 | Problem: 'linebreak' breaks c% if the last Visual selection was block. |
| 5333 | (Chris Morganiser, Issue 389) |
| 5334 | Solution: Handle Visual block mode differently. (Christian Brabandt) |
| 5335 | Files: src/normal.c, src/testdir/test_listlbr.in, |
| 5336 | src/testdir/test_listlbr.ok |
| 5337 | |
| 5338 | Patch 7.4.819 |
| 5339 | Problem: Beeping when running the tests. |
| 5340 | Solution: Fix 41 beeps. (Roland Eggner) |
| 5341 | Files: src/testdir/test17.in, src/testdir/test29.in, |
| 5342 | src/testdir/test4.in, src/testdir/test61.in, |
| 5343 | src/testdir/test82.in, src/testdir/test83.in, |
| 5344 | src/testdir/test90.in, src/testdir/test95.in, |
| 5345 | src/testdir/test_autoformat_join.in |
| 5346 | |
| 5347 | Patch 7.4.820 |
| 5348 | Problem: Invalid memory access in file_pat_to_reg_pat. |
| 5349 | Solution: Avoid looking before the start of a string. (Dominique Pelle) |
| 5350 | Files: src/fileio.c |
| 5351 | |
| 5352 | Patch 7.4.821 |
| 5353 | Problem: Coverity reports a few problems. |
| 5354 | Solution: Avoid the warnings. (Christian Brabandt) |
| 5355 | Files: src/ex_docmd.c, src/option.c, src/screen.c |
| 5356 | |
| 5357 | Patch 7.4.822 |
| 5358 | Problem: More problems reported by coverity. |
| 5359 | Solution: Avoid the warnings. (Christian Brabandt) |
| 5360 | Files: src/os_unix.c, src/eval.c, src/ex_cmds.c, src/ex_cmds2.c, |
| 5361 | src/ex_getln.c, src/fold.c, src/gui.c, src/gui_w16.c, |
| 5362 | src/gui_w32.c, src/if_cscope.c, src/if_xcmdsrv.c, src/move.c, |
| 5363 | src/normal.c, src/regexp.c, src/syntax.c, src/ui.c, src/window.c |
| 5364 | |
| 5365 | Patch 7.4.823 |
| 5366 | Problem: Cursor moves after CTRL-A on alphabetic character. |
| 5367 | Solution: (Hirohito Higashi, test by Christian Brabandt) |
| 5368 | Files: src/testdir/test_increment.in, src/testdir/test_increment.ok, |
| 5369 | src/ops.c |
| 5370 | |
| 5371 | Patch 7.4.824 (after 7.4.813) |
| 5372 | Problem: Can't compile without the multi-byte feature. (John Marriott) |
| 5373 | Solution: Add #ifdef. |
| 5374 | Files: src/eval.c |
| 5375 | |
| 5376 | Patch 7.4.825 |
| 5377 | Problem: Invalid memory access for ":syn keyword x a[". |
| 5378 | Solution: Do not skip over the NUL. (Dominique Pelle) |
| 5379 | Files: src/syntax.c |
| 5380 | |
| 5381 | Patch 7.4.826 |
| 5382 | Problem: Compiler warnings and errors. |
| 5383 | Solution: Make it build properly without the multi-byte feature. |
| 5384 | Files: src/eval.c, src/search.c |
| 5385 | |
| 5386 | Patch 7.4.827 |
| 5387 | Problem: Not all test targets are in the Makefile. |
| 5388 | Solution: Add the missing targets. |
| 5389 | Files: src/Makefile |
| 5390 | |
| 5391 | Patch 7.4.828 |
| 5392 | Problem: Crash when using "syn keyword x c". (Dominique Pelle) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5393 | Solution: Initialize the keyword table. (Raymond Ko, PR 397) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5394 | Files: src/syntax.c |
| 5395 | |
| 5396 | Patch 7.4.829 |
| 5397 | Problem: Crash when clicking in beval balloon. (Travis Lebsock) |
| 5398 | Solution: Use PostMessage() instead of DestroyWindow(). (Raymond Ko, PR 298) |
| 5399 | Files: src/gui_w32.c |
| 5400 | |
| 5401 | Patch 7.4.830 |
| 5402 | Problem: Resetting 'encoding' when doing ":set all&" causes problems. |
| 5403 | (Bjorn Linse) Display is not updated. |
| 5404 | Solution: Do not reset 'encoding'. Do a full redraw. |
| 5405 | Files: src/option.c |
| 5406 | |
| 5407 | Patch 7.4.831 |
| 5408 | Problem: When expanding `=expr` on the command line and encountering an |
| 5409 | error, the command is executed anyway. |
| 5410 | Solution: Bail out when an error is detected. |
| 5411 | Files: src/misc1.c |
| 5412 | |
| 5413 | Patch 7.4.832 |
| 5414 | Problem: $HOME in `=$HOME . '/.vimrc'` is expanded too early. |
| 5415 | Solution: Skip over `=expr` when expanding environment names. |
| 5416 | Files: src/misc1.c |
| 5417 | |
| 5418 | Patch 7.4.833 |
| 5419 | Problem: More side effects of ":set all&" are missing. (Björn Linse) |
| 5420 | Solution: Call didset_options() and add didset_options2() to collect more |
| 5421 | side effects to take care of. Still not everything... |
| 5422 | Files: src/option.c |
| 5423 | |
| 5424 | Patch 7.4.834 |
| 5425 | Problem: gettabvar() doesn't work after Vim start. (Szymon Wrozynski) |
| 5426 | Solution: Handle first window in tab still being NULL. (Christian Brabandt) |
| 5427 | Files: src/eval.c, src/testdir/test91.in, src/testdir/test91.ok |
| 5428 | |
| 5429 | Patch 7.4.835 |
| 5430 | Problem: Comparing utf-8 sequences does not handle different byte sizes |
| 5431 | correctly. |
| 5432 | Solution: Get the byte size of each character. (Dominique Pelle) |
| 5433 | Files: src/misc2.c |
| 5434 | |
| 5435 | Patch 7.4.836 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5436 | Problem: Accessing uninitialized memory. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5437 | Solution: Add missing calls to init_tv(). (Dominique Pelle) |
| 5438 | Files: src/eval.c |
| 5439 | |
| 5440 | Patch 7.4.837 |
| 5441 | Problem: Compiler warning with MSVC compiler when using +sniff. |
| 5442 | Solution: Use Sleep() instead of _sleep(). (Tux) |
| 5443 | Files: src/if_sniff.c |
| 5444 | |
| 5445 | Patch 7.4.838 (after 7.4.833) |
| 5446 | Problem: Can't compile without the crypt feature. (John Marriott) |
| 5447 | Solution: Add #ifdef. |
| 5448 | Files: src/option.c |
| 5449 | |
| 5450 | Patch 7.4.839 |
| 5451 | Problem: Compiler warning on 64-bit system. |
| 5452 | Solution: Add cast to int. (Mike Williams) |
| 5453 | Files: src/search.c |
| 5454 | |
| 5455 | Patch 7.4.840 (after 7.4.829) |
| 5456 | Problem: Tooltip window stays open. |
| 5457 | Solution: Send a WM_CLOSE message. (Jurgen Kramer) |
| 5458 | Files: src/gui_w32.c |
| 5459 | |
| 5460 | Patch 7.4.841 |
| 5461 | Problem: Can't compile without the multi-byte feature. (John Marriott) |
| 5462 | Solution: Add more #ifdef's. |
| 5463 | Files: src/option.c |
| 5464 | |
| 5465 | Patch 7.4.842 (after 7.4.840) |
| 5466 | Problem: Sending too many messages to close the balloon. |
| 5467 | Solution: Only send a WM_CLOSE message. (Jurgen Kramer) |
| 5468 | Files: src/gui_w32.c |
| 5469 | |
| 5470 | Patch 7.4.843 (after 7.4.835) |
| 5471 | Problem: Still possible to go beyond the end of a string. |
| 5472 | Solution: Check for NUL also in second string. (Dominique Pelle) |
| 5473 | Files: src/misc2.c |
| 5474 | |
| 5475 | Patch 7.4.844 |
| 5476 | Problem: When '#' is in 'isident' the is# comparator doesn't work. |
| 5477 | Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto) |
| 5478 | Files: src/eval.c, src/testdir/test_comparators.in, |
| 5479 | src/testdir/test_comparators.ok, src/testdir/Makefile, |
| 5480 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 5481 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 5482 | src/testdir/Make_vms.mms |
| 5483 | |
| 5484 | Patch 7.4.845 |
| 5485 | Problem: Compiler warning for possible loss of data. |
| 5486 | Solution: Add a type cast. (Erich Ritz) |
| 5487 | Files: src/misc1.c |
| 5488 | |
| 5489 | Patch 7.4.846 |
| 5490 | Problem: Some GitHub users don't know how to use issues. |
| 5491 | Solution: Add a file that explains the basics of contributing. |
| 5492 | Files: Filelist, CONTRIBUTING.md |
| 5493 | |
| 5494 | Patch 7.4.847 |
| 5495 | Problem: "vi)d" may leave a character behind. |
| 5496 | Solution: Skip over multi-byte character. (Christian Brabandt) |
| 5497 | Files: src/search.c |
| 5498 | |
| 5499 | Patch 7.4.848 |
| 5500 | Problem: CTRL-A on hex number in Visual block mode is incorrect. |
| 5501 | Solution: Account for the "0x". (Hirohito Higashi) |
| 5502 | Files: src/charset.c, src/testdir/test_increment.in, |
| 5503 | src/testdir/test_increment.ok |
| 5504 | |
| 5505 | Patch 7.4.849 |
| 5506 | Problem: Moving the cursor in Insert mode starts new undo sequence. |
| 5507 | Solution: Add CTRL-G U to keep the undo sequence for the following cursor |
| 5508 | movement command. (Christian Brabandt) |
| 5509 | Files: runtime/doc/insert.txt, src/edit.c, src/testdir/test_mapping.in, |
| 5510 | src/testdir/test_mapping.ok |
| 5511 | |
| 5512 | Patch 7.4.850 (after 7.4.846) |
| 5513 | Problem: <Esc> does not show up. |
| 5514 | Solution: Use > and <. (Kazunobu Kuriyama) |
| 5515 | Files: CONTRIBUTING.md |
| 5516 | |
| 5517 | Patch 7.4.851 |
| 5518 | Problem: Saving and restoring the console buffer does not work properly. |
| 5519 | Solution: Instead of ReadConsoleOutputA/WriteConsoleOutputA use |
| 5520 | CreateConsoleScreenBuffer and SetConsoleActiveScreenBuffer. |
| 5521 | (Ken Takata) |
| 5522 | Files: src/os_win32.c |
| 5523 | |
| 5524 | Patch 7.4.852 |
| 5525 | Problem: On MS-Windows console Vim uses ANSI APIs for keyboard input and |
| 5526 | console output, it cannot input/output Unicode characters. |
| 5527 | Solution: Use Unicode APIs for console I/O. (Ken Takata, Yasuhiro Matsumoto) |
| 5528 | Files: src/os_win32.c, src/ui.c, runtime/doc/options.txt |
| 5529 | |
| 5530 | Patch 7.4.853 |
| 5531 | Problem: "zt" in diff mode does not always work properly. (Gary Johnson) |
| 5532 | Solution: Don't count filler lines twice. (Christian Brabandt) |
| 5533 | Files: src/move.c |
| 5534 | |
| 5535 | Patch 7.4.854 (after 7.4.850) |
| 5536 | Problem: Missing information about runtime files. |
| 5537 | Solution: Add section about runtime files. (Christian Brabandt) |
| 5538 | Files: CONTRIBUTING.md |
| 5539 | |
| 5540 | Patch 7.4.855 |
| 5541 | Problem: GTK: font glitches for combining characters |
| 5542 | Solution: Use pango_shape_full() instead of pango_shape(). (luchr, PR #393) |
| 5543 | Files: src/gui_gtk_x11.c |
| 5544 | |
| 5545 | Patch 7.4.856 |
| 5546 | Problem: "zt" still doesn't work well with filler lines. (Gary Johnson) |
| 5547 | Solution: Check for filler lines above the cursor. (Christian Brabandt) |
| 5548 | Files: src/move.c |
| 5549 | |
| 5550 | Patch 7.4.857 |
| 5551 | Problem: Dragging the current tab with the mouse doesn't work properly. |
| 5552 | Solution: Take the current tabpage index into account. (Hirohito Higashi) |
| 5553 | Files: src/normal.c |
| 5554 | |
| 5555 | Patch 7.4.858 |
| 5556 | Problem: It's a bit clumsy to execute a command on a list of matches. |
| 5557 | Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan |
| 5558 | Lakshmanan) |
| 5559 | Files: runtime/doc/cmdline.txt, runtime/doc/editing.txt, |
| 5560 | runtime/doc/index.txt, runtime/doc/quickfix.txt, |
| 5561 | runtime/doc/tabpage.txt, runtime/doc/windows.txt, src/ex_cmds.h, |
| 5562 | src/ex_cmds2.c, src/ex_docmd.c, src/proto/quickfix.pro, |
| 5563 | src/quickfix.c, src/testdir/Make_amiga.mak, |
| 5564 | src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 5565 | src/testdir/Make_os2.mak, src/testdir/Make_vms.mms, |
| 5566 | src/testdir/Makefile, src/testdir/test_cdo.in, |
| 5567 | src/testdir/test_cdo.ok |
| 5568 | |
| 5569 | Patch 7.4.859 |
| 5570 | Problem: Vim doesn't recognize all htmldjango files. |
| 5571 | Solution: Recognize a comment. (Daniel Hahler, PR #410) |
| 5572 | Files: runtime/filetype.vim |
| 5573 | |
| 5574 | Patch 7.4.860 |
| 5575 | Problem: Filetype detection is outdated. |
| 5576 | Solution: Include all recent and not-so-recent changes. |
| 5577 | Files: runtime/filetype.vim |
| 5578 | |
| 5579 | Patch 7.4.861 (after 7.4.855) |
| 5580 | Problem: pango_shape_full() is not always available. |
| 5581 | Solution: Add a configure check. |
| 5582 | Files: src/configure.in, src/auto/configure, src/config.h.in, |
| 5583 | src/gui_gtk_x11.c |
| 5584 | |
| 5585 | Patch 7.4.862 (after 7.4.861) |
| 5586 | Problem: Still problems with pango_shape_full() not available. |
| 5587 | Solution: Change AC_TRY_COMPILE to AC_TRY_LINK. |
| 5588 | Files: src/configure.in, src/auto/configure |
| 5589 | |
| 5590 | Patch 7.4.863 (after 7.4.856) |
| 5591 | Problem: plines_nofill() used without the diff feature. |
| 5592 | Solution: Define PLINES_NOFILL(). |
| 5593 | Files: src/macros.h, src/move.c |
| 5594 | |
| 5595 | Patch 7.4.864 (after 7.4.858) |
| 5596 | Problem: Tiny build fails. |
| 5597 | Solution: Put qf_ items inside #ifdef. |
| 5598 | Files: src/ex_docmd.c |
| 5599 | |
| 5600 | Patch 7.4.865 |
| 5601 | Problem: Compiler warning for uninitialized variable. |
| 5602 | Solution: Initialize. |
| 5603 | Files: src/ex_cmds2.c |
| 5604 | |
| 5605 | Patch 7.4.866 |
| 5606 | Problem: Crash when changing the 'tags' option from a remote command. |
| 5607 | (Benjamin Fritz) |
| 5608 | Solution: Instead of executing messages immediately, use a queue, like for |
| 5609 | netbeans. (James Kolb) |
| 5610 | Files: src/ex_docmd.c, src/getchar.c, src/gui_gtk_x11.c, src/gui_w48.c, |
| 5611 | src/gui_x11.c, src/if_xcmdsrv.c, src/misc2.c, src/os_unix.c, |
| 5612 | src/proto/if_xcmdsrv.pro, src/proto/misc2.pro, src/macros.h |
| 5613 | |
| 5614 | Patch 7.4.867 (after 7.4.866) |
| 5615 | Problem: Can't build on MS-Windows. (Taro Muraoka) |
| 5616 | Solution: Adjust #ifdef. |
| 5617 | Files: src/misc2.c |
| 5618 | |
| 5619 | Patch 7.4.868 |
| 5620 | Problem: 'smarttab' is also effective when 'paste' is enabled. (Alexander |
| 5621 | Monakov) |
| 5622 | Solution: Disable 'smarttab' when 'paste' is set. (Christian Brabandt) |
| 5623 | Do the same for 'expandtab'. |
| 5624 | Files: src/option.c, src/structs.h |
| 5625 | |
| 5626 | Patch 7.4.869 |
| 5627 | Problem: MS-Windows: scrolling may cause text to disappear when using an |
| 5628 | Intel GPU. |
| 5629 | Solution: Call GetPixel(). (Yohei Endo) |
| 5630 | Files: src/gui_w48.c |
| 5631 | |
| 5632 | Patch 7.4.870 |
| 5633 | Problem: May get into an invalid state when using getchar() in an |
| 5634 | expression mapping. |
| 5635 | Solution: Anticipate mod_mask to change. (idea by Yukihiro Nakadaira) |
| 5636 | Files: src/getchar.c |
| 5637 | |
| 5638 | Patch 7.4.871 |
| 5639 | Problem: Vim leaks memory, when 'wildignore' filters out all matches. |
| 5640 | Solution: Free the files array when it becomes empty. |
| 5641 | Files: src/misc1.c |
| 5642 | |
| 5643 | Patch 7.4.872 |
| 5644 | Problem: Not using CI services available. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5645 | Solution: Add configuration files for travis and appveyor. (Ken Takata, |
| 5646 | vim-jp, PR #401) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5647 | Files: .travis.yml, appveyor.yml, Filelist |
| 5648 | |
| 5649 | Patch 7.4.873 (after 7.4.866) |
| 5650 | Problem: Compiler warning for unused variable. (Tony Mechelynck) |
| 5651 | Solution: Remove the variable. Also fix int vs long_u mixup. |
| 5652 | Files: src/if_xcmdsrv.c |
| 5653 | |
| 5654 | Patch 7.4.874 |
| 5655 | Problem: MS-Windows: When Vim runs inside another application, the size |
| 5656 | isn't right. |
| 5657 | Solution: When in child mode compute the size differently. (Agorgianitis |
| 5658 | Loukas) |
| 5659 | Files: src/gui_w48.c |
| 5660 | |
| 5661 | Patch 7.4.875 |
| 5662 | Problem: Not obvious how to contribute. |
| 5663 | Solution: Add a remark about CONTRIBUTING.md to README.md |
| 5664 | Files: README.md |
| 5665 | |
| 5666 | Patch 7.4.876 |
| 5667 | Problem: Windows7: when using vim.exe with msys or msys2, conhost.exe |
| 5668 | (console window provider on Windows7) will freeze or crash. |
| 5669 | Solution: Make original screen buffer active, before executing external |
| 5670 | program. And when the program is finished, revert to vim's one. |
| 5671 | (Taro Muraoka) |
| 5672 | Files: src/os_win32.c |
| 5673 | |
| 5674 | Patch 7.4.877 (after 7.4.843) |
| 5675 | Problem: ":find" sometimes fails. (Excanoe) |
| 5676 | Solution: Compare current characters instead of previous ones. |
| 5677 | Files: src/misc2.c |
| 5678 | |
| 5679 | Patch 7.4.878 |
| 5680 | Problem: Coverity error for clearing only one byte of struct. |
| 5681 | Solution: Clear the whole struct. (Dominique Pelle) |
| 5682 | Files: src/ex_docmd.c |
| 5683 | |
| 5684 | Patch 7.4.879 |
| 5685 | Problem: Can't see line numbers in nested function calls. |
| 5686 | Solution: Add line number to the file name. (Alberto Fanjul) |
| 5687 | Files: src/eval.c |
| 5688 | |
| 5689 | Patch 7.4.880 |
| 5690 | Problem: No build and coverage status. |
| 5691 | Solution: Add links to the README file. (Christian Brabandt) |
| 5692 | Files: README.md |
| 5693 | |
| 5694 | Patch 7.4.881 (after 7.4.879) |
| 5695 | Problem: Test 49 fails. |
| 5696 | Solution: Add line number to check of call stack. |
| 5697 | Files: src/testdir/test49.vim |
| 5698 | |
| 5699 | Patch 7.4.882 |
| 5700 | Problem: When leaving the command line window with CTRL-C while a |
| 5701 | completion menu is displayed the menu isn't removed. |
| 5702 | Solution: Force a screen update. (Hirohito Higashi) |
| 5703 | Files: src/edit.c |
| 5704 | |
| 5705 | Patch 7.4.883 (after 7.4.818) |
| 5706 | Problem: Block-mode replace works characterwise instead of blockwise after |
| 5707 | column 147. (Issue #422) |
| 5708 | Solution: Set Visual mode. (Christian Brabandt) |
| 5709 | Files: src/normal.c, src/testdir/test_listlbr.in, |
| 5710 | src/testdir/test_listlbr.ok |
| 5711 | |
| 5712 | Patch 7.4.884 |
| 5713 | Problem: Travis also builds on a tag push. |
| 5714 | Solution: Filter out tag pushes. (Kenichi Ito) |
| 5715 | Files: .travis.yml |
| 5716 | |
| 5717 | Patch 7.4.885 |
| 5718 | Problem: When doing an upwards search without wildcards the search fails if |
| 5719 | the initial directory doesn't exist. |
| 5720 | Solution: Fix the non-wildcard case. (Stefan Kempf) |
| 5721 | Files: src/misc2.c |
| 5722 | |
| 5723 | Patch 7.4.886 (after 7.4.876) |
| 5724 | Problem: Windows7: Switching screen buffer causes flicker when using |
| 5725 | system(). |
| 5726 | Solution: Instead of actually switching screen buffer, duplicate the handle. |
| 5727 | (Yasuhiro Matsumoto) |
| 5728 | Files: src/os_win32.c |
| 5729 | |
| 5730 | Patch 7.4.887 |
| 5731 | Problem: Using uninitialized memory for regexp with back reference. |
| 5732 | (Dominique Pelle) |
| 5733 | Solution: Initialize end_lnum. |
| 5734 | Files: src/regexp_nfa.c |
| 5735 | |
| 5736 | Patch 7.4.888 |
| 5737 | Problem: The OptionSet autocommands are not triggered from setwinvar(). |
| 5738 | Solution: Do not use switch_win() when not needed. (Hirohito Higashi) |
| 5739 | Files: src/eval.c |
| 5740 | |
| 5741 | Patch 7.4.889 |
| 5742 | Problem: Triggering OptionSet from setwinvar() isn't tested. |
| 5743 | Solution: Add a test. (Christian Brabandt) |
| 5744 | Files: src/testdir/test_autocmd_option.in, |
| 5745 | src/testdir/test_autocmd_option.ok |
| 5746 | |
| 5747 | Patch 7.4.890 |
| 5748 | Problem: Build failure when using dynamic python but not python3. |
| 5749 | Solution: Adjust the #if to also include DYNAMIC_PYTHON3 and UNIX. |
| 5750 | Files: src/if_python3.c |
| 5751 | |
| 5752 | Patch 7.4.891 |
| 5753 | Problem: Indentation of array initializer is wrong. |
| 5754 | Solution: Avoid that calling find_start_rawstring() changes the position |
| 5755 | returned by find_start_comment(), add a test. (Hirohito Higashi) |
| 5756 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 5757 | |
| 5758 | Patch 7.4.892 |
| 5759 | Problem: On MS-Windows the iconv DLL may have a different name. |
| 5760 | Solution: Also try libiconv2.dll and libiconv-2.dll. (Yasuhiro Matsumoto) |
| 5761 | Files: src/mbyte.c |
| 5762 | |
| 5763 | Patch 7.4.893 |
| 5764 | Problem: C indenting is wrong below a "case (foo):" because it is |
| 5765 | recognized as a C++ base class construct. Issue #38. |
| 5766 | Solution: Check for the case keyword. |
| 5767 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 5768 | |
| 5769 | Patch 7.4.894 |
| 5770 | Problem: vimrun.exe is picky about the number of spaces before -s. |
| 5771 | Solution: Skip all spaces. (Cam Sinclair) |
| 5772 | Files: src/vimrun.c |
| 5773 | |
| 5774 | Patch 7.4.895 |
| 5775 | Problem: Custom command line completion does not work for a command |
| 5776 | containing digits. |
| 5777 | Solution: Skip over the digits. (suggested by Yasuhiro Matsumoto) |
| 5778 | Files: src/ex_docmd.c |
| 5779 | |
| 5780 | Patch 7.4.896 |
| 5781 | Problem: Editing a URL, which netrw should handle, doesn't work. |
| 5782 | Solution: Avoid changing slashes to backslashes. (Yasuhiro Matsumoto) |
| 5783 | Files: src/fileio.c, src/os_mswin.c |
| 5784 | |
| 5785 | Patch 7.4.897 |
| 5786 | Problem: Freeze and crash when there is a sleep in a remote command. |
| 5787 | (Karl Yngve Lervåg) |
| 5788 | Solution: Remove a message from the queue before dealing with it. (James |
| 5789 | Kolb) |
| 5790 | Files: src/if_xcmdsrv.c |
| 5791 | |
| 5792 | Patch 7.4.898 |
| 5793 | Problem: The 'fixendofline' option is set on with ":edit". |
| 5794 | Solution: Don't set the option when clearing a buffer. (Yasuhiro Matsumoto) |
| 5795 | Files: src/buffer.c |
| 5796 | |
| 5797 | Patch 7.4.899 |
| 5798 | Problem: README file is not optimal. |
| 5799 | Solution: Move buttons, update some text. (closes #460) |
| 5800 | Files: README.txt, README.md |
| 5801 | |
| 5802 | Patch 7.4.900 (after 7.4.899) |
| 5803 | Problem: README file can still be improved |
| 5804 | Solution: Add a couple of links. (Christian Brabandt) |
| 5805 | Files: README.md |
| 5806 | |
| 5807 | Patch 7.4.901 |
| 5808 | Problem: When a BufLeave autocommand changes folding in a way it syncs |
| 5809 | undo, undo can be corrupted. |
| 5810 | Solution: Prevent undo sync. (Jacob Niehus) |
| 5811 | Files: src/popupmnu.c |
| 5812 | |
| 5813 | Patch 7.4.902 |
| 5814 | Problem: Problems with using the MS-Windows console. |
| 5815 | Solution: Revert patches 7.4.851, 7.4.876 and 7.4.886 until we find a better |
| 5816 | solution. (suggested by Ken Takata) |
| 5817 | Files: src/os_win32.c |
| 5818 | |
| 5819 | Patch 7.4.903 |
| 5820 | Problem: MS-Windows: When 'encoding' differs from the current code page, |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 5821 | expanding wildcards may cause illegal memory access. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 5822 | Solution: Allocate a longer buffer. (Ken Takata) |
| 5823 | Files: src/misc1.c |
| 5824 | |
| 5825 | Patch 7.4.904 |
| 5826 | Problem: Vim does not provide .desktop files. |
| 5827 | Solution: Include and install .desktop files. (James McCoy, closes #455) |
| 5828 | Files: Filelist, runtime/vim.desktop, runtime/gvim.desktop, src/Makefile |
| 5829 | |
| 5830 | Patch 7.4.905 |
| 5831 | Problem: Python interface can produce error "vim.message' object has no |
| 5832 | attribute 'isatty'". |
| 5833 | Solution: Add dummy isatty(), readable(), etc. (closes #464) |
| 5834 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok, |
| 5835 | src/testdir/test87.in, src/testdir/test87.ok |
| 5836 | |
| 5837 | Patch 7.4.906 |
| 5838 | Problem: On MS-Windows the viminfo file is (always) given the hidden |
| 5839 | attribute. (raulnac) |
| 5840 | Solution: Check the hidden attribute in a different way. (Ken Takata) |
| 5841 | Files: src/ex_cmds.c, src/os_win32.c, src/os_win32.pro |
| 5842 | |
| 5843 | Patch 7.4.907 |
| 5844 | Problem: Libraries for dynamically loading interfaces can only be defined |
| 5845 | at compile time. |
| 5846 | Solution: Add options to specify the dll names. (Kazuki Sakamoto, |
| 5847 | closes #452) |
| 5848 | Files: runtime/doc/if_lua.txt, runtime/doc/if_perl.txt, |
| 5849 | runtime/doc/if_pyth.txt, runtime/doc/if_ruby.txt, |
| 5850 | runtime/doc/options.txt, src/if_lua.c, src/if_perl.xs, |
| 5851 | src/if_python.c, src/if_python3.c, src/if_ruby.c, src/option.c, |
| 5852 | src/option.h |
| 5853 | |
| 5854 | Patch 7.4.908 (after 7.4.907) |
| 5855 | Problem: Build error with MingW compiler. (Cesar Romani) |
| 5856 | Solution: Change #if into #ifdef. |
| 5857 | Files: src/if_perl.xs |
| 5858 | |
| 5859 | Patch 7.4.909 (after 7.4.905) |
| 5860 | Problem: "make install" fails. |
| 5861 | Solution: Only try installing desktop files if the destination directory |
| 5862 | exists. |
| 5863 | Files: src/Makefile |
| 5864 | |
| 5865 | Patch 7.4.910 (after 7.4.905) |
| 5866 | Problem: Compiler complains about type punned pointer. |
| 5867 | Solution: Use another way to increment the ref count. |
| 5868 | Files: src/if_py_both.h |
| 5869 | |
| 5870 | Patch 7.4.911 |
| 5871 | Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi) |
| 5872 | Solution: Define the options. |
| 5873 | Files: src/option.c |
| 5874 | |
| 5875 | Patch 7.4.912 |
| 5876 | Problem: Wrong indenting for C++ constructor. |
| 5877 | Solution: Recognize ::. (Anhong) |
| 5878 | Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok |
| 5879 | |
| 5880 | Patch 7.4.913 |
| 5881 | Problem: No utf-8 support for the hangul input feature. |
| 5882 | Solution: Add utf-8 support. (Namsh) |
| 5883 | Files: src/gui.c, src/hangulin.c, src/proto/hangulin.pro, src/screen.c, |
| 5884 | src/ui.c, runtime/doc/hangulin.txt, src/feature.h |
| 5885 | |
| 5886 | Patch 7.4.914 |
| 5887 | Problem: New compiler warning: logical-not-parentheses |
| 5888 | Solution: Silence the warning. |
| 5889 | Files: src/term.c |
| 5890 | |
| 5891 | Patch 7.4.915 |
| 5892 | Problem: When removing from 'path' and then adding, a comma may go missing. |
| 5893 | (Malcolm Rowe) |
| 5894 | Solution: Fix the check for P_ONECOMMA. (closes #471) |
| 5895 | Files: src/option.c, src/testdir/test_options.in, |
| 5896 | src/testdir/test_options.ok |
| 5897 | |
| 5898 | Patch 7.4.916 |
| 5899 | Problem: When running out of memory while copying a dict memory may be |
| 5900 | freed twice. (ZyX) |
| 5901 | Solution: Do not call the garbage collector when running out of memory. |
| 5902 | Files: src/misc2.c |
| 5903 | |
| 5904 | Patch 7.4.917 |
| 5905 | Problem: Compiler warning for comparing signed and unsigned. |
| 5906 | Solution: Add a type cast. |
| 5907 | Files: src/hangulin.c |
| 5908 | |
| 5909 | Patch 7.4.918 |
| 5910 | Problem: A digit in an option name has problems. |
| 5911 | Solution: Rename 'python3dll' to 'pythonthreedll'. |
| 5912 | Files: src/option.c, src/option.h, runtime/doc/options.txt |
| 5913 | |
| 5914 | Patch 7.4.919 |
| 5915 | Problem: The dll options are not in the options window. |
| 5916 | Solution: Add the dll options. And other fixes. |
| 5917 | Files: runtime/optwin.vim |
| 5918 | |
| 5919 | Patch 7.4.920 |
| 5920 | Problem: The rubydll option is not in the options window. |
| 5921 | Solution: Add the rubydll option. |
| 5922 | Files: runtime/optwin.vim |
| 5923 | |
| 5924 | Patch 7.4.921 (after 7.4.906) |
| 5925 | Problem: Missing proto file update. (Randall W. Morris) |
| 5926 | Solution: Add the missing line for mch_ishidden. |
| 5927 | Files: src/proto/os_win32.pro |
| 5928 | |
| 5929 | Patch 7.4.922 |
| 5930 | Problem: Leaking memory with ":helpt {dir-not-exists}". |
| 5931 | Solution: Free dirname. (Dominique Pelle) |
| 5932 | Files: src/ex_cmds.c |
| 5933 | |
| 5934 | Patch 7.4.923 |
| 5935 | Problem: Prototypes not always generated. |
| 5936 | Solution: Change #if to OR with PROTO. |
| 5937 | Files: src/window.c |
| 5938 | |
| 5939 | Patch 7.4.924 |
| 5940 | Problem: DEVELOPER_DIR gets reset by configure. |
| 5941 | Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir |
| 5942 | argument. (Kazuki Sakamoto, closes #482) |
| 5943 | Files: src/configure.in, src/auto/configure |
| 5944 | |
| 5945 | Patch 7.4.925 |
| 5946 | Problem: User may yank or put using the register being recorded in. |
| 5947 | Solution: Add the recording register in the message. (Christian Brabandt, |
| 5948 | closes #470) |
| 5949 | Files: runtime/doc/options.txt, runtime/doc/repeat.txt, src/ops.c, |
| 5950 | src/option.h, src/screen.c |
| 5951 | |
| 5952 | Patch 7.4.926 |
| 5953 | Problem: Completing the longest match doesn't work properly with multi-byte |
| 5954 | characters. |
| 5955 | Solution: When using multi-byte characters use another way to find the |
| 5956 | longest match. (Hirohito Higashi) |
| 5957 | Files: src/ex_getln.c, src/testdir/test_utf8.in, src/testdir/test_utf8.ok |
| 5958 | |
| 5959 | Patch 7.4.927 |
| 5960 | Problem: Ruby crashes when there is a runtime error. |
| 5961 | Solution: Use ruby_options() instead of ruby_process_options(). (Damien) |
| 5962 | Files: src/if_ruby.c |
| 5963 | |
| 5964 | Patch 7.4.928 |
| 5965 | Problem: A clientserver message interrupts handling keys of a mapping. |
| 5966 | Solution: Have mch_inchar() send control back to WaitForChar when it is |
| 5967 | interrupted by server message. (James Kolb) |
| 5968 | Files: src/os_unix.c |
| 5969 | |
| 5970 | Patch 7.4.929 |
| 5971 | Problem: "gv" after paste selects one character less if 'selection' is |
| 5972 | "exclusive". |
| 5973 | Solution: Increment the end position. (Christian Brabandt) |
| 5974 | Files: src/normal.c, src/testdir/test94.in, src/testdir/test94.ok |
| 5975 | |
| 5976 | Patch 7.4.930 |
| 5977 | Problem: MS-Windows: Most users appear not to like the window border. |
| 5978 | Solution: Remove WS_EX_CLIENTEDGE. (Ian Halliday) |
| 5979 | Files: src/gui_w32.c |
| 5980 | |
| 5981 | Patch 7.4.931 (after 7.4.929) |
| 5982 | Problem: Test 94 fails on some systems. |
| 5983 | Solution: Set 'encoding' to utf-8. |
| 5984 | Files: src/testdir/test94.in |
| 5985 | |
| 5986 | Patch 7.4.932 (after 7.4.926) |
| 5987 | Problem: test_utf8 has confusing dummy command. |
| 5988 | Solution: Use a real command instead of a colon. |
| 5989 | Files: src/testdir/test_utf8.in |
| 5990 | |
| 5991 | Patch 7.4.933 (after 7.4.926) |
| 5992 | Problem: Crash when using longest completion match. |
| 5993 | Solution: Fix array index. |
| 5994 | Files: src/ex_getln.c |
| 5995 | |
| 5996 | Patch 7.4.934 |
| 5997 | Problem: Appveyor also builds on a tag push. |
| 5998 | Solution: Add a skip_tags line. (Kenichi Ito, closes #489) |
| 5999 | Files: appveyor.yml |
| 6000 | |
| 6001 | Patch 7.4.935 (after 7.4.932) |
| 6002 | Problem: test_utf8 fails on MS-Windows when executed with gvim. |
| 6003 | Solution: Use the insert flag on feedkeys() to put the string before the |
| 6004 | ":" that was already read when checking for available chars. |
| 6005 | Files: src/testdir/test_utf8.in |
| 6006 | |
| 6007 | Patch 7.4.936 |
| 6008 | Problem: Crash when dragging with the mouse. |
| 6009 | Solution: Add safety check for NULL pointer. Check mouse position for valid |
| 6010 | value. (Hirohito Higashi) |
| 6011 | Files: src/window.c, src/term.c |
| 6012 | |
| 6013 | Patch 7.4.937 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6014 | Problem: Segfault reading uninitialized memory. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6015 | Solution: Do not read match \z0, it does not exist. (Marius Gedminas, closes |
| 6016 | #497) |
| 6017 | Files: src/regexp_nfa.c |
| 6018 | |
| 6019 | Patch 7.4.938 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6020 | Problem: X11 and GTK have more mouse buttons than Vim supports. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6021 | Solution: Recognize more mouse buttons. (Benoit Pierre, closes #498) |
| 6022 | Files: src/gui_gtk_x11.c, src/gui_x11.c |
| 6023 | |
| 6024 | Patch 7.4.939 |
| 6025 | Problem: Memory leak when encountering a syntax error. |
| 6026 | Solution: Free the memory. (Dominique Pelle) |
| 6027 | Files: src/ex_docmd.c |
| 6028 | |
| 6029 | Patch 7.4.940 |
| 6030 | Problem: vt52 terminal codes are not correct. |
| 6031 | Solution: Move entries outside of #if. (Random) Adjustments based on |
| 6032 | documented codes. |
| 6033 | Files: src/term.c |
| 6034 | |
| 6035 | Patch 7.4.941 |
| 6036 | Problem: There is no way to ignore case only for tag searches. |
| 6037 | Solution: Add the 'tagcase' option. (Gary Johnson) |
| 6038 | Files: runtime/doc/options.txt, runtime/doc/quickref.txt, |
| 6039 | runtime/doc/tagsrch.txt, runtime/doc/usr_29.txt, |
| 6040 | runtime/optwin.vim, src/Makefile, src/buffer.c, src/option.c, |
| 6041 | src/option.h, src/structs.h, src/tag.c, |
| 6042 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6043 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6044 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 6045 | src/testdir/test_tagcase.in, src/testdir/test_tagcase.ok |
| 6046 | |
| 6047 | Patch 7.4.942 (after 7.4.941) |
| 6048 | Problem: test_tagcase breaks for small builds. |
| 6049 | Solution: Bail out of the test early. (Hirohito Higashi) |
| 6050 | Files: src/testdir/test_tagcase.in |
| 6051 | |
| 6052 | Patch 7.4.943 |
| 6053 | Problem: Tests are not run. |
| 6054 | Solution: Add test_writefile to makefiles. (Ken Takata) |
| 6055 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6056 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6057 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 6058 | |
| 6059 | Patch 7.4.944 |
| 6060 | Problem: Writing tests for Vim script is hard. |
| 6061 | Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add |
| 6062 | the v:errors variable. Add the runtest script. Add a first new |
| 6063 | style test script. |
| 6064 | Files: src/eval.c, src/vim.h, src/misc2.c, src/testdir/Makefile, |
| 6065 | src/testdir/runtest.vim, src/testdir/test_assert.vim, |
| 6066 | runtime/doc/eval.txt |
| 6067 | |
| 6068 | Patch 7.4.945 (after 7.4.944) |
| 6069 | Problem: New style testing is incomplete. |
| 6070 | Solution: Add the runtest script to the list of distributed files. |
| 6071 | Add the new functions to the function overview. |
| 6072 | Rename the functions to match Vim function style. |
| 6073 | Move undolevels testing into a new style test script. |
| 6074 | Files: Filelist, runtime/doc/usr_41.txt, runtime/doc/eval.txt, |
| 6075 | src/testdir/test_assert.vim, src/testdir/Makefile, |
| 6076 | src/testdir/test_undolevels.vim, src/testdir/test100.in, |
| 6077 | src/testdir/test100.ok |
| 6078 | |
| 6079 | Patch 7.4.946 (after 7.4.945) |
| 6080 | Problem: Missing changes in source file. |
| 6081 | Solution: Include changes to the eval.c file. |
| 6082 | Files: src/eval.c |
| 6083 | |
| 6084 | Patch 7.4.947 |
| 6085 | Problem: Test_listchars fails with MingW. (Michael Soyka) |
| 6086 | Solution: Add the test to the ones that need the fileformat fixed. |
| 6087 | (Christian Brabandt) |
| 6088 | Files: src/testdir/Make_ming.mak |
| 6089 | |
| 6090 | Patch 7.4.948 |
| 6091 | Problem: Can't build when the insert_expand feature is disabled. |
| 6092 | Solution: Add #ifdefs. (Dan Pasanen, closes #499) |
| 6093 | Files: src/eval.c, src/fileio.c |
| 6094 | |
| 6095 | Patch 7.4.949 |
| 6096 | Problem: When using 'colorcolumn' and there is a sign with a fullwidth |
| 6097 | character the highlighting is wrong. (Andrew Stewart) |
| 6098 | Solution: Only increment vcol when in the right state. (Christian Brabandt) |
| 6099 | Files: src/screen.c, src/testdir/test_listlbr_utf8.in, |
| 6100 | src/testdir/test_listlbr_utf8.ok |
| 6101 | |
| 6102 | Patch 7.4.950 |
| 6103 | Problem: v:errors is not initialized. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6104 | Solution: Initialize it to an empty list. (Thinca) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6105 | Files: src/eval.c |
| 6106 | |
| 6107 | Patch 7.4.951 |
| 6108 | Problem: Sorting number strings does not work as expected. (Luc Hermitte) |
Bram Moolenaar | abd468e | 2016-09-08 22:22:43 +0200 | [diff] [blame] | 6109 | Solution: Add the "N" argument to sort() |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6110 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim, |
| 6111 | src/testdir/test_sort.vim, src/testdir/Makefile |
| 6112 | |
| 6113 | Patch 7.4.952 |
| 6114 | Problem: 'lispwords' is tested in the old way. |
| 6115 | Solution: Make a new style test for 'lispwords'. |
| 6116 | Files: src/testdir/test_alot.vim, src/testdir/test_lispwords.vim, |
| 6117 | src/testdir/test100.in, src/testdir/test100.ok, |
| 6118 | src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6119 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6120 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 6121 | |
| 6122 | Patch 7.4.953 |
| 6123 | Problem: When a test script navigates to another buffer the .res file is |
| 6124 | created with the wrong name. |
| 6125 | Solution: Use the "testname" for the .res file. (Damien) |
| 6126 | Files: src/testdir/runtest.vim |
| 6127 | |
| 6128 | Patch 7.4.954 |
| 6129 | Problem: When using Lua there may be a crash. (issue #468) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6130 | Solution: Avoid using an uninitialized tv. (Yukihiro Nakadaira) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6131 | Files: src/if_lua.c |
| 6132 | |
| 6133 | Patch 7.4.955 |
| 6134 | Problem: Vim doesn't recognize .pl6 and .pod6 files. |
| 6135 | Solution: Recognize them as perl6 and pod6. (Mike Eve, closes #511) |
| 6136 | Files: runtime/filetype.vim |
| 6137 | |
| 6138 | Patch 7.4.956 |
| 6139 | Problem: A few more file name extensions not recognized. |
| 6140 | Solution: Add .asciidoc, .bzl, .gradle, etc. |
| 6141 | Files: runtime/filetype.vim |
| 6142 | |
| 6143 | Patch 7.4.957 |
| 6144 | Problem: Test_tagcase fails when using another language than English. |
| 6145 | Solution: Set the messages language to C. (Kenichi Ito) |
| 6146 | Files: src/testdir/test_tagcase.in |
| 6147 | |
| 6148 | Patch 7.4.958 |
| 6149 | Problem: Vim checks if the directory "$TMPDIR" exists. |
| 6150 | Solution: Do not check if the name starts with "$". |
| 6151 | Files: src/fileio.c |
| 6152 | |
| 6153 | Patch 7.4.959 |
| 6154 | Problem: When setting 'term' the clipboard ownership is lost. |
| 6155 | Solution: Do not call clip_init(). (James McCoy) |
| 6156 | Files: src/term.c |
| 6157 | |
| 6158 | Patch 7.4.960 |
| 6159 | Problem: Detecting every version of nmake is clumsy. |
| 6160 | Solution: Use a tiny C program to get the version of _MSC_VER. (Ken Takata) |
| 6161 | Files: src/Make_mvc.mak |
| 6162 | |
| 6163 | Patch 7.4.961 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6164 | Problem: Test107 fails in some circumstances. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6165 | Solution: When using "zt", "zb" and "z=" recompute the fraction. |
| 6166 | Files: src/normal.c, src/window.c, src/proto/window.pro |
| 6167 | |
| 6168 | Patch 7.4.962 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6169 | Problem: Cannot run the tests with gvim. Cannot run individual new tests. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6170 | Solution: Add the -f flag. Add new test targets in Makefile. |
| 6171 | Files: src/Makefile, src/testdir/Makefile |
| 6172 | |
| 6173 | Patch 7.4.963 |
| 6174 | Problem: test_listlbr_utf8 sometimes fails. |
| 6175 | Solution: Don't use a literal multibyte character but <C-V>uXXXX. Do not |
| 6176 | dump the screen highlighting. (Christian Brabandt, closes #518) |
| 6177 | Files: src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok |
| 6178 | |
| 6179 | Patch 7.4.964 |
| 6180 | Problem: Test 87 doesn't work in a shadow directory. |
| 6181 | Solution: Handle the extra subdirectory. (James McCoy, closes #515) |
| 6182 | Files: src/testdir/test87.in |
| 6183 | |
| 6184 | Patch 7.4.965 |
| 6185 | Problem: On FreeBSD /dev/fd/ files are special. |
| 6186 | Solution: Use is_dev_fd_file() also for FreeBSD. (Derek Schrock, closes #521) |
| 6187 | Files: src/fileio.c |
| 6188 | |
| 6189 | Patch 7.4.966 |
| 6190 | Problem: Configure doesn't work with a space in a path. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 6191 | Solution: Put paths in quotes. (James McCoy, closes #525) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6192 | Files: src/configure.in, src/auto/configure |
| 6193 | |
| 6194 | Patch 7.4.967 |
| 6195 | Problem: Cross compilation on MS-windows doesn't work well. |
| 6196 | Solution: Tidy up cross compilation across architectures with Visual Studio. |
| 6197 | (Mike Williams) |
| 6198 | Files: src/Make_mvc.mak |
| 6199 | |
| 6200 | Patch 7.4.968 |
| 6201 | Problem: test86 and test87 are flaky in Appveyor. |
| 6202 | Solution: Reduce the count from 8 to 7. (suggested by ZyX) |
| 6203 | Files: src/testdir/test86.in, src/testdir/test87.in |
| 6204 | |
| 6205 | Patch 7.4.969 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6206 | Problem: Compiler warnings on Windows x64 build. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6207 | Solution: Add type casts. (Mike Williams) |
| 6208 | Files: src/option.c |
| 6209 | |
| 6210 | Patch 7.4.970 |
| 6211 | Problem: Rare crash in getvcol(). (Timo Mihaljov) |
| 6212 | Solution: Check for the buffer being NULL in init_preedit_start_col. |
| 6213 | (Hirohito Higashi, Christian Brabandt) |
| 6214 | Files: src/mbyte.c |
| 6215 | |
| 6216 | Patch 7.4.971 |
| 6217 | Problem: The asin() function can't be used. |
| 6218 | Solution: Sort the function table properly. (Watiko) |
| 6219 | Files: src/eval.c |
| 6220 | |
| 6221 | Patch 7.4.972 |
| 6222 | Problem: Memory leak when there is an error in setting an option. |
| 6223 | Solution: Free the saved value (Christian Brabandt) |
| 6224 | Files: src/option.c |
| 6225 | |
| 6226 | Patch 7.4.973 |
| 6227 | Problem: When pasting on the command line line breaks result in literal |
| 6228 | <CR> characters. This makes pasting a long file name difficult. |
| 6229 | Solution: Skip the characters. |
| 6230 | Files: src/ex_getln.c, src/ops.c |
| 6231 | |
| 6232 | Patch 7.4.974 |
| 6233 | Problem: When using :diffsplit the cursor jumps to the first line. |
| 6234 | Solution: Put the cursor on the line related to where the cursor was before |
| 6235 | the split. |
| 6236 | Files: src/diff.c |
| 6237 | |
| 6238 | Patch 7.4.975 |
| 6239 | Problem: Using ":sort" on a very big file sometimes causes text to be |
| 6240 | corrupted. (John Beckett) |
| 6241 | Solution: Copy the line into a buffer before calling ml_append(). |
| 6242 | Files: src/ex_cmds.c |
| 6243 | |
| 6244 | Patch 7.4.976 |
| 6245 | Problem: When compiling Vim for MSYS2 (linked with msys-2.0.dll), the Win32 |
| 6246 | clipboard is not enabled. |
| 6247 | Solution: Recognize MSYS like CYGWIN. (Ken Takata) |
| 6248 | Files: src/configure.in, src/auto/configure |
| 6249 | |
| 6250 | Patch 7.4.977 |
| 6251 | Problem: 'linebreak' does not work properly when using "space" in |
| 6252 | 'listchars'. |
| 6253 | Solution: (Hirohito Higashi, Christian Brabandt) |
| 6254 | Files: src/screen.c, src/testdir/test_listlbr.in, |
| 6255 | src/testdir/test_listlbr.ok |
| 6256 | |
| 6257 | Patch 7.4.978 |
| 6258 | Problem: test_cdo fails when using another language than English. |
| 6259 | Solution: Set the language to C. (Dominique Pelle, Kenichi Ito) |
| 6260 | Files: src/testdir/test_cdo.in |
| 6261 | |
| 6262 | Patch 7.4.979 |
| 6263 | Problem: When changing the crypt key the blocks read from disk are not |
| 6264 | decrypted. |
| 6265 | Solution: Also call ml_decrypt_data() when mf_old_key is set. (Ken Takata) |
| 6266 | Files: src/memfile.c |
| 6267 | |
| 6268 | Patch 7.4.980 |
| 6269 | Problem: Tests for :cdo, :ldo, etc. are outdated. |
| 6270 | Solution: Add new style tests for these commands. (Yegappan Lakshmanan) |
| 6271 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6272 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6273 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 6274 | src/testdir/test_cdo.in, src/testdir/test_cdo.ok, |
| 6275 | src/testdir/test_cdo.vim |
| 6276 | |
| 6277 | Patch 7.4.981 |
| 6278 | Problem: An error in a test script goes unnoticed. |
| 6279 | Solution: Source the test script inside try/catch. (Hirohito Higashi) |
| 6280 | Files: src/testdir/runtest.vim |
| 6281 | |
| 6282 | Patch 7.4.982 |
| 6283 | Problem: Keeping the list of tests updated is a hassle. |
| 6284 | 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] | 6285 | updated in one place. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6286 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6287 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6288 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 6289 | src/testdir/Make_all.mak |
| 6290 | |
| 6291 | Patch 7.4.983 |
| 6292 | Problem: Executing one test after "make testclean" doesn't work. |
| 6293 | Solution: Add a dependency on test1.out. |
| 6294 | Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 6295 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6296 | src/testdir/Make_vms.mms, src/testdir/Makefile, |
| 6297 | src/testdir/Make_all.mak |
| 6298 | |
| 6299 | Patch 7.4.984 |
| 6300 | Problem: searchpos() always starts searching in the first column, which is |
| 6301 | not what some people expect. (Brett Stahlman) |
| 6302 | Solution: Add the 'z' flag: start at the specified column. |
| 6303 | Files: src/vim.h, src/eval.c, src/search.c, |
| 6304 | src/testdir/test_searchpos.vim, src/testdir/test_alot.vim, |
| 6305 | runtime/doc/eval.txt |
| 6306 | |
| 6307 | Patch 7.4.985 |
| 6308 | Problem: Can't build with Ruby 2.3.0. |
| 6309 | Solution: Use the new TypedData_XXX macro family instead of Data_XXX. Use |
| 6310 | TypedData. (Ken Takata) |
| 6311 | Files: src/if_ruby.c |
| 6312 | |
| 6313 | Patch 7.4.986 |
| 6314 | Problem: Test49 doesn't work on MS-Windows. test70 is listed twice. |
| 6315 | Solution: Move test49 to the group not used on Amiga and MS-Windows. |
| 6316 | Remove test70 from SCRIPTS_WIN32. |
| 6317 | Files: src/testdir/Make_all.mak, src/testdir/Make_dos.mak |
| 6318 | |
| 6319 | Patch 7.4.987 (after 7.4.985) |
| 6320 | Problem: Can't build with Ruby 1.9.2. |
| 6321 | Solution: Require Rub 2.0 for defining USE_TYPEDDATA. |
| 6322 | Files: src/if_ruby.c |
| 6323 | |
| 6324 | Patch 7.4.988 (after 7.4.982) |
| 6325 | Problem: Default test target is test49.out. |
| 6326 | Solution: Add a build rule before including Make_all.mak. |
| 6327 | Files: src/testdir/Make_dos.mak, src/testdir/Make_amiga.mak, |
| 6328 | src/testdir/Make_ming.mak, src/testdir/Make_os2.mak, |
| 6329 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 6330 | |
| 6331 | Patch 7.4.989 |
| 6332 | Problem: Leaking memory when hash_add() fails. Coverity error 99126. |
| 6333 | Solution: When hash_add() fails free the memory. |
| 6334 | Files: src/eval.c |
| 6335 | |
| 6336 | Patch 7.4.990 |
| 6337 | Problem: Test 86 fails on AppVeyor. |
| 6338 | Solution: Do some registry magic. (Ken Takata) |
| 6339 | Files: appveyor.yml |
| 6340 | |
| 6341 | Patch 7.4.991 |
| 6342 | Problem: When running new style tests the output is not visible. |
| 6343 | Solution: Add the testdir/messages file and show it. Update the list of |
| 6344 | test names. |
| 6345 | Files: src/Makefile, src/testdir/Makefile, src/testdir/runtest.vim |
| 6346 | |
| 6347 | Patch 7.4.992 |
| 6348 | Problem: Makefiles for MS-Windows in src/po are outdated. |
| 6349 | Solution: Make them work. (Ken Takata, Taro Muraoka) |
| 6350 | Files: src/po/Make_cyg.mak, src/po/Make_ming.mak, src/po/Make_mvc.mak, |
| 6351 | src/po/README_mingw.txt, src/po/README_mvc.txt |
| 6352 | |
| 6353 | Patch 7.4.993 |
| 6354 | Problem: Test 87 is flaky on AppVeyor. |
| 6355 | Solution: Reduce the minimum background thread count. |
| 6356 | Files: src/testdir/test86.in, src/testdir/test87.in |
| 6357 | |
| 6358 | Patch 7.4.994 |
| 6359 | Problem: New style tests are not run on MS-Windows. |
| 6360 | Solution: Add the new style tests. |
| 6361 | Files: src/testdir/Make_dos.mak |
| 6362 | |
| 6363 | Patch 7.4.995 |
| 6364 | Problem: gdk_pixbuf_new_from_inline() is deprecated. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 6365 | Solution: Generate auto/gui_gtk_gresources.c. (Kazunobu Kuriyama, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6366 | closes #507) |
| 6367 | Files: src/Makefile, src/auto/configure, src/config.h.in, |
| 6368 | src/config.mk.in, src/configure.in, src/gui_gtk.c, |
| 6369 | src/gui_gtk_gresources.xml, src/gui_gtk_x11.c, |
| 6370 | src/proto/gui_gtk_gresources.pro, |
| 6371 | pixmaps/stock_vim_build_tags.png, pixmaps/stock_vim_find_help.png, |
| 6372 | pixmaps/stock_vim_save_all.png, |
| 6373 | pixmaps/stock_vim_session_load.png, |
| 6374 | pixmaps/stock_vim_session_new.png, |
| 6375 | pixmaps/stock_vim_session_save.png, pixmaps/stock_vim_shell.png, |
| 6376 | pixmaps/stock_vim_window_maximize.png, |
| 6377 | pixmaps/stock_vim_window_maximize_width.png, |
| 6378 | pixmaps/stock_vim_window_minimize.png, |
| 6379 | pixmaps/stock_vim_window_minimize_width.png, |
| 6380 | pixmaps/stock_vim_window_split.png, |
| 6381 | pixmaps/stock_vim_window_split_vertical.png |
| 6382 | |
| 6383 | Patch 7.4.996 |
| 6384 | Problem: New GDK files and testdir/Make_all.mak missing from distribution. |
| 6385 | PC build instructions are outdated. |
| 6386 | Solution: Add the file to the list. Update PC build instructions. |
| 6387 | Files: Filelist, Makefile |
| 6388 | |
| 6389 | Patch 7.4.997 |
| 6390 | Problem: "make shadow" was sometimes broken. |
| 6391 | Solution: Add a test for it. (James McCoy, closes #520) |
| 6392 | Files: .travis.yml |
| 6393 | |
| 6394 | Patch 7.4.998 |
| 6395 | Problem: Running tests in shadow directory fails. Test 49 fails. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6396 | 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] | 6397 | the right buffer. |
| 6398 | Files: src/Makefile, src/testdir/test49.in |
| 6399 | |
| 6400 | Patch 7.4.999 |
| 6401 | Problem: "make shadow" creates a broken link. (Tony Mechelynck) |
| 6402 | Solution: Remove vimrc.unix from the list. |
| 6403 | Files: src/Makefile |
| 6404 | |
| 6405 | Patch 7.4.1000 |
| 6406 | Problem: Test 49 is slow and doesn't work on MS-Windows. |
| 6407 | Solution: Start moving parts of test 49 to test_viml. |
| 6408 | Files: src/Makefile, src/testdir/runtest.vim, src/testdir/test_viml.vim, |
| 6409 | src/testdir/test49.vim, src/testdir/test49.ok |
| 6410 | |
| 6411 | Patch 7.4.1001 (after 7.4.1000) |
| 6412 | Problem: test_viml isn't run. |
| 6413 | Solution: Include change in makefile. |
| 6414 | Files: src/testdir/Make_all.mak |
| 6415 | |
| 6416 | Patch 7.4.1002 |
| 6417 | Problem: Cannot run an individual test on MS-Windows. |
| 6418 | Solution: Move the rule to run test1 downwards. (Ken Takata) |
| 6419 | Files: src/testdir/Make_dos.mak |
| 6420 | |
| 6421 | Patch 7.4.1003 |
| 6422 | Problem: Travis could check a few more things. |
| 6423 | Solution: Run autoconf on one of the builds. (James McCoy, closes #510) |
| 6424 | Also build with normal features. |
| 6425 | Files: .travis.yml |
| 6426 | |
| 6427 | Patch 7.4.1004 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6428 | Problem: Using Makefile when auto/config.mk does not exist results in |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6429 | warnings. |
| 6430 | Solution: Use default values for essential variables. |
| 6431 | Files: src/Makefile |
| 6432 | |
| 6433 | Patch 7.4.1005 |
| 6434 | Problem: Vim users are not always happy. |
| 6435 | Solution: Make them happy. |
| 6436 | Files: src/ex_cmds.h, src/ex_cmds.c, src/proto/ex_cmds.pro |
| 6437 | |
| 6438 | Patch 7.4.1006 |
| 6439 | Problem: The fix in patch 7.3.192 is not tested. |
| 6440 | Solution: Add a test, one for each regexp engine. (Elias Diem) |
| 6441 | Files: src/testdir/test44.in, src/testdir/test44.ok, |
| 6442 | src/testdir/test99.in, src/testdir/test99.ok |
| 6443 | |
| 6444 | Patch 7.4.1007 |
| 6445 | Problem: When a symbolic link points to a file in the root directory, the |
| 6446 | swapfile is not correct. |
| 6447 | Solution: Do not try getting the full name of a file in the root directory. |
| 6448 | (Milly, closes #501) |
| 6449 | Files: src/os_unix.c |
| 6450 | |
| 6451 | Patch 7.4.1008 |
| 6452 | Problem: The OS/2 code pollutes the source while nobody uses it these days. |
| 6453 | Solution: Drop the support for OS/2. |
| 6454 | Files: src/feature.h, src/globals.h, src/macros.h, src/option.h, |
| 6455 | src/os_unix.c, src/os_unix.h, src/proto/os_unix.pro, src/vim.h, |
| 6456 | src/digraph.c, src/eval.c, src/ex_cmds.c, src/ex_docmd.c, |
| 6457 | src/ex_getln.c, src/fileio.c, src/getchar.c, src/memline.c, |
| 6458 | src/misc1.c, src/misc2.c, src/netbeans.c, src/option.c, |
| 6459 | src/term.c, src/ui.c, src/window.c, src/os_os2_cfg.h, |
| 6460 | src/Make_os2.mak, src/testdir/Make_os2.mak, src/testdir/os2.vim, |
| 6461 | src/INSTALL, runtime/doc/os_os2.txt |
| 6462 | |
| 6463 | Patch 7.4.1009 |
| 6464 | Problem: There are still #ifdefs for ARCHIE. |
| 6465 | Solution: Remove references to ARCHIE, the code was removed in Vim 5. |
| 6466 | Files: src/ex_cmds.c, src/ex_docmd.c, src/fileio.c, src/main.c, |
| 6467 | src/memline.c, src/option.c, src/term.c |
| 6468 | |
| 6469 | Patch 7.4.1010 |
| 6470 | Problem: Some developers are unhappy while running tests. |
| 6471 | Solution: Add a test and some color. |
| 6472 | Files: src/ex_cmds.c, src/testdir/test_assert.vim |
| 6473 | |
| 6474 | Patch 7.4.1011 |
| 6475 | Problem: Can't build with Strawberry Perl. |
| 6476 | Solution: Include stdbool.h. (Ken Takata, closes #328) |
| 6477 | Files: Filelist, src/Make_mvc.mak, src/if_perl_msvc/stdbool.h |
| 6478 | |
| 6479 | Patch 7.4.1012 |
| 6480 | Problem: Vim overwrites the value of $PYTHONHOME. |
| 6481 | Solution: Do not set $PYTHONHOME if it is already set. (Kazuki Sakamoto, |
| 6482 | closes #500) |
| 6483 | Files: src/if_python.c, src/if_python3.c |
| 6484 | |
| 6485 | Patch 7.4.1013 |
| 6486 | Problem: The local value of 'errorformat' is not used for ":lexpr" and |
| 6487 | ":cexpr". |
| 6488 | Solution: Use the local value if it exists. (Christian Brabandt) Adjust the |
| 6489 | help for this. |
| 6490 | Files: runtime/doc/quickfix.txt, src/quickfix.c |
| 6491 | |
| 6492 | Patch 7.4.1014 |
| 6493 | Problem: `fnamemodify('.', ':.')` returns an empty string in Cygwin. |
| 6494 | Solution: Use CCP_RELATIVE in the call to cygwin_conv_path. (Jacob Niehus, |
| 6495 | closes #505) |
| 6496 | Files: src/os_unix.c |
| 6497 | |
| 6498 | Patch 7.4.1015 |
| 6499 | Problem: The column is not restored properly when the matchparen plugin is |
| 6500 | used in Insert mode and the cursor is after the end of the line. |
| 6501 | Solution: Set the curswant flag. (Christian Brabandt). Also fix |
| 6502 | highlighting the match of the character before the cursor. |
| 6503 | Files: src/eval.c, runtime/plugin/matchparen.vim |
| 6504 | |
| 6505 | Patch 7.4.1016 |
| 6506 | Problem: Still a few OS/2 pieces remain. |
| 6507 | Solution: Delete more. |
| 6508 | Files: Filelist, README_os2.txt, testdir/todos.vim, src/xxd/Make_os2.mak |
| 6509 | |
| 6510 | Patch 7.4.1017 |
| 6511 | Problem: When there is a backslash in an option ":set -=" doesn't work. |
| 6512 | Solution: Handle a backslash better. (Jacob Niehus) Add a new test, merge |
| 6513 | in old test. |
| 6514 | Files: src/testdir/test_cdo.vim, src/testdir/test_set.vim, |
| 6515 | src/testdir/test_alot.vim, src/option.c, src/testdir/test_set.in, |
| 6516 | src/testdir/test_set.ok, src/Makefile |
| 6517 | |
| 6518 | Patch 7.4.1018 (after 7.4.1017) |
| 6519 | Problem: Failure running tests. |
| 6520 | Solution: Add missing change to list of old style tests. |
| 6521 | Files: src/testdir/Make_all.mak |
| 6522 | |
| 6523 | Patch 7.4.1019 |
| 6524 | Problem: Directory listing of "src" is too long. |
| 6525 | Solution: Rename the resources file to make it shorter. |
| 6526 | Files: src/gui_gtk_gresources.xml, src/gui_gtk_res.xml, src/Makefile, |
| 6527 | Filelist |
| 6528 | |
| 6529 | Patch 7.4.1020 |
| 6530 | Problem: On MS-Windows there is no target to run tests with gvim. |
| 6531 | Solution: Add the testgvim target. |
| 6532 | Files: src/Make_mvc.mak |
| 6533 | |
| 6534 | Patch 7.4.1021 |
| 6535 | Problem: Some makefiles are outdated. |
| 6536 | Solution: Add a note to warn developers. |
| 6537 | Files: src/Make_manx.mak, src/Make_bc3.mak, src/Make_bc5.mak, |
| 6538 | src/Make_djg.mak, src/Make_w16.mak |
| 6539 | |
| 6540 | Patch 7.4.1022 |
| 6541 | Problem: The README file contains some outdated information. |
| 6542 | Solution: Update the information about supported systems. |
| 6543 | Files: README.txt, README.md |
| 6544 | |
| 6545 | Patch 7.4.1023 |
| 6546 | Problem: The distribution files for MS-Windows use CR-LF, which is |
| 6547 | inconsistent with what one gets from github. |
| 6548 | Solution: Use LF in the distribution files. |
| 6549 | Files: Makefile |
| 6550 | |
| 6551 | Patch 7.4.1024 |
| 6552 | Problem: Interfaces for MS-Windows are outdated. |
| 6553 | Solution: Use Python 2.7.10, Python 3.4.4, Perl 5.22, TCL 8.6. |
| 6554 | Files: src/bigvim.bat |
| 6555 | |
| 6556 | Patch 7.4.1025 |
| 6557 | Problem: Version in installer needs to be updated manually. |
| 6558 | Solution: Generate a file with the version number. (Guopeng Wen) |
| 6559 | Files: Makefile, nsis/gvim.nsi, nsis/gvim_version.nsh |
| 6560 | |
| 6561 | Patch 7.4.1026 |
| 6562 | Problem: When using MingW the tests do not clean up all files. E.g. test |
| 6563 | 17 leaves Xdir1 behind. (Michael Soyka) |
| 6564 | Solution: Also delete directories, like Make_dos.mak. Delete files after |
| 6565 | directories to reduce warnings. |
| 6566 | Files: src/testdir/Make_ming.mak, src/testdir/Make_dos.mak |
| 6567 | |
| 6568 | Patch 7.4.1027 |
| 6569 | Problem: No support for binary numbers. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 6570 | Solution: Add "bin" to 'nrformats'. (Jason Schulz) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6571 | Files: runtime/doc/change.txt, runtime/doc/eval.txt, |
| 6572 | runtime/doc/version7.txt, src/charset.c, src/eval.c, |
| 6573 | src/ex_cmds.c, src/ex_getln.c, src/misc2.c, src/ops.c, |
| 6574 | src/option.c, src/proto/charset.pro, src/spell.c, |
| 6575 | src/testdir/test57.in, src/testdir/test57.ok, |
| 6576 | src/testdir/test58.in, src/testdir/test58.ok, |
| 6577 | src/testdir/test_increment.in, src/testdir/test_increment.ok, |
| 6578 | src/vim.h |
| 6579 | |
| 6580 | Patch 7.4.1028 |
| 6581 | Problem: Nsis version file missing from the distribution. |
| 6582 | Solution: Add the file to the list. |
| 6583 | Files: Filelist |
| 6584 | |
| 6585 | Patch 7.4.1029 (after 7.4.1027) |
| 6586 | Problem: test_increment fails on systems with 32 bit long. |
| 6587 | Solution: Only test with 32 bits. |
| 6588 | Files: src/testdir/test_increment.in, src/testdir/test_increment.ok |
| 6589 | |
| 6590 | Patch 7.4.1030 |
| 6591 | Problem: test49 is still slow. |
| 6592 | Solution: Move more tests from old to new style. |
| 6593 | Files: src/testdir/test_viml.vim, src/testdir/test49.vim, |
| 6594 | src/testdir/test49.ok, src/testdir/runtest.vim |
| 6595 | |
| 6596 | Patch 7.4.1031 |
| 6597 | Problem: Can't build with Python interface using MingW. |
| 6598 | Solution: Update the Makefile. (Yasuhiro Matsumoto) |
| 6599 | Files: src/INSTALLpc.txt, src/Make_cyg_ming.mak |
| 6600 | |
| 6601 | Patch 7.4.1032 |
| 6602 | Problem: message from assert_false() does not look nice. |
| 6603 | Solution: Handle missing sourcing_name. Use right number of spaces. (Watiko) |
| 6604 | Don't use line number if it's zero. |
| 6605 | Files: src/eval.c |
| 6606 | |
| 6607 | Patch 7.4.1033 |
| 6608 | Problem: Memory use on MS-Windows is very conservative. |
| 6609 | Solution: Use the global memory status to estimate amount of memory. |
| 6610 | (Mike Williams) |
| 6611 | Files: src/os_win32.c, src/os_win32.h, src/proto/os_win32.pro |
| 6612 | |
| 6613 | Patch 7.4.1034 |
| 6614 | Problem: There is no test for the 'backspace' option behavior. |
| 6615 | Solution: Add a test. (Hirohito Higashi) |
| 6616 | Files: src/testdir/test_alot.vim, src/testdir/test_backspace_opt.vim |
| 6617 | |
| 6618 | Patch 7.4.1035 |
| 6619 | Problem: An Ex range gets adjusted for folded lines even when the range is |
| 6620 | not using line numbers. |
| 6621 | Solution: Only adjust line numbers for folding. (Christian Brabandt) |
| 6622 | Files: runtime/doc/fold.txt, src/ex_docmd.c |
| 6623 | |
| 6624 | Patch 7.4.1036 |
| 6625 | Problem: Only terminals with up to 256 colors work properly. |
| 6626 | Solution: Use the 256 color behavior for all terminals with 256 or more |
| 6627 | colors. (Robert de Bath, closes #504) |
| 6628 | Files: src/syntax.c |
| 6629 | |
| 6630 | Patch 7.4.1037 |
| 6631 | Problem: Using "q!" when there is a modified hidden buffer does not unload |
| 6632 | the current buffer, resulting in the need to abandon it again. |
| 6633 | Solution: When using "q!" unload the current buffer when needed. (Yasuhiro |
| 6634 | Matsumoto, Hirohito Higashi) |
| 6635 | Files: src/testdir/test31.in, src/testdir/test31.ok, |
| 6636 | runtime/doc/editing.txt, src/ex_cmds2.c, src/ex_docmd.c, |
| 6637 | src/gui.c, src/gui_gtk_x11.c, src/os_unix.c, |
| 6638 | src/proto/ex_cmds2.pro |
| 6639 | |
| 6640 | Patch 7.4.1038 |
| 6641 | Problem: Still get a warning for a deprecated function with gdk-pixbuf |
| 6642 | 2.31. |
| 6643 | Solution: Change minimum minor version from 32 to 31. |
| 6644 | Files: src/configure.in, src/auto/configure |
| 6645 | |
| 6646 | Patch 7.4.1039 (after 7.4.1037) |
| 6647 | Problem: Test 31 fails with small build. |
| 6648 | Solution: Bail out for small build. (Hirohito Higashi) |
| 6649 | Files: src/testdir/test31.in |
| 6650 | |
| 6651 | Patch 7.4.1040 |
| 6652 | Problem: The tee command is not available on MS-Windows. |
| 6653 | Solution: Adjust tee.c for MSVC and add a makefile. (Yasuhiro Matsumoto) |
| 6654 | Files: src/tee/tee.c, src/tee/Make_mvc.mak, src/Make_mvc.mak |
| 6655 | |
| 6656 | Patch 7.4.1041 |
| 6657 | Problem: Various small things. |
| 6658 | Solution: Add file to list of distributed files. Adjust README. Fix typo. |
| 6659 | Files: Filelist, src/testdir/README.txt, src/testdir/test_charsearch.in, |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 6660 | src/INSTALLmac.txt |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6661 | |
| 6662 | Patch 7.4.1042 |
| 6663 | Problem: g-CTRL-G shows the word count, but there is no way to get the word |
| 6664 | count in a script. |
| 6665 | Solution: Add the wordcount() function. (Christian Brabandt) |
| 6666 | Files: runtime/doc/editing.txt, runtime/doc/eval.txt, |
| 6667 | runtime/doc/usr_41.txt, src/eval.c, src/normal.c, src/ops.c, |
| 6668 | src/proto/ops.pro, src/testdir/test_wordcount.in, |
| 6669 | src/testdir/test_wordcount.ok, src/testdir/Make_all.mak |
| 6670 | |
| 6671 | Patch 7.4.1043 |
| 6672 | Problem: Another small thing. |
| 6673 | Solution: Now really update the Mac install text. |
| 6674 | Files: src/INSTALLmac.txt |
| 6675 | |
| 6676 | Patch 7.4.1044 (after 7.4.1042) |
| 6677 | Problem: Can't build without the +eval feature. |
| 6678 | Solution: Add #ifdef. |
| 6679 | Files: src/ops.c |
| 6680 | |
| 6681 | Patch 7.4.1045 |
| 6682 | Problem: Having shadow and coverage on the same build results in the source |
| 6683 | files not being available in the coverage view. |
| 6684 | Solution: Move using shadow to the normal build. |
| 6685 | Files: .travis.yml |
| 6686 | |
| 6687 | Patch 7.4.1046 |
| 6688 | Problem: No test coverage for menus. |
| 6689 | Solution: Load the standard menus and check there is no error. |
| 6690 | Files: testdir/test_menu.vim, testdir/test_alot.vim |
| 6691 | |
| 6692 | Patch 7.4.1047 (after patch 7.4.1042) |
| 6693 | Problem: Tests fail on MS-Windows. |
| 6694 | Solution: Set 'selection' to inclusive. |
| 6695 | Files: src/testdir/test_wordcount.in |
| 6696 | |
| 6697 | Patch 7.4.1048 (after patch 7.4.1047) |
| 6698 | Problem: Wordcount test still fail on MS-Windows. |
| 6699 | Solution: Set 'fileformat' to "unix". |
| 6700 | Files: src/testdir/test_wordcount.in |
| 6701 | |
| 6702 | Patch 7.4.1049 (after patch 7.4.1048) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6703 | Problem: Wordcount test still fails on MS-Windows. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6704 | Solution: Set 'fileformats' to "unix". |
| 6705 | Files: src/testdir/test_wordcount.in |
| 6706 | |
| 6707 | Patch 7.4.1050 |
| 6708 | Problem: Warning for unused var with tiny features. (Tony Mechelynck) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6709 | Solution: Add #ifdef. Use vim_snprintf(). Reduce number of statements. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6710 | Files: src/ops.c |
| 6711 | |
| 6712 | Patch 7.4.1051 |
| 6713 | Problem: Segfault when unletting "count". |
| 6714 | Solution: Check for readonly and locked first. (Dominique Pelle) |
| 6715 | Add a test. |
| 6716 | Files: src/eval.c, src/testdir/test_alot.vim, src/testdir/test_unlet.vim |
| 6717 | |
| 6718 | Patch 7.4.1052 |
| 6719 | Problem: Illegal memory access with weird syntax command. (Dominique Pelle) |
| 6720 | Solution: Check for column past end of line. |
| 6721 | Files: src/syntax.c |
| 6722 | |
| 6723 | Patch 7.4.1053 |
| 6724 | Problem: Insufficient testing for quickfix commands. |
| 6725 | Solution: Add a new style quickfix test. (Yegappan Lakshmanan) |
| 6726 | Files: src/testdir/Make_all.mak, src/testdir/test_quickfix.vim |
| 6727 | |
| 6728 | Patch 7.4.1054 |
| 6729 | Problem: Illegal memory access. |
| 6730 | Solution: Check for missing pattern. (Dominique Pelle) |
| 6731 | Files: src/syntax.c |
| 6732 | |
| 6733 | Patch 7.4.1055 |
| 6734 | Problem: Running "make newtests" in src/testdir has no output. |
| 6735 | Solution: List the messages file when a test fails. (Christian Brabandt) |
| 6736 | Update the list of tests. |
| 6737 | Files: src/Makefile, src/testdir/Makefile |
| 6738 | |
| 6739 | Patch 7.4.1056 |
| 6740 | Problem: Don't know why finding spell suggestions is slow. |
| 6741 | Solution: Add some code to gather profiling information. |
| 6742 | Files: src/spell.c |
| 6743 | |
| 6744 | Patch 7.4.1057 |
| 6745 | Problem: Typos in the :options window. |
| 6746 | Solution: Fix the typos. (Dominique Pelle) |
| 6747 | Files: runtime/optwin.vim |
| 6748 | |
| 6749 | Patch 7.4.1058 |
| 6750 | Problem: It is not possible to test code that is only reached when memory |
| 6751 | allocation fails. |
| 6752 | Solution: Add the alloc_fail() function. Try it out with :vimgrep. |
| 6753 | Files: runtime/doc/eval.txt, src/globals.h, src/eval.c, src/quickfix.c, |
| 6754 | src/misc2.c, src/proto/misc2.pro, src/testdir/test_quickfix.vim |
| 6755 | |
| 6756 | Patch 7.4.1059 |
| 6757 | Problem: Code will never be executed. |
| 6758 | Solution: Remove the code. |
| 6759 | Files: src/quickfix.c |
| 6760 | |
| 6761 | Patch 7.4.1060 |
| 6762 | Problem: Instructions for writing tests are outdated. |
| 6763 | Solution: Mention Make_all.mak. Add steps for new style tests. |
| 6764 | Files: src/testdir/README.txt |
| 6765 | |
| 6766 | Patch 7.4.1061 |
| 6767 | Problem: Compiler warning for ignoring return value of fwrite(). |
| 6768 | Solution: Do use the return value. (idea: Charles Campbell) |
| 6769 | Files: src/misc2.c, src/proto/misc2.pro |
| 6770 | |
| 6771 | Patch 7.4.1062 |
| 6772 | Problem: Building with Ruby on MS-Windows requires a lot of arguments. |
| 6773 | Solution: Make it simpler. (Ken Takata) |
| 6774 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 6775 | |
| 6776 | Patch 7.4.1063 |
| 6777 | Problem: TCL_VER_LONG and DYNAMIC_TCL_VER are not set when building with |
| 6778 | Cygwin and MingW. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6779 | 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] | 6780 | Files: src/Make_cyg_ming.mak |
| 6781 | |
| 6782 | Patch 7.4.1064 |
| 6783 | Problem: When a spell file has single letter compounding creating |
| 6784 | suggestions takes an awful long time. |
| 6785 | Solution: Add the NOCOMPOUNDSUGS flag. |
| 6786 | Files: runtime/doc/spell.txt, src/spell.c |
| 6787 | |
| 6788 | Patch 7.4.1065 |
| 6789 | Problem: Cannot use the "dll" options on MS-Windows. |
| 6790 | Solution: Support the options on all platforms. Use the built-in name as |
| 6791 | the default, so that it's clear what Vim is looking for. |
| 6792 | Files: src/if_python.c, src/if_python3.c, src/if_lua.c, src/if_perl.xs, |
| 6793 | src/if_ruby.c, src/option.c, runtime/doc/options.txt, src/Makefile |
| 6794 | |
| 6795 | Patch 7.4.1066 (after 7.4.1065) |
| 6796 | Problem: Build fails on MS-Windows. |
| 6797 | Solution: Adjust the #ifdefs for "dll" options. |
| 6798 | Files: src/option.h |
| 6799 | |
| 6800 | Patch 7.4.1067 (after 7.4.1065) |
| 6801 | Problem: Can't build with MingW and Python on MS-Windows. |
| 6802 | Solution: Move the build flags to CFLAGS. |
| 6803 | Files: src/Make_cyg_ming.mak |
| 6804 | |
| 6805 | Patch 7.4.1068 |
| 6806 | Problem: Wrong way to check for unletting internal variables. |
| 6807 | Solution: Use a better way. (Olaf Dabrunz) |
| 6808 | Files: src/testdir/test_unlet.c, src/eval.c |
| 6809 | |
| 6810 | Patch 7.4.1069 |
| 6811 | Problem: Compiler warning for unused argument. |
| 6812 | Solution: Add UNUSED. |
| 6813 | Files: src/misc2.c |
| 6814 | |
| 6815 | Patch 7.4.1070 |
| 6816 | Problem: The Tcl interface can't be loaded dynamically on Unix. |
| 6817 | Solution: Make it possible to load it dynamically. (Ken Takata) |
| 6818 | Files: runtime/doc/if_tcl.txt, runtime/doc/options.txt, |
| 6819 | runtime/doc/quickref.txt, runtime/optwin.vim, src/Makefile, |
| 6820 | src/config.h.in, src/configure.in, src/auto/configure, |
| 6821 | src/if_tcl.c, src/option.c, src/option.h |
| 6822 | |
| 6823 | Patch 7.4.1071 |
| 6824 | Problem: New style tests are executed in arbitrary order. |
| 6825 | Solution: Sort the test function names. (Hirohito Higashi) |
| 6826 | Fix the quickfix test that depended on the order. |
| 6827 | Files: src/testdir/runtest.vim, src/testdir/test_quickfix.vim |
| 6828 | |
| 6829 | Patch 7.4.1072 |
| 6830 | Problem: Increment test is old style. |
| 6831 | Solution: Make the increment test a new style test. (Hirohito Higashi) |
| 6832 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 6833 | src/testdir/test_increment.in, src/testdir/test_increment.ok, |
| 6834 | src/testdir/test_increment.vim |
| 6835 | |
| 6836 | Patch 7.4.1073 |
| 6837 | Problem: Alloc_id depends on numbers, may use the same one twice. It's not |
| 6838 | clear from the number what it's for. |
| 6839 | Solution: Use an enum. Add a function to lookup the enum value from the |
| 6840 | name. |
| 6841 | Files: src/misc2.c, src/vim.h, src/alloc.h, src/globals.h, |
| 6842 | src/testdir/runtest.vim, src/proto/misc2.pro, |
| 6843 | src/testdir/test_quickfix.vim |
| 6844 | |
| 6845 | Patch 7.4.1074 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 6846 | Problem: Warning from VC2015 compiler. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6847 | Solution: Add a type cast. (Mike Williams) |
| 6848 | Files: src/gui_dwrite.cpp |
| 6849 | |
| 6850 | Patch 7.4.1075 |
| 6851 | Problem: Crash when using an invalid command. |
| 6852 | Solution: Fix generating the error message. (Dominique Pelle) |
| 6853 | Files: src/ex_docmd.c |
| 6854 | |
| 6855 | Patch 7.4.1076 |
| 6856 | Problem: CTRL-A does not work well in right-left mode. |
| 6857 | Solution: Remove reversing the line, add a test. (Hirohito Higashi) |
| 6858 | Files: src/ops.c, src/testdir/test_increment.vim |
| 6859 | |
| 6860 | Patch 7.4.1077 |
| 6861 | Problem: The build instructions for MS-Windows are incomplete. |
| 6862 | Solution: Add explanations for how to build with various interfaces. (Ken |
| 6863 | Takata) |
| 6864 | Files: src/INSTALLpc.txt |
| 6865 | |
| 6866 | Patch 7.4.1078 |
| 6867 | Problem: MSVC: "make clean" doesn't cleanup in the tee directory. |
| 6868 | Solution: Add the commands to cleanup tee. (Erich Ritz) |
| 6869 | Files: src/Make_mvc.mak |
| 6870 | |
| 6871 | Patch 7.4.1079 (after 7.4.1073) |
| 6872 | Problem: New include file missing from distribution. Missing changes to |
| 6873 | quickfix code. |
| 6874 | Solution: Add alloc.h to the list of distributed files. Use the enum in |
| 6875 | quickfix code. |
| 6876 | Files: Filelist, src/quickfix.c |
| 6877 | |
| 6878 | Patch 7.4.1080 |
| 6879 | Problem: VS2015 has a function HandleToLong() that is shadowed by the macro |
| 6880 | that Vim defines. |
| 6881 | Solution: Do not define HandleToLong() for MSVC version 1400 and later. |
| 6882 | (Mike Williams) |
| 6883 | Files: src/gui_w32.c |
| 6884 | |
| 6885 | Patch 7.4.1081 |
| 6886 | Problem: No test for what previously caused a crash. |
| 6887 | Solution: Add test for unletting errmsg. |
| 6888 | Files: src/testdir/test_unlet.vim |
| 6889 | |
| 6890 | Patch 7.4.1082 |
| 6891 | Problem: The Tcl interface is always skipping memory free on exit. |
| 6892 | Solution: Only skip for dynamically loaded Tcl. |
| 6893 | Files: src/if_tcl.c |
| 6894 | |
| 6895 | Patch 7.4.1083 |
| 6896 | Problem: Building GvimExt with VS2015 may fail. |
| 6897 | Solution: Adjust the makefile. (Mike Williams) |
| 6898 | Files: src/GvimExt/Makefile |
| 6899 | |
| 6900 | Patch 7.4.1084 |
| 6901 | Problem: Using "." to repeat CTRL-A in Visual mode increments the wrong |
| 6902 | numbers. |
| 6903 | Solution: Append right size to the redo buffer. (Ozaki Kiichi) |
| 6904 | Files: src/normal.c, src/testdir/test_increment.vim |
| 6905 | |
| 6906 | Patch 7.4.1085 |
| 6907 | Problem: The CTRL-A and CTRL-X commands do not update the '[ and '] marks. |
| 6908 | Solution: (Yukihiro Nakadaira) |
| 6909 | Files: src/ops.c, src/testdir/test_marks.in, src/testdir/test_marks.ok |
| 6910 | |
| 6911 | Patch 7.4.1086 |
| 6912 | Problem: Crash with an extremely long buffer name. |
| 6913 | Solution: Limit the return value of vim_snprintf(). (Dominique Pelle) |
| 6914 | Files: src/buffer.c |
| 6915 | |
| 6916 | Patch 7.4.1087 |
| 6917 | Problem: CTRL-A and CTRL-X do not work properly with blockwise visual |
| 6918 | selection if there is a mix of Tab and spaces. |
| 6919 | Solution: Add OP_NR_ADD and OP_NR_SUB. (Hirohito Higashi) |
| 6920 | Files: src/testdir/test_increment.vim, src/normal.c, src/ops.c, |
| 6921 | src/proto/ops.pro, src/vim.h |
| 6922 | |
| 6923 | Patch 7.4.1088 |
| 6924 | Problem: Coverity warns for uninitialized variables. Only one is an actual |
| 6925 | problem. |
| 6926 | Solution: Move the conditions. Don't use endpos if handling an error. |
| 6927 | Files: src/ops.c |
| 6928 | |
| 6929 | Patch 7.4.1089 |
| 6930 | Problem: Repeating CTRL-A doesn't work. |
| 6931 | Solution: Call prep_redo_cmd(). (Hirohito Higashi) |
| 6932 | Files: src/normal.c, src/testdir/test_increment.vim |
| 6933 | |
| 6934 | Patch 7.4.1090 |
| 6935 | Problem: No tests for :hardcopy and related options. |
| 6936 | Solution: Add test_hardcopy. |
| 6937 | Files: src/testdir/test_hardcopy.vim, src/Makefile, |
| 6938 | src/testdir/Make_all.mak |
| 6939 | |
| 6940 | Patch 7.4.1091 |
| 6941 | Problem: When making a change while need_wait_return is set there is a two |
| 6942 | second delay. |
| 6943 | Solution: Do not assume the ATTENTION prompt was given when need_wait_return |
| 6944 | was set already. |
| 6945 | Files: src/misc1.c |
| 6946 | |
| 6947 | Patch 7.4.1092 |
| 6948 | Problem: It is not simple to test for an exception and give a proper error |
| 6949 | message. |
| 6950 | Solution: Add assert_exception(). |
| 6951 | Files: src/eval.c, runtime/doc/eval.txt |
| 6952 | |
| 6953 | Patch 7.4.1093 |
| 6954 | Problem: Typo in test goes unnoticed. |
| 6955 | Solution: Fix the typo. Give error for wrong arguments to cursor(). |
| 6956 | (partly by Hirohito Higashi) Add a test for cursor(). |
| 6957 | Files: src/testdir/test_searchpos.vim, src/testdir/test_cursor_func.vim, |
| 6958 | src/eval.c, src/testdir/test_alot.vim |
| 6959 | |
| 6960 | Patch 7.4.1094 |
| 6961 | Problem: Test for :hardcopy fails on MS-Windows. |
| 6962 | Solution: Check for the +postscript feature. |
| 6963 | Files: src/testdir/test_hardcopy.vim |
| 6964 | |
| 6965 | Patch 7.4.1095 |
| 6966 | Problem: Can't build GvimExt with SDK 7.1. |
| 6967 | Solution: Support using setenv.bat instead of vcvars32.bat. (Ken Takata) |
| 6968 | Files: src/Make_mvc.mak, src/GvimExt/Makefile |
| 6969 | |
| 6970 | Patch 7.4.1096 |
| 6971 | Problem: Need several lines to verify a command produces an error. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 6972 | Solution: Add assert_fails(). (suggested by Nikolai Pavlov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 6973 | Make the quickfix alloc test actually work. |
| 6974 | Files: src/testdir/test_quickfix.vim, src/eval.c, runtime/doc/eval.txt, |
| 6975 | src/misc2.c, src/alloc.h |
| 6976 | |
| 6977 | Patch 7.4.1097 |
| 6978 | Problem: Looking up the alloc ID for tests fails. |
| 6979 | Solution: Fix the line computation. Use assert_fails() for unlet test. |
| 6980 | Files: src/testdir/runtest.vim, src/testdir/test_unlet.vim |
| 6981 | |
| 6982 | Patch 7.4.1098 |
| 6983 | Problem: Still using old style C function declarations. |
| 6984 | Solution: Always define __ARGS() to include types. Turn a few functions |
| 6985 | into ANSI style to find out if this causes problems for anyone. |
| 6986 | Files: src/vim.h, src/os_unix.h, src/eval.c, src/main.c |
| 6987 | |
| 6988 | Patch 7.4.1099 |
| 6989 | Problem: It's not easy to know if Vim supports blowfish. (Smu Johnson) |
| 6990 | Solution: Add has('crypt-blowfish') and has('crypt-blowfish2'). |
| 6991 | Files: src/eval.c |
| 6992 | |
| 6993 | Patch 7.4.1100 |
| 6994 | Problem: Cygwin makefiles are unused. |
| 6995 | Solution: Remove them. |
| 6996 | Files: src/GvimExt/Make_ming.mak, src/GvimExt/Make_cyg.mak, |
| 6997 | src/xxd/Make_ming.mak, src/xxd/Make_cyg.mak |
| 6998 | |
| 6999 | Patch 7.4.1101 |
| 7000 | Problem: With 'rightleft' and concealing the cursor may move to the wrong |
| 7001 | position. |
| 7002 | Solution: Compute the column differently when 'rightleft' is set. (Hirohito |
| 7003 | Higashi) |
| 7004 | Files: src/screen.c |
| 7005 | |
| 7006 | Patch 7.4.1102 |
| 7007 | Problem: Debugger has no stack backtrace support. |
| 7008 | Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto |
| 7009 | Fanjul, closes #433) |
| 7010 | Files: runtime/doc/repeat.txt, src/eval.c, src/ex_cmds2.c, src/globals.h, |
| 7011 | src/testdir/Make_all.mak, src/testdir/test108.in, |
| 7012 | src/testdir/test108.ok |
| 7013 | |
| 7014 | Patch 7.4.1103 (after 7.4.1100) |
| 7015 | Problem: Removed file still in distribution. |
| 7016 | Solution: Remove Make_cyg.mak from the list of files. |
| 7017 | Files: Filelist |
| 7018 | |
| 7019 | Patch 7.4.1104 |
| 7020 | Problem: Various problems building with MzScheme/Racket. |
| 7021 | Solution: Make it work with new versions of Racket. (Yukihiro Nakadaira, Ken |
| 7022 | Takata) |
| 7023 | Files: runtime/doc/if_mzsch.txt, src/INSTALLpc.txt, |
| 7024 | src/Make_cyg_ming.mak, src/Make_mvc.mak, src/auto/configure, |
| 7025 | src/configure.in, src/if_mzsch.c |
| 7026 | |
| 7027 | Patch 7.4.1105 |
| 7028 | Problem: When using slices there is a mixup of variable name and namespace. |
| 7029 | Solution: Recognize variables that can't be a namespace. (Hirohito Higashi) |
| 7030 | Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok |
| 7031 | |
| 7032 | Patch 7.4.1106 |
| 7033 | Problem: The nsis script can't be used from the appveyor build. |
| 7034 | Solution: Add "ifndef" to allow for variables to be set from the command |
| 7035 | line. Remove duplicate SetCompressor command. Support using other |
| 7036 | gettext binaries. (Ken Takata) Update build instructions to use |
| 7037 | libintl-8.dll. |
| 7038 | Files: Makefile, nsis/gvim.nsi, src/os_win32.c, src/proto/os_win32.pro, |
| 7039 | src/main.c, os_w32exe.c |
| 7040 | |
| 7041 | Patch 7.4.1107 |
| 7042 | Problem: Vim can create a directory but not delete it. |
| 7043 | Solution: Add an argument to delete() to make it possible to delete a |
| 7044 | directory, also recursively. |
| 7045 | Files: src/fileio.c, src/eval.c, src/proto/fileio.pro, |
| 7046 | src/testdir/test_delete.vim, src/testdir/test_alot.vim, |
| 7047 | runtime/doc/eval.txt |
| 7048 | |
| 7049 | Patch 7.4.1108 |
| 7050 | Problem: Expanding "~" halfway a file name. |
| 7051 | Solution: Handle the file name as one name. (Marco Hinz) Add a test. |
| 7052 | Closes #564. |
| 7053 | Files: src/testdir/test27.in, src/testdir/test27.ok, |
| 7054 | src/testdir/test_expand.vim, src/testdir/test_alot.vim, |
| 7055 | src/Makefile, src/misc2.c |
| 7056 | |
| 7057 | Patch 7.4.1109 (after 7.4.1107) |
| 7058 | Problem: MS-Windows doesn't have rmdir(). |
| 7059 | Solution: Add mch_rmdir(). |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 7060 | Files: src/os_win32.c, src/proto/os_win32.pro |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7061 | |
| 7062 | Patch 7.4.1110 |
| 7063 | Problem: Test 108 fails when language is French. |
| 7064 | Solution: Force English messages. (Dominique Pelle) |
| 7065 | Files: src/testdir/test108.in |
| 7066 | |
| 7067 | Patch 7.4.1111 |
| 7068 | Problem: test_expand fails on MS-Windows. |
| 7069 | Solution: Always use forward slashes. Remove references to test27. |
| 7070 | Files: src/testdir/runtest.vim, src/testdir/test_expand.vim, |
| 7071 | src/testdir/Make_dos.mak, src/testdir/Make_all.mak, |
| 7072 | src/testdir/Make_amiga.mak, src/testdir/Make_ming.mak |
| 7073 | |
| 7074 | Patch 7.4.1112 |
| 7075 | Problem: When using ":next" with an illegal file name no error is reported. |
| 7076 | Solution: Give an error message. |
| 7077 | Files: src/ex_cmds2.c |
| 7078 | |
| 7079 | Patch 7.4.1113 (after 7.4.1105) |
| 7080 | Problem: Using {ns} in variable name does not work. (lilydjwg) |
| 7081 | Solution: Fix recognizing colon. Add a test. |
| 7082 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7083 | |
| 7084 | Patch 7.4.1114 (after 7.4.1107) |
| 7085 | Problem: delete() does not work well with symbolic links. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7086 | Solution: Recognize symbolic links. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7087 | Files: src/eval.c, src/fileio.c, src/os_unix.c, src/proto/os_unix.pro, |
| 7088 | src/testdir/test_delete.vim, runtime/doc/eval.txt |
| 7089 | |
| 7090 | Patch 7.4.1115 |
| 7091 | Problem: MS-Windows: make clean in testdir doesn't clean everything. |
| 7092 | Solution: Add command to delete X* directories. (Ken Takata) |
| 7093 | Files: src/testdir/Make_dos.mak |
| 7094 | |
| 7095 | Patch 7.4.1116 |
| 7096 | Problem: delete(x, 'rf') does not delete files starting with a dot. |
| 7097 | Solution: Also delete files starting with a dot. |
| 7098 | Files: src/misc1.c, src/fileio.c, src/vim.h |
| 7099 | |
| 7100 | Patch 7.4.1117 (after 7.4.1116) |
| 7101 | Problem: No longer get "." and ".." in directory list. |
| 7102 | Solution: Do not skip "." and ".." unless EW_DODOT is set. |
| 7103 | Files: src/mics1.c |
| 7104 | |
| 7105 | Patch 7.4.1118 |
| 7106 | Problem: Tests hang in 24 line terminal. |
| 7107 | Solution: Set the 'more' option off. |
| 7108 | Files: src/testdir/runtest.vim |
| 7109 | |
| 7110 | Patch 7.4.1119 |
| 7111 | Problem: argidx() has a wrong value after ":%argdelete". (Yegappan |
| 7112 | Lakshmanan) |
| 7113 | Solution: Correct the value of w_arg_idx. Add a test. |
| 7114 | Files: src/ex_cmds2.c, src/testdir/test_arglist.vim, |
| 7115 | src/testdir/Make_all.mak |
| 7116 | |
| 7117 | Patch 7.4.1120 |
| 7118 | Problem: delete(x, 'rf') fails if a directory is empty. (Lcd) |
| 7119 | Solution: Ignore not finding matches in an empty directory. |
| 7120 | Files: src/fileio.c, src/misc1.c, src/vim.h, src/testdir/test_delete.vim |
| 7121 | |
| 7122 | Patch 7.4.1121 |
| 7123 | Problem: test_expand leaves files behind. |
| 7124 | Solution: Edit another file before deleting, otherwise the swap file |
| 7125 | remains. |
| 7126 | Files: src/testdir/test_expand.vim |
| 7127 | |
| 7128 | Patch 7.4.1122 |
| 7129 | Problem: Test 92 and 93 fail when using gvim on a system with a non utf-8 |
| 7130 | locale. |
| 7131 | Solution: Avoid using .gvimrc by adding -U NONE. (Yukihiro Nakadaira) |
| 7132 | Files: src/testdir/Make_dos.mak, src/testdir/Make_ming.mak, |
| 7133 | src/testdir/Make_vms.mms, src/testdir/Makefile |
| 7134 | |
| 7135 | Patch 7.4.1123 |
| 7136 | Problem: Using ":argadd" when there are no arguments results in the second |
| 7137 | argument to be the current one. (Yegappan Lakshmanan) |
| 7138 | Solution: Correct the w_arg_idx value. |
| 7139 | Files: src/ex_cmds2.c, src/testdir/test_arglist.vim |
| 7140 | |
| 7141 | Patch 7.4.1124 |
| 7142 | Problem: MS-Windows: dead key behavior is not ideal. |
| 7143 | Solution: Handle dead keys differently when not in Insert or Select mode. |
| 7144 | (John Wellesz, closes #399) |
| 7145 | Files: src/gui_w48.c |
| 7146 | |
| 7147 | Patch 7.4.1125 |
| 7148 | Problem: There is no perleval(). |
| 7149 | Solution: Add perleval(). (Damien) |
| 7150 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c, |
| 7151 | src/if_perl.xs, src/proto/if_perl.pro, src/testdir/Make_all.mak, |
| 7152 | src/testdir/test_perl.vim |
| 7153 | |
| 7154 | Patch 7.4.1126 |
| 7155 | Problem: Can only get the directory of the current window. |
| 7156 | Solution: Add window and tab arguments to getcwd() and haslocaldir(). |
| 7157 | (Thinca, Hirohito Higashi) |
| 7158 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 7159 | src/testdir/test_getcwd.in, src/testdir/test_getcwd.ok, |
| 7160 | runtime/doc/eval.txt, patching file src/eval.c |
| 7161 | |
| 7162 | Patch 7.4.1127 |
| 7163 | Problem: Both old and new style tests for Perl. |
| 7164 | Solution: Merge the old tests with the new style tests. |
| 7165 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_perl.in, |
| 7166 | src/testdir/test_perl.ok, src/testdir/test_perl.vim |
| 7167 | |
| 7168 | Patch 7.4.1128 |
| 7169 | Problem: MS-Windows: delete() does not recognize junctions. |
| 7170 | Solution: Add mch_isrealdir() for MS-Windows. Update mch_is_symbolic_link(). |
| 7171 | (Ken Takata) |
| 7172 | Files: src/fileio.c, src/os_win32.c, src/proto/os_win32.pro |
| 7173 | |
| 7174 | Patch 7.4.1129 |
| 7175 | Problem: Python None value can't be converted to a Vim value. |
| 7176 | Solution: Just use zero. (Damien) |
| 7177 | Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok, |
| 7178 | src/testdir/test87.in, src/testdir/test87.ok, |
| 7179 | |
| 7180 | Patch 7.4.1130 |
| 7181 | Problem: Memory leak in :vimgrep. |
| 7182 | Solution: Call FreeWild(). (Yegappan Lakshmanan) |
| 7183 | Files: src/quickfix.c |
| 7184 | |
| 7185 | Patch 7.4.1131 |
| 7186 | Problem: New lines in the viminfo file are dropped. |
| 7187 | Solution: Copy lines starting with "|". Fix that when using :rviminfo in a |
| 7188 | function global variables were restored as function-local |
| 7189 | variables. |
| 7190 | Files: src/eval.c, src/structs.h, src/ex_cmds.c, src/misc2.c, |
| 7191 | src/proto/misc2.pro, src/testdir/test_viminfo.vim, |
| 7192 | src/testdir/Make_all.mak, src/testdir/test74.in, |
| 7193 | src/testdir/test74.ok |
| 7194 | |
| 7195 | Patch 7.4.1132 |
| 7196 | Problem: Old style tests for the argument list. |
| 7197 | Solution: Add more new style tests. (Yegappan Lakshmanan) |
| 7198 | Files: src/testdir/test_arglist.vim, src/testdir/test_argument_0count.in, |
| 7199 | src/testdir/test_argument_0count.ok, |
| 7200 | src/testdir/test_argument_count.in, src/Makefile, |
| 7201 | src/testdir/test_argument_count.ok, src/testdir/Make_all.mak |
| 7202 | |
| 7203 | Patch 7.4.1133 |
| 7204 | Problem: Generated function prototypes still have __ARGS(). |
| 7205 | Solution: Generate function prototypes without __ARGS(). |
| 7206 | Files: src/Makefile, src/if_ruby.c, src/os_win32.c, |
| 7207 | src/proto/blowfish.pro, src/proto/buffer.pro, |
| 7208 | src/proto/charset.pro, src/proto/crypt.pro, |
| 7209 | src/proto/crypt_zip.pro, src/proto/diff.pro, |
| 7210 | src/proto/digraph.pro, src/proto/edit.pro, src/proto/eval.pro, |
| 7211 | src/proto/ex_cmds2.pro, src/proto/ex_cmds.pro, |
| 7212 | src/proto/ex_docmd.pro, src/proto/ex_eval.pro, |
| 7213 | src/proto/ex_getln.pro, src/proto/fileio.pro, src/proto/fold.pro, |
| 7214 | src/proto/getchar.pro, src/proto/gui_athena.pro, |
| 7215 | src/proto/gui_beval.pro, src/proto/gui_gtk_gresources.pro, |
| 7216 | src/proto/gui_gtk.pro, src/proto/gui_gtk_x11.pro, |
| 7217 | src/proto/gui_mac.pro, src/proto/gui_motif.pro, |
| 7218 | src/proto/gui_photon.pro, src/proto/gui.pro, |
| 7219 | src/proto/gui_w16.pro, src/proto/gui_w32.pro, |
| 7220 | src/proto/gui_x11.pro, src/proto/gui_xmdlg.pro, |
| 7221 | src/proto/hangulin.pro, src/proto/hardcopy.pro, |
| 7222 | src/proto/hashtab.pro, src/proto/if_cscope.pro, |
| 7223 | src/proto/if_lua.pro, src/proto/if_mzsch.pro, |
| 7224 | src/proto/if_ole.pro, src/proto/if_perl.pro, |
| 7225 | src/proto/if_perlsfio.pro, src/proto/if_python3.pro, |
| 7226 | src/proto/if_python.pro, src/proto/if_ruby.pro, |
| 7227 | src/proto/if_tcl.pro, src/proto/if_xcmdsrv.pro, |
| 7228 | src/proto/main.pro, src/proto/mark.pro, src/proto/mbyte.pro, |
| 7229 | src/proto/memfile.pro, src/proto/memline.pro, src/proto/menu.pro, |
| 7230 | src/proto/message.pro, src/proto/misc1.pro, src/proto/misc2.pro, |
| 7231 | src/proto/move.pro, src/proto/netbeans.pro, src/proto/normal.pro, |
| 7232 | src/proto/ops.pro, src/proto/option.pro, src/proto/os_amiga.pro, |
| 7233 | src/proto/os_beos.pro, src/proto/os_mac_conv.pro, |
| 7234 | src/proto/os_msdos.pro, src/proto/os_mswin.pro, |
| 7235 | src/proto/os_qnx.pro, src/proto/os_unix.pro, src/proto/os_vms.pro, |
| 7236 | src/proto/os_win16.pro, src/proto/os_win32.pro, |
| 7237 | src/proto/popupmnu.pro, src/proto/pty.pro, src/proto/quickfix.pro, |
| 7238 | src/proto/regexp.pro, src/proto/screen.pro, src/proto/search.pro, |
| 7239 | src/proto/sha256.pro, src/proto/spell.pro, src/proto/syntax.pro, |
| 7240 | src/proto/tag.pro, src/proto/termlib.pro, src/proto/term.pro, |
| 7241 | src/proto/ui.pro, src/proto/undo.pro, src/proto/version.pro, |
| 7242 | src/proto/winclip.pro, src/proto/window.pro, |
| 7243 | src/proto/workshop.pro |
| 7244 | |
| 7245 | Patch 7.4.1134 |
| 7246 | Problem: The arglist test fails on MS-Windows. |
| 7247 | Solution: Only check for failure of argedit on Unix. |
| 7248 | Files: src/testdir/test_arglist.vim |
| 7249 | |
| 7250 | Patch 7.4.1135 |
| 7251 | Problem: One more arglist test fails on MS-Windows. |
| 7252 | Solution: Don't edit "Y" after editing "y". |
| 7253 | Files: src/testdir/test_arglist.vim |
| 7254 | |
| 7255 | Patch 7.4.1136 |
| 7256 | Problem: Wrong argument to assert_exception() causes a crash. (reported by |
| 7257 | Coverity) |
| 7258 | Solution: Check for NULL pointer. Add a test. |
| 7259 | Files: src/eval.c, src/testdir/test_assert.vim |
| 7260 | |
| 7261 | Patch 7.4.1137 |
| 7262 | Problem: Illegal memory access when using :copen and :cclose. |
| 7263 | Solution: Avoid that curbuf is invalid. (suggestion by Justin M. Keyes) |
| 7264 | Add a test. |
| 7265 | Files: src/window.c, src/testdir/test_quickfix.vim |
| 7266 | |
| 7267 | Patch 7.4.1138 |
| 7268 | Problem: When running gvim in the foreground some icons are missing. |
| 7269 | (Taylor Venable) |
| 7270 | Solution: Move the call to gui_gtk_register_resource(). (Kazunobu Kuriyama) |
| 7271 | Files: src/gui_gtk_x11.c |
| 7272 | |
| 7273 | Patch 7.4.1139 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7274 | Problem: MS-Windows: getftype() returns "file" for symlink to directory. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7275 | Solution: Make it return "dir". (Ken Takata) |
| 7276 | Files: src/os_mswin.c |
| 7277 | |
| 7278 | Patch 7.4.1140 |
| 7279 | Problem: Recognizing <sid> does not work when the language is Turkish. |
| 7280 | (Christian Brabandt) |
| 7281 | Solution: Use MB_STNICMP() instead of STNICMP(). |
| 7282 | Files: src/eval.c |
| 7283 | |
| 7284 | Patch 7.4.1141 |
| 7285 | Problem: Using searchpair() with a skip expression that uses syntax |
| 7286 | highlighting sometimes doesn't work. (David Fishburn) |
| 7287 | Solution: Reset next_match_idx. (Christian Brabandt) |
| 7288 | Files: src/syntax.c |
| 7289 | |
| 7290 | Patch 7.4.1142 |
| 7291 | Problem: Cannot define keyword characters for a syntax file. |
| 7292 | Solution: Add the ":syn iskeyword" command. (Christian Brabandt) |
| 7293 | Files: runtime/doc/options.txt, runtime/doc/syntax.txt, src/buffer.c, |
| 7294 | src/option.c, src/structs.h, src/syntax.c, |
| 7295 | src/testdir/Make_all.mak, src/testdir/test_syntax.vim |
| 7296 | |
| 7297 | Patch 7.4.1143 |
| 7298 | Problem: Can't sort on floating point numbers. |
| 7299 | Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" |
| 7300 | flag to sort(). |
| 7301 | Files: runtime/doc/change.txt, src/ex_cmds.c, src/testdir/test_sort.vim, |
| 7302 | src/testdir/test57.in, src/testdir/test57.ok, src/eval.c |
| 7303 | |
| 7304 | Patch 7.4.1144 (after 7.4.1143) |
| 7305 | Problem: Can't build on several systems. |
| 7306 | Solution: Include float.h. (Christian Robinson, closes #570 #571) |
| 7307 | Files: src/ex_cmds.c |
| 7308 | |
| 7309 | Patch 7.4.1145 |
| 7310 | Problem: Default features are conservative. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7311 | 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] | 7312 | Files: src/feature.h, src/configure.in, src/auto/configure |
| 7313 | |
| 7314 | Patch 7.4.1146 |
| 7315 | Problem: Can't build with Python 3 interface using MingW. |
| 7316 | Solution: Update the Makefile. (Yasuhiro Matsumoto, Ken Takata) |
| 7317 | Files: src/Make_cyg_ming.mak |
| 7318 | |
| 7319 | Patch 7.4.1147 |
| 7320 | Problem: Conflict for "chartab". (Kazunobu Kuriyama) |
| 7321 | Solution: Rename the global one to something less obvious. Move it into |
| 7322 | src/chartab.c. |
| 7323 | Files: src/macros.h, src/globals.h, src/charset.c, src/main.c, |
| 7324 | src/option.c, src/screen.c, src/vim.h |
| 7325 | |
| 7326 | Patch 7.4.1148 |
| 7327 | Problem: Default for MingW and Cygwin is still "normal". |
| 7328 | Solution: Use "huge" as default. (Ken Takata) |
| 7329 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 7330 | |
| 7331 | Patch 7.4.1149 (after 7.4.1013) |
| 7332 | Problem: Using the local value of 'errorformat' causes more problems than |
| 7333 | it solves. |
| 7334 | Solution: Revert 7.4.1013. |
| 7335 | Files: runtime/doc/quickfix.txt, src/quickfix.c |
| 7336 | |
| 7337 | Patch 7.4.1150 |
| 7338 | Problem: 'langmap' applies to the first character typed in Select mode. |
| 7339 | (David Watson) |
| 7340 | Solution: Check for SELECTMODE. (Christian Brabandt, closes #572) |
| 7341 | Add the 'x' flag to feedkeys(). |
| 7342 | Files: src/getchar.c, src/normal.c, src/testdir/test_langmap.vim, |
| 7343 | src/ex_docmd.c, src/proto/ex_docmd.pro, src/testdir/Make_all.mak, |
| 7344 | runtime/doc/eval.txt |
| 7345 | |
| 7346 | Patch 7.4.1151 (after 7.4.1150) |
| 7347 | Problem: Missing change to eval.c |
| 7348 | Solution: Also change feedkeys(). |
| 7349 | Files: src/eval.c |
| 7350 | |
| 7351 | Patch 7.4.1152 |
| 7352 | Problem: Langmap test fails with normal build. |
| 7353 | Solution: Check for +langmap feature. |
| 7354 | Files: src/testdir/test_langmap.vim |
| 7355 | |
| 7356 | Patch 7.4.1153 |
| 7357 | Problem: Autocommands triggered by quickfix cannot always get the current |
| 7358 | title value. |
| 7359 | Solution: Call qf_fill_buffer() later. (Christian Brabandt) |
| 7360 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 7361 | |
| 7362 | Patch 7.4.1154 |
| 7363 | Problem: No support for JSON. |
| 7364 | Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true, |
| 7365 | v:null and v:none. |
| 7366 | Files: src/json.c, src/eval.c, src/proto.h, src/structs.h, src/vim.h, |
| 7367 | src/if_lua.c, src/if_mzsch.c, src/if_ruby.c, src/if_py_both.h, |
| 7368 | src/globals.h, src/Makefile, src/Make_bc3.mak, src/Make_bc5.mak, |
| 7369 | src/Make_cyg_ming.mak, src/Make_dice.mak, src/Make_ivc.mak, |
| 7370 | src/Make_manx.mak, src/Make_morph.mak, src/Make_mvc.mak, |
| 7371 | src/Make_sas.mak, src/Make_vms.mms, src/proto/json.pro, |
| 7372 | src/proto/eval.pro, src/testdir/test_json.vim, |
| 7373 | src/testdir/test_alot.vim, Filelist, runtime/doc/eval.txt |
| 7374 | |
| 7375 | Patch 7.4.1155 |
| 7376 | Problem: Build with normal features fails. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7377 | Solution: Always define dict_lookup(). |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7378 | Files: src/eval.c |
| 7379 | |
| 7380 | Patch 7.4.1156 |
| 7381 | Problem: Coverity warns for NULL pointer and ignoring return value. |
| 7382 | Solution: Check for NULL pointer. When dict_add() returns FAIL free the item. |
| 7383 | Files: src/json.c |
| 7384 | |
| 7385 | Patch 7.4.1157 |
| 7386 | Problem: type() does not work for v:true, v:none, etc. |
| 7387 | Solution: Add new type numbers. |
| 7388 | Files: src/eval.c, src/testdir/test_json.vim, src/testdir/test_viml.vim |
| 7389 | |
| 7390 | Patch 7.4.1158 |
| 7391 | Problem: Still using __ARGS(). |
| 7392 | Solution: Remove __ARGS() from eval.c |
| 7393 | Files: src/eval.c |
| 7394 | |
| 7395 | Patch 7.4.1159 |
| 7396 | Problem: Automatically generated function prototypes use __ARGS. |
| 7397 | Solution: Remove __ARGS from osdef.sh. |
| 7398 | Files: src/osdef.sh, src/osdef1.h.in, src/osdef2.h.in |
| 7399 | |
| 7400 | Patch 7.4.1160 |
| 7401 | Problem: No error for jsondecode('"'). |
| 7402 | Solution: Give an error message for missing double quote. |
| 7403 | Files: src/json.c |
| 7404 | |
| 7405 | Patch 7.4.1161 |
| 7406 | Problem: ":argadd" without argument is supposed to add the current buffer |
| 7407 | name to the arglist. |
| 7408 | Solution: Make it work as documented. (Coot, closes #577) |
| 7409 | Files: src/ex_cmds.h, src/ex_cmds2.c, src/testdir/test_arglist.vim |
| 7410 | |
| 7411 | Patch 7.4.1162 |
| 7412 | Problem: Missing error number in MzScheme. (Dominique Pelle) |
| 7413 | Solution: Add a proper error number. |
| 7414 | Files: src/if_mzsch.c |
| 7415 | |
| 7416 | Patch 7.4.1163 |
| 7417 | Problem: Expressions "0 + v:true" and "'' . v:true" cause an error. |
| 7418 | Solution: Return something sensible when using a special variable as a |
| 7419 | number or as a string. (suggested by Damien) |
| 7420 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7421 | |
| 7422 | Patch 7.4.1164 |
| 7423 | Problem: No tests for comparing special variables. Error in jsondecode() |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7424 | not reported. test_json does not work with Japanese system. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7425 | Solution: Set scriptencoding. (Ken Takata) Add a few more tests. Add error. |
| 7426 | Files: src/json.c, src/testdir/test_viml.vim, src/testdir/test_json.vim |
| 7427 | |
| 7428 | Patch 7.4.1165 |
| 7429 | Problem: When defining DYNAMIC_ICONV_DLL in the makefile, the build fails. |
| 7430 | Solution: Add #ifdef's. (Taro Muraoka) Try the newer version first. |
| 7431 | Files: src/mbyte.c, src/os_win32.c |
| 7432 | |
| 7433 | Patch 7.4.1166 |
| 7434 | 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] | 7435 | same list or dict twice properly. (Nikolai Pavlov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7436 | Solution: Give an error. Reset copyID when the list or dict is finished. |
| 7437 | Files: src/json.c, src/proto/json.pro, src/testdir/test_json.vim |
| 7438 | |
| 7439 | Patch 7.4.1167 |
| 7440 | Problem: No tests for "is" and "isnot" with the new variables. |
| 7441 | Solution: Add tests. |
| 7442 | Files: src/testdir/test_viml.vim |
| 7443 | |
| 7444 | Patch 7.4.1168 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 7445 | 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] | 7446 | Pavlov) |
| 7447 | Solution: Make the string "v:true" instead of "true". |
| 7448 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7449 | |
| 7450 | Patch 7.4.1169 |
| 7451 | Problem: The socket I/O is intertwined with the netbeans code. |
| 7452 | Solution: Start refactoring the netbeans communication to split off the |
| 7453 | socket I/O. Add the +channel feature. |
| 7454 | Files: src/channel.c, src/netbeans.c, src/proto/channel.pro, |
| 7455 | src/proto/netbeans.pro, src/proto/gui_w32.pro, src/gui_w32.c, |
| 7456 | src/eval.c, src/os_mswin.c, src/ui.c, src/macros.h, Makefile, |
| 7457 | src/proto.h, src/feature.h, src/os_unix.c, src/vim.h, |
| 7458 | src/configure.in, src/auto/configure, src/config.mk.in, |
| 7459 | src/config.aap.in, src/config.h.in, src/Make_bc5.mak, |
| 7460 | src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 7461 | |
| 7462 | Patch 7.4.1170 (after 7.4.1169) |
| 7463 | Problem: Missing changes in src/Makefile, Filelist. |
| 7464 | Solution: Add the missing changes. |
| 7465 | Files: Filelist, src/Makefile |
| 7466 | |
| 7467 | Patch 7.4.1171 |
| 7468 | Problem: Makefile dependencies are outdated. |
| 7469 | Solution: Run "make depend". Add GTK resource dependencies. |
| 7470 | Files: src/Makefile |
| 7471 | |
| 7472 | Patch 7.4.1172 (after 7.4.1169) |
| 7473 | Problem: Configure is overly positive. |
| 7474 | Solution: Insert "test". |
| 7475 | Files: src/configure.in, src/auto/configure |
| 7476 | |
| 7477 | Patch 7.4.1173 (after 7.4.1168) |
| 7478 | Problem: No test for new behavior of v:true et al. |
| 7479 | Solution: Add a test. |
| 7480 | Files: src/testdir/test_viml.vim |
| 7481 | |
| 7482 | Patch 7.4.1174 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7483 | Problem: Netbeans contains dead code inside #ifndef INIT_SOCKETS. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7484 | Solution: Remove the dead code. |
| 7485 | Files: src/netbeans.c |
| 7486 | |
| 7487 | Patch 7.4.1175 (after 7.4.1169) |
| 7488 | Problem: Can't build with Mingw and Cygwin. |
| 7489 | Solution: Remove extra "endif". (Christian J. Robinson) |
| 7490 | Files: src/Make_cyg_ming.mak |
| 7491 | |
| 7492 | Patch 7.4.1176 |
| 7493 | Problem: Missing change to proto file. |
| 7494 | Solution: Update the proto file. (Charles Cooper) |
| 7495 | Files: src/proto/gui_w32.pro |
| 7496 | |
| 7497 | Patch 7.4.1177 |
| 7498 | Problem: The +channel feature is not in :version output. (Tony Mechelynck) |
| 7499 | Solution: Add the feature string. |
| 7500 | Files: src/version.c |
| 7501 | |
| 7502 | Patch 7.4.1178 |
| 7503 | Problem: empty() doesn't work for the new special variables. |
| 7504 | Solution: Make empty() work. (Damien) |
| 7505 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7506 | |
| 7507 | Patch 7.4.1179 |
| 7508 | Problem: test_writefile and test_viml do not delete the tempfile. |
| 7509 | Solution: Delete the tempfile. (Charles Cooper) Add DeleteTheScript(). |
| 7510 | Files: src/testdir/test_writefile.in, src/testdir/test_viml.vim |
| 7511 | |
| 7512 | Patch 7.4.1180 |
| 7513 | Problem: Crash with invalid argument to glob2regpat(). |
| 7514 | Solution: Check for NULL. (Justin M. Keyes, closes #596) Add a test. |
| 7515 | Files: src/eval.c, src/testdir/test_glob2regpat.vim, |
| 7516 | src/testdir/test_alot.vim |
| 7517 | |
| 7518 | Patch 7.4.1181 |
| 7519 | Problem: free_tv() can't handle special variables. (Damien) |
| 7520 | Solution: Add the variable type. |
| 7521 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7522 | |
| 7523 | Patch 7.4.1182 |
| 7524 | Problem: Still socket code intertwined with netbeans. |
| 7525 | Solution: Move code from netbeans.c to channel.c |
| 7526 | Files: src/channel.c, src/netbeans.c, src/proto/channel.pro, |
| 7527 | src/proto/netbeans.pro, src/gui.c, src/gui_w48.c |
| 7528 | |
| 7529 | Patch 7.4.1183 (after 7.4.1182) |
| 7530 | Problem: MS-Windows build is broken. |
| 7531 | Solution: Remove init in wrong place. |
| 7532 | Files: src/channel.c |
| 7533 | |
| 7534 | Patch 7.4.1184 (after 7.4.1182) |
| 7535 | Problem: MS-Windows build is still broken. |
| 7536 | Solution: Change nbsock to ch_fd. |
| 7537 | Files: src/channel.c |
| 7538 | |
| 7539 | Patch 7.4.1185 |
| 7540 | Problem: Can't build with TCL on some systems. |
| 7541 | Solution: Rename the channel_ functions. |
| 7542 | Files: src/if_tcl.c |
| 7543 | |
| 7544 | Patch 7.4.1186 |
| 7545 | Problem: Error messages for security context are hard to translate. |
| 7546 | Solution: Use one string with %s. (Ken Takata) |
| 7547 | Files: src/os_unix.c |
| 7548 | |
| 7549 | Patch 7.4.1187 |
| 7550 | Problem: MS-Windows channel code only supports one channel. Doesn't build |
| 7551 | without netbeans support. |
| 7552 | Solution: Get the channel index from the socket in the message. Closes #600. |
| 7553 | Files: src/channel.c, src/netbeans.c, src/gui_w48.c, |
| 7554 | src/proto/channel.pro, src/proto/netbeans.pro |
| 7555 | |
| 7556 | Patch 7.4.1188 |
| 7557 | Problem: Using older JSON standard. |
| 7558 | Solution: Update the link. Adjust the text a bit. |
| 7559 | Files: src/json.c, runtime/doc/eval.txt |
| 7560 | |
| 7561 | Patch 7.4.1189 (after 7.4.1165) |
| 7562 | Problem: Using another language on MS-Windows does not work. (Yongwei Wu) |
| 7563 | Solution: Undo the change to try loading libintl-8.dll first. |
| 7564 | Files: src/os_win32.c |
| 7565 | |
| 7566 | Patch 7.4.1190 |
| 7567 | Problem: On OSX the default flag for dlopen() is different. |
| 7568 | Solution: Add RTLD_LOCAL in the configure check. (sv99, closes #604) |
| 7569 | Files: src/configure.in, src/auto/configure |
| 7570 | |
| 7571 | Patch 7.4.1191 |
| 7572 | Problem: The channel feature isn't working yet. |
| 7573 | Solution: Add the connect(), disconnect(), sendexpr() and sendraw() |
| 7574 | functions. Add initial documentation. Add a demo server. |
| 7575 | Files: src/channel.c, src/eval.c, src/proto/channel.pro, |
| 7576 | src/proto/eval.pro, runtime/doc/channel.txt, runtime/doc/eval.txt, |
| 7577 | runtime/doc/Makefile, runtime/tools/demoserver.py |
| 7578 | |
| 7579 | Patch 7.4.1192 |
| 7580 | Problem: Can't build with FEAT_EVAL but without FEAT_MBYTE. (John |
| 7581 | Marriott) |
| 7582 | Solution: Add #ifdef for FEAT_MBYTE. |
| 7583 | Files: src/json.c |
| 7584 | |
| 7585 | Patch 7.4.1193 |
| 7586 | Problem: Can't build the channel feature on MS-Windows. |
| 7587 | Solution: Add #ifdef HAVE_POLL. |
| 7588 | Files: src/channel.c |
| 7589 | |
| 7590 | Patch 7.4.1194 |
| 7591 | Problem: Compiler warning for not using return value of fwrite(). |
| 7592 | Solution: Return OK/FAIL. (Charles Campbell) |
| 7593 | Files: src/channel.c, src/proto/channel.pro |
| 7594 | |
| 7595 | Patch 7.4.1195 |
| 7596 | Problem: The channel feature does not work in the MS-Windows console. |
| 7597 | Solution: Add win32 console support. (Yasuhiro Matsumoto) |
| 7598 | Files: src/channel.c, src/gui_w32.c, src/os_mswin.c, src/os_win32.c, |
| 7599 | src/proto/gui_w32.pro, src/proto/os_mswin.pro, src/vim.h |
| 7600 | |
| 7601 | Patch 7.4.1196 |
| 7602 | Problem: Still using __ARGS. |
| 7603 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7604 | Files: src/arabic.c, src/buffer.c, src/charset.c, src/crypt_zip.c, |
| 7605 | src/diff.c, src/digraph.c, src/edit.c, src/ex_cmds.c, |
| 7606 | src/ex_cmds2.c, src/ex_docmd.c |
| 7607 | |
| 7608 | Patch 7.4.1197 |
| 7609 | Problem: Still using __ARGS. |
| 7610 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7611 | Files: src/ex_eval.c, src/ex_getln.c, src/farsi.c, src/fileio.c, |
| 7612 | src/fold.c, src/getchar.c, src/gui.c, src/gui_at_fs.c, |
| 7613 | gui_at_sb.c, src/gui_athena.c, src/gui_beval.c, src/gui_motif.c, |
| 7614 | src/gui_w32.c, src/gui_w48.c |
| 7615 | |
| 7616 | Patch 7.4.1198 |
| 7617 | Problem: Still using __ARGS. |
| 7618 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7619 | Also remove use of HAVE_STDARG_H. |
| 7620 | Files: src/gui_x11.c, src/hangulin.c, src/hardcopy.c, src/hashtab.c, |
| 7621 | src/if_cscope.c, src/if_python3.c, src/if_sniff.c, |
| 7622 | src/if_xcmdsrv.c, src/main.c, src/mark.c, src/mbyte.c, |
| 7623 | src/memfile.c, src/memfile_test.c, src/memline.c, src/menu.c, |
| 7624 | src/message.c, src/misc1.c, src/misc2.c, src/move.c, |
| 7625 | src/netbeans.c, src/normal.c |
| 7626 | |
| 7627 | Patch 7.4.1199 |
| 7628 | Problem: Still using __ARGS. |
| 7629 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7630 | Files: src/ops.c, src/option.c, src/os_amiga.c, src/os_mac_conv.c, |
| 7631 | src/os_unix.c, src/os_vms.c, src/os_w32exe.c, src/popupmnu.c, |
| 7632 | src/pty.c, src/quickfix.c, src/regexp.c, src/regexp_nfa.c, |
| 7633 | src/screen.c, src/search.c, src/sha256.c, src/spell.c, |
| 7634 | src/syntax.c, src/tag.c, src/term.c, src/termlib.c, src/ui.c, |
| 7635 | src/undo.c, src/version.c, src/window.c |
| 7636 | |
| 7637 | Patch 7.4.1200 |
| 7638 | Problem: Still using __ARGS. |
| 7639 | Solution: Remove __ARGS in several files. (script by Hirohito Higashi) |
| 7640 | Files: src/blowfish.c, src/ex_cmds2.c, src/ex_getln.c, src/fold.c, |
| 7641 | src/gui_beval.c, src/gui_w32.c, src/os_unix.c, src/os_win16.c, |
| 7642 | src/pty.c, src/regexp.c, src/syntax.c, src/xpm_w32.c, |
| 7643 | src/ex_cmds.h, src/globals.h, src/gui_at_sb.h, src/gui_beval.h, |
| 7644 | src/if_cscope.h, src/if_sniff.h, src/nbdebug.h, src/os_unix.h, |
| 7645 | src/proto.h, src/structs.h, src/vim.h, src/xpm_w32.h, |
| 7646 | src/if_perl.xs, src/proto/if_lua.pro, src/proto/pty.pro, |
| 7647 | runtime/tools/xcmdsrv_client.c, |
| 7648 | src/Makefile |
| 7649 | |
| 7650 | Patch 7.4.1201 |
| 7651 | Problem: One more file still using __ARGS. |
| 7652 | Solution: Remove __ARGS in the last file. (script by Hirohito Higashi) |
| 7653 | Files: src/gui_at_sb.c |
| 7654 | |
| 7655 | Patch 7.4.1202 |
| 7656 | Problem: Still one more file still using __ARGS. |
| 7657 | Solution: Remove __ARGS in the last file. (script by Hirohito Higashi) |
| 7658 | (closes #612) |
| 7659 | Files: src/proto/os_mac_conv.pro, src/os_mac_conv.c, src/Makefile |
| 7660 | |
| 7661 | Patch 7.4.1203 |
| 7662 | Problem: Still more files still using __ARGS. |
| 7663 | Solution: Remove __ARGS in really the last files. |
| 7664 | Files: src/proto/if_mzsch.pro, src/if_mzsch.c, src/vim.h, |
| 7665 | src/proto/gui_gtk_gresources.pro, src/proto/gui_mac.pro, |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 7666 | src/proto/if_ole.pro, src/proto/os_qnx.pro, src/Makefile |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7667 | |
| 7668 | Patch 7.4.1204 |
| 7669 | Problem: Latin1 characters cause encoding conversion. |
| 7670 | Solution: Remove the characters. |
| 7671 | Files: src/gui_motif.c |
| 7672 | |
| 7673 | Patch 7.4.1205 |
| 7674 | Problem: Using old style function declarations. |
| 7675 | Solution: Change to new style function declarations. (script by Hirohito |
| 7676 | Higashi) |
| 7677 | Files: src/arabic.c, src/blowfish.c, src/buffer.c, src/channel.c, |
| 7678 | src/charset.c, src/crypt.c, src/crypt_zip.c, src/diff.c, |
| 7679 | src/digraph.c, src/edit.c, src/eval.c |
| 7680 | |
| 7681 | Patch 7.4.1206 |
| 7682 | Problem: Using old style function declarations. |
| 7683 | Solution: Change to new style function declarations. (script by Hirohito |
| 7684 | Higashi) |
| 7685 | Files: src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/ex_eval.c, |
| 7686 | src/ex_getln.c, src/farsi.c, src/fileio.c |
| 7687 | |
| 7688 | Patch 7.4.1207 |
| 7689 | Problem: Using old style function declarations. |
| 7690 | Solution: Change to new style function declarations. (script by Hirohito |
| 7691 | Higashi) |
| 7692 | Files: src/fold.c, src/getchar.c, src/gui_at_fs.c, src/gui_athena.c, |
| 7693 | src/gui_at_sb.c, src/gui_beval.c, src/gui.c, src/gui_gtk.c, |
| 7694 | src/gui_gtk_x11.c, src/gui_mac.c, src/gui_motif.c |
| 7695 | |
| 7696 | Patch 7.4.1208 |
| 7697 | Problem: Using old style function declarations. |
| 7698 | Solution: Change to new style function declarations. (script by Hirohito |
| 7699 | Higashi) |
| 7700 | Files: src/gui_photon.c, src/gui_w32.c, src/gui_w48.c, src/gui_x11.c, |
| 7701 | src/hangulin.c, src/hardcopy.c, src/hashtab.c, src/if_cscope.c, |
| 7702 | src/if_mzsch.c, src/if_perlsfio.c, src/if_python.c, |
| 7703 | src/if_python3.c, src/if_ruby.c, src/if_sniff.c, src/if_tcl.c, |
| 7704 | src/if_xcmdsrv.c, src/integration.c |
| 7705 | |
| 7706 | Patch 7.4.1209 (after 7.4.1207) |
| 7707 | Problem: Can't build with Athena. (Elimar Riesebieter) |
| 7708 | Solution: Fix function declarations. |
| 7709 | Files: src/gui_athena.c, src/gui_x11.c, src/gui_at_sb.c, src/gui_at_fs.c |
| 7710 | |
| 7711 | Patch 7.4.1210 |
| 7712 | Problem: Using old style function declarations. |
| 7713 | Solution: Change to new style function declarations. (script by Hirohito |
| 7714 | Higashi) |
| 7715 | Files: src/main.c, src/mark.c, src/mbyte.c, src/memfile.c, |
| 7716 | src/memfile_test.c, src/memline.c, src/menu.c, src/message.c |
| 7717 | |
| 7718 | Patch 7.4.1211 |
| 7719 | Problem: Using old style function declarations. |
| 7720 | Solution: Change to new style function declarations. (script by Hirohito |
| 7721 | Higashi) |
| 7722 | Files: src/misc1.c, src/misc2.c, src/move.c, src/netbeans.c, |
| 7723 | src/normal.c, src/ops.c, src/option.c |
| 7724 | |
| 7725 | Patch 7.4.1212 (after 7.4.1207) |
| 7726 | Problem: Can't build with Motif. |
| 7727 | Solution: Fix function declaration.(Dominique Pelle) |
| 7728 | Files: src/gui_motif.c |
| 7729 | |
| 7730 | Patch 7.4.1213 |
| 7731 | Problem: Using old style function declarations. |
| 7732 | Solution: Change to new style function declarations. (script by Hirohito |
| 7733 | Higashi) |
| 7734 | Files: src/os_amiga.c, src/os_mac_conv.c, src/os_msdos.d, src/os_mswin.c, |
| 7735 | src/os_qnx.c, src/os_unix.c, src/os_vms.c, src/os_win16.c, |
| 7736 | src/os_win32.c, src/popupmnu.c, src/pty.c, src/quickfix.c, |
| 7737 | src/regexp.c, src/regexp_nfa.c, src/screen.c |
| 7738 | |
| 7739 | Patch 7.4.1214 |
| 7740 | Problem: Using old style function declarations. |
| 7741 | Solution: Change to new style function declarations. (script by Hirohito |
| 7742 | Higashi) |
| 7743 | Files: src/search.c, src/sha256.c, src/spell.c, src/syntax.c, src/tag.c, |
| 7744 | src/term.c, src/termlib.c, src/ui.c, src/undo.c |
| 7745 | |
| 7746 | Patch 7.4.1215 |
| 7747 | Problem: Using old style function declarations. |
| 7748 | Solution: Change to new style function declarations. (script by Hirohito |
| 7749 | Higashi) |
| 7750 | Files: src/version.c, src/winclip.c, src/window.c, src/workshop.c, |
| 7751 | src/xpm_w32.c, runtime/doc/doctags.c, |
| 7752 | runtime/tools/xcmdsrv_client.c, src/po/sjiscorr.c, src/xxd/xxd.c |
| 7753 | |
| 7754 | Patch 7.4.1216 |
| 7755 | Problem: Still using HAVE_STDARG_H. |
| 7756 | Solution: Assume it's always defined. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 7757 | 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] | 7758 | src/auto/configure, config.h.in, src/os_amiga.h, src/os_msdos.h, |
| 7759 | src/os_vms_conf.h, src/os_win32.h |
| 7760 | |
| 7761 | Patch 7.4.1217 |
| 7762 | Problem: Execution of command on channel doesn't work yet. |
| 7763 | Solution: Implement the "ex" and "normal" commands. |
| 7764 | Files: src/channel.c, src/proto/channel.pro, src/misc2.c, src/eval.c, |
| 7765 | src/ex_docmd.c, src/proto/ex_docmd.pro, src/feature.h |
| 7766 | |
| 7767 | Patch 7.4.1218 |
| 7768 | Problem: Missing change in configure. More changes for function style. |
| 7769 | Solution: Avoid the typos. |
| 7770 | Files: src/configure.in, src/config.h.in, runtime/tools/ccfilter.c, |
| 7771 | src/os_msdos.c |
| 7772 | |
| 7773 | Patch 7.4.1219 |
| 7774 | Problem: Build fails with +channel but without +float. |
| 7775 | Solution: Add #ifdef. |
| 7776 | Files: src/ex_cmds.c |
| 7777 | |
| 7778 | Patch 7.4.1220 |
| 7779 | Problem: Warnings for unused variables in tiny build. (Tony Mechelynck) |
| 7780 | Solution: Move declarations inside #ifdef. (Hirohito Higashi) |
| 7781 | Files: src/ex_cmds.c |
| 7782 | |
| 7783 | Patch 7.4.1221 |
| 7784 | Problem: Including netbeans and channel support in small and tiny builds. |
| 7785 | Build fails with some interfaces. |
| 7786 | Solution: Only include these features in small build and above. Let |
| 7787 | configure fail if trying to enable an interface that won't build. |
| 7788 | Files: src/configure.in, src/auto/configure |
| 7789 | |
| 7790 | Patch 7.4.1222 |
| 7791 | Problem: ":normal" command and others missing in tiny build. |
| 7792 | Solution: Graduate FEAT_EX_EXTRA. |
| 7793 | Files: src/feature.h, src/charset.c, src/eval.c, src/ex_cmds.c, |
| 7794 | src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c, src/getchar.c, |
| 7795 | src/normal.c, src/ui.c, src/version.c, src/globals.h |
| 7796 | |
| 7797 | Patch 7.4.1223 |
| 7798 | Problem: Crash when setting v:errors to a number. |
| 7799 | Solution: Free the typval without assuming its type. (Yasuhiro Matsumoto) |
| 7800 | Files: src/eval.c, src/testdir/test_assert.vim |
| 7801 | |
| 7802 | Patch 7.4.1224 |
| 7803 | Problem: Build problems with GTK on BSD. (Mike Williams) |
| 7804 | Solution: Don't use "$<". Skip building gui_gtk_gresources.h when it doesn't |
| 7805 | work. (Kazunobu Kuriyama) |
| 7806 | Files: src/Makefile |
| 7807 | |
| 7808 | Patch 7.4.1225 |
| 7809 | Problem: Still a few old style function declarations. |
| 7810 | Solution: Make them new style. (Hirohito Higashi) |
| 7811 | Files: runtime/tools/blink.c, src/eval.c, src/ex_cmds2.c, src/ex_getln.c, |
| 7812 | src/fileio.c, src/gui_w32.c, src/gui_x11.c, src/if_perl.xs, |
| 7813 | src/os_unix.c, src/po/sjiscorr.c, src/pty.c |
| 7814 | |
| 7815 | Patch 7.4.1226 |
| 7816 | Problem: GRESOURCE_HDR is unused. |
| 7817 | Solution: Remove it. (Kazunobu Kuriyama) |
| 7818 | Files: src/configure.in, src/auto/configure, src/config.mk.in |
| 7819 | |
| 7820 | Patch 7.4.1227 |
| 7821 | Problem: Compiler warnings. |
| 7822 | Solution: Add UNUSED. Add type cast. (Yegappan Lakshmanan) |
| 7823 | Files: src/getchar.c, src/os_macosx.m |
| 7824 | |
| 7825 | Patch 7.4.1228 |
| 7826 | Problem: copy() and deepcopy() fail with special variables. (Nikolai |
| 7827 | Pavlov) |
| 7828 | Solution: Make it work. Add a test. Closes #614. |
| 7829 | Files: src/eval.c, src/testdir/test_viml.vim |
| 7830 | |
| 7831 | Patch 7.4.1229 |
| 7832 | Problem: "eval" and "expr" channel commands don't work yet. |
| 7833 | Solution: Implement them. Update the error numbers. Also add "redraw". |
| 7834 | Files: src/channel.c, src/eval.c, src/json.c, src/ex_docmd.c, |
| 7835 | src/proto/channel.pro, src/proto/json.pro, src/proto/ex_docmd.pro, |
| 7836 | runtime/doc/channel.txt |
| 7837 | |
| 7838 | Patch 7.4.1230 |
| 7839 | Problem: Win32: opening a channel may hang. Not checking for messages |
| 7840 | while waiting for characters. |
| 7841 | Solution: Add a zero timeout. Call parse_queued_messages(). (Yasuhiro |
| 7842 | Matsumoto) |
| 7843 | Files: src/os_win32.c |
| 7844 | |
| 7845 | Patch 7.4.1231 |
| 7846 | Problem: JSON messages are not parsed properly. |
| 7847 | Solution: Queue received messages. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 7848 | 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] | 7849 | src/proto/channel.pro, src/proto/json.pro, src/structs.h |
| 7850 | |
| 7851 | Patch 7.4.1232 |
| 7852 | Problem: Compiler warnings when the Sniff feature is enabled. |
| 7853 | Solution: Add UNUSED. |
| 7854 | Files: src/gui_gtk_x11.c |
| 7855 | |
| 7856 | Patch 7.4.1233 |
| 7857 | Problem: Channel command may cause a crash. |
| 7858 | Solution: Check for NULL argument. (Damien) |
| 7859 | Files: src/channel.c |
| 7860 | |
| 7861 | Patch 7.4.1234 |
| 7862 | Problem: Demo server only runs with Python 2. |
| 7863 | Solution: Make it run with Python 3 as well. (Ken Takata) |
| 7864 | Files: runtime/tools/demoserver.py |
| 7865 | |
| 7866 | Patch 7.4.1235 (after 7.4.1231) |
| 7867 | Problem: Missing change to eval.c. |
| 7868 | Solution: Include that change. |
| 7869 | Files: src/eval.c |
| 7870 | |
| 7871 | Patch 7.4.1236 |
| 7872 | Problem: When "syntax manual" was used switching between buffers removes |
| 7873 | the highlighting. |
| 7874 | Solution: Set the syntax option without changing the value. (Anton |
| 7875 | Lindqvist) |
| 7876 | Files: runtime/syntax/manual.vim |
| 7877 | |
| 7878 | Patch 7.4.1237 |
| 7879 | Problem: Can't translate message without adding a line break. |
| 7880 | Solution: Join the two parts of the message. |
| 7881 | Files: src/memline.c |
| 7882 | |
| 7883 | Patch 7.4.1238 |
| 7884 | Problem: Can't handle two messages right after each other. |
| 7885 | Solution: Find the end of the JSON. Read more when incomplete. Add a C |
| 7886 | test for the JSON decoding. |
| 7887 | Files: src/channel.c, src/json.c, src/proto/json.pro, src/eval.c, |
| 7888 | src/Makefile, src/json_test.c, src/memfile_test.c, src/structs.h |
| 7889 | |
| 7890 | Patch 7.4.1239 |
| 7891 | Problem: JSON message after the first one is dropped. |
| 7892 | Solution: Put remainder of message back in the queue. |
| 7893 | Files: src/channel.c |
| 7894 | |
| 7895 | Patch 7.4.1240 |
| 7896 | Problem: Visual studio tools are noisy. |
| 7897 | Solution: Suppress startup info. (Mike Williams) |
| 7898 | Files: src/GvimExt/Makefile, src/Make_mvc.mak, src/tee/Make_mvc.mak |
| 7899 | |
| 7900 | Patch 7.4.1241 (after 7.4.1238) |
| 7901 | Problem: Missing change in Makefile due to diff mismatch |
| 7902 | Solution: Update the list of object files. |
| 7903 | Files: src/Makefile |
| 7904 | |
| 7905 | Patch 7.4.1242 (after 7.4.1238) |
| 7906 | Problem: json_test fails without the eval feature. |
| 7907 | Solution: Add #ifdef. |
| 7908 | Files: src/json_test.c |
| 7909 | |
| 7910 | Patch 7.4.1243 |
| 7911 | Problem: Compiler warning for uninitialized variable. |
| 7912 | Solution: Initialize it. (Elias Diem) |
| 7913 | Files: src/json.c |
| 7914 | |
| 7915 | Patch 7.4.1244 |
| 7916 | Problem: The channel functions don't sort together. |
| 7917 | Solution: Use a common "ch_" prefix. |
| 7918 | Files: src/eval.c, runtime/doc/eval.txt, runtime/tools/demoserver.py |
| 7919 | |
| 7920 | Patch 7.4.1245 |
| 7921 | Problem: File missing from distribution. |
| 7922 | Solution: Add json_test.c. |
| 7923 | Files: Filelist |
| 7924 | |
| 7925 | Patch 7.4.1246 |
| 7926 | Problem: The channel functionality isn't tested. |
| 7927 | Solution: Add a test using a Python test server. |
| 7928 | Files: src/channel.c, src/proto/channel.pro, |
| 7929 | src/testdir/test_channel.vim, src/testdir/test_channel.py, |
| 7930 | src/testdir/Make_all.mak |
| 7931 | |
| 7932 | Patch 7.4.1247 |
| 7933 | Problem: The channel test doesn't run on MS-Windows. |
| 7934 | Solution: Make it work on the MS-Windows console. (Ken Takata) |
| 7935 | Files: src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 7936 | |
| 7937 | Patch 7.4.1248 |
| 7938 | Problem: Can't reliably stop the channel test server. Can't start the |
| 7939 | server if the python file is not executable. |
| 7940 | Solution: Use "pkill" instead of "killall". Run the python file as an |
| 7941 | argument instead of as an executable. |
| 7942 | Files: src/testdir/test_channel.vim |
| 7943 | |
| 7944 | Patch 7.4.1249 |
| 7945 | Problem: Crash when the process a channel is connected to exits. |
| 7946 | Solution: Use the file descriptor properly. Add a test. (Damien) |
| 7947 | Also add a test for eval(). |
| 7948 | Files: src/channel.c, src/testdir/test_channel.py, |
| 7949 | src/testdir/test_channel.vim |
| 7950 | |
| 7951 | Patch 7.4.1250 |
| 7952 | Problem: Running tests in shadow directory fails. |
| 7953 | Solution: Also link testdir/*.py |
| 7954 | Files: src/Makefile |
| 7955 | |
| 7956 | Patch 7.4.1251 |
| 7957 | Problem: New test file missing from distribution. |
| 7958 | Solution: Add src/testdir/*.py. |
| 7959 | Files: Filelist |
| 7960 | |
| 7961 | Patch 7.4.1252 |
| 7962 | Problem: The channel test server may receive two messages concatenated. |
| 7963 | Solution: Split the messages. |
| 7964 | Files: src/testdir/test_channel.py |
| 7965 | |
| 7966 | Patch 7.4.1253 |
| 7967 | Problem: Python test server not displaying second of two commands. |
| 7968 | Solaris doesn't have "pkill --full". |
| 7969 | Solution: Also echo the second command. Use "pkill -f". |
| 7970 | Files: src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 7971 | |
| 7972 | Patch 7.4.1254 |
| 7973 | Problem: Opening a second channel causes a crash. (Ken Takata) |
| 7974 | Solution: Don't re-allocate the array with channels. |
| 7975 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 7976 | src/testdir/test_channel.py |
| 7977 | |
| 7978 | Patch 7.4.1255 |
| 7979 | Problem: Crash for channel "eval" command without third argument. |
| 7980 | Solution: Check for missing argument. |
| 7981 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 7982 | src/testdir/test_channel.py |
| 7983 | |
| 7984 | Patch 7.4.1256 |
| 7985 | Problem: On Mac sys.exit(0) doesn't kill the test server. |
| 7986 | Solution: Use self.server.shutdown(). (Jun Takimoto) |
| 7987 | Files: src/testdir/test_channel.py |
| 7988 | |
| 7989 | Patch 7.4.1257 |
| 7990 | Problem: Channel test fails in some configurations. |
| 7991 | Solution: Add check for the +channel feature. |
| 7992 | Files: src/testdir/test_channel.vim |
| 7993 | |
| 7994 | Patch 7.4.1258 |
| 7995 | Problem: The channel test can fail if messages arrive later. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 7996 | Solution: Add a short sleep. (Jun Takimoto) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 7997 | Files: src/testdir/test_channel.vim |
| 7998 | |
| 7999 | Patch 7.4.1259 |
| 8000 | Problem: No test for what patch 7.3.414 fixed. |
| 8001 | Solution: Add a test. (Elias Diem) |
| 8002 | Files: src/testdir/test_increment.vim |
| 8003 | |
| 8004 | Patch 7.4.1260 |
| 8005 | Problem: The channel feature doesn't work on Win32 GUI. |
| 8006 | Solution: Use WSAGetLastError(). (Ken Takata) |
| 8007 | Files: src/channel.c, src/testdir/test_channel.vim, src/vim.h |
| 8008 | |
| 8009 | Patch 7.4.1261 |
| 8010 | Problem: Pending channel messages are garbage collected. Leaking memory in |
| 8011 | ch_sendexpr(). Leaking memory for a decoded JSON string. |
| 8012 | Solution: Mark the message list as used. Free the encoded JSON. Don't save |
| 8013 | the JSON string. |
| 8014 | Files: src/eval.c, src/channel.c, src/json.c, src/proto/channel.pro |
| 8015 | |
| 8016 | Patch 7.4.1262 |
| 8017 | Problem: The channel callback is not invoked. |
| 8018 | Solution: Make a list of pending callbacks. |
| 8019 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 8020 | src/testdir/test_channel.vim |
| 8021 | |
| 8022 | Patch 7.4.1263 |
| 8023 | Problem: ch_open() hangs when the server isn't running. |
| 8024 | Solution: Add a timeout. Use a dict to pass arguments. (Yasuhiro Matsumoto) |
| 8025 | Files: runtime/doc/eval.txt, runtime/doc/channel.txt, src/channel.c, |
| 8026 | src/eval.c, src/netbeans.c, src/os_win32.c, src/proto/channel.pro, |
| 8027 | src/testdir/test_channel.vim |
| 8028 | |
| 8029 | Patch 7.4.1264 |
| 8030 | Problem: Crash when receiving an empty array. |
| 8031 | Solution: Check for array with wrong number of arguments. (Damien) |
| 8032 | Files: src/channel.c, src/eval.c, src/testdir/test_channel.py, |
| 8033 | src/testdir.test_channel.vim |
| 8034 | |
| 8035 | Patch 7.4.1265 |
| 8036 | Problem: Not all channel commands are tested. |
| 8037 | Solution: Add a test for "normal", "expr" and "redraw". |
| 8038 | Files: src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 8039 | |
| 8040 | Patch 7.4.1266 |
| 8041 | Problem: A BufAdd autocommand may cause an ml_get error (Christian |
| 8042 | Brabandt) |
| 8043 | Solution: Increment RedrawingDisabled earlier. |
| 8044 | Files: src/ex_cmds.c |
| 8045 | |
| 8046 | Patch 7.4.1267 |
| 8047 | Problem: Easy to miss handling all types of variables. |
| 8048 | Solution: Change the variable type into an enum. |
| 8049 | Files: src/structs.h, src/eval.c |
| 8050 | |
| 8051 | Patch 7.4.1268 |
| 8052 | Problem: Waittime is used as seconds instead of milliseconds. (Hirohito |
| 8053 | Higashi) |
| 8054 | Solution: Divide by 1000. |
| 8055 | Files: src/channel.c |
| 8056 | |
| 8057 | Patch 7.4.1269 |
| 8058 | Problem: Encoding {'key':v:none} to JSON doesn't give an error (Tyru) |
| 8059 | Solution: Give an error. |
| 8060 | Files: src/json.c, src/testdir/test_json.vim |
| 8061 | |
| 8062 | Patch 7.4.1270 |
| 8063 | Problem: Warnings for missing values in switch. |
| 8064 | Solution: Change switch to if-else or add values. |
| 8065 | Files: src/if_py_both.h, src/if_python.c, src/if_python3.c |
| 8066 | |
| 8067 | Patch 7.4.1271 |
| 8068 | Problem: assert_false(v:false) reports an error. (Nikolai Pavlov) |
| 8069 | Solution: Recognize v:true and v:false. (Closes #625) |
| 8070 | Files: src/eval.c, src/testdir/test_assert.vim |
| 8071 | |
| 8072 | Patch 7.4.1272 (after 7.4.1270) |
| 8073 | Problem: Using future enum value. |
| 8074 | Solution: Remove it. |
| 8075 | Files: src/if_python.c, src/if_python3.c |
| 8076 | |
| 8077 | Patch 7.4.1273 (after 7.4.1271) |
| 8078 | Problem: assert_false(v:false) still fails. |
| 8079 | Solution: Fix the typo. |
| 8080 | Files: src/eval.c |
| 8081 | |
| 8082 | Patch 7.4.1274 |
| 8083 | Problem: Cannot run a job. |
| 8084 | Solution: Add job_start(), job_status() and job_stop(). Currently only works |
| 8085 | for Unix. |
| 8086 | Files: src/eval.c, src/structs.h, runtime/doc/eval.txt, src/os_unix.c, |
| 8087 | src/proto/os_unix.pro, src/feature.h, src/version.c, |
| 8088 | src/testdir/test_channel.vim |
| 8089 | |
| 8090 | Patch 7.4.1275 (after 7.4.1274) |
| 8091 | Problem: Build fails on MS-Windows. |
| 8092 | Solution: Fix wrong #ifdef. |
| 8093 | Files: src/eval.c |
| 8094 | |
| 8095 | Patch 7.4.1276 |
| 8096 | Problem: Warning for not using return value of fcntl(). |
| 8097 | Solution: Explicitly ignore the return value. |
| 8098 | Files: src/fileio.c, src/channel.c, src/memfile.c, src/memline.c |
| 8099 | |
| 8100 | Patch 7.4.1277 |
| 8101 | Problem: Compiler can complain about missing enum value in switch with some |
| 8102 | combination of features. |
| 8103 | Solution: Remove #ifdefs around case statements. |
| 8104 | Files: src/eval.c |
| 8105 | |
| 8106 | Patch 7.4.1278 |
| 8107 | Problem: When jsonencode() fails it still returns something. |
| 8108 | Solution: Return an empty string on failure. |
| 8109 | Files: src/json.c, src/channel.c, src/testdir/test_json.vim, |
| 8110 | src/testdir/test_channel.vim, src/testdir/test_channel.py |
| 8111 | |
| 8112 | Patch 7.4.1279 |
| 8113 | Problem: jsonencode() is not producing strict JSON. |
| 8114 | Solution: Add jsencode() and jsdecode(). Make jsonencode() and jsondecode() |
| 8115 | strict. |
| 8116 | Files: src/json.c, src/json_test.c, src/proto/json.pro, src/channel.c, |
| 8117 | src/proto/channel.pro, src/eval.c, src/vim.h, src/structs.h, |
| 8118 | runtime/doc/eval.txt, runtime/doc/channel.txt, |
| 8119 | src/testdir/test_json.vim |
| 8120 | |
| 8121 | Patch 7.4.1280 |
| 8122 | Problem: Missing case value. |
| 8123 | Solution: Add VAR_JOB. |
| 8124 | Files: src/if_python.c, src/if_python3.c |
| 8125 | |
| 8126 | Patch 7.4.1281 |
| 8127 | Problem: No test for skipping over code that isn't evaluated. |
| 8128 | Solution: Add a test with code that would fail when not skipped. |
| 8129 | Files: src/testdir/test_viml.vim |
| 8130 | |
| 8131 | Patch 7.4.1282 |
| 8132 | Problem: Crash when evaluating the pattern of ":catch" causes an error. |
| 8133 | (Dominique Pelle) |
| 8134 | Solution: Block error messages at this point. |
| 8135 | Files: src/ex_eval.c |
| 8136 | |
| 8137 | Patch 7.4.1283 |
| 8138 | Problem: The job feature isn't available on MS-Windows. |
| 8139 | Solution: Add the job feature. Fix argument of job_stop(). (Yasuhiro |
| 8140 | Matsumoto) |
| 8141 | Files: src/eval.c, src/feature.h, src/os_win32.c, src/proto/os_win32.pro |
| 8142 | |
| 8143 | Patch 7.4.1284 (after 7.4.1282) |
| 8144 | Problem: Test 49 fails. |
| 8145 | Solution: Check for a different error message. |
| 8146 | Files: src/testdir/test49.vim |
| 8147 | |
| 8148 | Patch 7.4.1285 |
| 8149 | Problem: Cannot measure elapsed time. |
| 8150 | Solution: Add reltimefloat(). |
| 8151 | Files: src/ex_cmds2.c, src/eval.c, src/proto/ex_cmds2.pro, |
| 8152 | src/testdir/test_reltime.vim, src/testdir/test_alot.vim |
| 8153 | |
| 8154 | Patch 7.4.1286 |
| 8155 | Problem: ch_open() with a timeout doesn't work correctly. |
| 8156 | Solution: Change how select() is used. Don't give an error on timeout. |
| 8157 | Add a test for ch_open() failing. |
| 8158 | Files: src/channel.c, src/testdir/test_channel.vim |
| 8159 | |
| 8160 | Patch 7.4.1287 (after 7.4.1286) |
| 8161 | Problem: Channel test fails. |
| 8162 | Solution: Use reltimefloat(). |
| 8163 | Files: src/testdir/test_channel.vim |
| 8164 | |
| 8165 | Patch 7.4.1288 |
| 8166 | Problem: ch_sendexpr() does not use JS encoding. |
| 8167 | Solution: Use the encoding that fits the channel mode. Refuse using |
| 8168 | ch_sendexpr() on a raw channel. |
| 8169 | Files: src/channel.c, src/proto/channel.pro, src/eval.c |
| 8170 | |
| 8171 | Patch 7.4.1289 |
| 8172 | Problem: Channel test fails on MS-Windows, connect() takes too long. |
| 8173 | Solution: Adjust the test for MS-Windows using "waittime". |
| 8174 | Files: src/channel.c, src/testdir/test_channel.vim |
| 8175 | |
| 8176 | Patch 7.4.1290 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8177 | Problem: Coverity complains about unnecessary check for NULL. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8178 | Solution: Remove the check. |
| 8179 | Files: src/eval.c |
| 8180 | |
| 8181 | Patch 7.4.1291 |
| 8182 | Problem: On MS-Windows the channel test server doesn't quit. |
| 8183 | Solution: Use return instead of break. (Ken Takata) |
| 8184 | Files: src/testdir/test_channel.py |
| 8185 | |
| 8186 | Patch 7.4.1292 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8187 | Problem: Some compilers complain about uninitialized variable, even though |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8188 | all possible cases are handled. (Dominique Pelle) |
| 8189 | Solution: Add a default initialization. |
| 8190 | Files: src/eval.c |
| 8191 | |
| 8192 | Patch 7.4.1293 |
| 8193 | Problem: Sometimes a channel may hang waiting for a message that was |
| 8194 | already discarded. (Ken Takata) |
| 8195 | Solution: Store the ID of the message blocking on in the channel. |
| 8196 | Files: src/channel.c |
| 8197 | |
| 8198 | Patch 7.4.1294 |
| 8199 | Problem: job_stop() only kills the started process. |
| 8200 | Solution: Send the signal to the process group. (Olaf Dabrunz) |
| 8201 | Files: src/os_unix.c |
| 8202 | |
| 8203 | Patch 7.4.1295 |
| 8204 | Problem: string(job) doesn't work well on MS-Windows. |
| 8205 | Solution: Use the process ID. (Yasuhiro Matsumoto) |
| 8206 | Files: src/eval.c |
| 8207 | |
| 8208 | Patch 7.4.1296 |
| 8209 | Problem: Cursor changes column with up motion when the matchparen plugin |
| 8210 | saves and restores the cursor position. (Martin Kunev) |
| 8211 | Solution: Make sure curswant is updated before invoking the autocommand. |
| 8212 | Files: src/edit.c |
| 8213 | |
| 8214 | Patch 7.4.1297 |
| 8215 | Problem: On Mac test_channel leaves python instances running. |
| 8216 | Solution: Use a small waittime to make ch_open() work. (Ozaki Kiichi) |
| 8217 | Files: src/testdir/test_channel.vim |
| 8218 | |
| 8219 | Patch 7.4.1298 |
| 8220 | Problem: When the channel test fails in an unexpected way the server keeps |
| 8221 | running. |
| 8222 | Solution: Use try/catch. (Ozaki Kiichi) |
| 8223 | Files: src/testdir/test_channel.vim |
| 8224 | |
| 8225 | Patch 7.4.1299 |
| 8226 | 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] | 8227 | is not invoked. (Christian J. Robinson) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8228 | Solution: Recognize zero value for the request ID. Add a test for invoking |
| 8229 | the channel handler. |
| 8230 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 8231 | src/testdir/test_channel.py |
| 8232 | |
| 8233 | Patch 7.4.1300 |
| 8234 | Problem: Cannot test CursorMovedI because there is typeahead. |
| 8235 | Solution: Add disable_char_avail_for_testing(). |
| 8236 | Files: src/eval.c, src/getchar.c, src/globals.h, |
| 8237 | src/testdir/test_cursor_func.vim, src/testdir/README.txt |
| 8238 | |
| 8239 | Patch 7.4.1301 |
| 8240 | Problem: Missing options in ch_open(). |
| 8241 | Solution: Add s:chopt like in the other calls. (Ozaki Kiichi) |
| 8242 | Files: src/testdir/test_channel.vim |
| 8243 | |
| 8244 | Patch 7.4.1302 |
| 8245 | Problem: Typo in struct field name. (Ken Takata) |
| 8246 | Solution: Rename jf_pi to jv_pi. |
| 8247 | Files: src/eval.c, src/os_win32.c, src/structs.h |
| 8248 | |
| 8249 | Patch 7.4.1303 |
| 8250 | Problem: A Funcref is not accepted as a callback. |
| 8251 | Solution: Make a Funcref work. (Damien) |
| 8252 | Files: src/eval.c, src/testdir/test_channel.vim |
| 8253 | |
| 8254 | Patch 7.4.1304 |
| 8255 | Problem: Function names are difficult to read. |
| 8256 | Solution: Rename jsonencode to json_encode, jsondecode to json_decode, |
| 8257 | jsencode to js_encode and jsdecode to js_decode. |
| 8258 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_json.vim |
| 8259 | |
| 8260 | Patch 7.4.1305 |
| 8261 | Problem: "\%1l^#.*" does not match on a line starting with "#". |
| 8262 | Solution: Do not clear the start-of-line flag. (Christian Brabandt) |
| 8263 | Files: src/regexp.c, src/regexp_nfa.c, src/testdir/test36.in, |
| 8264 | src/testdir/test36.ok |
| 8265 | |
| 8266 | Patch 7.4.1306 |
| 8267 | Problem: Job control doesn't work well on MS-Windows. |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 8268 | Solution: Various fixes. (Ken Takata, Ozaki Kiichi, Yukihiro Nakadaira, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8269 | Yasuhiro Matsumoto) |
| 8270 | Files: src/Make_mvc.mak, src/eval.c, src/os_unix.c, src/os_win32.c, |
| 8271 | src/proto/os_unix.pro, src/proto/os_win32.pro, src/structs.h |
| 8272 | |
| 8273 | Patch 7.4.1307 |
| 8274 | Problem: Some channel tests fail on MS-Windows. |
| 8275 | Solution: Disable the failing tests temporarily. |
| 8276 | Files: src/testdir/test_channel.vim |
| 8277 | |
| 8278 | Patch 7.4.1308 (after 7.4.1307) |
| 8279 | Problem: Typo in test. |
| 8280 | Solution: Change endf to endif. |
| 8281 | Files: src/testdir/test_channel.vim |
| 8282 | |
| 8283 | Patch 7.4.1309 |
| 8284 | Problem: When a test fails not all relevant info is listed. |
| 8285 | Solution: Add the errors to the messages. |
| 8286 | Files: src/testdir/runtest.vim |
| 8287 | |
| 8288 | Patch 7.4.1310 |
| 8289 | Problem: Jobs don't open a channel. |
| 8290 | Solution: Create pipes and add them to the channel. Add ch_logfile(). |
| 8291 | Only Unix for now. |
| 8292 | Files: src/channel.c, src/eval.c, src/os_unix.c, src/structs.h, |
| 8293 | src/gui_w48.c, src/proto/channel.pro, src/testdir/test_channel.vim, |
| 8294 | src/testdir/test_channel_pipe.py, runtime/doc/eval.txt |
| 8295 | |
| 8296 | Patch 7.4.1311 (after 7.4.1310) |
| 8297 | Problem: sock_T is defined too late. |
| 8298 | Solution: Move it up. |
| 8299 | Files: src/vim.h |
| 8300 | |
| 8301 | Patch 7.4.1312 (after 7.4.1311) |
| 8302 | Problem: sock_T is not defined without the +channel feature. |
| 8303 | Solution: Always define it. |
| 8304 | Files: src/vim.h |
| 8305 | |
| 8306 | Patch 7.4.1313 |
| 8307 | Problem: MS-Windows: Using socket after it was closed causes an exception. |
| 8308 | Solution: Don't give an error when handling WM_NETBEANS. Re-enable tests |
| 8309 | for MS-Windows. |
| 8310 | Files: src/gui_w48.c, src/testdir/test_channel.vim |
| 8311 | |
| 8312 | Patch 7.4.1314 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8313 | Problem: Warning for uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8314 | Solution: Initialize it. (Dominique Pelle) |
| 8315 | Files: src/channel.c |
| 8316 | |
| 8317 | Patch 7.4.1315 |
| 8318 | Problem: Using a channel handle does not allow for freeing it when unused. |
| 8319 | Solution: Add the Channel variable type. |
| 8320 | Files: src/structs.h, src/channel.c, src/misc2.c, src/eval.c, |
| 8321 | src/if_python.c, src/if_python3.c, src/json.c, src/gui_w48.c, |
| 8322 | src/netbeans.c, src/proto/channel.pro, src/os_unix.c, |
| 8323 | src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 8324 | |
| 8325 | Patch 7.4.1316 |
| 8326 | Problem: Can't build MS-Windows console version. (Tux) |
| 8327 | Solution: Add #ifdefs. |
| 8328 | Files: src/eval.c |
| 8329 | |
| 8330 | Patch 7.4.1317 |
| 8331 | Problem: MS-Windows: channel test fails. |
| 8332 | Solution: Temporarily disable Test_connect_waittime(). |
| 8333 | Files: src/testdir/test_channel.vim |
| 8334 | |
| 8335 | Patch 7.4.1318 |
| 8336 | Problem: Channel with pipes doesn't work in GUI. |
| 8337 | Solution: Register input handlers for pipes. |
| 8338 | Files: src/structs.h, src/feature.h, src/channel.c, src/eval.c, |
| 8339 | src/os_unix.c, src/os_win32.c, src/gui_w48.c, src/proto/channel.pro |
| 8340 | |
| 8341 | Patch 7.4.1319 (after 7.4.1318) |
| 8342 | Problem: Tests fail on MS-Windows and on Unix with GUI. |
| 8343 | Solution: Fix unregistering. |
| 8344 | Files: src/structs.h, src/channel.c, src/os_unix.c, src/os_win32.c, |
| 8345 | src/proto/channel.pro |
| 8346 | |
| 8347 | Patch 7.4.1320 |
| 8348 | Problem: Building with Cygwin or MingW with channel but without Netbeans |
| 8349 | doesn't work. |
| 8350 | Solution: Set NETBEANS to "no" when not used. |
| 8351 | Files: src/Make_cyg_ming.mak |
| 8352 | |
| 8353 | Patch 7.4.1321 |
| 8354 | Problem: Compiler complains about missing statement. |
| 8355 | Solution: Add an empty statement. (Andrei Olsen) |
| 8356 | Files: src/os_win32.c |
| 8357 | |
| 8358 | Patch 7.4.1322 |
| 8359 | Problem: Crash when unletting the variable that holds the channel in a |
| 8360 | callback function. (Christian Robinson) |
| 8361 | Solution: Increase the reference count while invoking the callback. |
| 8362 | Files: src/eval.c, src/channel.c, src/proto/eval.pro, |
| 8363 | src/testdir/test_channel.vim |
| 8364 | |
| 8365 | Patch 7.4.1323 |
| 8366 | Problem: Do not get warnings when building with MingW. |
| 8367 | Solution: Remove the -w flag. (Ken Takata) |
| 8368 | Files: src/Make_cyg_ming.mak |
| 8369 | |
| 8370 | Patch 7.4.1324 |
| 8371 | Problem: Channels with pipes don't work on MS-Windows. |
| 8372 | Solution: Add pipe I/O support. (Yasuhiro Matsumoto) |
| 8373 | Files: src/channel.c, src/os_win32.c, src/proto/channel.pro, |
| 8374 | src/structs.h, src/vim.h, src/testdir/test_channel.vim |
| 8375 | |
| 8376 | Patch 7.4.1325 |
| 8377 | Problem: Channel test fails on difference between Unix and DOS line endings. |
| 8378 | Solution: Strip off CR. Make assert show difference better. |
| 8379 | Files: src/eval.c, src/channel.c |
| 8380 | |
| 8381 | Patch 7.4.1326 |
| 8382 | Problem: Build rules are bit too complicated. |
| 8383 | Solution: Remove -lwsock32 from Netbeans, it's already added for the channel |
| 8384 | feature that it depends on. (Tony Mechelynck) |
| 8385 | Files: src/Make_cyg_ming.mak |
| 8386 | |
| 8387 | Patch 7.4.1327 |
| 8388 | Problem: Channel test doesn't work if Python executable is python.exe. |
| 8389 | Solution: Find py.exe or python.exe. (Ken Takata) |
| 8390 | Files: src/testdir/test_channel.vim |
| 8391 | |
| 8392 | Patch 7.4.1328 |
| 8393 | Problem: Can't compile with +job but without +channel. (John Marriott) |
| 8394 | Solution: Add more #ifdefs. |
| 8395 | Files: src/os_unix.c |
| 8396 | |
| 8397 | Patch 7.4.1329 |
| 8398 | Problem: Crash when using channel that failed to open. |
| 8399 | Solution: Check for NULL. Update messages. (Yukihiro Nakadaira) |
| 8400 | Files: src/channel.c, src/eval.c, src/testdir/test_channel.vim |
| 8401 | |
| 8402 | Patch 7.4.1330 |
| 8403 | Problem: fd_read() has an unused argument. |
| 8404 | Solution: Remove the timeout. (Yasuhiro Matsumoto) |
| 8405 | Files: src/channel.c |
| 8406 | |
| 8407 | Patch 7.4.1331 |
| 8408 | Problem: Crash when closing the channel in a callback. (Christian J. |
| 8409 | Robinson) |
| 8410 | Solution: Take the callback out of the list before invoking it. |
| 8411 | Files: src/channel.c, src/testdir/test_channel.vim |
| 8412 | |
| 8413 | Patch 7.4.1332 |
| 8414 | Problem: Problem using Python3 when compiled with MingW. |
| 8415 | Solution: Define PYTHON3_HOME as a wide character string. (Yasuhiro |
| 8416 | Matsumoto) |
| 8417 | Files: src/Make_cyg_ming.mak |
| 8418 | |
| 8419 | Patch 7.4.1333 |
| 8420 | Problem: Channel test fails on non-darwin builds. |
| 8421 | Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama) |
| 8422 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_channel.vim |
| 8423 | |
| 8424 | Patch 7.4.1334 |
| 8425 | Problem: Many compiler warnings with MingW. |
| 8426 | Solution: Add type casts. (Yasuhiro Matsumoto) |
| 8427 | Files: src/channel.c, src/dosinst.h, src/eval.c, src/ex_cmds2.c, |
| 8428 | src/ex_getln.c, src/fileio.c, src/if_cscope.c, src/if_perl.xs, |
| 8429 | src/if_python.c, src/if_python3.c, src/if_ruby.c, src/main.c, |
| 8430 | src/mbyte.c, src/misc1.c, src/option.c, src/os_mswin.c, |
| 8431 | src/os_win32.c |
| 8432 | |
| 8433 | Patch 7.4.1335 |
| 8434 | Problem: Can't build on MS-Windows with +job but without +channel. (Cesar |
| 8435 | Romani) |
| 8436 | Solution: Add #ifdefs. (Yasuhiro Matsumoto) |
| 8437 | Files: src/os_win32.c |
| 8438 | |
| 8439 | Patch 7.4.1336 |
| 8440 | Problem: Channel NL mode is not supported yet. |
| 8441 | Solution: Add NL mode support to channels. |
| 8442 | Files: src/channel.c, src/netbeans.c, src/structs.h, src/os_unix.d, |
| 8443 | src/os_win32.c, src/proto/channel.pro, src/proto/os_unix.pro, |
| 8444 | src/proto/os_win32.pro, src/testdir/test_channel.vim, |
| 8445 | src/testdir/test_channel_pipe.py |
| 8446 | |
| 8447 | Patch 7.4.1337 (after 7.4.1336) |
| 8448 | Problem: Part of the change is missing. |
| 8449 | Solution: Add changes to eval.c |
| 8450 | Files: src/eval.c |
| 8451 | |
| 8452 | |
| 8453 | Patch 7.4.1338 (after 7.4.1336) |
| 8454 | Problem: Another part of the change is missing. |
| 8455 | Solution: Type os_unix.c right this time. |
| 8456 | Files: src/os_unix.c |
| 8457 | |
| 8458 | Patch 7.4.1339 |
| 8459 | Problem: Warnings when building the GUI with MingW. (Cesar Romani) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8460 | Solution: Add type casts. (Yasuhiro Matsumoto) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8461 | Files: src/edit.c, src/gui_w32.c, src/gui_w48.c, src/os_mswin.c, |
| 8462 | src/os_win32.c |
| 8463 | |
| 8464 | Patch 7.4.1340 (after 7.4.1339) |
| 8465 | Problem: Merge left extra #endif behind. |
| 8466 | Solution: Remove the #endif |
| 8467 | Files: src/os_win32.c |
| 8468 | |
| 8469 | Patch 7.4.1341 |
| 8470 | Problem: It's difficult to add more arguments to ch_sendraw() and |
| 8471 | ch_sendexpr(). |
| 8472 | Solution: Make the third option a dictionary. |
| 8473 | Files: src/eval.c, src/structs.h, src/channel.c, src/os_unix.c, |
| 8474 | src/os_win32.c, src/proto/channel.pro, |
| 8475 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 8476 | |
| 8477 | Patch 7.4.1342 |
| 8478 | Problem: On Mac OS/X the waittime must be > 0 for connect to work. |
| 8479 | Solution: Use select() in a different way. (partly by Kazunobu Kuriyama) |
| 8480 | Always use a waittime of 1 or more. |
| 8481 | Files: src/eval.c, src/channel.c, src/testdir/test_channel.vim |
| 8482 | |
| 8483 | Patch 7.4.1343 |
| 8484 | Problem: Can't compile with +job but without +channel. (Andrei Olsen) |
| 8485 | Solution: Move get_job_options up and adjust #ifdef. |
| 8486 | Files: src/eval.c |
| 8487 | |
| 8488 | Patch 7.4.1344 |
| 8489 | Problem: Can't compile Win32 GUI with tiny features. |
| 8490 | Solution: Add #ifdef. (Christian Brabandt) |
| 8491 | Files: src/gui_w32.c |
| 8492 | |
| 8493 | Patch 7.4.1345 |
| 8494 | Problem: A few more compiler warnings. (Axel Bender) |
| 8495 | Solution: Add type casts. |
| 8496 | Files: src/gui_w32.c, src/gui_w48.c |
| 8497 | |
| 8498 | Patch 7.4.1346 |
| 8499 | Problem: Compiler warnings in build with -O2. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8500 | Solution: Add initializations. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8501 | Files: src/eval.c |
| 8502 | |
| 8503 | Patch 7.4.1347 |
| 8504 | Problem: When there is any error Vim will use a non-zero exit code. |
| 8505 | Solution: When using ":silent!" do not set the exit code. (Yasuhiro |
| 8506 | Matsumoto) |
| 8507 | Files: src/message.c |
| 8508 | |
| 8509 | Patch 7.4.1348 |
| 8510 | Problem: More compiler warnings. (John Marriott) |
| 8511 | Solution: Add type casts, remove unused variable. |
| 8512 | Files: src/gui_w32.c |
| 8513 | |
| 8514 | Patch 7.4.1349 |
| 8515 | Problem: And some more MingW compiler warnings. (Cesar Romani) |
| 8516 | Solution: Add type casts. |
| 8517 | Files: src/if_mzsch.c |
| 8518 | |
| 8519 | Patch 7.4.1350 |
| 8520 | Problem: When the test server fails to start Vim hangs. |
| 8521 | Solution: Check that there is actually something to read from the tty fd. |
| 8522 | Files: src/os_unix.c |
| 8523 | |
| 8524 | Patch 7.4.1351 |
| 8525 | Problem: When the port isn't opened yet when ch_open() is called it may |
| 8526 | fail instead of waiting for the specified time. |
| 8527 | Solution: Loop when select() succeeds but when connect() failed. Also use |
| 8528 | channel logging for jobs. Add ch_log(). |
| 8529 | Files: src/channel.c, src/eval.c, src/netbeans.c, src/proto/channel.pro, |
| 8530 | src/testdir/test_channel.vim, src/testdir/test_channel.py |
| 8531 | |
| 8532 | Patch 7.4.1352 |
| 8533 | Problem: The test script lists all functions before executing them. |
| 8534 | Solution: Only list the function currently being executed. |
| 8535 | Files: src/testdir/runtest.vim |
| 8536 | |
| 8537 | Patch 7.4.1353 |
| 8538 | Problem: Test_connect_waittime is skipped for MS-Windows. |
| 8539 | Solution: Add the test back, it works now. |
| 8540 | Files: src/testdir/test_channel.vim |
| 8541 | |
| 8542 | Patch 7.4.1354 |
| 8543 | Problem: MS-Windows: Mismatch between default compile options and what the |
| 8544 | code expects. |
| 8545 | Solution: Change the default WINVER from 0x0500 to 0x0501. (Ken Takata) |
| 8546 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 8547 | |
| 8548 | Patch 7.4.1355 |
| 8549 | Problem: Win32 console and GUI handle channels differently. |
| 8550 | Solution: Consolidate code between Win32 console and GUI. |
| 8551 | Files: src/channel.c, src/eval.c, src/gui_w48.c, src/os_win32.c, |
| 8552 | src/proto/channel.pro |
| 8553 | |
| 8554 | Patch 7.4.1356 |
| 8555 | Problem: Job and channel options parsing is scattered. |
| 8556 | Solution: Move all option value parsing to get_job_options(); |
| 8557 | Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro, |
| 8558 | src/testdir/test_channel.vim |
| 8559 | |
| 8560 | Patch 7.4.1357 (after 7.4.1356) |
| 8561 | Problem: Error for returning value from void function. |
| 8562 | Solution: Don't do that. |
| 8563 | Files: src/eval.c |
| 8564 | |
| 8565 | Patch 7.4.1358 |
| 8566 | Problem: Compiler warning when not building with +crypt. |
| 8567 | Solution: Add #ifdef. (John Marriott) |
| 8568 | Files: src/undo.c |
| 8569 | |
| 8570 | Patch 7.4.1359 (after 7.4.1356) |
| 8571 | Problem: Channel test ch_sendexpr() times out. |
| 8572 | Solution: Increase the timeout |
| 8573 | Files: src/testdir/test_channel.vim |
| 8574 | |
| 8575 | Patch 7.4.1360 |
| 8576 | Problem: Can't remove a callback with ch_setoptions(). |
| 8577 | Solution: When passing zero or an empty string remove the callback. |
| 8578 | Files: src/channel.c, src/proto/channel.pro, src/testdir/test_channel.vim |
| 8579 | |
| 8580 | Patch 7.4.1361 |
| 8581 | Problem: Channel test fails on Solaris. |
| 8582 | Solution: Use the 1 msec waittime for all systems. |
| 8583 | Files: src/channel.c |
| 8584 | |
| 8585 | Patch 7.4.1362 (after 7.4.1356) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8586 | Problem: Using uninitialized value. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8587 | Solution: Initialize jo_set. |
| 8588 | Files: src/eval.c |
| 8589 | |
| 8590 | Patch 7.4.1363 |
| 8591 | Problem: Compiler warnings with tiny build. |
| 8592 | Solution: Add #ifdefs. |
| 8593 | Files: src/gui_w48.c, src/gui_w32.c |
| 8594 | |
| 8595 | Patch 7.4.1364 |
| 8596 | Problem: The Win 16 code is not maintained and unused. |
| 8597 | Solution: Remove the Win 16 support. |
| 8598 | Files: src/gui_w16.c, src/gui_w32.c, src/gui_w48.c, src/Make_w16.mak, |
| 8599 | src/Makefile, src/Make_cyg_ming.mak, src/Make_mvc.mak, |
| 8600 | src/proto/gui_w16.pro, src/proto/os_win16.pro, src/guiw16rc.h, |
| 8601 | src/vim16.rc, src/vim16.def, src/tools16.bmp, src/eval.c, |
| 8602 | src/gui.c, src/misc2.c, src/option.c, src/os_msdos.c, |
| 8603 | src/os_mswin.c, src/os_win16.c, src/os_win16.h, src/version.c, |
| 8604 | src/winclip.c, src/feature.h, src/proto.h, src/vim.h, Filelist |
| 8605 | |
| 8606 | Patch 7.4.1365 |
| 8607 | Problem: Cannot execute a single test function. |
| 8608 | Solution: Add an argument to filter the functions with. (Yasuhiro Matsumoto) |
| 8609 | Files: src/testdir/runtest.vim |
| 8610 | |
| 8611 | Patch 7.4.1366 |
| 8612 | Problem: Typo in test and resulting error in test result. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 8613 | Solution: Fix the typo and correct the result. (James McCoy, closes #650) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8614 | Files: src/testdir/test_charsearch.in, src/testdir/test_charsearch.ok |
| 8615 | |
| 8616 | Patch 7.4.1367 |
| 8617 | Problem: Compiler warning for unreachable code. |
| 8618 | Solution: Remove a "break". (Danek Duvall) |
| 8619 | Files: src/json.c |
| 8620 | |
| 8621 | Patch 7.4.1368 |
| 8622 | Problem: One more Win16 file remains. |
| 8623 | Solution: Delete it. |
| 8624 | Files: src/proto/os_win16.pro |
| 8625 | |
| 8626 | Patch 7.4.1369 |
| 8627 | Problem: Channels don't have a queue for stderr. |
| 8628 | Solution: Have a queue for each part of the channel. |
| 8629 | Files: src/channel.c, src/eval.c, src/structs.h, src/netbeans.c, |
| 8630 | src/gui_w32.c, src/proto/channel.pro |
| 8631 | |
| 8632 | Patch 7.4.1370 |
| 8633 | Problem: The Python test script may keep on running. |
| 8634 | Solution: Join the threads. (Yasuhiro Matsumoto) |
| 8635 | Files: src/testdir/test_channel.py |
| 8636 | |
| 8637 | Patch 7.4.1371 |
| 8638 | Problem: X11 GUI callbacks don't specify the part of the channel. |
| 8639 | Solution: Pass the fd instead of the channel ID. |
| 8640 | Files: src/channel.c |
| 8641 | |
| 8642 | Patch 7.4.1372 |
| 8643 | Problem: channel read implementation is incomplete. |
| 8644 | Solution: Add ch_read() and options for ch_readraw(). |
| 8645 | Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro, |
| 8646 | src/testdir/test_channel.vim |
| 8647 | |
| 8648 | Patch 7.4.1373 |
| 8649 | Problem: Calling a Vim function over a channel requires turning the |
| 8650 | arguments into a string. |
| 8651 | Solution: Add the "call" command. (Damien) Also merge "expr" and "eval" |
| 8652 | into one. |
| 8653 | Files: src/channel.c, src/testdir/test_channel.py, |
| 8654 | src/testdir/test_channel.vim |
| 8655 | |
| 8656 | Patch 7.4.1374 |
| 8657 | Problem: Channel test hangs on MS-Windows. |
| 8658 | Solution: Disable the ch_read() that is supposed to time out. |
| 8659 | Files: src/testdir/test_channel.vim |
| 8660 | |
| 8661 | Patch 7.4.1375 |
| 8662 | Problem: Still some Win16 code. |
| 8663 | Solution: Remove FEAT_GUI_W16.(Hirohito Higashi) |
| 8664 | Files: src/eval.c, src/ex_cmds.h, src/feature.h, src/gui.h, src/menu.c, |
| 8665 | src/misc1.c, src/option.c, src/proto.h, src/structs.h, src/term.c, |
| 8666 | src/vim.h, runtime/doc/gui_w16.txt |
| 8667 | |
| 8668 | Patch 7.4.1376 |
| 8669 | Problem: ch_setoptions() cannot set all options. |
| 8670 | Solution: Support more options. |
| 8671 | Files: src/channel.c, src/eval.c, src/structs.h, runtime/doc/channel.txt, |
| 8672 | src/testdir/test_channel.vim |
| 8673 | |
| 8674 | Patch 7.4.1377 |
| 8675 | Problem: Test_connect_waittime() is flaky. |
| 8676 | Solution: Ignore the "Connection reset by peer" error. |
| 8677 | Files: src/testdir/test_channel.vim |
| 8678 | |
| 8679 | Patch 7.4.1378 |
| 8680 | Problem: Can't change job settings after it started. |
| 8681 | Solution: Add job_setoptions() with the "stoponexit" flag. |
| 8682 | Files: src/eval.c, src/main.c, src/structs.h, src/proto/eval.pro, |
| 8683 | src/testdir/test_channel.vim |
| 8684 | |
| 8685 | Patch 7.4.1379 |
| 8686 | Problem: Channel test fails on Win32 console. |
| 8687 | Solution: Don't sleep when timeout is zero. Call channel_wait() before |
| 8688 | channel_read(). Channels are not polled during ":sleep". (Yukihiro |
| 8689 | Nakadaira) |
| 8690 | Files: src/channel.c, src/misc2.c, src/gui_w32.c, src/os_win32.c |
| 8691 | |
| 8692 | Patch 7.4.1380 |
| 8693 | Problem: The job exit callback is not implemented. |
| 8694 | Solution: Add the "exit-cb" option. |
| 8695 | Files: src/structs.h, src/eval.c, src/channel.c, src/proto/eval.pro, |
| 8696 | src/misc2.c, src/macros.h, src/testdir/test_channel.vim |
| 8697 | |
| 8698 | Patch 7.4.1381 (after 7.4.1380) |
| 8699 | Problem: Exit value not available on MS-Windows. |
| 8700 | Solution: Set the exit value. |
| 8701 | Files: src/structs.h, src/os_win32.c |
| 8702 | |
| 8703 | Patch 7.4.1382 |
| 8704 | Problem: Can't get the job of a channel. |
| 8705 | Solution: Add ch_getjob(). |
| 8706 | Files: src/eval.c, runtime/doc/channel.txt, runtime/doc/eval.txt |
| 8707 | |
| 8708 | Patch 7.4.1383 |
| 8709 | Problem: GvimExt only loads the old libintl.dll. |
| 8710 | Solution: Also try loading libint-8.dll. (Ken Takata, closes #608) |
| 8711 | Files: src/GvimExt/gvimext.cpp, src/GvimExt/gvimext.h |
| 8712 | |
| 8713 | Patch 7.4.1384 |
| 8714 | Problem: It is not easy to use a set of plugins and their dependencies. |
| 8715 | Solution: Add packages, ":loadplugin", 'packpath'. |
| 8716 | Files: src/main.c, src/ex_cmds2.c, src/option.c, src/option.h, |
| 8717 | src/ex_cmds.h, src/eval.c, src/version.c, src/proto/ex_cmds2.pro, |
| 8718 | runtime/doc/repeat.txt, runtime/doc/options.txt, |
| 8719 | runtime/optwin.vim |
| 8720 | |
| 8721 | Patch 7.4.1385 |
| 8722 | Problem: Compiler warning for using array. |
| 8723 | Solution: Use the right member name. (Yegappan Lakshmanan) |
| 8724 | Files: src/eval.c |
| 8725 | |
| 8726 | Patch 7.4.1386 |
| 8727 | Problem: When the Job exit callback is invoked, the job may be freed too |
| 8728 | soon. (Yasuhiro Matsumoto) |
| 8729 | Solution: Increase refcount. |
| 8730 | Files: src/eval.c |
| 8731 | |
| 8732 | Patch 7.4.1387 |
| 8733 | Problem: Win16 docs still referenced. |
| 8734 | Solution: Remove Win16 files from the docs Makefile. (Kenichi Ito) |
| 8735 | Files: runtime/doc/Makefile |
| 8736 | |
| 8737 | Patch 7.4.1388 |
| 8738 | Problem: Compiler warning. (Cesar Romani) |
| 8739 | Solution: Initialize variable. |
| 8740 | Files: src/ex_cmds2.c |
| 8741 | |
| 8742 | Patch 7.4.1389 |
| 8743 | Problem: Incomplete function declaration. |
| 8744 | Solution: Add "void". (Yasuhiro Matsumoto) |
| 8745 | Files: src/eval.c |
| 8746 | |
| 8747 | Patch 7.4.1390 |
| 8748 | Problem: When building with GTK and glib-compile-resources cannot be found |
| 8749 | building Vim fails. (Michael Gehring) |
| 8750 | Solution: Make GLIB_COMPILE_RESOURCES empty instead of leaving it at "no". |
| 8751 | (nuko8, closes #655) |
| 8752 | Files: src/configure.in, src/auto/configure |
| 8753 | |
| 8754 | Patch 7.4.1391 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8755 | Problem: Warning for uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8756 | Solution: Set it to zero. (Christian Brabandt) |
| 8757 | Files: src/eval.c |
| 8758 | |
| 8759 | Patch 7.4.1392 |
| 8760 | Problem: Some tests fail for Win32 console version. |
| 8761 | Solution: Move the tests to SCRIPTS_MORE2. Pass VIMRUNTIME. (Christian |
| 8762 | Brabandt) |
| 8763 | Files: src/testdir/Make_all.mak |
| 8764 | |
| 8765 | Patch 7.4.1393 |
| 8766 | Problem: Starting a job hangs in the GUI. (Takuya Fujiwara) |
| 8767 | Solution: Don't check if ch_job is NULL when checking for an error. |
| 8768 | (Yasuhiro Matsumoto) |
| 8769 | Files: src/channel.c |
| 8770 | |
| 8771 | Patch 7.4.1394 |
| 8772 | Problem: Can't sort inside a sort function. |
| 8773 | Solution: Use a struct to store the sort parameters. (Jacob Niehus) |
| 8774 | Files: src/eval.c, src/testdir/test_sort.vim |
| 8775 | |
| 8776 | Patch 7.4.1395 |
| 8777 | Problem: Using DETACH in quotes is not compatible with the Netbeans |
| 8778 | interface. (Xavier de Gaye) |
| 8779 | Solution: Remove the quotes, only use them for JSON and JS mode. |
| 8780 | Files: src/netbeans.c, src/channel.c |
| 8781 | |
| 8782 | Patch 7.4.1396 |
| 8783 | Problem: Compiler warnings for conversions. |
| 8784 | Solution: Add type cast. |
| 8785 | Files: src/ex_cmds2.c |
| 8786 | |
| 8787 | Patch 7.4.1397 |
| 8788 | Problem: Sort test fails on MS-Windows. |
| 8789 | Solution: Correct the compare function. |
| 8790 | Files: src/testdir/test_sort.vim |
| 8791 | |
| 8792 | Patch 7.4.1398 |
| 8793 | Problem: The close-cb option is not implemented yet. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8794 | Solution: Implement close-cb. (Yasuhiro Matsumoto) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8795 | Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro, |
| 8796 | src/testdir/test_channel.py, src/testdir/test_channel.vim |
| 8797 | |
| 8798 | Patch 7.4.1399 |
| 8799 | Problem: The MS-DOS code does not build. |
| 8800 | Solution: Remove the old MS-DOS code. |
| 8801 | Files: Filelist, src/Make_bc3.mak, src/Make_bc5.mak, src/Make_djg.mak, |
| 8802 | src/Makefile, src/blowfish.c, src/buffer.c, src/diff.c, |
| 8803 | src/digraph.c, src/dosinst.h, src/eval.c, src/ex_cmds.c, |
| 8804 | src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c, src/feature.h, |
| 8805 | src/fileio.c, src/getchar.c, src/globals.h, src/macros.h, |
| 8806 | src/main.c, src/mbyte.c, src/memfile.c, src/memline.c, |
| 8807 | src/misc1.c, src/misc2.c, src/netbeans.c, src/option.c, |
| 8808 | src/option.h, src/os_msdos.c, src/os_msdos.h, src/proto.h, |
| 8809 | 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] | 8810 | src/syntax.c, src/term.c, src/undo.c, src/uninstal.c, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8811 | src/version.c, src/vim.h, src/window.c, src/xxd/Make_bc3.mak, |
| 8812 | src/xxd/Make_djg.mak |
| 8813 | |
| 8814 | |
| 8815 | Patch 7.4.1400 |
| 8816 | Problem: Perl eval doesn't work properly on 64-bit big-endian machine. |
| 8817 | Solution: Use 32 bit type for the key. (Danek Duvall) |
| 8818 | Files: src/if_perl.xs |
| 8819 | |
| 8820 | Patch 7.4.1401 |
| 8821 | Problem: Having 'autochdir' set during startup and using diff mode doesn't |
| 8822 | work. (Axel Bender) |
| 8823 | Solution: Don't use 'autochdir' while still starting up. (Christian |
| 8824 | Brabandt) |
| 8825 | Files: src/buffer.c |
| 8826 | |
| 8827 | Patch 7.4.1402 |
| 8828 | Problem: GTK 3 is not supported. |
| 8829 | Solution: Add GTK 3 support. (Kazunobu Kuriyama) |
| 8830 | Files: runtime/doc/eval.txt, runtime/doc/gui.txt, |
| 8831 | runtime/doc/gui_x11.txt, src/auto/configure, src/channel.c, |
| 8832 | src/config.h.in, src/configure.in, src/eval.c, src/gui.h, |
| 8833 | src/gui_beval.c, src/gui_beval.h, src/gui_gtk.c, src/gui_gtk_f.c, |
| 8834 | src/gui_gtk_f.h, src/gui_gtk_x11.c, src/if_mzsch.c, src/mbyte.c, |
| 8835 | src/netbeans.c, src/structs.h, src/version.c |
| 8836 | |
| 8837 | Patch 7.4.1403 |
| 8838 | Problem: Can't build without the quickfix feature. |
| 8839 | Solution: Add #ifdefs. Call ex_ni() for unimplemented commands. (Yegappan |
| 8840 | Lakshmanan) |
| 8841 | Files: src/ex_cmds2.c, src/popupmnu.c |
| 8842 | |
| 8843 | Patch 7.4.1404 |
| 8844 | Problem: ch_read() doesn't time out on MS-Windows. |
| 8845 | Solution: Instead of WM_NETBEANS use select(). (Yukihiro Nakadaira) |
| 8846 | Files: src/channel.c, src/gui_w32.c, src/os_win32.c, src/structs.h, |
| 8847 | src/testdir/test_channel.vim, src/vim.h |
| 8848 | |
| 8849 | Patch 7.4.1405 |
| 8850 | Problem: Completion menu flickers. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 8851 | Solution: Delay showing the popup menu. (Shougo Matsu, Justin M. Keyes, |
| 8852 | closes #656) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 8853 | Files: src/edit.c |
| 8854 | |
| 8855 | Patch 7.4.1406 |
| 8856 | Problem: Leaking memory in cs_print_tags_priv(). |
| 8857 | Solution: Free tbuf. (idea by Forrest Fleming) |
| 8858 | Files: src/if_cscope.c |
| 8859 | |
| 8860 | Patch 7.4.1407 |
| 8861 | Problem: json_encode() does not handle NaN and inf properly. (David |
| 8862 | Barnett) |
| 8863 | Solution: For JSON turn them into "null". For JS use "NaN" and "Infinity". |
| 8864 | Add isnan(). |
| 8865 | Files: src/eval.c, src/json.c, src/testdir/test_json.vim |
| 8866 | |
| 8867 | Patch 7.4.1408 |
| 8868 | Problem: MS-Windows doesn't have isnan() and isinf(). |
| 8869 | Solution: Use _isnan() and _isinf(). |
| 8870 | Files: src/eval.c, src/json.c |
| 8871 | |
| 8872 | Patch 7.4.1409 (after 7.4.1402) |
| 8873 | Problem: Configure includes GUI despite --disable-gui flag. |
| 8874 | Solution: Add SKIP_GTK3. (Kazunobu Kuriyama) |
| 8875 | Files: src/configure.in, src/auto/configure |
| 8876 | |
| 8877 | Patch 7.4.1410 |
| 8878 | Problem: Leaking memory in cscope interface. |
| 8879 | Solution: Free memory when no tab is found. (Christian Brabandt) |
| 8880 | Files: src/if_cscope.c |
| 8881 | |
| 8882 | Patch 7.4.1411 |
| 8883 | Problem: Compiler warning for indent. (Ajit Thakkar) |
| 8884 | Solution: Indent normally. |
| 8885 | Files: src/ui.c |
| 8886 | |
| 8887 | Patch 7.4.1412 |
| 8888 | Problem: Compiler warning for indent. (Dominique Pelle) |
| 8889 | Solution: Fix the indent. |
| 8890 | Files: src/farsi.c |
| 8891 | |
| 8892 | Patch 7.4.1413 |
| 8893 | Problem: When calling ch_close() the close callback is invoked, even though |
| 8894 | the docs say it isn't. (Christian J. Robinson) |
| 8895 | Solution: Don't call the close callback. |
| 8896 | Files: src/eval.c, src/channel.c, src/netbeans.c, src/proto/channel.pro |
| 8897 | |
| 8898 | Patch 7.4.1414 |
| 8899 | Problem: Appveyor only builds one feature set. |
| 8900 | Solution: Build a combination of features and GUI/console. (Christian |
| 8901 | Brabandt) |
| 8902 | Files: appveyor.yml, src/appveyor.bat |
| 8903 | |
| 8904 | Patch 7.4.1415 (after 7.4.1414) |
| 8905 | Problem: Dropped the skip-tags setting. |
| 8906 | Solution: Put it back. |
| 8907 | Files: appveyor.yml |
| 8908 | |
| 8909 | Patch 7.4.1416 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 8910 | 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] | 8911 | (Jörg Plate) |
| 8912 | Solution: Use "char_u" always. |
| 8913 | Files: src/integration.c, src/macros.h |
| 8914 | |
| 8915 | Patch 7.4.1417 (after 7.4.1414) |
| 8916 | Problem: Missing appveyor.bat from the distribution. |
| 8917 | Solution: Add it to the list of files. |
| 8918 | Files: Filelist |
| 8919 | |
| 8920 | Patch 7.4.1418 |
| 8921 | Problem: job_stop() on MS-Windows does not really stop the job. |
| 8922 | Solution: Make the default to stop the job forcefully. (Ken Takata) |
| 8923 | Make MS-Windows and Unix more similar. |
| 8924 | Files: src/os_win32.c, src/os_unix.c, runtime/doc/eval.txt |
| 8925 | |
| 8926 | Patch 7.4.1419 |
| 8927 | Problem: Tests slowed down because of the "not a terminal" warning. |
| 8928 | Solution: Add the --not-a-term command line argument. |
| 8929 | Files: src/main.c, src/testdir/Makefile, src/Make_all.mak, |
| 8930 | src/Make_amiga.mak, src/testdir/Make_dos.mak, |
| 8931 | src/testdir/Make_ming.mak, src/testdir/Make_vms.mms, |
| 8932 | runtime/doc/starting.txt |
| 8933 | |
| 8934 | Patch 7.4.1420 (after 7.4.1419) |
| 8935 | Problem: Missing makefile. |
| 8936 | Solution: Type the path correctly. |
| 8937 | Files: src/testdir/Make_all.mak |
| 8938 | |
| 8939 | Patch 7.4.1421 |
| 8940 | Problem: May free a channel when a callback may need to be invoked. |
| 8941 | Solution: Keep the channel when refcount is zero. |
| 8942 | Files: src/eval.c, src/channel.c, src/proto/channel.pro |
| 8943 | |
| 8944 | Patch 7.4.1422 |
| 8945 | Problem: Error when reading fails uses wrong errno. Keeping channel open |
| 8946 | after job stops results in test failing. |
| 8947 | Solution: Move the error up. Add ch_job_killed. |
| 8948 | Files: src/channel.c, src/eval.c, src/structs.h |
| 8949 | |
| 8950 | Patch 7.4.1423 |
| 8951 | Problem: Channel test fails on MS-Windows. |
| 8952 | Solution: Do not give an error message when reading fails, assume the other |
| 8953 | end exited. |
| 8954 | Files: src/channel.c |
| 8955 | |
| 8956 | Patch 7.4.1424 |
| 8957 | Problem: Not using --not-a-term when running tests on MS-Windows. |
| 8958 | Solution: Use NO_PLUGIN. (Christian Brabandt) |
| 8959 | Files: src/testdir/Make_dos.mak |
| 8960 | |
| 8961 | Patch 7.4.1425 |
| 8962 | Problem: There are still references to MS-DOS support. |
| 8963 | Solution: Remove most of the help txt and install instructions. (Ken Takata) |
| 8964 | Files: src/INSTALLpc.txt, runtime/doc/os_msdos.txt, csdpmi4b.zip, |
| 8965 | Filelist |
| 8966 | |
| 8967 | Patch 7.4.1426 |
| 8968 | Problem: The "out-io" option for jobs is not implemented yet. |
| 8969 | Solution: Implement the "buffer" value: append job output to a buffer. |
| 8970 | Files: src/eval.c, src/channel.c, src/structs.h, src/netbeans.c, |
| 8971 | runtime/doc/channel.txt |
| 8972 | |
| 8973 | Patch 7.4.1427 |
| 8974 | Problem: Trailing comma in enums is not ANSI C. |
| 8975 | Solution: Remove the trailing commas. |
| 8976 | Files: src/alloc.h, src/gui_mac.c |
| 8977 | |
| 8978 | Patch 7.4.1428 |
| 8979 | Problem: Compiler warning for non-virtual destructor. |
| 8980 | Solution: Make it virtual. (Yasuhiro Matsumoto) |
| 8981 | Files: src/gui_dwrite.cpp |
| 8982 | |
| 8983 | Patch 7.4.1429 |
| 8984 | Problem: On MS-Windows, when not use renderoptions=type:directx, drawing |
| 8985 | emoji will be broken. |
| 8986 | Solution: Fix usage of unicodepdy. (Yasuhiro Matsumoto) |
| 8987 | Files: src/gui_w32.c |
| 8988 | |
| 8989 | Patch 7.4.1430 |
| 8990 | Problem: When encoding JSON, turning NaN and Infinity into null without |
| 8991 | giving an error is not useful. |
| 8992 | Solution: Pass NaN and Infinity on. If the receiver can't handle them it |
| 8993 | will generate the error. |
| 8994 | Files: src/json.c, src/testdir/test_json.vim, runtime/doc/eval.txt |
| 8995 | |
| 8996 | Patch 7.4.1431 |
| 8997 | Problem: Including header files twice. |
| 8998 | Solution: Remove the extra includes. |
| 8999 | Files: src/if_cscope.h |
| 9000 | |
| 9001 | Patch 7.4.1432 |
| 9002 | Problem: Typo in button text. |
| 9003 | Solution: Fix the typo. (Dominique Pelle) |
| 9004 | Files: src/gui_gtk.c |
| 9005 | |
| 9006 | Patch 7.4.1433 |
| 9007 | Problem: The Sniff interface is no longer useful, the tool has not been |
| 9008 | available for may years. |
| 9009 | Solution: Delete the Sniff interface and related code. |
| 9010 | Files: src/if_sniff.c, src/if_sniff.h, src/charset.c, src/edit.c, |
| 9011 | src/eval.c, src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c, |
| 9012 | src/gui_gtk_x11.c, src/gui_w32.c, src/gui_x11.c, src/normal.c, |
| 9013 | src/os_unix.c, src/os_win32.c, src/term.c, src/ui.c, |
| 9014 | src/version.c, src/ex_cmds.h, src/feature.h, src/keymap.h, |
| 9015 | src/structs.h, src/vim.h, src/Make_mvc.mak, src/Make_vms.mms, |
| 9016 | src/Makefile, src/configure.in, src/auto/configure, |
| 9017 | src/config.h.in, src/config.mk.in, runtime/doc/if_sniff.txt, |
| 9018 | src/config.aap.in, src/main.aap |
| 9019 | |
| 9020 | Patch 7.4.1434 |
| 9021 | Problem: JSON encoding doesn't handle surrogate pair. |
| 9022 | Solution: Improve multi-byte handling of JSON. (Yasuhiro Matsumoto) |
| 9023 | Files: src/json.c, src/testdir/test_json.vim |
| 9024 | |
| 9025 | Patch 7.4.1435 |
| 9026 | Problem: It is confusing that ch_sendexpr() and ch_sendraw() wait for a |
| 9027 | response. |
| 9028 | Solution: Add ch_evalexpr() and ch_evalraw(). |
| 9029 | Files: src/eval.c, runtime/doc/channel.txt, runtime/doc/eval.txt, |
| 9030 | src/testdir/test_channel.vim |
| 9031 | |
| 9032 | Patch 7.4.1436 (after 7.4.1433) |
| 9033 | Problem: Sniff files still referenced in distribution. |
| 9034 | Solution: Remove sniff files from distribution. |
| 9035 | Files: Filelist |
| 9036 | |
| 9037 | Patch 7.4.1437 |
| 9038 | Problem: Old system doesn't have isinf() and NAN. (Ben Fritz) |
| 9039 | Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with |
| 9040 | configure. Use a replacement when missing. (Kazunobu Kuriyama) |
| 9041 | Files: src/eval.c, src/json.c, src/macros.h, src/message.c, |
| 9042 | src/config.h.in, src/configure.in, src/auto/configure |
| 9043 | |
| 9044 | Patch 7.4.1438 |
| 9045 | Problem: Can't get buffer number of a channel. |
| 9046 | Solution: Add ch_getbufnr(). |
| 9047 | Files: src/eval.c, src/channel.c, src/testdir/test_channel.vim, |
| 9048 | runtime/doc/channel.txt, runtime/doc/eval.txt |
| 9049 | |
| 9050 | Patch 7.4.1439 (after 7.4.1434) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9051 | Problem: Using uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9052 | Solution: Initialize vc_type. |
| 9053 | Files: src/json.c |
| 9054 | |
| 9055 | Patch 7.4.1440 (after 7.4.1437) |
| 9056 | Problem: Can't build on Windows. |
| 9057 | Solution: Change #ifdefs. Only define isnan when used. |
| 9058 | Files: src/macros.h, src/eval.c, src/json.c |
| 9059 | |
| 9060 | Patch 7.4.1441 |
| 9061 | Problem: Using empty name instead of no name for channel buffer. |
| 9062 | Solution: Remove the empty name. |
| 9063 | Files: src/channel.c |
| 9064 | |
| 9065 | Patch 7.4.1442 |
| 9066 | Problem: MS-Windows: more compilation warnings for destructor. |
| 9067 | Solution: Add "virtual". (Ken Takata) |
| 9068 | Files: src/if_ole.cpp |
| 9069 | |
| 9070 | Patch 7.4.1443 |
| 9071 | Problem: Can't build GTK3 with small features. |
| 9072 | Solution: Use gtk_widget_get_window(). Fix typos. (Dominique Pelle) |
| 9073 | Files: src/gui_gtk_x11.c |
| 9074 | |
| 9075 | Patch 7.4.1444 |
| 9076 | Problem: Can't build with JSON but without multi-byte. |
| 9077 | Solution: Fix pointer name. |
| 9078 | Files: src/json.c |
| 9079 | |
| 9080 | Patch 7.4.1445 |
| 9081 | Problem: Memory corruption when 'encoding' is not utf-8. |
| 9082 | Solution: Convert decoded string later. |
| 9083 | Files: src/json.c |
| 9084 | |
| 9085 | Patch 7.4.1446 |
| 9086 | Problem: Crash when using json_decode(). |
| 9087 | Solution: Terminate string with a NUL byte. |
| 9088 | Files: src/json.c |
| 9089 | |
| 9090 | Patch 7.4.1447 |
| 9091 | Problem: Memory leak when using ch_read(). (Dominique Pelle) |
| 9092 | No log message when stopping a job and a few other situations. |
| 9093 | Too many "Nothing to read" messages. Channels are not freed. |
| 9094 | Solution: Free the listtv. Add more log messages. Remove "Nothing to read" |
| 9095 | message. Remove the channel from the job when its refcount |
| 9096 | becomes zero. |
| 9097 | Files: src/eval.c, src/channel.c |
| 9098 | |
| 9099 | Patch 7.4.1448 |
| 9100 | Problem: JSON tests fail if 'encoding' is not utf-8. |
| 9101 | Solution: Force encoding to utf-8. |
| 9102 | Files: src/testdir/test_json.vim |
| 9103 | |
| 9104 | Patch 7.4.1449 |
| 9105 | Problem: Build fails with job feature but without channel feature. |
| 9106 | Solution: Add #ifdef. |
| 9107 | Files: src/eval.c |
| 9108 | |
| 9109 | Patch 7.4.1450 |
| 9110 | Problem: Json encoding still fails when encoding is not utf-8. |
| 9111 | Solution: Set 'encoding' before :scriptencoding. Run the json test |
| 9112 | separately to avoid affecting other tests. |
| 9113 | Files: src/testdir/test_json.vim, src/testdir/Make_all.mak, |
| 9114 | src/testdir/test_alot.vim |
| 9115 | |
| 9116 | Patch 7.4.1451 |
| 9117 | Problem: Vim hangs when a channel has a callback but isn't referenced. |
| 9118 | Solution: Have channel_unref() only return TRUE when the channel was |
| 9119 | actually freed. |
| 9120 | Files: src/eval.c, src/channel.c, src/proto/channel.pro |
| 9121 | |
| 9122 | Patch 7.4.1452 |
| 9123 | Problem: When a callback adds a syntax item either the redraw doesn't |
| 9124 | happen right away or in the GUI the cursor is in the wrong |
| 9125 | position for a moment. (Jakson Alves de Aquino) |
| 9126 | Solution: Redraw after the callback was invoked. |
| 9127 | Files: src/channel.c |
| 9128 | |
| 9129 | Patch 7.4.1453 |
| 9130 | Problem: Missing --not-a-term. |
| 9131 | Solution: Add the argument. |
| 9132 | Files: src/testdir/Make_amiga.mak |
| 9133 | |
| 9134 | Patch 7.4.1454 |
| 9135 | Problem: The exit callback test is flaky. |
| 9136 | Solution: Loop to wait for a short time up to a second. |
| 9137 | Files: src/testdir/test_channel.vim |
| 9138 | |
| 9139 | Patch 7.4.1455 |
| 9140 | Problem: JSON decoding test for surrogate pairs is in the wrong place. |
| 9141 | Solution: Move the test lines. (Ken Takata) |
| 9142 | Files: src/testdir/test_json.vim |
| 9143 | |
| 9144 | Patch 7.4.1456 |
| 9145 | Problem: Test 87 fails with Python 3.5. |
| 9146 | Solution: Work around difference. (Taro Muraoka) |
| 9147 | Files: src/testdir/test87.in |
| 9148 | |
| 9149 | Patch 7.4.1457 |
| 9150 | Problem: Opening a channel with select() is not done properly. |
| 9151 | Solution: Also used read-fds. Use getsockopt() to check for errors. (Ozaki |
| 9152 | Kiichi) |
| 9153 | Files: src/channel.c |
| 9154 | |
| 9155 | Patch 7.4.1458 |
| 9156 | Problem: When a JSON channel has a callback it may never be cleared. |
| 9157 | Solution: Do not write "DETACH" into a JS or JSON channel. |
| 9158 | Files: src/channel.c |
| 9159 | |
| 9160 | Patch 7.4.1459 (after 7.4.1457) |
| 9161 | Problem: MS-Windows doesn't know socklen_t. |
| 9162 | Solution: Use previous method for WIN32. |
| 9163 | Files: src/channel.c |
| 9164 | |
| 9165 | Patch 7.4.1460 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9166 | Problem: Syntax error in rarely used code. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9167 | Solution: Fix the mch_rename() declaration. (Ken Takata) |
| 9168 | Files: src/os_unix.c, src/proto/os_unix.pro |
| 9169 | |
| 9170 | Patch 7.4.1461 |
| 9171 | Problem: When starting job on MS-Windows all parts of the command are put |
| 9172 | in quotes. |
| 9173 | Solution: Only use quotes when needed. (Yasuhiro Matsumoto) |
| 9174 | Files: src/eval.c |
| 9175 | |
| 9176 | Patch 7.4.1462 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9177 | Problem: Two more rarely used functions with errors. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9178 | Solution: Add proper argument types. (Dominique Pelle) |
| 9179 | Files: src/misc2.c, src/termlib.c |
| 9180 | |
| 9181 | Patch 7.4.1463 |
| 9182 | Problem: Configure doesn't find isinf() and isnan() on some systems. |
| 9183 | Solution: Use a configure check that includes math.h. |
| 9184 | Files: src/configure.in, src/auto/configure |
| 9185 | |
| 9186 | Patch 7.4.1464 |
| 9187 | Problem: When the argument of sort() is zero or empty it fails. |
| 9188 | Solution: Make zero work as documented. (suggested by Yasuhiro Matsumoto) |
| 9189 | Files: src/eval.c, src/testdir/test_sort.vim |
| 9190 | |
| 9191 | Patch 7.4.1465 |
| 9192 | Problem: Coverity reported possible use of NULL pointer when using buffer |
| 9193 | output with JSON mode. |
| 9194 | Solution: Make it actually possible to use JSON mode with a buffer. |
| 9195 | Re-encode the JSON to append it to the buffer. |
| 9196 | Files: src/channel.c, src/testdir/test_channel.vim |
| 9197 | |
| 9198 | Patch 7.4.1466 |
| 9199 | Problem: Coverity reports dead code. |
| 9200 | Solution: Remove the two lines. |
| 9201 | Files: src/channel.c |
| 9202 | |
| 9203 | Patch 7.4.1467 |
| 9204 | Problem: Can't build without the float feature. |
| 9205 | Solution: Add #ifdefs. (Nick Owens, closes #667) |
| 9206 | Files: src/eval.c, src/json.c |
| 9207 | |
| 9208 | Patch 7.4.1468 |
| 9209 | Problem: Sort test doesn't test with "1" argument. |
| 9210 | Solution: Also test ignore-case sorting. (Yasuhiro Matsumoto) |
| 9211 | Files: src/testdir/test_sort.vim |
| 9212 | |
| 9213 | Patch 7.4.1469 |
| 9214 | Problem: Channel test sometimes fails, especially on OS/X. (Kazunobu |
| 9215 | Kuriyama) |
| 9216 | Solution: Change the && into ||, call getsockopt() in more situations. |
| 9217 | (Ozaki Kiichi) |
| 9218 | Files: src/channel.c |
| 9219 | |
| 9220 | Patch 7.4.1470 |
| 9221 | Problem: Coverity reports missing restore. |
| 9222 | Solution: Move json_encode() call up. |
| 9223 | Files: src/channel.c |
| 9224 | |
| 9225 | Patch 7.4.1471 |
| 9226 | Problem: Missing out-of-memory check. And Coverity warning. |
| 9227 | Solution: Bail out when msg is NULL. |
| 9228 | Files: src/channel.c |
| 9229 | |
| 9230 | Patch 7.4.1472 |
| 9231 | Problem: Coverity warning for not using return value. |
| 9232 | Solution: Add "(void)". |
| 9233 | Files: src/os_unix.c |
| 9234 | |
| 9235 | Patch 7.4.1473 |
| 9236 | Problem: Can't build without the autocommand feature. |
| 9237 | Solution: Add #ifdefs. (Yegappan Lakshmanan) |
| 9238 | Files: src/edit.c, src/main.c, src/syntax.c |
| 9239 | |
| 9240 | Patch 7.4.1474 |
| 9241 | Problem: Compiler warnings without the float feature. |
| 9242 | Solution: Move #ifdefs. (John Marriott) |
| 9243 | Files: src/eval.c |
| 9244 | |
| 9245 | Patch 7.4.1475 |
| 9246 | Problem: When using hangulinput with utf-8 a CSI character is |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9247 | misinterpreted. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9248 | Solution: Convert CSI to K_CSI. (SungHyun Nam) |
| 9249 | Files: src/ui.c |
| 9250 | |
| 9251 | Patch 7.4.1476 |
| 9252 | Problem: Function arguments marked as unused while they are not. |
| 9253 | Solution: Remove UNUSED. (Yegappan Lakshmanan) |
| 9254 | Files: src/diff.c, src/eval.c, src/ex_cmds2.c, src/ex_docmd.c, |
| 9255 | src/window.c |
| 9256 | |
| 9257 | Patch 7.4.1477 |
| 9258 | Problem: Test_reltime is flaky, it depends on timing. |
| 9259 | Solution: When it fails run it a second time. |
| 9260 | Files: src/testdir/runtest.vim |
| 9261 | |
| 9262 | Patch 7.4.1478 |
| 9263 | Problem: ":loadplugin" doesn't take care of ftdetect files. |
| 9264 | Solution: Also load ftdetect scripts when appropriate. |
| 9265 | Files: src/ex_cmds2.c |
| 9266 | |
| 9267 | Patch 7.4.1479 |
| 9268 | Problem: No testfor ":loadplugin". |
| 9269 | Solution: Add a test. Fix how option is being set. |
| 9270 | Files: src/ex_cmds2.c, src/testdir/test_loadplugin.vim, |
| 9271 | src/testdir/Make_all.mak |
| 9272 | |
| 9273 | Patch 7.4.1480 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9274 | Problem: Cannot add a pack directory without loading a plugin. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9275 | Solution: Add the :packadd command. |
| 9276 | Files: src/ex_cmds.h, src/ex_cmds2.c, src/proto/ex_cmds2.pro, |
| 9277 | src/testdir/test_loadplugin.vim, runtime/doc/repeat.txt |
| 9278 | |
| 9279 | Patch 7.4.1481 |
| 9280 | Problem: Can't build with small features. |
| 9281 | Solution: Add #ifdef. |
| 9282 | Files: src/ex_cmds2.c |
| 9283 | |
| 9284 | Patch 7.4.1482 |
| 9285 | Problem: "timeout" option not supported on ch_eval*(). |
| 9286 | Solution: Get and use the timeout option from the argument. |
| 9287 | Files: src/eval.c, src/testdir/test_channel.vim |
| 9288 | |
| 9289 | Patch 7.4.1483 |
| 9290 | Problem: A one-time callback is not used for a raw channel. |
| 9291 | Solution: Use a one-time callback when it exists. |
| 9292 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 9293 | src/testdir/test_channel.py |
| 9294 | |
| 9295 | Patch 7.4.1484 |
| 9296 | Problem: Channel "err-io" value "out" is not supported. |
| 9297 | Solution: Connect stderr to stdout if wanted. |
| 9298 | Files: src/os_unix.c, src/os_win32.c, src/testdir/test_channel.vim, |
| 9299 | src/testdir/test_channel_pipe.py |
| 9300 | |
| 9301 | Patch 7.4.1485 |
| 9302 | Problem: Job input from buffer is not implemented. |
| 9303 | Solution: Implement it. Add "in-top" and "in-bot" options. |
| 9304 | Files: src/structs.h, src/eval.c, src/channel.c, src/proto/channel.pro, |
| 9305 | src/os_unix.c, src/os_win32.c, src/testdir/test_channel.vim |
| 9306 | |
| 9307 | Patch 7.4.1486 |
| 9308 | Problem: ":loadplugin" is not optimal, some people find it confusing. |
| 9309 | Solution: Only use ":packadd" with an optional "!". |
| 9310 | Files: src/ex_cmds.h, src/ex_cmds2.c, src/testdir/test_loadplugin.vim, |
| 9311 | src/testdir/test_packadd.vim, src/testdir/Make_all.mak, |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 9312 | runtime/doc/repeat.txt |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9313 | |
| 9314 | Patch 7.4.1487 |
| 9315 | Problem: For WIN32 isinf() is defined as a macro. |
| 9316 | Solution: Define it as an inline function. (ZyX) |
| 9317 | Files: src/macros.h |
| 9318 | |
| 9319 | Patch 7.4.1488 (after 7.4.1475) |
| 9320 | Problem: Not using key when result from hangul_string_convert() is NULL. |
| 9321 | Solution: Fall back to not converted string. |
| 9322 | Files: src/ui.c |
| 9323 | |
| 9324 | Patch 7.4.1489 (after 7.4.1487) |
| 9325 | Problem: "inline" is not supported by old MSVC. |
| 9326 | Solution: use "__inline". (Ken Takata) |
| 9327 | Files: src/macros.h |
| 9328 | |
| 9329 | Patch 7.4.1490 |
| 9330 | Problem: Compiler warning for unused function. |
| 9331 | Solution: Add #ifdef. (Dominique Pelle) |
| 9332 | Files: src/gui_gtk_x11.c |
| 9333 | |
| 9334 | Patch 7.4.1491 |
| 9335 | Problem: Visual-block shift breaks multi-byte characters. |
| 9336 | Solution: Compute column differently. (Yasuhiro Matsumoto) Add a test. |
| 9337 | Files: src/ops.c, src/testdir/test_visual.vim, src/testdir/Make_all.mak |
| 9338 | |
| 9339 | Patch 7.4.1492 |
| 9340 | Problem: No command line completion for ":packadd". |
| 9341 | Solution: Implement completion. (Hirohito Higashi) |
| 9342 | Files: src/ex_docmd.c, src/ex_getln.c, src/testdir/test_packadd.vim, |
| 9343 | src/vim.h |
| 9344 | |
| 9345 | Patch 7.4.1493 |
| 9346 | Problem: Wrong callback invoked for zero-id messages. |
| 9347 | Solution: Don't use the first one-time callback when the sequence number |
| 9348 | doesn't match. |
| 9349 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 9350 | src/testdir/test_channel.py |
| 9351 | |
| 9352 | Patch 7.4.1494 |
| 9353 | Problem: clr_history() does not work properly. |
| 9354 | Solution: Increment hisptr. Add a test. (Yegappan Lakshmanan) |
| 9355 | Files: src/ex_getln.c, src/testdir/test_history.vim, |
| 9356 | src/testdir/Make_all.mak |
| 9357 | |
| 9358 | Patch 7.4.1495 |
| 9359 | Problem: Compiler warnings when building on Unix with the job feature but |
| 9360 | without the channel feature. |
| 9361 | Solution: Move #ifdefs. (Dominique Pelle) |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 9362 | Files: src/os_unix.c |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9363 | |
| 9364 | Patch 7.4.1496 |
| 9365 | Problem: Crash when built with GUI but it's not active. (Dominique Pelle) |
| 9366 | Solution: Check gui.in_use. |
| 9367 | Files: src/channel.c |
| 9368 | |
| 9369 | Patch 7.4.1497 |
| 9370 | Problem: Cursor drawing problem with GTK 3. |
| 9371 | Solution: Handle blinking differently. (Kazunobu Kuriyama) |
| 9372 | Files: src/gui_gtk_x11.c |
| 9373 | |
| 9374 | Patch 7.4.1498 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 9375 | Problem: Error for locked item when using json_decode(). (Shougo Matsu) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9376 | Solution: Initialize v_lock. |
| 9377 | Files: src/json.c |
| 9378 | |
| 9379 | Patch 7.4.1499 |
| 9380 | Problem: No error message when :packadd does not find anything. |
| 9381 | Solution: Add an error message. (Hirohito Higashi) |
| 9382 | Files: runtime/doc/repeat.txt, src/ex_cmds.h, src/ex_cmds2.c, |
| 9383 | src/globals.h, src/testdir/test_packadd.vim |
| 9384 | |
| 9385 | Patch 7.4.1500 |
| 9386 | Problem: Should_free flag set to FALSE. |
| 9387 | Solution: Set it to TRUE. (Neovim 4415) |
| 9388 | Files: src/ex_eval.c |
| 9389 | |
| 9390 | Patch 7.4.1501 |
| 9391 | Problem: Garbage collection with an open channel is not tested. |
| 9392 | Solution: Call garbagecollect() in the test. |
| 9393 | Files: src/testdir/test_channel.vim |
| 9394 | |
| 9395 | Patch 7.4.1502 |
| 9396 | Problem: Writing last-but-one line of buffer to a channel isn't implemented |
| 9397 | yet. |
| 9398 | Solution: Implement it. Fix leaving a swap file behind. |
| 9399 | Files: src/channel.c, src/structs.h, src/memline.c, src/proto/channel.pro |
| 9400 | |
| 9401 | Patch 7.4.1503 |
| 9402 | Problem: Crash when using ch_getjob(). (Damien) |
| 9403 | Solution: Check for a NULL job. |
| 9404 | Files: src/eval.c, src/testdir/test_channel.vim |
| 9405 | |
| 9406 | Patch 7.4.1504 (after 7.4.1502) |
| 9407 | Problem: No test for reading last-but-one line. |
| 9408 | Solution: Add a test. |
| 9409 | Files: src/testdir/test_channel.vim |
| 9410 | |
| 9411 | Patch 7.4.1505 |
| 9412 | Problem: When channel log is enabled get too many "looking for messages" |
| 9413 | log entries. |
| 9414 | Solution: Only give the message after another message. |
| 9415 | Files: src/channel.c |
| 9416 | |
| 9417 | Patch 7.4.1506 |
| 9418 | Problem: Job cannot read from a file. |
| 9419 | Solution: Implement reading from a file for Unix. |
| 9420 | Files: src/eval.c, src/os_unix.c, src/os_win32.c, |
| 9421 | src/testdir/test_channel.vim |
| 9422 | |
| 9423 | Patch 7.4.1507 |
| 9424 | Problem: Crash when starting a job fails. |
| 9425 | Solution: Check for the channel to be NULL. (idea by Yasuhiro Matsumoto) |
| 9426 | Files: src/eval.c |
| 9427 | |
| 9428 | Patch 7.4.1508 |
| 9429 | Problem: Can't build GvimExt with MingW. |
| 9430 | Solution: Adjust the makefile. (Ben Fritz) |
| 9431 | Files: src/GvimExt/Make_ming.mak |
| 9432 | |
| 9433 | Patch 7.4.1509 |
| 9434 | Problem: Keeping both a variable for a job and the channel it refers to is |
| 9435 | a hassle. |
| 9436 | Solution: Allow passing the job where a channel is expected. (Damien) |
| 9437 | Files: src/eval.c, src/testdir/test_channel.vim |
| 9438 | |
| 9439 | Patch 7.4.1510 |
| 9440 | Problem: Channel test fails on AppVeyor. |
| 9441 | Solution: Wait longer than 10 msec if needed. |
| 9442 | Files: src/testdir/test_channel.vim |
| 9443 | |
| 9444 | Patch 7.4.1511 |
| 9445 | Problem: Statusline highlighting is sometimes wrong. |
| 9446 | Solution: Check for Highlight type. (Christian Brabandt) |
| 9447 | Files: src/buffer.c |
| 9448 | |
| 9449 | Patch 7.4.1512 |
| 9450 | Problem: Channel input from file not supported on MS-Windows. |
| 9451 | Solution: Implement it. (Yasuhiro Matsumoto) |
| 9452 | Files: src/os_win32.c, src/testdir/test_channel.vim |
| 9453 | |
| 9454 | Patch 7.4.1513 |
| 9455 | Problem: "J" fails if there are not enough lines. (Christian Neukirchen) |
| 9456 | Solution: Reduce the count, only fail on the last line. |
| 9457 | Files: src/normal.c, src/testdir/test_join.vim, src/testdir/test_alot.vim |
| 9458 | |
| 9459 | Patch 7.4.1514 |
| 9460 | Problem: Channel output to file not implemented yet. |
| 9461 | Solution: Implement it for Unix. |
| 9462 | Files: src/os_unix.c, src/testdir/test_channel.vim, |
| 9463 | src/testdir/test_channel_pipe.py |
| 9464 | |
| 9465 | Patch 7.4.1515 |
| 9466 | Problem: Channel test is a bit flaky. |
| 9467 | Solution: Instead of a fixed sleep time wait until an expression evaluates |
| 9468 | to true. |
| 9469 | Files: src/testdir/test_channel.vim |
| 9470 | |
| 9471 | Patch 7.4.1516 |
| 9472 | Problem: Cannot change file permissions. |
| 9473 | Solution: Add setfperm(). |
| 9474 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim, |
| 9475 | src/testdir/test_file_perm.vim |
| 9476 | |
| 9477 | Patch 7.4.1517 |
| 9478 | Problem: Compiler warning with 64bit compiler. |
| 9479 | Solution: Add typecast. (Mike Williams) |
| 9480 | Files: src/channel.c |
| 9481 | |
| 9482 | Patch 7.4.1518 |
| 9483 | Problem: Channel with disconnected in/out/err is not supported. |
| 9484 | Solution: Implement it for Unix. |
| 9485 | Files: src/eval.c, src/os_unix.c, src/structs.h, |
| 9486 | src/testdir/test_channel.vim, src/testdir/test_channel_pipe.py |
| 9487 | |
| 9488 | Patch 7.4.1519 (after 7.4.1514) |
| 9489 | Problem: Channel output to file not implemented for MS-Windows. |
| 9490 | Solution: Implement it. (Yasuhiro Matsumoto) |
| 9491 | Files: src/os_win32.c, src/testdir/test_channel.vim |
| 9492 | |
| 9493 | Patch 7.4.1520 |
| 9494 | Problem: Channel test: Waiting for a file to appear doesn't work. |
| 9495 | Solution: In waitFor() ignore errors. |
| 9496 | Files: src/testdir/test_channel.vim |
| 9497 | |
| 9498 | Patch 7.4.1521 (after 7.4.1516) |
| 9499 | Problem: File permission test fails on MS-Windows. |
| 9500 | Solution: Expect a different permission. |
| 9501 | Files: src/testdir/test_file_perm.vim |
| 9502 | |
| 9503 | Patch 7.4.1522 |
| 9504 | Problem: Cannot write channel err to a buffer. |
| 9505 | Solution: Implement it. |
| 9506 | Files: src/channel.c, src/testdir/test_channel.vim |
| 9507 | |
| 9508 | Patch 7.4.1523 |
| 9509 | Problem: Writing channel to a file fails on MS-Windows. |
| 9510 | Solution: Disable it for now. |
| 9511 | Files: src/testdir/test_channel.vim |
| 9512 | |
| 9513 | Patch 7.4.1524 |
| 9514 | Problem: Channel test fails on BSD. |
| 9515 | Solution: Break out of the loop when connect() succeeds. (Ozaki Kiichi) |
| 9516 | Files: src/channel.c |
| 9517 | |
| 9518 | Patch 7.4.1525 |
| 9519 | Problem: On a high resolution screen the toolbar icons are too small. |
| 9520 | Solution: Add "huge" and "giant" to 'toolbariconsize'. (Brian Gix) |
| 9521 | Files: src/gui_gtk_x11.c, src/option.h |
| 9522 | |
| 9523 | Patch 7.4.1526 |
| 9524 | Problem: Writing to file and not connecting a channel doesn't work for |
| 9525 | MS-Windows. |
| 9526 | Solution: Make it work. (Yasuhiro Matsumoto) |
| 9527 | Files: src/os_win32.c, src/testdir/test_channel.vim |
| 9528 | |
| 9529 | Patch 7.4.1527 |
| 9530 | Problem: Channel test is flaky on MS-Windows. |
| 9531 | Solution: Limit the select() timeout to 50 msec and try with a new socket if |
| 9532 | it fails. |
| 9533 | Files: src/channel.c |
| 9534 | |
| 9535 | Patch 7.4.1528 |
| 9536 | Problem: Using "ever" for packages is confusing. |
| 9537 | Solution: Use "start", as it's related to startup. |
| 9538 | Files: src/ex_cmds2.c, runtime/doc/repeat.txt |
| 9539 | |
| 9540 | Patch 7.4.1529 |
| 9541 | Problem: Specifying buffer number for channel not implemented yet. |
| 9542 | Solution: Implement passing a buffer number. |
| 9543 | Files: src/structs.h, src/channel.c, src/eval.c, |
| 9544 | src/testdir/test_channel.vim |
| 9545 | |
| 9546 | Patch 7.4.1530 |
| 9547 | Problem: MS-Windows job_start() closes wrong handle. |
| 9548 | Solution: Close hThread on the process info. (Ken Takata) |
| 9549 | Files: src/os_win32.c |
| 9550 | |
| 9551 | Patch 7.4.1531 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9552 | Problem: Compiler warning for uninitialized variable. (Dominique Pelle) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9553 | Solution: Always give the variable a value. |
| 9554 | Files: src/channel.c |
| 9555 | |
| 9556 | Patch 7.4.1532 |
| 9557 | Problem: MS-Windows channel leaks file descriptor. |
| 9558 | Solution: Use CreateFile with the right options. (Yasuhiro Matsumoto) |
| 9559 | Files: src/os_win32.c |
| 9560 | |
| 9561 | Patch 7.4.1533 |
| 9562 | Problem: Using feedkeys() with an empty string disregards 'x' option. |
| 9563 | Solution: Make 'x' work with an empty string. (Thinca) |
| 9564 | Files: src/eval.c, src/testdir/test_alot.vim, |
| 9565 | src/testdir/test_feedkeys.vim |
| 9566 | |
| 9567 | Patch 7.4.1534 |
| 9568 | Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama) |
| 9569 | Solution: Rename it. |
| 9570 | Files: src/eval.c |
| 9571 | |
| 9572 | Patch 7.4.1535 |
| 9573 | Problem: The feedkeys test has a one second delay. |
| 9574 | Solution: Avoid need_wait_return() to delay. (Hirohito Higashi) |
| 9575 | Files: src/eval.c |
| 9576 | |
| 9577 | Patch 7.4.1536 |
| 9578 | Problem: Cannot re-use a channel for another job. |
| 9579 | Solution: Add the "channel" option to job_start(). |
| 9580 | Files: src/channel.c, src/eval.c, src/structs.h, src/os_unix.c, |
| 9581 | src/os_win32.c, src/proto/channel.pro, |
| 9582 | src/testdir/test_channel.vim |
| 9583 | |
| 9584 | Patch 7.4.1537 |
| 9585 | Problem: Too many feature flags for pipes, jobs and channels. |
| 9586 | Solution: Only use FEAT_JOB_CHANNEL. |
| 9587 | Files: src/structs.h, src/feature.h, src/configure.in, |
| 9588 | src/auto/configure, src/config.h.in, src/channel.c, src/eval.c, |
| 9589 | src/gui.c, src/main.c, src/memline.c, src/misc2.c, src/os_mswin.c, |
| 9590 | src/os_unix.c, src/os_win32.c, src/ui.c, src/version.c, |
| 9591 | src/macros.h, src/proto.h, src/vim.h, src/Make_cyg_ming.mak, |
| 9592 | src/Make_bc5.mak, src/Make_mvc.mak |
| 9593 | |
| 9594 | Patch 7.4.1538 |
| 9595 | Problem: Selection with the mouse does not work in command line mode. |
| 9596 | Solution: Use cairo functions. (Kazunobu Kuriyama) |
| 9597 | Files: src/gui_gtk_x11.c |
| 9598 | |
| 9599 | Patch 7.4.1539 |
| 9600 | Problem: Too much code in eval.c. |
| 9601 | Solution: Move job and channel code to channel.c. |
| 9602 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 9603 | src/proto/eval.pro |
| 9604 | |
| 9605 | Patch 7.4.1540 |
| 9606 | Problem: Channel test is a bit flaky. |
| 9607 | Solution: Increase expected wait time. |
| 9608 | Files: src/testdir/test_channel.vim |
| 9609 | |
| 9610 | Patch 7.4.1541 |
| 9611 | Problem: Missing job_info(). |
| 9612 | Solution: Implement it. |
| 9613 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 9614 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 9615 | |
| 9616 | Patch 7.4.1542 |
| 9617 | Problem: job_start() with a list is not tested. |
| 9618 | Solution: Call job_start() with a list. |
| 9619 | Files: src/testdir/test_channel.vim |
| 9620 | |
| 9621 | Patch 7.4.1543 |
| 9622 | Problem: Channel log methods are not tested. |
| 9623 | Solution: Log job activity and check it. |
| 9624 | Files: src/testdir/test_channel.vim |
| 9625 | |
| 9626 | Patch 7.4.1544 |
| 9627 | Problem: On Win32 escaping the command does not work properly. |
| 9628 | Solution: Reset 'ssl' when escaping the command. (Yasuhiro Matsumoto) |
| 9629 | Files: src/channel.c |
| 9630 | |
| 9631 | Patch 7.4.1545 |
| 9632 | Problem: GTK3: horizontal cursor movement in Visual selection not good. |
| 9633 | Solution: Make it work better. (Kazunobu Kuriyama) |
| 9634 | Files: src/gui_gtk_x11.c |
| 9635 | |
| 9636 | Patch 7.4.1546 |
| 9637 | Problem: Sticky type checking is more annoying than useful. |
| 9638 | Solution: Remove the error for changing a variable type. |
| 9639 | Files: src/eval.c, src/testdir/test_assign.vim, |
| 9640 | src/testdir/test_alot.vim, runtime/doc/eval.txt |
| 9641 | |
| 9642 | Patch 7.4.1547 |
| 9643 | Problem: Getting a cterm highlight attribute that is not set results in the |
| 9644 | string "-1". |
| 9645 | Solution: Return an empty string. (Taro Muraoka) |
| 9646 | Files: src/syntax.c, src/testdir/test_alot.vim, |
| 9647 | src/testdir/test_syn_attr.vim |
| 9648 | |
| 9649 | Patch 7.4.1548 (after 7.4.1546) |
| 9650 | Problem: Two tests fail. |
| 9651 | Solution: Adjust the expected error number. Remove check for type. |
| 9652 | Files: src/testdir/test101.ok, src/testdir/test55.in, |
| 9653 | src/testdir/test55.ok |
| 9654 | |
| 9655 | Patch 7.4.1549 (after 7.4.1547) |
| 9656 | Problem: Test for syntax attributes fails in Win32 GUI. |
| 9657 | Solution: Use an existing font name. |
| 9658 | Files: src/testdir/test_syn_attr.vim |
| 9659 | |
| 9660 | Patch 7.4.1550 |
| 9661 | Problem: Cannot load packages early. |
| 9662 | Solution: Add the ":packloadall" command. |
| 9663 | Files: src/ex_cmds.h, src/ex_cmds2.c, src/main.c, |
| 9664 | src/proto/ex_cmds2.pro, src/testdir/test_packadd.vim |
| 9665 | |
| 9666 | Patch 7.4.1551 |
| 9667 | Problem: Cannot generate help tags in all doc directories. |
| 9668 | Solution: Make ":helptags ALL" work. |
| 9669 | Files: src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/ex_cmds.c, src/vim.h |
| 9670 | src/testdir/test_packadd.vim |
| 9671 | |
| 9672 | Patch 7.4.1552 |
| 9673 | Problem: ":colorscheme" does not use 'packpath'. |
| 9674 | Solution: Also use in "start" and "opt" directories in 'packpath'. |
| 9675 | Files: src/ex_cmds2.c, src/gui.c, src/hardcopy.c, src/os_mswin.c, |
| 9676 | src/spell.c, src/tag.c, src/if_py_both.h, src/vim.h, |
| 9677 | src/digraph.c, src/eval.c, src/ex_docmd.c, src/main.c, |
| 9678 | src/option.c, src/syntax.c, src/testdir/test_packadd.vim |
| 9679 | |
| 9680 | Patch 7.4.1553 |
| 9681 | Problem: ":runtime" does not use 'packpath'. |
| 9682 | Solution: Add "what" argument. |
| 9683 | Files: src/ex_cmds2.c, src/vim.h, runtime/doc/repeat.txt, |
| 9684 | src/testdir/test_packadd.vim |
| 9685 | |
| 9686 | Patch 7.4.1554 |
| 9687 | Problem: Completion for :colorscheme does not use 'packpath'. |
| 9688 | Solution: Make it work, add a test. (Hirohito Higashi) |
| 9689 | Files: src/ex_getln.c, src/testdir/test_packadd.vim |
| 9690 | |
| 9691 | Patch 7.4.1555 |
| 9692 | Problem: List of test targets incomplete. |
| 9693 | Solution: Add newly added tests. |
| 9694 | Files: src/Makefile |
| 9695 | |
| 9696 | Patch 7.4.1556 |
| 9697 | Problem: "make install" changes the help tags file, causing it to differ |
| 9698 | from the repository. |
| 9699 | Solution: Move it aside and restore it. |
| 9700 | Files: src/Makefile |
| 9701 | |
| 9702 | Patch 7.4.1557 |
| 9703 | Problem: Windows cannot be identified. |
| 9704 | Solution: Add a unique window number to each window and functions to use it. |
| 9705 | Files: src/structs.h, src/window.c, src/eval.c, src/proto/eval.pro, |
| 9706 | src/proto/window.pro, src/testdir/test_window_id.vim, |
| 9707 | src/testdir/Make_all.mak, runtime/doc/eval.txt |
| 9708 | |
| 9709 | Patch 7.4.1558 |
| 9710 | Problem: It is not easy to find out what windows display a buffer. |
| 9711 | Solution: Add win_findbuf(). |
| 9712 | Files: src/eval.c, src/window.c, src/proto/window.pro, |
| 9713 | src/testdir/test_window_id.vim, runtime/doc/eval.txt |
| 9714 | |
| 9715 | Patch 7.4.1559 |
| 9716 | Problem: Passing cookie to a callback is clumsy. |
| 9717 | Solution: Change function() to take arguments and return a partial. |
| 9718 | Files: src/structs.h, src/channel.c, src/eval.c, src/if_python.c, |
| 9719 | src/if_python3.c, src/if_py_both.h, src/json.c, |
| 9720 | src/proto/eval.pro, src/testdir/test_partial.vim, |
| 9721 | src/testdir/test_alot.vim, runtime/doc/eval.txt |
| 9722 | |
| 9723 | Patch 7.4.1560 |
| 9724 | Problem: Dict options with a dash are more difficult to use. |
| 9725 | Solution: Use an underscore, so that dict.err_io can be used. |
| 9726 | Files: src/channel.c, src/structs.h, src/testdir/test_channel.vim, |
| 9727 | runtime/doc/channel.txt |
| 9728 | |
| 9729 | Patch 7.4.1561 (after 7.4.1559) |
| 9730 | Problem: Missing update to proto file. |
| 9731 | Solution: Change the proto file. |
| 9732 | Files: src/proto/channel.pro |
| 9733 | |
| 9734 | Patch 7.4.1562 |
| 9735 | Problem: ":helptags ALL" crashes. (Lcd) |
| 9736 | Solution: Don't free twice. |
| 9737 | Files: src/ex_cmds.c |
| 9738 | |
| 9739 | Patch 7.4.1563 |
| 9740 | Problem: Partial test fails on windows. |
| 9741 | Solution: Return 1 or -1 from compare function. |
| 9742 | Files: src/testdir/test_partial.vim |
| 9743 | |
| 9744 | Patch 7.4.1564 |
| 9745 | Problem: An empty list in function() causes an error. |
| 9746 | Solution: Handle an empty list like there is no list of arguments. |
| 9747 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9748 | |
| 9749 | Patch 7.4.1565 |
| 9750 | Problem: Crash when assert_equal() runs into a NULL string. |
| 9751 | Solution: Check for NULL. (Dominique) Add a test. |
| 9752 | Files: src/eval.c, src/testdir/test_assert.vim |
| 9753 | |
| 9754 | Patch 7.4.1566 |
| 9755 | Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama) |
| 9756 | Solution: Remove the inner one. |
| 9757 | Files: src/eval.c |
| 9758 | |
| 9759 | Patch 7.4.1567 |
| 9760 | Problem: Crash in assert_fails(). |
| 9761 | Solution: Check for NULL. (Dominique Pelle) Add a test. |
| 9762 | Files: src/eval.c, src/testdir/test_assert.vim |
| 9763 | |
| 9764 | Patch 7.4.1568 |
| 9765 | Problem: Using CTRL-] in help on option in parentheses doesn't work. |
| 9766 | Solution: Skip the "(" in "('". (Hirohito Higashi) |
| 9767 | Files: src/ex_cmds.c |
| 9768 | |
| 9769 | Patch 7.4.1569 |
| 9770 | Problem: Using old style tests for quickfix. |
| 9771 | Solution: Change them to new style tests. (Yegappan Lakshmanan) |
| 9772 | Files: src/testdir/Make_all.mak, src/testdir/test106.in, |
| 9773 | src/testdir/test106.ok, src/testdir/test_qf_title.in, |
| 9774 | src/testdir/test_qf_title.ok, src/testdir/test_quickfix.vim |
| 9775 | |
| 9776 | Patch 7.4.1570 |
| 9777 | 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] | 9778 | Solution: Add the "F" flag to 'shortmess'. (Shougo Matsu, closes #686) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9779 | Files: runtime/doc/options.txt, src/buffer.c, src/ex_cmds.c, |
| 9780 | src/option.h |
| 9781 | |
| 9782 | Patch 7.4.1571 |
| 9783 | Problem: No test for ":help". |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9784 | Solution: Add a test for what 7.4.1568 fixed. (Hirohito Higashi) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9785 | Files: src/testdir/test_alot.vim, src/testdir/test_help_tagjump.vim |
| 9786 | |
| 9787 | Patch 7.4.1572 |
| 9788 | Problem: Setting 'compatible' in test influences following tests. |
| 9789 | Solution: Turn 'compatible' off again. |
| 9790 | Files: src/testdir/test_backspace_opt.vim |
| 9791 | |
| 9792 | Patch 7.4.1573 |
| 9793 | Problem: Tests get stuck at the more prompt. |
| 9794 | Solution: Move the backspace test out of test_alot. |
| 9795 | Files: src/testdir/test_alot.vim, src/testdir/Make_all.mak |
| 9796 | |
| 9797 | Patch 7.4.1574 |
| 9798 | Problem: ":undo 0" does not work. (Florent Fayolle) |
| 9799 | Solution: Make it undo all the way. (closes #688) |
| 9800 | Files: src/undo.c, src/testdir/test_undolevels.vim, |
| 9801 | src/testdir/test_ex_undo.vim, src/testdir/test_alot.vim |
| 9802 | |
| 9803 | Patch 7.4.1575 |
| 9804 | Problem: Using wrong size for struct. |
| 9805 | Solution: Use the size for wide API. (Ken Takata) |
| 9806 | Files: src/gui_w32.c |
| 9807 | |
| 9808 | Patch 7.4.1576 |
| 9809 | Problem: Write error of viminfo file is not handled properly. (Christian |
| 9810 | Neukirchen) |
| 9811 | Solution: Check the return value of fclose(). (closes #682) |
| 9812 | Files: src/ex_cmds.c |
| 9813 | |
| 9814 | Patch 7.4.1577 |
| 9815 | Problem: Cannot pass "dict.Myfunc" around as a partial. |
| 9816 | Solution: Create a partial when expected. |
| 9817 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9818 | |
| 9819 | Patch 7.4.1578 |
| 9820 | Problem: There is no way to invoke a function later or periodically. |
| 9821 | Solution: Add timer support. |
| 9822 | Files: src/eval.c, src/ex_cmds2.c, src/screen.c, src/ex_docmd.c, |
| 9823 | src/feature.h, src/gui.c, src/proto/eval.pro, |
| 9824 | src/proto/ex_cmds2.pro, src/proto/screen.pro, src/structs.h, |
| 9825 | src/version.c, src/testdir/test_alot.vim, |
| 9826 | src/testdir/test_timers.vim, runtime/doc/eval.txt |
| 9827 | |
| 9828 | Patch 7.4.1579 (after 7.4.1578) |
| 9829 | Problem: Missing changes in channel.c |
| 9830 | Solution: Include the changes. |
| 9831 | Files: src/channel.c |
| 9832 | |
| 9833 | Patch 7.4.1580 |
| 9834 | Problem: Crash when using function reference. (Luchr) |
| 9835 | Solution: Set initial refcount. (Ken Takata, closes #690) |
| 9836 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9837 | |
| 9838 | Patch 7.4.1581 |
| 9839 | Problem: Using ":call dict.func()" where the function is a partial does |
| 9840 | not work. Using "dict.func()" where the function does not take a |
| 9841 | Dictionary does not work. |
| 9842 | Solution: Handle partial properly in ":call". (Yasuhiro Matsumoto) |
| 9843 | Files: src/eval.c, src/testdir/test_partial.vim, src/testdir/test55.ok |
| 9844 | |
| 9845 | Patch 7.4.1582 |
| 9846 | Problem: Get E923 when using function(dict.func, [], dict). (Kent Sibilev) |
| 9847 | Storing a function with a dict in a variable drops the dict if the |
| 9848 | function is script-local. |
| 9849 | Solution: Translate the function name. Use dict arg if present. |
| 9850 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9851 | |
| 9852 | Patch 7.4.1583 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 9853 | Problem: Warning for uninitialized variable. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 9854 | Solution: Initialize it. (Dominique) |
| 9855 | Files: src/ex_cmds2.c |
| 9856 | |
| 9857 | Patch 7.4.1584 |
| 9858 | Problem: Timers don't work for Win32 console. |
| 9859 | Solution: Add check_due_timer() in WaitForChar(). |
| 9860 | Files: src/os_win32.c |
| 9861 | |
| 9862 | Patch 7.4.1585 |
| 9863 | Problem: Partial is not recognized everywhere. |
| 9864 | Solution: Check for partial in trans_function_name(). (Yasuhiro Matsumoto) |
| 9865 | Add a test. |
| 9866 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9867 | |
| 9868 | Patch 7.4.1586 |
| 9869 | Problem: Nesting partials doesn't work. |
| 9870 | Solution: Append arguments. (Ken Takata) |
| 9871 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9872 | |
| 9873 | Patch 7.4.1587 |
| 9874 | Problem: Compiler warnings with 64 bit compiler. |
| 9875 | Solution: Add type casts. (Mike Williams) |
| 9876 | Files: src/ex_cmds2.c |
| 9877 | |
| 9878 | Patch 7.4.1588 |
| 9879 | Problem: Old style test for quickfix. |
| 9880 | Solution: Turn test 96 into a new style test. |
| 9881 | Files: src/testdir/Make_all.mak, src/testdir/test96.in, |
| 9882 | src/testdir/test96.ok, src/testdir/test_quickfix.vim |
| 9883 | |
| 9884 | Patch 7.4.1589 |
| 9885 | Problem: Combining dict and args with partial doesn't always work. |
| 9886 | Solution: Use the arguments from the partial. |
| 9887 | Files: src/eval.c, src/testdir/test_partial.vim |
| 9888 | |
| 9889 | Patch 7.4.1590 |
| 9890 | Problem: Warning for shadowed variable. (Christian Brabandt) |
| 9891 | Solution: Move the variable into a local block. |
| 9892 | Files: src/eval.c |
| 9893 | |
| 9894 | Patch 7.4.1591 |
| 9895 | Problem: The quickfix title is truncated. |
| 9896 | Solution: Save the command before it is truncated. (Anton Lindqvist) |
| 9897 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 9898 | |
| 9899 | Patch 7.4.1592 |
| 9900 | Problem: Quickfix code using memory after being freed. (Dominique Pelle) |
| 9901 | Solution: Detect that the window was closed. (Hirohito Higashi) |
| 9902 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 9903 | |
| 9904 | Patch 7.4.1593 |
| 9905 | Problem: Using channel timeout instead of request timeout. (Coverity) |
| 9906 | Solution: Remove the extra assignment. |
| 9907 | Files: src/channel.c |
| 9908 | |
| 9909 | Patch 7.4.1594 |
| 9910 | Problem: Timers don't work on Unix. |
| 9911 | Solution: Add missing code. |
| 9912 | Files: src/os_unix.c |
| 9913 | |
| 9914 | Patch 7.4.1595 |
| 9915 | Problem: Not checking for failed open(). (Coverity) |
| 9916 | Solution: Check file descriptor not being negative. |
| 9917 | Files: src/os_unix.c |
| 9918 | |
| 9919 | Patch 7.4.1596 |
| 9920 | Problem: Memory leak. (Coverity) |
| 9921 | Solution: Free the pattern. |
| 9922 | Files: src/ex_cmds2.c |
| 9923 | |
| 9924 | Patch 7.4.1597 |
| 9925 | Problem: Memory leak when out of memory. (Coverity) |
| 9926 | Solution: Free the name. |
| 9927 | Files: src/eval.c |
| 9928 | |
| 9929 | Patch 7.4.1598 |
| 9930 | Problem: When starting the GUI fails a swap file is left behind. (Joerg |
| 9931 | Plate) |
| 9932 | Solution: Preserve files before exiting. (closes #692) |
| 9933 | Files: src/main.c, src/gui.c |
| 9934 | |
| 9935 | Patch 7.4.1599 |
| 9936 | Problem: No link to Coverity. |
| 9937 | Solution: Add Coverity badge in README. |
| 9938 | Files: README.md |
| 9939 | |
| 9940 | Patch 7.4.1600 |
| 9941 | Problem: libs directory is not useful. |
| 9942 | Solution: Remove arp.library, it was only for very old Amiga versions. |
| 9943 | Files: libs/arp.library, Filelist |
| 9944 | |
| 9945 | Patch 7.4.1601 |
| 9946 | Problem: README files take a lot of space in the top directory. |
| 9947 | Solution: Move most of them to "READMEdir". |
| 9948 | Files: Filelist, Makefile, README.txt.info, README_ami.txt, |
| 9949 | README_ami.txt.info, README_amibin.txt, README_amibin.txt.info, |
| 9950 | README_amisrc.txt, README_amisrc.txt.info, README_bindos.txt, |
| 9951 | README_dos.txt, README_extra.txt, README_mac.txt, README_ole.txt, |
| 9952 | README_os2.txt, README_os390.txt, README_src.txt, |
| 9953 | README_srcdos.txt, README_unix.txt, README_vms.txt, |
| 9954 | README_w32s.txt, READMEdir/README.txt.info, |
| 9955 | READMEdir/README_ami.txt, READMEdir/README_ami.txt.info, |
| 9956 | READMEdir/README_amibin.txt, READMEdir/README_amibin.txt.info, |
| 9957 | READMEdir/README_amisrc.txt, READMEdir/README_amisrc.txt.info, |
| 9958 | READMEdir/README_bindos.txt, READMEdir/README_dos.txt, |
| 9959 | READMEdir/README_extra.txt, READMEdir/README_mac.txt, |
| 9960 | READMEdir/README_ole.txt, READMEdir/README_os2.txt, |
| 9961 | READMEdir/README_os390.txt, READMEdir/README_src.txt, |
| 9962 | READMEdir/README_srcdos.txt, READMEdir/README_unix.txt, |
| 9963 | READMEdir/README_vms.txt, READMEdir/README_w32s.txt, |
| 9964 | |
| 9965 | Patch 7.4.1602 |
| 9966 | Problem: Info files take space in the top directory. |
| 9967 | Solution: Move them to "READMEdir". |
| 9968 | Files: Filelist, src.info, Contents.info, runtime.info, vimdir.info, |
| 9969 | Vim.info, Xxd.info, READMEdir/src.info, READMEdir/Contents.info, |
| 9970 | READMEdir/runtime.info, READMEdir/vimdir.info, READMEdir/Vim.info, |
| 9971 | READMEdir/Xxd.info |
| 9972 | |
| 9973 | Patch 7.4.1603 |
| 9974 | Problem: Timer with an ":echo" command messes up display. |
| 9975 | Solution: Redraw depending on the mode. (Hirohito Higashi) Avoid the more |
| 9976 | prompt being used recursively. |
| 9977 | Files: src/screen.c, src/message.c |
| 9978 | |
| 9979 | Patch 7.4.1604 |
| 9980 | Problem: Although emoji characters are ambiguous width, best is to treat |
| 9981 | them as full width. |
| 9982 | Solution: Update the Unicode character tables. Add the 'emoji' options. |
| 9983 | (Yasuhiro Matsumoto) |
| 9984 | Files: runtime/doc/options.txt, runtime/optwin.vim, |
| 9985 | runtime/tools/unicode.vim, src/mbyte.c, src/option.c, src/option.h |
| 9986 | |
| 9987 | Patch 7.4.1605 |
| 9988 | Problem: Catching exception that won't be thrown. |
| 9989 | Solution: Remove try/catch. |
| 9990 | Files: src/testdir/test55.in |
| 9991 | |
| 9992 | Patch 7.4.1606 |
| 9993 | Problem: Having type() handle a Funcref that is or isn't a partial |
| 9994 | differently causes problems for existing scripts. |
| 9995 | Solution: Make type() return the same value. (Thinca) |
| 9996 | Files: src/eval.c, src/testdir/test_viml.vim |
| 9997 | |
| 9998 | Patch 7.4.1607 |
| 9999 | Problem: Comparing a function that exists on two dicts is not backwards |
| 10000 | compatible. (Thinca) |
| 10001 | Solution: Only compare the function, not what the partial adds. |
| 10002 | Files: src/eval.c, src/testdir/test_alot.vim, src/testdir/test_expr.vim |
| 10003 | |
| 10004 | Patch 7.4.1608 |
| 10005 | Problem: string() doesn't handle a partial. |
| 10006 | Solution: Make a string from a partial. |
| 10007 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10008 | |
| 10009 | Patch 7.4.1609 |
| 10010 | Problem: Contents file is only for Amiga distro. |
| 10011 | Solution: Move it to "READMEdir". Update some info. |
| 10012 | Files: Filelist, Contents, READMEdir/Contents |
| 10013 | |
| 10014 | Patch 7.4.1610 |
| 10015 | Problem: Compiler warnings for non-virtual destructor. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10016 | Solution: Mark the classes final. (Ken Takata) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10017 | Files: src/Make_cyg_ming.mak, src/gui_dwrite.cpp, src/if_ole.cpp |
| 10018 | |
| 10019 | Patch 7.4.1611 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10020 | Problem: The versplit feature makes the code unnecessary complicated. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10021 | Solution: Remove FEAT_VERTSPLIT, always support vertical splits when |
| 10022 | FEAT_WINDOWS is defined. |
| 10023 | Files: src/buffer.c, src/charset.c, src/eval.c, src/ex_cmds.c, |
| 10024 | src/ex_docmd.c, src/ex_getln.c, src/gui.c, src/if_lua.c, |
| 10025 | src/if_mzsch.c, src/if_ruby.c, src/main.c, src/misc1.c, |
| 10026 | src/misc2.c, src/move.c, src/normal.c, src/option.c, |
| 10027 | src/quickfix.c, src/screen.c, src/syntax.c, src/term.c, src/ui.c, |
| 10028 | src/window.c, src/globals.h, src/gui.h, src/if_py_both.h, |
| 10029 | src/option.h, src/structs.h, src/term.h |
| 10030 | src/feature.h, src/vim.h, src/version.c |
| 10031 | |
| 10032 | Patch 7.4.1612 (after 7.4.1611) |
| 10033 | Problem: Can't build with small features. |
| 10034 | Solution: Move code and #ifdefs. |
| 10035 | Files: src/ex_getln.c |
| 10036 | |
| 10037 | Patch 7.4.1613 (after 7.4.1612) |
| 10038 | Problem: Still can't build with small features. |
| 10039 | Solution: Adjust #ifdefs. |
| 10040 | Files: src/ex_getln.c |
| 10041 | |
| 10042 | Patch 7.4.1614 |
| 10043 | Problem: Still quickfix test in old style. |
| 10044 | Solution: Turn test 10 into a new style test. |
| 10045 | Files: src/testdir/Make_all.mak, src/testdir/Make_vms.mms, |
| 10046 | src/testdir/main.aap, src/testdir/test10.in, |
| 10047 | src/testdir/test10.ok, src/testdir/test_quickfix.vim, |
| 10048 | src/testdir/test10a.in, src/testdir/test10a.ok |
| 10049 | |
| 10050 | Patch 7.4.1615 |
| 10051 | Problem: Build fails with tiny features. |
| 10052 | Solution: Adjust #ifdefs. |
| 10053 | Files: src/normal.c, src/window.c |
| 10054 | |
| 10055 | Patch 7.4.1616 |
| 10056 | Problem: Malformed channel request causes a hang. |
| 10057 | Solution: Drop malformed message. (Damien) |
| 10058 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 10059 | src/testdir/test_channel.py |
| 10060 | |
| 10061 | Patch 7.4.1617 |
| 10062 | Problem: When a JSON message is split it isn't decoded. |
| 10063 | Solution: Wait a short time for the rest of the message to arrive. |
| 10064 | Files: src/channel.c, src/json.c, src/structs.h, |
| 10065 | src/testdir/test_channel.vim, src/testdir/test_channel.py |
| 10066 | |
| 10067 | Patch 7.4.1618 |
| 10068 | Problem: Starting job with output to buffer changes options in the current |
| 10069 | buffer. |
| 10070 | Solution: Set "curbuf" earlier. (Yasuhiro Matsumoto) |
| 10071 | Files: src/channel.c |
| 10072 | |
| 10073 | Patch 7.4.1619 |
| 10074 | Problem: When 'fileformats' is set in the vimrc it applies to new buffers |
| 10075 | but not the initial buffer. |
| 10076 | Solution: Set 'fileformat' when starting up. (Mike Williams) |
| 10077 | Files: src/option.c |
| 10078 | |
| 10079 | Patch 7.4.1620 |
| 10080 | Problem: Emoji characters are not considered as a kind of word character. |
| 10081 | Solution: Give emoji characters a word class number. (Yasuhiro Matsumoto) |
| 10082 | Files: src/mbyte.c |
| 10083 | |
| 10084 | Patch 7.4.1621 |
| 10085 | Problem: Channel test doesn't work with Python 2.6. |
| 10086 | Solution: Add number in formatting placeholder. (Wiredool) |
| 10087 | Files: src/testdir/test_channel.py |
| 10088 | |
| 10089 | Patch 7.4.1622 |
| 10090 | Problem: Channel demo doesn't work with Python 2.6. |
| 10091 | Solution: Add number in formatting placeholder |
| 10092 | Files: runtime/tools/demoserver.py |
| 10093 | |
| 10094 | Patch 7.4.1623 |
| 10095 | Problem: All Channels share the message ID, it keeps getting bigger. |
| 10096 | Solution: Use a message ID per channel. |
| 10097 | Files: src/channel.c, src/proto/channel.pro, src/structs.h |
| 10098 | |
| 10099 | Patch 7.4.1624 |
| 10100 | Problem: Can't get info about a channel. |
| 10101 | Solution: Add ch_info(). |
| 10102 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 10103 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 10104 | |
| 10105 | Patch 7.4.1625 |
| 10106 | Problem: Trying to close file descriptor that isn't open. |
| 10107 | Solution: Check for negative number. |
| 10108 | Files: src/os_unix.c |
| 10109 | |
| 10110 | Patch 7.4.1626 (after 7.4.1624) |
| 10111 | Problem: Missing changes to structs. |
| 10112 | Solution: Include the changes. |
| 10113 | Files: src/structs.h |
| 10114 | |
| 10115 | Patch 7.4.1627 |
| 10116 | Problem: Channel out_cb and err_cb are not tested. |
| 10117 | Solution: Add a test. |
| 10118 | Files: src/testdir/test_channel.vim |
| 10119 | |
| 10120 | Patch 7.4.1628 |
| 10121 | Problem: 64-bit Compiler warning. |
| 10122 | Solution: Change type of variable. (Mike Williams) |
| 10123 | Files: src/channel.c |
| 10124 | |
| 10125 | Patch 7.4.1629 |
| 10126 | Problem: Handling emoji characters as full width has problems with |
| 10127 | backwards compatibility. |
| 10128 | Solution: Remove ambiguous and double width characters from the emoji table. |
| 10129 | Use a separate table for the character class. |
| 10130 | (partly by Yasuhiro Matsumoto) |
| 10131 | Files: runtime/tools/unicode.vim, src/mbyte.c |
| 10132 | |
| 10133 | Patch 7.4.1630 |
| 10134 | Problem: Unicode table for double width is outdated. |
| 10135 | Solution: Update to the latest Unicode standard. |
| 10136 | Files: src/mbyte.c |
| 10137 | |
| 10138 | Patch 7.4.1631 |
| 10139 | Problem: Compiler doesn't understand switch on all enum values. (Tony |
| 10140 | Mechelynck) |
| 10141 | Solution: Initialize variable. |
| 10142 | Files: src/channel.c |
| 10143 | |
| 10144 | Patch 7.4.1632 |
| 10145 | Problem: List of test targets is outdated. |
| 10146 | Solution: Update to current list of test targets. |
| 10147 | Files: src/Makefile |
| 10148 | |
| 10149 | Patch 7.4.1633 |
| 10150 | Problem: If the help tags file was removed "make install" fails. (Tony |
| 10151 | Mechelynck) |
| 10152 | Solution: Only try moving the file if it exists. |
| 10153 | Files: src/Makefile |
| 10154 | |
| 10155 | Patch 7.4.1634 |
| 10156 | Problem: Vertical movement after CTRL-A ends up in the wrong column. |
| 10157 | (Urtica Dioica) |
| 10158 | Solution: Set curswant when appropriate. (Hirohito Higashi) |
| 10159 | Files: src/ops.c, src/testdir/test_increment.vim |
| 10160 | |
| 10161 | Patch 7.4.1635 |
| 10162 | Problem: Channel test is a bit flaky. |
| 10163 | Solution: Remove 'DETACH' if it's there. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 10164 | Files: src/testdir/test_channel.vim |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10165 | |
| 10166 | Patch 7.4.1636 |
| 10167 | Problem: When 'F' is in 'shortmess' the prompt for the encryption key isn't |
| 10168 | displayed. (Toothpik) |
| 10169 | Solution: Reset msg_silent. |
| 10170 | Files: src/ex_getln.c |
| 10171 | |
| 10172 | Patch 7.4.1637 |
| 10173 | Problem: Can't build with older MinGW compiler. |
| 10174 | Solution: Change option from c++11 to gnu++11. (Ken Takata) |
| 10175 | Files: src/Make_cyg_ming.mak |
| 10176 | |
| 10177 | Patch 7.4.1638 |
| 10178 | Problem: When binding a function to a dict the reference count is wrong. |
| 10179 | Solution: Decrement dict reference count, only reference the function when |
| 10180 | actually making a copy. (Ken Takata) |
| 10181 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10182 | |
| 10183 | Patch 7.4.1639 |
| 10184 | Problem: Invoking garbage collection may cause a double free. |
| 10185 | Solution: Don't free the dict in a partial when recursive is FALSE. |
| 10186 | Files: src/eval.c |
| 10187 | |
| 10188 | Patch 7.4.1640 |
| 10189 | Problem: Crash when an autocommand changes a quickfix list. (Dominique) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10190 | Solution: Check whether an entry is still valid. (Yegappan Lakshmanan, |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10191 | Hirohito Higashi) |
| 10192 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 10193 | |
| 10194 | Patch 7.4.1641 |
| 10195 | Problem: Using unterminated string. |
| 10196 | Solution: Add NUL before calling vim_strsave_shellescape(). (James McCoy) |
| 10197 | Files: src/eval.c, src/testdir/test105.in, src/testdir/test105.ok |
| 10198 | |
| 10199 | Patch 7.4.1642 |
| 10200 | Problem: Handling emoji characters as full width has problems with |
| 10201 | backwards compatibility. |
| 10202 | Solution: Only put characters in the 1f000 range in the emoji table. |
| 10203 | Files: runtime/tools/unicode.vim, src/mbyte.c |
| 10204 | |
| 10205 | Patch 7.4.1643 (after 7.4.1641) |
| 10206 | Problem: Terminating file name has side effects. |
| 10207 | Solution: Restore the character. (mostly by James McCoy, closes #713) |
| 10208 | Files: src/eval.c, src/testdir/test105.in, src/testdir/test105.ok |
| 10209 | |
| 10210 | Patch 7.4.1644 |
| 10211 | Problem: Using string() on a partial that exists in the dictionary it binds |
| 10212 | results in an error. (Nikolai Pavlov) |
| 10213 | Solution: Make string() not fail on a recursively nested structure. (Ken |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10214 | Takata) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10215 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10216 | |
| 10217 | Patch 7.4.1645 |
| 10218 | Problem: When a dict contains a partial it can't be redefined as a |
| 10219 | function. (Nikolai Pavlov) |
| 10220 | Solution: Remove the partial when overwriting with a function. |
| 10221 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10222 | |
| 10223 | Patch 7.4.1646 |
| 10224 | Problem: Using Python vim.bindeval() on a partial doesn't work. (Nikolai |
| 10225 | Pavlov) |
| 10226 | Solution: Add VAR_PARTIAL support in Python. |
| 10227 | Files: src/if_py_both.h, src/testdir/test_partial.vim |
| 10228 | |
| 10229 | Patch 7.4.1647 |
| 10230 | Problem: Using freed memory after setqflist() and ":caddbuffer". (Dominique) |
| 10231 | Solution: Set qf_ptr when adding the first item to the quickfix list. |
| 10232 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 10233 | |
| 10234 | Patch 7.4.1648 |
| 10235 | Problem: Compiler has a problem copying a string into di_key[]. (Yegappan |
| 10236 | Lakshmanan) |
| 10237 | Solution: Add dictitem16_T. |
| 10238 | Files: src/structs.h, src/eval.c |
| 10239 | |
| 10240 | Patch 7.4.1649 |
| 10241 | Problem: The matchit plugin needs to be copied to be used. |
| 10242 | Solution: Put the matchit plugin in an optional package. |
| 10243 | Files: Filelist, runtime/macros/matchit.vim, runtime/macros/matchit.txt, |
| 10244 | runtime/macros/README.txt, src/Makefile, |
| 10245 | runtime/pack/dist/opt/matchit/plugin/matchit.vim, |
| 10246 | runtime/pack/dist/opt/matchit/doc/matchit.txt, |
| 10247 | runtime/pack/dist/opt/matchit/doc/tags, |
| 10248 | runtime/doc/usr_05.txt, runtime/doc/usr_toc.txt |
| 10249 | |
| 10250 | Patch 7.4.1650 |
| 10251 | Problem: Quickfix test fails. |
| 10252 | Solution: Accept any number of matches. |
| 10253 | Files: src/testdir/test_quickfix.vim |
| 10254 | |
| 10255 | Patch 7.4.1651 |
| 10256 | Problem: Some dead (MSDOS) code remains. |
| 10257 | Solution: Remove the unused lines. (Ken Takata) |
| 10258 | Files: src/misc1.c |
| 10259 | |
| 10260 | Patch 7.4.1652 |
| 10261 | Problem: Old style test for fnamemodify(). |
| 10262 | Solution: Turn it into a new style test. |
| 10263 | Files: src/testdir/test105.in, src/testdir/test105.ok, |
| 10264 | src/testdir/test_fnamemodify.vim, src/testdir/test_alot.vim, |
| 10265 | src/testdir/Make_all.mak |
| 10266 | |
| 10267 | Patch 7.4.1653 (after 7.4.1649) |
| 10268 | Problem: Users who loaded matchit.vim manually have to change their |
| 10269 | startup. (Gary Johnson) |
| 10270 | Solution: Add a file in the old location that loads the package. |
| 10271 | Files: runtime/macros/matchit.vim, Filelist |
| 10272 | |
| 10273 | Patch 7.4.1654 |
| 10274 | Problem: Crash when using expand('%:S') in a buffer without a name. |
| 10275 | Solution: Don't set a NUL. (James McCoy, closes #714) |
| 10276 | Files: src/eval.c, src/testdir/test_fnamemodify.vim |
| 10277 | |
| 10278 | Patch 7.4.1655 |
| 10279 | Problem: remote_expr() hangs. (Ramel) |
| 10280 | Solution: Check for messages in the waiting loop. |
| 10281 | Files: src/if_xcmdsrv.c |
| 10282 | |
| 10283 | Patch 7.4.1656 |
| 10284 | Problem: Crash when using partial with a timer. |
| 10285 | Solution: Increment partial reference count. (Hirohito Higashi) |
| 10286 | Files: src/eval.c, src/testdir/test_timers.vim |
| 10287 | |
| 10288 | Patch 7.4.1657 |
| 10289 | Problem: On Unix in a terminal: channel messages are not handled right away. |
| 10290 | (Jackson Alves de Aquino) |
| 10291 | Solution: Break the loop for timers when something was received. |
| 10292 | Files: src/os_unix.c |
| 10293 | |
| 10294 | Patch 7.4.1658 |
| 10295 | Problem: A plugin does not know when VimEnter autocommands were already |
| 10296 | triggered. |
| 10297 | Solution: Add the v:vim_did_enter variable. |
| 10298 | Files: src/eval.c, src/main.c, src/vim.h, src/testdir/test_autocmd.vim, |
| 10299 | src/testdir/test_alot.vim, runtime/doc/autocmd.txt, |
| 10300 | runtime/doc/eval.txt |
| 10301 | |
| 10302 | Patch 7.4.1659 (after 7.4.1657) |
| 10303 | Problem: Compiler warning for argument type. (Manuel Ortega) |
| 10304 | Solution: Remove "&". |
| 10305 | Files: src/os_unix.c |
| 10306 | |
| 10307 | Patch 7.4.1660 |
| 10308 | Problem: has('patch-7.4.1') doesn't work. |
| 10309 | Solution: Fix off-by-one error. (Thinca) |
| 10310 | Files: src/eval.c, src/testdir/test_expr.vim, src/testdir/test60.in, |
| 10311 | src/testdir/test60.ok |
| 10312 | |
| 10313 | Patch 7.4.1661 |
| 10314 | Problem: No test for special characters in channel eval command. |
| 10315 | Solution: Testing sending and receiving text with special characters. |
| 10316 | Files: src/testdir/test_channel.vim, src/testdir/test_channel.py |
| 10317 | |
| 10318 | Patch 7.4.1662 |
| 10319 | Problem: No test for an invalid Ex command on a channel. |
| 10320 | Solution: Test handling an invalid command gracefully. Avoid getting an |
| 10321 | error message, do write it to the channel log. |
| 10322 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 10323 | src/testdir/test_channel.py |
| 10324 | |
| 10325 | Patch 7.4.1663 |
| 10326 | Problem: In tests it's often useful to check if a pattern matches. |
| 10327 | Solution: Add assert_match(). |
| 10328 | Files: src/eval.c, src/testdir/test_assert.vim, |
| 10329 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 10330 | |
| 10331 | Patch 7.4.1664 |
| 10332 | Problem: Crash in :cgetexpr. |
| 10333 | Solution: Check for NULL pointer. (Dominique) Add a test. |
| 10334 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 10335 | |
| 10336 | Patch 7.4.1665 |
| 10337 | Problem: Crash when calling job_start() with a NULL string. (Dominique) |
| 10338 | Solution: Check for an invalid argument. |
| 10339 | Files: src/channel.c, src/testdir/test_channel.vim |
| 10340 | |
| 10341 | Patch 7.4.1666 |
| 10342 | Problem: When reading JSON from a channel all readahead is used. |
| 10343 | Solution: Use the fill function to reduce overhead. |
| 10344 | Files: src/channel.c, src/json.c, src/structs.h |
| 10345 | |
| 10346 | Patch 7.4.1667 |
| 10347 | Problem: Win32: waiting on a pipe with fixed sleep time. |
| 10348 | Solution: Start with a short delay and increase it when looping. |
| 10349 | Files: src/channel.c |
| 10350 | |
| 10351 | Patch 7.4.1668 |
| 10352 | Problem: channel_get_all() does multiple allocations. |
| 10353 | Solution: Compute the size and allocate once. |
| 10354 | Files: src/channel.c |
| 10355 | |
| 10356 | Patch 7.4.1669 |
| 10357 | Problem: When writing buffer lines to a pipe Vim may block. |
| 10358 | Solution: Avoid blocking, write more lines later. |
| 10359 | Files: src/channel.c, src/misc2.c, src/os_unix.c, src/structs.h, |
| 10360 | src/vim.h, src/proto/channel.pro, src/testdir/test_channel.vim |
| 10361 | |
| 10362 | Patch 7.4.1670 |
| 10363 | Problem: Completion doesn't work well for a variable containing "#". |
| 10364 | Solution: Recognize the "#". (Watiko) |
| 10365 | Files: src/eval.c |
| 10366 | |
| 10367 | Patch 7.4.1671 |
| 10368 | Problem: When help exists in multiple languages, adding @ab while "ab" is |
| 10369 | the default help language is unnecessary. |
| 10370 | Solution: Leave out "@ab" when not needed. (Ken Takata) |
| 10371 | Files: src/ex_getln.c |
| 10372 | |
| 10373 | Patch 7.4.1672 |
| 10374 | Problem: The Dvorak support is a bit difficult to install. |
| 10375 | Solution: Turn it into an optional package. |
| 10376 | Files: runtime/macros/dvorak, runtime/macros/README.txt, |
| 10377 | runtime/pack/dist/opt/dvorak/plugin/dvorak.vim, |
| 10378 | runtime/pack/dist/opt/dvorak/dvorak/enable.vim, |
| 10379 | runtime/pack/dist/opt/dvorak/dvorak/disable.vim |
| 10380 | |
| 10381 | Patch 7.4.1673 |
| 10382 | Problem: The justify plugin has to be copied or sourced to be used. |
| 10383 | Solution: Turn it into a package. |
| 10384 | Files: runtime/macros/justify.vim, runtime/macros/README.txt, |
| 10385 | runtime/pack/dist/opt/justify/plugin/justify.vim, Filelist |
| 10386 | |
| 10387 | Patch 7.4.1674 |
| 10388 | Problem: The editexisting plugin has to be copied or sourced to be used. |
| 10389 | Solution: Turn it into a package. |
| 10390 | Files: runtime/macros/editexisting.vim, runtime/macros/README.txt, |
| 10391 | runtime/pack/dist/opt/editexisting/plugin/editexisting.vim, |
| 10392 | Filelist |
| 10393 | |
| 10394 | Patch 7.4.1675 |
| 10395 | Problem: The swapmous plugin has to be copied or sourced to be used. |
| 10396 | Solution: Turn it into the swapmouse package. |
| 10397 | Files: runtime/macros/swapmous.vim, runtime/macros/README.txt, |
| 10398 | runtime/pack/dist/opt/swapmouse/plugin/swapmouse.vim, Filelist |
| 10399 | |
| 10400 | Patch 7.4.1676 |
| 10401 | Problem: The shellmenu plugin has to be copied or sourced to be used. |
| 10402 | Solution: Turn it into a package. |
| 10403 | Files: runtime/macros/shellmenu.vim, runtime/macros/README.txt, |
| 10404 | runtime/pack/dist/opt/shellmenu/plugin/shellmenu.vim, Filelist |
| 10405 | |
| 10406 | Patch 7.4.1677 |
| 10407 | Problem: A reference to the removed file_select plugin remains. |
| 10408 | Solution: Remove it. |
| 10409 | Files: runtime/macros/README.txt |
| 10410 | |
| 10411 | Patch 7.4.1678 |
| 10412 | Problem: Warning for unused argument. |
| 10413 | Solution: Add UNUSED. (Dominique Pelle) |
| 10414 | Files: src/if_mzsch.c |
| 10415 | |
| 10416 | Patch 7.4.1679 |
| 10417 | Problem: Coverity: copying value of v_lock without initializing it. |
| 10418 | Solution: Init v_lock in rettv_list_alloc() and rettv_dict_alloc(). |
| 10419 | Files: src/eval.c |
| 10420 | |
| 10421 | Patch 7.4.1680 |
| 10422 | Problem: Coverity warns for not checking name length (false positive). |
| 10423 | Solution: Only copy the characters we know are there. |
| 10424 | Files: src/channel.c |
| 10425 | |
| 10426 | Patch 7.4.1681 |
| 10427 | Problem: Coverity warns for fixed size buffer length (false positive). |
| 10428 | Solution: Add a check for the name length. |
| 10429 | Files: src/eval.c |
| 10430 | |
| 10431 | Patch 7.4.1682 |
| 10432 | Problem: Coverity: no check for NULL. |
| 10433 | Solution: Add check for invalid argument to assert_match(). |
| 10434 | Files: src/eval.c |
| 10435 | |
| 10436 | Patch 7.4.1683 |
| 10437 | Problem: Generated .bat files do not support --nofork. |
| 10438 | Solution: Add check for --nofork. Also add "setlocal". (Kevin Cantú, |
| 10439 | closes #659) |
| 10440 | Files: src/dosinst.c |
| 10441 | |
| 10442 | Patch 7.4.1684 |
| 10443 | Problem: README text is slightly outdated. |
| 10444 | Solution: Mention the READMEdir directory. |
| 10445 | Files: README.md, README.txt |
| 10446 | |
| 10447 | Patch 7.4.1685 |
| 10448 | Problem: There is no easy way to get all the information about a match. |
| 10449 | Solution: Add matchstrpos(). (Ozaki Kiichi) |
| 10450 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c, |
| 10451 | src/testdir/test_alot.vim, src/testdir/test_matchstrpos.vim |
| 10452 | |
| 10453 | Patch 7.4.1686 |
| 10454 | Problem: When running tests $HOME/.viminfo is written. (James McCoy) |
| 10455 | Solution: Add 'nviminfo' to the 'viminfo' option. (closes #722) |
| 10456 | Files: src/testdir/test_backspace_opt.vim, src/testdir/test_viminfo.vim, |
| 10457 | src/testdir/runtest.vim. |
| 10458 | |
| 10459 | Patch 7.4.1687 |
| 10460 | Problem: The channel close_cb option does not work. |
| 10461 | Solution: Use jo_close_partial instead of jo_err_partial. (Damien) |
| 10462 | Files: src/channel.c, src/testdir/test_channel.vim |
| 10463 | |
| 10464 | Patch 7.4.1688 |
| 10465 | Problem: MzScheme does not support partial. |
| 10466 | Solution: Add minimal partial support. (Ken Takata) |
| 10467 | Files: src/if_mzsch.c |
| 10468 | |
| 10469 | Patch 7.4.1689 |
| 10470 | Problem: Ruby interface has inconsistent coding style. |
| 10471 | Solution: Fix the coding style. (Ken Takata) |
| 10472 | Files: src/if_ruby.c |
| 10473 | |
| 10474 | Patch 7.4.1690 |
| 10475 | Problem: Can't compile with the conceal feature but without multi-byte. |
| 10476 | Solution: Adjust #ifdef. (Owen Leibman) |
| 10477 | Files: src/eval.c, src/window.c |
| 10478 | |
| 10479 | Patch 7.4.1691 |
| 10480 | Problem: When switching to a new buffer and an autocommand applies syntax |
| 10481 | highlighting an ml_get error may occur. |
| 10482 | Solution: Check "syn_buf" against the buffer in the window. (Alexander von |
| 10483 | Buddenbrock, closes #676) |
| 10484 | Files: src/syntax.c |
| 10485 | |
| 10486 | Patch 7.4.1692 |
| 10487 | Problem: feedkeys('i', 'x') gets stuck, waits for a character to be typed. |
| 10488 | Solution: Behave like ":normal". (Yasuhiro Matsumoto) |
| 10489 | Files: src/eval.c, src/testdir/test_feedkeys.vim |
| 10490 | |
| 10491 | Patch 7.4.1693 |
| 10492 | Problem: Building the Perl interface gives compiler warnings. |
| 10493 | Solution: Remove a pragma. Add noreturn attributes. (Damien) |
| 10494 | Files: src/if_perl.xs |
| 10495 | |
| 10496 | Patch 7.4.1694 |
| 10497 | Problem: Win32 gvim doesn't work with "dvorakj" input method. |
| 10498 | Solution: Wait for QS_ALLINPUT instead of QS_ALLEVENTS. (Yukihiro Nakadaira) |
| 10499 | Files: src/gui_w32.c |
| 10500 | |
| 10501 | Patch 7.4.1695 |
| 10502 | Problem: ":syn reset" clears the effect ":syn iskeyword". (James McCoy) |
| 10503 | Solution: Remove clearing the syntax keywords. |
| 10504 | Files: src/syntax.c |
| 10505 | |
| 10506 | Patch 7.4.1696 |
| 10507 | Problem: When using :stopinsert in a silent mapping the "INSERT" message |
| 10508 | isn't cleared. (Coacher) |
| 10509 | Solution: Always clear the message. (Christian Brabandt, closes #718) |
| 10510 | Files: src/ex_docmd.c, src/proto/screen.pro, src/screen.c |
| 10511 | |
| 10512 | Patch 7.4.1697 |
| 10513 | Problem: Display problems when the 'ambiwidth' and 'emoji' options are not |
| 10514 | set properly or the terminal doesn't behave as expected. |
| 10515 | Solution: After drawing an ambiguous width character always position the |
| 10516 | cursor. |
| 10517 | Files: src/mbyte.c, src/screen.c, src/proto/mbyte.pro |
| 10518 | |
| 10519 | Patch 7.4.1698 |
| 10520 | Problem: Two tests fail when running tests with MinGW. (Michael Soyka) |
| 10521 | Solution: Convert test_getcwd.ok test_wordcount.ok to unix fileformat. |
| 10522 | Files: src/testdir/Make_ming.mak |
| 10523 | |
| 10524 | Patch 7.4.1699 |
| 10525 | Problem: :packadd does not work the same when used early or late. |
| 10526 | Solution: Always load plugins matching "plugin/**/*.vim". |
| 10527 | Files: src/ex_cmds2.c, src/testdir/test_packadd.vim |
| 10528 | |
| 10529 | Patch 7.4.1700 |
| 10530 | Problem: Equivalence classes are not properly tested. |
| 10531 | Solution: Add tests for multi-byte and latin1. Fix an error. (Owen Leibman) |
| 10532 | Files: src/regexp.c, src/testdir/Make_all.mak, |
| 10533 | src/testdir/test_alot_latin.vim, src/testdir/test_alot_utf8.vim, |
| 10534 | src/testdir/test_regexp_latin.vim, |
| 10535 | src/testdir/test_regexp_utf8.vim |
| 10536 | |
| 10537 | Patch 7.4.1701 |
| 10538 | Problem: Equivalence classes still tested in old style tests. |
| 10539 | Solution: Remove the duplicate. |
| 10540 | Files: src/testdir/test44.in, src/testdir/test44.ok, |
| 10541 | src/testdir/test99.in, src/testdir/test99.ok |
| 10542 | |
| 10543 | Patch 7.4.1702 |
| 10544 | Problem: Using freed memory when parsing 'printoptions' fails. |
| 10545 | Solution: Save the old options and restore them in case of an error. |
| 10546 | (Dominique) |
| 10547 | Files: src/hardcopy.c, src/testdir/test_hardcopy.vim |
| 10548 | |
| 10549 | Patch 7.4.1703 |
| 10550 | Problem: Can't assert for not equal and not matching. |
| 10551 | Solution: Add assert_notmatch() and assert_notequal(). |
| 10552 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_assert.vim |
| 10553 | |
| 10554 | Patch 7.4.1704 |
| 10555 | Problem: Using freed memory with "wincmd p". (Dominique Pelle) |
| 10556 | Solution: Also clear "prevwin" in other tab pages. |
| 10557 | Files: src/window.c |
| 10558 | |
| 10559 | Patch 7.4.1705 |
| 10560 | Problem: The 'guifont' option does not allow for a quality setting. |
| 10561 | Solution: Add the "q" item, supported on MS-Windows. (Yasuhiro Matsumoto) |
| 10562 | Files: runtime/doc/options.txt, src/gui_w32.c, src/os_mswin.c, |
| 10563 | src/proto/os_mswin.pro |
| 10564 | |
| 10565 | Patch 7.4.1706 |
| 10566 | Problem: Old style function declaration breaks build. |
| 10567 | Solution: Remove __ARGS(). |
| 10568 | Files: src/proto/os_mswin.pro |
| 10569 | |
| 10570 | Patch 7.4.1707 |
| 10571 | Problem: Cannot use empty dictionary key, even though it can be useful. |
| 10572 | Solution: Allow using an empty dictionary key. |
| 10573 | Files: src/hashtab.c, src/eval.c, src/testdir/test_expr.vim |
| 10574 | |
| 10575 | Patch 7.4.1708 |
| 10576 | Problem: New regexp engine does not work properly with EBCDIC. |
| 10577 | Solution: Define equivalence class characters. (Owen Leibman) |
| 10578 | Files: src/regexp_nfa.c |
| 10579 | |
| 10580 | Patch 7.4.1709 |
| 10581 | Problem: Mistake in #ifdef. |
| 10582 | Solution: Change PROOF_QUALITY to DRAFT_QUALITY. (Ken Takata) |
| 10583 | Files: src/os_mswin.c |
| 10584 | |
| 10585 | Patch 7.4.1710 |
| 10586 | Problem: Not all output of an external command is read. |
| 10587 | Solution: Avoid timing out when the process has exited. (closes #681) |
| 10588 | Files: src/os_unix.c |
| 10589 | |
| 10590 | Patch 7.4.1711 |
| 10591 | Problem: When using try/catch in 'statusline' it is still considered an |
| 10592 | error and the status line will be disabled. |
| 10593 | Solution: Check did_emsg instead of called_emsg. (haya14busa, closes #729) |
| 10594 | Files: src/screen.c, src/testdir/test_statusline.vim, |
| 10595 | src/testdir/test_alot.vim |
| 10596 | |
| 10597 | Patch 7.4.1712 |
| 10598 | Problem: For plugins in packages, plugin authors need to take care of all |
| 10599 | dependencies. |
| 10600 | Solution: When loading "start" packages and for :packloadall, first add all |
| 10601 | directories to 'runtimepath' before sourcing plugins. |
| 10602 | Files: src/ex_cmds2.c, src/testdir/test_packadd.vim |
| 10603 | |
| 10604 | Patch 7.4.1713 |
| 10605 | Problem: GTK GUI doesn't work on Wayland. |
| 10606 | Solution: Specify that only the X11 backend is allowed. (Simon McVittie) |
| 10607 | Files: src/gui_gtk_x11.c |
| 10608 | |
| 10609 | Patch 7.4.1714 |
| 10610 | Problem: Non-GUI specific settings in the gvimrc_example file. |
| 10611 | Solution: Move some settings to the vimrc_example file. Remove setting |
| 10612 | 'hlsearch' again. (suggested by Hirohito Higashi) |
| 10613 | Files: runtime/vimrc_example.vim, runtime/gvimrc_example.vim |
| 10614 | |
| 10615 | Patch 7.4.1715 |
| 10616 | Problem: Double free when a partial is in a cycle with a list or dict. |
| 10617 | (Nikolai Pavlov) |
| 10618 | Solution: Do not free a nested list or dict used by the partial. |
| 10619 | Files: src/eval.c, src/testdir/test_partial.vim |
| 10620 | |
| 10621 | Patch 7.4.1716 |
| 10622 | Problem: 'autochdir' doesn't work for the first file. (Rob Hoelz) |
| 10623 | Solution: Call DO_AUTOCHDIR after startup. (Christian Brabandt, closes #704) |
| 10624 | Files: src/main.c |
| 10625 | |
| 10626 | Patch 7.4.1717 |
| 10627 | Problem: Leaking memory when opening a channel fails. |
| 10628 | Solution: Unreference partials in job options. |
| 10629 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 10630 | src/testdir/test_channel.vim |
| 10631 | |
| 10632 | Patch 7.4.1718 |
| 10633 | Problem: Coverity: not using return value of set_ref_in_item(). |
| 10634 | Solution: Use the return value. |
| 10635 | Files: src/eval.c |
| 10636 | |
| 10637 | Patch 7.4.1719 |
| 10638 | Problem: Leaking memory when there is a cycle involving a job and a |
| 10639 | partial. |
| 10640 | Solution: Add a copyID to job and channel. Set references in items referred |
| 10641 | by them. Go through all jobs and channels to find unreferenced |
| 10642 | items. Also, decrement reference counts when garbage collecting. |
| 10643 | Files: src/eval.c, src/channel.c, src/netbeans.c, src/globals.h, |
| 10644 | src/ops.c, src/regexp.c, src/tag.c, src/proto/channel.pro, |
| 10645 | src/proto/eval.pro, src/testdir/test_partial.vim, src/structs.h |
| 10646 | |
| 10647 | Patch 7.4.1720 |
| 10648 | Problem: Tests fail without the job feature. |
| 10649 | Solution: Skip tests when the job feature is not present. |
| 10650 | Files: src/testdir/test_partial.vim |
| 10651 | |
| 10652 | Patch 7.4.1721 |
| 10653 | Problem: The vimtbar files are unused. |
| 10654 | Solution: Remove them. (Ken Takata) |
| 10655 | Files: src/vimtbar.dll, src/vimtbar.h, src/vimtbar.lib, Filelist |
| 10656 | |
| 10657 | Patch 7.4.1722 |
| 10658 | Problem: Crash when calling garbagecollect() after starting a job. |
| 10659 | Solution: Set the copyID on job and channel. (Hirohito Higashi, Ozaki |
| 10660 | Kiichi) |
| 10661 | Files: src/eval.c |
| 10662 | |
| 10663 | Patch 7.4.1723 |
| 10664 | Problem: When using try/catch in 'tabline' it is still considered an |
| 10665 | error and the tabline will be disabled. |
| 10666 | Solution: Check did_emsg instead of called_emsg. (haya14busa, closes #746) |
| 10667 | Files: src/screen.c, src/testdir/test_tabline.vim, |
| 10668 | src/testdir/test_alot.vim |
| 10669 | |
| 10670 | Patch 7.4.1724 (after 7.4.1723) |
| 10671 | Problem: Tabline test fails in GUI. |
| 10672 | Solution: Remove 'e' from 'guioptions'. |
| 10673 | Files: src/testdir/test_tabline.vim |
| 10674 | |
| 10675 | Patch 7.4.1725 |
| 10676 | Problem: Compiler errors for non-ANSI compilers. |
| 10677 | Solution: Remove // comment. Remove comma at end of enum. (Michael Jarvis) |
| 10678 | Files: src/eval.c |
| 10679 | |
| 10680 | Patch 7.4.1726 |
| 10681 | Problem: ANSI compiler complains about string length. |
| 10682 | Solution: Split long string in two parts. (Michael Jarvis) |
| 10683 | Files: src/ex_cmds.c |
| 10684 | |
| 10685 | Patch 7.4.1727 |
| 10686 | Problem: Cannot detect a crash in tests when caused by garbagecollect(). |
| 10687 | Solution: Add garbagecollect_for_testing(). Do not free a job if is still |
| 10688 | useful. |
| 10689 | Files: src/channel.c, src/eval.c, src/getchar.c, src/main.c, src/vim.h, |
| 10690 | src/proto/eval.pro, src/testdir/runtest.vim, |
| 10691 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 10692 | |
| 10693 | Patch 7.4.1728 |
| 10694 | Problem: The help for functions require a space after the "(". |
| 10695 | Solution: Make CTRL-] on a function name ignore the arguments. (Hirohito |
| 10696 | Higashi) |
| 10697 | Files: src/ex_cmds.c, src/testdir/test_help_tagjump.vim, |
| 10698 | runtime/doc/eval.txt |
| 10699 | |
| 10700 | Patch 7.4.1729 |
| 10701 | Problem: The Perl interface cannot use 'print' operator for writing |
| 10702 | directly in standard IO. |
| 10703 | Solution: Add a minimal implementation of PerlIO Layer feature and try to |
| 10704 | use it for STDOUT/STDERR. (Damien) |
| 10705 | Files: src/if_perl.xs, src/testdir/test_perl.vim |
| 10706 | |
| 10707 | Patch 7.4.1730 |
| 10708 | Problem: It is not easy to get a character out of a string. |
| 10709 | Solution: Add strgetchar() and strcharpart(). |
| 10710 | Files: src/eval.c, src/testdir/test_expr.vim |
| 10711 | |
| 10712 | Patch 7.4.1731 |
| 10713 | Problem: Python: turns partial into simple funcref. |
| 10714 | Solution: Use partials like partials. (Nikolai Pavlov, closes #734) |
| 10715 | Files: runtime/doc/if_pyth.txt, src/eval.c, src/if_py_both.h, |
| 10716 | src/if_python.c, src/if_python3.c, src/proto/eval.pro, |
| 10717 | src/testdir/test86.in, src/testdir/test86.ok, |
| 10718 | src/testdir/test87.in, src/testdir/test87.ok |
| 10719 | |
| 10720 | Patch 7.4.1732 |
| 10721 | Problem: Folds may close when using autocomplete. (Anmol Sethi) |
| 10722 | Solution: Increment/decrement disable_fold. (Christian Brabandt, closes |
| 10723 | #643) |
| 10724 | Files: src/edit.c, src/fold.c, src/globals.h |
| 10725 | |
| 10726 | Patch 7.4.1733 |
| 10727 | Problem: "make install" doesn't know about cross-compiling. (Christian |
| 10728 | Neukirchen) |
| 10729 | Solution: Add CROSS_COMPILING. (closes #740) |
| 10730 | Files: src/configure.in, src/auto/configure, src/config.mk.in, |
| 10731 | src/Makefile |
| 10732 | |
| 10733 | Patch 7.4.1734 (after 7.4.1730) |
| 10734 | Problem: Test fails when not using utf-8. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10735 | Solution: Split test in regular and utf-8 part. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10736 | Files: src/testdir/test_expr.vim, src/testdir/test_expr_utf8.vim, |
| 10737 | src/testdir/test_alot_utf8.vim |
| 10738 | |
| 10739 | Patch 7.4.1735 |
| 10740 | Problem: It is not possible to only see part of the message history. It is |
| 10741 | not possible to clear messages. |
| 10742 | Solution: Add a count to ":messages" and a clear argument. (Yasuhiro |
| 10743 | Matsumoto) |
| 10744 | Files: runtime/doc/message.txt, src/ex_cmds.h, src/message.c, |
| 10745 | src/testdir/test_messages.vim, src/testdir/test_alot.vim |
| 10746 | |
| 10747 | Patch 7.4.1736 (after 7.4.1731) |
| 10748 | Problem: Unused variable. |
| 10749 | Solution: Remove it. (Yasuhiro Matsumoto) |
| 10750 | Files: src/if_py_both.h |
| 10751 | |
| 10752 | Patch 7.4.1737 |
| 10753 | Problem: Argument marked as unused is used. |
| 10754 | Solution: Remove UNUSED. |
| 10755 | Files: src/message.c |
| 10756 | |
| 10757 | Patch 7.4.1738 |
| 10758 | Problem: Count for ":messages" depends on number of lines. |
| 10759 | Solution: Add ADDR_OTHER address type. |
| 10760 | Files: src/ex_cmds.h |
| 10761 | |
| 10762 | Patch 7.4.1739 |
| 10763 | Problem: Messages test fails on MS-Windows. |
| 10764 | Solution: Adjust the asserts. Skip the "messages maintainer" line if not |
| 10765 | showing all messages. |
| 10766 | Files: src/message.c, src/testdir/test_messages.vim |
| 10767 | |
| 10768 | Patch 7.4.1740 |
| 10769 | Problem: syn-cchar defined with matchadd() does not appear if there are no |
| 10770 | other syntax definitions which matches buffer text. |
| 10771 | Solution: Check for startcol. (Ozaki Kiichi, haya14busa, closes #757) |
| 10772 | Files: src/screen.c, src/testdir/Make_all.mak, |
| 10773 | src/testdir/test_alot_utf8.vim, src/testdir/test_match_conceal.in, |
| 10774 | src/testdir/test_match_conceal.ok, |
| 10775 | src/testdir/test_matchadd_conceal.vim, |
| 10776 | src/testdir/test_matchadd_conceal_utf8.vim, |
| 10777 | src/testdir/test_undolevels.vim |
| 10778 | |
| 10779 | Patch 7.4.1741 |
| 10780 | Problem: Not testing utf-8 characters. |
| 10781 | Solution: Move the right asserts to the test_expr_utf8 test. |
| 10782 | Files: src/testdir/test_expr.vim, src/testdir/test_expr_utf8.vim |
| 10783 | |
| 10784 | Patch 7.4.1742 |
| 10785 | Problem: strgetchar() does not work correctly. |
| 10786 | Solution: use mb_cptr2len(). Add a test. (Naruhiko Nishino) |
| 10787 | Files: src/eval.c, src/testdir/test_expr_utf8.vim |
| 10788 | |
| 10789 | Patch 7.4.1743 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10790 | Problem: Clang warns for uninitialized variable. (Michael Jarvis) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10791 | Solution: Initialize it. |
| 10792 | Files: src/if_py_both.h |
| 10793 | |
| 10794 | Patch 7.4.1744 |
| 10795 | Problem: Python: Converting a sequence may leak memory. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 10796 | Solution: Decrement a reference. (Nikolai Pavlov) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10797 | Files: src/if_py_both.h |
| 10798 | |
| 10799 | Patch 7.4.1745 |
| 10800 | Problem: README file is not clear about where to get Vim. |
| 10801 | Solution: Add links to github, releases and the Windows installer. |
| 10802 | (Suggested by Christian Brabandt) |
| 10803 | Files: README.md, README.txt |
| 10804 | |
| 10805 | Patch 7.4.1746 |
| 10806 | Problem: Memory leak in Perl. |
| 10807 | Solution: Decrement the reference count. Add a test. (Damien) |
| 10808 | Files: src/if_perl.xs, src/testdir/test_perl.vim |
| 10809 | |
| 10810 | Patch 7.4.1747 |
| 10811 | Problem: Coverity: missing check for NULL pointer. |
| 10812 | Solution: Check for out of memory. |
| 10813 | Files: src/if_py_both.h |
| 10814 | |
| 10815 | Patch 7.4.1748 |
| 10816 | Problem: "gD" does not find match in first column of first line. (Gary |
| 10817 | Johnson) |
| 10818 | Solution: Accept match at the cursor. |
| 10819 | Files: src/normal.c, src/testdir/test_goto.vim, src/testdir/test_alot.vim |
| 10820 | |
| 10821 | Patch 7.4.1749 |
| 10822 | Problem: When using GTK 3.20 there are a few warnings. |
| 10823 | Solution: Use new functions when available. (Kazunobu Kuriyama) |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 10824 | Files: src/gui_beval.c src/gui_gtk_x11.c |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10825 | |
| 10826 | Patch 7.4.1750 |
| 10827 | Problem: When a buffer gets updated while in command line mode, the screen |
| 10828 | may be messed up. |
| 10829 | Solution: Postpone the redraw when the screen is scrolled. |
| 10830 | Files: src/channel.c |
| 10831 | |
| 10832 | Patch 7.4.1751 |
| 10833 | Problem: Crash when 'tagstack' is off. (Dominique Pelle) |
| 10834 | Solution: Fix it. (Hirohito Higashi) |
| 10835 | Files: src/tag.c, src/testdir/test_alot.vim, src/testdir/test_tagjump.vim |
| 10836 | |
| 10837 | Patch 7.4.1752 |
| 10838 | Problem: When adding to the quickfix list the current position is reset. |
| 10839 | Solution: Do not reset the position when not needed. (Yegappan Lakshmanan) |
| 10840 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 10841 | |
| 10842 | Patch 7.4.1753 |
| 10843 | Problem: "noinsert" in 'completeopt' is sometimes ignored. |
| 10844 | Solution: Set the variables when the 'completeopt' was set. (Ozaki Kiichi) |
| 10845 | Files: src/edit.c, src/option.c, src/proto/edit.pro |
| 10846 | |
| 10847 | Patch 7.4.1754 |
| 10848 | Problem: When 'filetype' was set and reloading a buffer which does not |
| 10849 | cause it to be set, the syntax isn't loaded. (KillTheMule) |
| 10850 | Solution: Remember whether the FileType event was fired and fire it if not. |
| 10851 | (Anton Lindqvist, closes #747) |
| 10852 | Files: src/fileio.c, src/testdir/test_syntax.vim |
| 10853 | |
| 10854 | Patch 7.4.1755 |
| 10855 | Problem: When using getreg() on a non-existing register a NULL list is |
| 10856 | returned. (Bjorn Linse) |
| 10857 | Solution: Allocate an empty list. Add a test. |
| 10858 | Files: src/eval.c, src/testdir/test_expr.vim |
| 10859 | |
| 10860 | Patch 7.4.1756 |
| 10861 | Problem: "dll" options are not expanded. |
| 10862 | Solution: Expand environment variables. (Ozaki Kiichi) |
| 10863 | Files: src/option.c, src/testdir/test_alot.vim, |
| 10864 | src/testdir/test_expand_dllpath.vim |
| 10865 | |
| 10866 | Patch 7.4.1757 |
| 10867 | Problem: When using complete() it may set 'modified' even though nothing |
| 10868 | was inserted. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 10869 | Solution: Use Down/Up instead of Next/Previous match. (Shougo Matsu, closes |
| 10870 | #745) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10871 | Files: src/edit.c |
| 10872 | |
| 10873 | Patch 7.4.1758 |
| 10874 | Problem: Triggering CursorHoldI when in CTRL-X mode causes problems. |
| 10875 | Solution: Do not trigger CursorHoldI in CTRL-X mode. Add "!" flag to |
| 10876 | feedkeys() (test with that didn't work though). |
| 10877 | Files: src/edit.c, src/eval.c |
| 10878 | |
| 10879 | Patch 7.4.1759 |
| 10880 | Problem: When using feedkeys() in a timer the inserted characters are not |
| 10881 | used right away. |
| 10882 | Solution: Break the wait loop when characters have been added to typebuf. |
| 10883 | use this for testing CursorHoldI. |
| 10884 | Files: src/gui.c, src/os_win32.c, src/os_unix.c, |
| 10885 | src/testdir/test_autocmd.vim |
| 10886 | |
| 10887 | Patch 7.4.1760 (after 7.4.1759) |
| 10888 | Problem: Compiler warning for unused variable. |
| 10889 | Solution: Add #ifdef. (John Marriott) |
| 10890 | Files: src/os_win32.c |
| 10891 | |
| 10892 | Patch 7.4.1761 |
| 10893 | Problem: Coverity complains about ignoring return value. |
| 10894 | Solution: Add "(void)" to get rid of the warning. |
| 10895 | Files: src/eval.c |
| 10896 | |
| 10897 | Patch 7.4.1762 |
| 10898 | Problem: Coverity: useless assignments. |
| 10899 | Solution: Remove them. |
| 10900 | Files: src/search.c |
| 10901 | |
| 10902 | Patch 7.4.1763 |
| 10903 | Problem: Coverity: useless assignment. |
| 10904 | Solution: Add #if 0. |
| 10905 | Files: src/spell.c |
| 10906 | |
| 10907 | Patch 7.4.1764 |
| 10908 | Problem: C++ style comment. (Ken Takata) |
| 10909 | Solution: Finish the work started here: don't call perror() when stderr |
| 10910 | isn't working. |
| 10911 | Files: src/os_unix.c |
| 10912 | |
| 10913 | Patch 7.4.1765 |
| 10914 | Problem: Undo options are not together in the options window. |
| 10915 | Solution: Put them together. (Gary Johnson) |
| 10916 | Files: runtime/optwin.vim |
| 10917 | |
| 10918 | Patch 7.4.1766 |
| 10919 | Problem: Building instructions for MS-Windows are outdated. |
| 10920 | Solution: Mention setting SDK_INCLUDE_DIR. (Ben Franklin, closes #771) Move |
| 10921 | outdated instructions further down. |
| 10922 | Files: src/INSTALLpc.txt |
| 10923 | |
| 10924 | Patch 7.4.1767 |
| 10925 | Problem: When installing Vim on a GTK system the icon cache is not updated. |
| 10926 | Solution: Update the GTK icon cache when possible. (Kazunobu Kuriyama) |
| 10927 | Files: src/Makefile, src/configure.in, src/config.mk.in, |
| 10928 | src/auto/configure |
| 10929 | |
| 10930 | Patch 7.4.1768 |
| 10931 | Problem: Arguments of setqflist() are not checked properly. |
| 10932 | Solution: Add better checks, add a test. (Nikolai Pavlov, Hirohito Higashi, |
| 10933 | closes #661) |
| 10934 | Files: src/eval.c, src/testdir/test_quickfix.vim |
| 10935 | |
| 10936 | Patch 7.4.1769 |
| 10937 | Problem: No "closed", "errors" and "encoding" attribute on Python output. |
| 10938 | Solution: Add attributes and more tests. (Roland Puntaier, closes #622) |
| 10939 | Files: src/if_py_both.h, src/if_python.c, src/if_python3.c, |
| 10940 | src/testdir/test86.in, src/testdir/test86.ok, |
| 10941 | src/testdir/test87.in, src/testdir/test87.ok |
| 10942 | |
| 10943 | Patch 7.4.1770 |
| 10944 | Problem: Cannot use true color in the terminal. |
| 10945 | Solution: Add the 'guicolors' option. (Nikolai Pavlov) |
| 10946 | Files: runtime/doc/options.txt, runtime/doc/term.txt, |
| 10947 | runtime/doc/various.txt, src/auto/configure, src/config.h.in, |
| 10948 | src/configure.in, src/eval.c, src/globals.h, src/hardcopy.c, |
| 10949 | src/option.c, src/option.h, src/proto/term.pro, src/screen.c, |
| 10950 | src/structs.h, src/syntax.c, src/term.c, src/term.h, |
| 10951 | src/version.c, src/vim.h |
| 10952 | |
| 10953 | Patch 7.4.1771 (after 7.4.1768) |
| 10954 | Problem: Warning for unused variable. |
| 10955 | Solution: Add #ifdef. (John Marriott) |
| 10956 | Files: src/eval.c |
| 10957 | |
| 10958 | Patch 7.4.1772 (after 7.4.1767) |
| 10959 | Problem: Installation fails when $GTK_UPDATE_ICON_CACHE is empty. |
| 10960 | Solution: Add quotes. (Kazunobu Kuriyama) |
| 10961 | Files: src/Makefile |
| 10962 | |
| 10963 | Patch 7.4.1773 (after 7.4.1770) |
| 10964 | Problem: Compiler warnings. (Dominique Pelle) |
| 10965 | Solution: Add UNUSED. Add type cast. Avoid a buffer overflow. |
| 10966 | Files: src/syntax.c, src/term.c |
| 10967 | |
| 10968 | Patch 7.4.1774 (after 7.4.1770) |
| 10969 | Problem: Cterm true color feature has warnings. |
| 10970 | Solution: Add type casts. |
| 10971 | Files: src/screen.c, src/syntax.c, src/term.c |
| 10972 | |
| 10973 | Patch 7.4.1775 |
| 10974 | Problem: The rgb.txt file is not installed. |
| 10975 | Solution: Install the file. (Christian Brabandt) |
| 10976 | Files: src/Makefile |
| 10977 | |
| 10978 | Patch 7.4.1776 |
| 10979 | Problem: Using wrong buffer length. |
| 10980 | Solution: use the right name. (Kazunobu Kuriyama) |
| 10981 | Files: src/term.c |
| 10982 | |
| 10983 | Patch 7.4.1777 |
| 10984 | Problem: Newly added features can escape the sandbox. |
| 10985 | Solution: Add checks for restricted and secure. (Yasuhiro Matsumoto) |
| 10986 | Files: src/eval.c |
| 10987 | |
| 10988 | Patch 7.4.1778 |
| 10989 | Problem: When using the term truecolor feature, the t_8f and t_8b termcap |
| 10990 | options are not set by default. |
| 10991 | Solution: Move the values to before BT_EXTRA_KEYS. (Christian Brabandt) |
| 10992 | Files: src/term.c |
| 10993 | |
| 10994 | Patch 7.4.1779 |
| 10995 | Problem: Using negative index in strcharpart(). (Yegappan Lakshmanan) |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 10996 | Solution: Assume single byte when using a negative index. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 10997 | Files: src/eval.c |
| 10998 | |
| 10999 | Patch 7.4.1780 |
| 11000 | Problem: Warnings reported by cppcheck. |
| 11001 | Solution: Fix the warnings. (Dominique Pelle) |
| 11002 | Files: src/ex_cmds2.c, src/json.c, src/misc1.c, src/ops.c, |
| 11003 | src/regexp_nfa.c |
| 11004 | |
| 11005 | Patch 7.4.1781 |
| 11006 | Problem: synIDattr() does not respect 'guicolors'. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11007 | Solution: Change the condition for the mode. (Christian Brabandt) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11008 | Files: src/eval.c |
| 11009 | |
| 11010 | Patch 7.4.1782 |
| 11011 | Problem: strcharpart() does not work properly with some multi-byte |
| 11012 | characters. |
| 11013 | Solution: Use mb_cptr2len() instead of mb_char2len(). (Hirohito Higashi) |
| 11014 | Files: src/eval.c, src/testdir/test_expr_utf8.vim |
| 11015 | |
| 11016 | Patch 7.4.1783 |
| 11017 | Problem: The old regexp engine doesn't handle character classes correctly. |
| 11018 | (Manuel Ortega) |
| 11019 | Solution: Use regmbc() instead of regc(). Add a test. |
| 11020 | Files: src/regexp.c, src/testdir/test_regexp_utf8.vim |
| 11021 | |
| 11022 | Patch 7.4.1784 |
| 11023 | Problem: The termtruecolor feature is enabled differently from many other |
| 11024 | features. |
| 11025 | Solution: Enable the termtruecolor feature for the big build, not through |
| 11026 | configure. |
| 11027 | Files: src/configure.in, src/config.h.in, src/auto/configure, |
| 11028 | src/feature.h |
| 11029 | |
| 11030 | Patch 7.4.1785 (after 7.4.1783) |
| 11031 | Problem: Regexp test fails on windows. |
| 11032 | Solution: set 'isprint' to the right value for testing. |
| 11033 | Files: src/testdir/test_regexp_utf8.vim |
| 11034 | |
| 11035 | Patch 7.4.1786 |
| 11036 | Problem: Compiled-in colors do not match rgb.txt. |
| 11037 | Solution: Use the rgb.txt colors. (Kazunobu Kuriyama) |
| 11038 | Files: src/term.c |
| 11039 | |
| 11040 | Patch 7.4.1787 |
| 11041 | Problem: When a job ends the close callback is invoked before other |
| 11042 | callbacks. On Windows the close callback is not called. |
| 11043 | Solution: First invoke out/err callbacks before the close callback. |
| 11044 | Make the close callback work on Windows. |
| 11045 | Files: src/channel.c, src/proto/channel.pro, |
| 11046 | src/testdir/test_channel.vim, src/testdir/test_channel_pipe.py |
| 11047 | |
| 11048 | Patch 7.4.1788 |
| 11049 | Problem: NSIS script is missing packages. |
| 11050 | Solution: Add the missing directories. (Ken Takata) |
| 11051 | Files: nsis/gvim.nsi |
| 11052 | |
| 11053 | Patch 7.4.1789 |
| 11054 | Problem: Cannot use ch_read() in the close callback. |
| 11055 | Solution: Do not discard the channel if there is readahead. Do not discard |
| 11056 | readahead if there is a close callback. |
| 11057 | Files: src/eval.c, src/channel.c, src/proto/channel.pro, |
| 11058 | src/testdir/test_channel.vim |
| 11059 | |
| 11060 | Patch 7.4.1790 |
| 11061 | Problem: Leading white space in a job command matters. (Andrew Stewart) |
| 11062 | Solution: Skip leading white space. |
| 11063 | Files: src/os_unix.c |
| 11064 | |
| 11065 | Patch 7.4.1791 |
| 11066 | Problem: Channel could be garbage collected too early. |
| 11067 | Solution: Don't free a channel or remove it from a job when it is still |
| 11068 | useful. |
| 11069 | Files: src/channel.c |
| 11070 | |
| 11071 | Patch 7.4.1792 |
| 11072 | Problem: Color name decoding is implemented several times. |
| 11073 | Solution: Move it to term.c. (Christian Brabandt) |
| 11074 | Files: src/gui_mac.c, src/gui_photon.c, src/gui_w32.c, |
| 11075 | src/proto/term.pro, src/term.c |
| 11076 | |
| 11077 | Patch 7.4.1793 |
| 11078 | Problem: Some character classes may differ between systems. On OS/X the |
| 11079 | regexp test fails. |
| 11080 | Solution: Make this less dependent on the system. (idea by Kazunobu Kuriyama) |
| 11081 | Files: src/regexp.c, src/regexp_nfa.c |
| 11082 | |
| 11083 | Patch 7.4.1794 (after 7.4.1792) |
| 11084 | Problem: Can't build on MS-Windows. |
| 11085 | Solution: Add missing declaration. |
| 11086 | Files: src/gui_w32.c |
| 11087 | |
| 11088 | Patch 7.4.1795 |
| 11089 | Problem: Compiler warning for redefining RGB. (John Marriott) |
| 11090 | Solution: Rename it to TORGB. |
| 11091 | Files: src/term.c |
| 11092 | |
| 11093 | Patch 7.4.1796 (after 7.4.1795) |
| 11094 | Problem: Colors are wrong on MS-Windows. (Christian Robinson) |
| 11095 | Solution: Use existing RGB macro if it exists. (Ken Takata) |
| 11096 | Files: src/term.c |
| 11097 | |
| 11098 | Patch 7.4.1797 |
| 11099 | Problem: Warning from Windows 64 bit compiler. |
| 11100 | Solution: Change int to size_t. (Mike Williams) |
| 11101 | Files: src/term.c |
| 11102 | |
| 11103 | Patch 7.4.1798 |
| 11104 | Problem: Still compiler warning for unused return value. (Charles Campbell) |
| 11105 | Solution: Assign to ignoredp. |
| 11106 | Files: src/term.c |
| 11107 | |
| 11108 | Patch 7.4.1799 |
| 11109 | Problem: 'guicolors' is a confusing option name. |
| 11110 | Solution: Use 'termguicolors' instead. (Hirohito Higashi, Ken Takata) |
| 11111 | Files: runtime/doc/options.txt, runtime/doc/term.txt, |
| 11112 | runtime/doc/various.txt, runtime/syntax/dircolors.vim, src/eval.c, |
| 11113 | src/feature.h, src/globals.h, src/hardcopy.c, src/option.c, |
| 11114 | src/option.h, src/proto/term.pro, src/screen.c, src/structs.h, |
| 11115 | src/syntax.c, src/term.c, src/version.c, src/vim.h |
| 11116 | |
| 11117 | Patch 7.4.1800 (after 7.4.1799) |
| 11118 | Problem: Unnecessary #ifdef. |
| 11119 | Solution: Just use USE_24BIT. (Ken Takata) |
| 11120 | Files: src/syntax.c |
| 11121 | |
| 11122 | Patch 7.4.1801 |
| 11123 | Problem: Make uninstall leaves file behind. |
| 11124 | Solution: Delete rgb.txt. (Kazunobu Kuriyama) |
| 11125 | Files: src/Makefile |
| 11126 | |
| 11127 | Patch 7.4.1802 |
| 11128 | Problem: Quickfix doesn't handle long lines well, they are split. |
| 11129 | Solution: Drop characters after a limit. (Anton Lindqvist) |
| 11130 | Files: src/quickfix.c, src/testdir/test_quickfix.vim, |
| 11131 | src/testdir/samples/quickfix.txt |
| 11132 | |
| 11133 | Patch 7.4.1803 |
| 11134 | Problem: GTK3 doesn't handle menu separators properly. |
| 11135 | Solution: Use gtk_separator_menu_item_new(). (Kazunobu Kuriyama) |
| 11136 | Files: src/gui_gtk.c |
| 11137 | |
| 11138 | Patch 7.4.1804 |
| 11139 | Problem: Can't use Vim as MANPAGER. |
| 11140 | Solution: Add manpager.vim. (Enno Nagel, closes #491) |
| 11141 | Files: runtime/doc/filetype.txt, runtime/plugin/manpager.vim |
| 11142 | |
| 11143 | Patch 7.4.1805 |
| 11144 | Problem: Running tests in shadow dir fails. |
| 11145 | Solution: Link the samples directory |
| 11146 | Files: src/Makefile |
| 11147 | |
| 11148 | Patch 7.4.1806 |
| 11149 | Problem: 'termguicolors' option missing from the options window. |
| 11150 | Solution: Add the entry. |
| 11151 | Files: runtime/optwin.vim |
| 11152 | |
| 11153 | Patch 7.4.1807 |
| 11154 | Problem: Test_out_close_cb sometimes fails. |
| 11155 | Solution: Always write DETACH to out, not err. |
| 11156 | Files: src/channel.c, src/testdir/test_channel.vim |
| 11157 | |
| 11158 | Patch 7.4.1808 (after 7.4.1806) |
| 11159 | Problem: Using wrong feature name to check for 'termguicolors'. |
| 11160 | Solution: Use the right feature name. (Ken Takata) |
| 11161 | Files: runtime/optwin.vim |
| 11162 | |
| 11163 | Patch 7.4.1809 (after 7.4.1808) |
| 11164 | Problem: Using wrong short option name for 'termguicolors'. |
| 11165 | Solution: Use the option name. |
| 11166 | Files: runtime/optwin.vim |
| 11167 | |
| 11168 | Patch 7.4.1810 |
| 11169 | Problem: Sending DETACH after a channel was closed isn't useful. |
| 11170 | Solution: Only add DETACH for a netbeans channel. |
| 11171 | Files: src/channel.c, src/testdir/test_channel.vim |
| 11172 | |
| 11173 | Patch 7.4.1811 |
| 11174 | Problem: Netbeans channel gets garbage collected. |
| 11175 | Solution: Set reference in nb_channel. |
| 11176 | Files: src/eval.c, src/netbeans.c, src/proto/netbeans.pro |
| 11177 | |
| 11178 | Patch 7.4.1812 |
| 11179 | Problem: Failure on startup with Athena and Motif. |
| 11180 | Solution: Check for INVALCOLOR. (Kazunobu Kuriyama) |
| 11181 | Files: src/syntax.c, src/vim.h |
| 11182 | |
| 11183 | Patch 7.4.1813 |
| 11184 | Problem: Memory access error when running test_quickfix. |
| 11185 | Solution: Allocate one more byte. (Yegappan Lakshmanan) |
| 11186 | Files: src/quickfix.c |
| 11187 | |
| 11188 | Patch 7.4.1814 |
| 11189 | Problem: A channel may be garbage collected while it's still being used by |
| 11190 | a job. (James McCoy) |
| 11191 | Solution: Mark the channel as used if the job is still used. Do the same |
| 11192 | for channels that are still used. |
| 11193 | Files: src/eval.c, src/channel.c, src/proto/channel.pro |
| 11194 | |
| 11195 | Patch 7.4.1815 |
| 11196 | Problem: Compiler warnings for unused variables. (Ajit Thakkar) |
| 11197 | Solution: Add a dummy initialization. (Yasuhiro Matsumoto) |
| 11198 | Files: src/quickfix.c |
| 11199 | |
| 11200 | Patch 7.4.1816 |
| 11201 | Problem: Looping over a null list throws an error. |
| 11202 | Solution: Skip over the for loop. |
| 11203 | Files: src/eval.c, src/testdir/test_expr.vim |
| 11204 | |
| 11205 | Patch 7.4.1817 |
| 11206 | Problem: The screen is not updated if a callback is invoked when closing a |
| 11207 | channel. |
| 11208 | Solution: Invoke redraw_after_callback(). |
| 11209 | Files: src/channel.c |
| 11210 | |
| 11211 | Patch 7.4.1818 |
| 11212 | Problem: Help completion adds @en to all matches except the first one. |
| 11213 | Solution: Remove "break", go over all items. |
| 11214 | Files: src/ex_getln.c |
| 11215 | |
| 11216 | Patch 7.4.1819 |
| 11217 | Problem: Compiler warnings when sprintf() is a macro. |
| 11218 | Solution: Don't interrupt sprintf() with an #ifdef. (Michael Jarvis, |
| 11219 | closes #788) |
| 11220 | Files: src/fileio.c, src/tag.c, src/term.c |
| 11221 | |
| 11222 | Patch 7.4.1820 |
| 11223 | Problem: Removing language from help tags too often. |
| 11224 | Solution: Only remove @en when not needed. (Hirohito Higashi) |
| 11225 | Files: src/ex_getln.c, src/testdir/test_help_tagjump.vim |
| 11226 | |
| 11227 | Patch 7.4.1821 (after 7.4.1820) |
| 11228 | Problem: Test fails on MS-Windows. |
| 11229 | Solution: Sort the completion results. |
| 11230 | Files: src/testdir/test_help_tagjump.vim |
| 11231 | |
| 11232 | Patch 7.4.1822 |
| 11233 | Problem: Redirecting stdout of a channel to "null" doesn't work. (Nicola) |
| 11234 | Solution: Correct the file descriptor number. |
| 11235 | Files: src/os_unix.c |
| 11236 | |
| 11237 | Patch 7.4.1823 |
| 11238 | Problem: Warning from 64 bit compiler. |
| 11239 | Solution: Add type cast. (Mike Williams) |
| 11240 | Files: src/quickfix.c |
| 11241 | |
| 11242 | Patch 7.4.1824 |
| 11243 | 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] | 11244 | callback the process may hang around in defunct state. (Nicola) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11245 | Solution: Call job_status() if the job is running and won't get freed |
| 11246 | because it might still be useful. |
| 11247 | Files: src/channel.c |
| 11248 | |
| 11249 | Patch 7.4.1825 |
| 11250 | Problem: When job writes to buffer nothing is written. (Nicola) |
| 11251 | Solution: Do not discard a channel before writing is done. |
| 11252 | Files: src/channel.c |
| 11253 | |
| 11254 | Patch 7.4.1826 |
| 11255 | Problem: Callbacks are invoked when it's not safe. (Andrew Stewart) |
| 11256 | Solution: When a channel is to be closed don't invoke callbacks right away, |
| 11257 | wait for a safe moment. |
| 11258 | Files: src/structs.h, src/channel.c |
| 11259 | |
| 11260 | Patch 7.4.1827 |
| 11261 | Problem: No error when invoking a callback when it's not safe. |
| 11262 | Solution: Add an error message. Avoid the error when freeing a channel. |
| 11263 | Files: src/structs.h, src/channel.c |
| 11264 | |
| 11265 | Patch 7.4.1828 |
| 11266 | Problem: May try to access buffer that's already freed. |
| 11267 | Solution: When freeing a buffer remove it from any channel. |
| 11268 | Files: src/buffer.c, src/channel.c, src/proto/channel.pro |
| 11269 | |
| 11270 | Patch 7.4.1829 (after 7.4.1828) |
| 11271 | Problem: No message on channel log when buffer was freed. |
| 11272 | Solution: Log a message. |
| 11273 | Files: src/channel.c |
| 11274 | |
| 11275 | Patch 7.4.1830 |
| 11276 | Problem: non-antialiased misnamed. |
| 11277 | Solution: Use NONANTIALIASED and NONANTIALIASED_QUALITY. (Kim Brouer, |
| 11278 | closes #793) |
| 11279 | Files: src/os_mswin.c, runtime/doc/options.txt |
| 11280 | |
| 11281 | Patch 7.4.1831 |
| 11282 | Problem: When timer_stop() is called with a string there is no proper error |
| 11283 | message. |
| 11284 | Solution: Require getting a number. (Bjorn Linse) |
| 11285 | Files: src/eval.c |
| 11286 | |
| 11287 | Patch 7.4.1832 |
| 11288 | Problem: Memory leak in debug commands. |
| 11289 | Solution: Free memory before overwriting the pointer. (hint by Justin Keyes) |
| 11290 | Files: src/ex_cmds2.c |
| 11291 | |
| 11292 | Patch 7.4.1833 |
| 11293 | Problem: Cannot use an Ex command for 'keywordprg'. |
| 11294 | Solution: Accept an Ex command. (Nelo-Thara Wallus) |
| 11295 | Files: src/normal.c, runtime/doc/options.txt |
| 11296 | |
| 11297 | Patch 7.4.1834 |
| 11298 | Problem: Possible crash when conceal is active. |
| 11299 | Solution: Check for the screen to be valid when redrawing a line. |
| 11300 | Files: src/screen.c |
| 11301 | |
| 11302 | Patch 7.4.1835 |
| 11303 | Problem: When splitting and closing a window the status height changes. |
| 11304 | Solution: Compute the frame height correctly. (Hirohito Higashi) |
| 11305 | Files: src/window.c, src/testdir/test_alot.vim, |
| 11306 | src/testdir/test_window_cmd.vim |
| 11307 | |
| 11308 | Patch 7.4.1836 |
| 11309 | Problem: When using a partial on a dictionary it always gets bound to that |
| 11310 | dictionary. |
| 11311 | Solution: Make a difference between binding a function to a dictionary |
| 11312 | explicitly or automatically. |
| 11313 | Files: src/structs.h, src/eval.c, src/testdir/test_partial.vim, |
| 11314 | runtime/doc/eval.txt |
| 11315 | |
| 11316 | Patch 7.4.1837 |
| 11317 | Problem: The BufUnload event is triggered twice, when :bunload is used with |
| 11318 | `bufhidden` set to `unload` or `delete`. |
| 11319 | Solution: Do not trigger the event when ml_mfp is NULL. (Hirohito Higashi) |
| 11320 | Files: src/buffer.c, src/testdir/test_autocmd.vim |
| 11321 | |
| 11322 | Patch 7.4.1838 |
| 11323 | Problem: Functions specifically for testing do not sort together. |
| 11324 | Solution: Rename garbagecollect_for_testing() to test_garbagecollect_now(). |
| 11325 | Add test_null_list(), test_null_dict(), etc. |
| 11326 | Files: src/eval.c, src/testdir/test_expr.vim, |
| 11327 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 11328 | |
| 11329 | Patch 7.4.1839 |
| 11330 | Problem: Cannot get the items stored in a partial. |
| 11331 | Solution: Support using get() on a partial. |
| 11332 | Files: src/eval.c, src/testdir/test_partial.vim, runtime/doc/eval.txt |
| 11333 | |
| 11334 | Patch 7.4.1840 |
| 11335 | Problem: When using packages an "after" directory cannot be used. |
| 11336 | Solution: Add the "after" directory of the package to 'runtimepath' if it |
| 11337 | exists. |
| 11338 | Files: src/ex_cmds2.c, src/testdir/test_packadd.vim |
| 11339 | |
| 11340 | Patch 7.4.1841 |
| 11341 | Problem: The code to reallocate the buffer used for quickfix is repeated. |
| 11342 | Solution: Move the code to a function. (Yegappan Lakshmanan, closes #831) |
| 11343 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 11344 | |
| 11345 | Patch 7.4.1842 (after 7.4.1839) |
| 11346 | Problem: get() works for Partial but not for Funcref. |
| 11347 | Solution: Accept Funcref. Also return the function itself. (Nikolai Pavlov) |
| 11348 | Files: src/eval.c, src/testdir/test_partial.vim, runtime/doc/eval.txt |
| 11349 | |
| 11350 | Patch 7.4.1843 |
| 11351 | Problem: Tests involving Python are flaky. |
| 11352 | Solution: Set the pt_auto field. Add tests. (Nikolai Pavlov) |
| 11353 | Files: runtime/doc/if_pyth.txt, src/if_py_both.h, src/testdir/test86.in, |
| 11354 | src/testdir/test86.ok, src/testdir/test87.in, |
| 11355 | src/testdir/test87.ok |
| 11356 | |
| 11357 | Patch 7.4.1844 |
| 11358 | Problem: Using old function name in comment. More functions should start |
| 11359 | with test_. |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11360 | Solution: Rename function in comment. (Hirohito Higashi) Rename |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11361 | disable_char_avail_for_testing() to test_disable_char_avail(). |
| 11362 | And alloc_fail() to test_alloc_fail(). |
| 11363 | Files: src/eval.c, src/getchar.c, src/testdir/runtest.vim, |
| 11364 | src/testdir/test_cursor_func.vim, src/testdir/test_quickfix.vim, |
| 11365 | runtime/doc/eval.txt |
| 11366 | |
| 11367 | Patch 7.4.1845 |
| 11368 | Problem: Mentioning NetBeans when reading from channel. (Ramel Eshed) |
| 11369 | Solution: Make the text more generic. |
| 11370 | Files: src/channel.c |
| 11371 | |
| 11372 | Patch 7.4.1846 |
| 11373 | Problem: Ubsan detects a multiplication overflow. |
| 11374 | Solution: Don't use orig_mouse_time when it's zero. (Dominique Pelle) |
| 11375 | Files: src/term.c |
| 11376 | |
| 11377 | Patch 7.4.1847 |
| 11378 | Problem: Getting an item from a NULL dict crashes. Setting a register to a |
| 11379 | NULL list crashes. (Nikolai Pavlov, issue #768) Comparing a NULL |
| 11380 | dict with a NULL dict fails. |
| 11381 | Solution: Properly check for NULL. |
| 11382 | Files: src/eval.c, src/testdir/test_expr.vim |
| 11383 | |
| 11384 | Patch 7.4.1848 |
| 11385 | Problem: Can't build with Strawberry Perl 5.24. |
| 11386 | Solution: Define S_SvREFCNT_dec() if needed. (Damien, Ken Takata) |
| 11387 | Files: src/if_perl.xs |
| 11388 | |
| 11389 | Patch 7.4.1849 |
| 11390 | Problem: Still trying to read from channel that is going to be closed. |
| 11391 | (Ramel Eshed) |
| 11392 | Solution: Check if ch_to_be_closed is set. |
| 11393 | Files: src/channel.c |
| 11394 | |
| 11395 | Patch 7.4.1850 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 11396 | Problem: GUI freezes when using a job. (Shougo Matsu) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11397 | Solution: Unregister the channel when there is an input error. |
| 11398 | Files: src/channel.c |
| 11399 | |
| 11400 | Patch 7.4.1851 |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11401 | Problem: test_syn_attr fails when using the GUI. (Dominique Pelle) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11402 | Solution: Escape the font name properly. |
| 11403 | Files: src/testdir/test_syn_attr.vim |
| 11404 | |
| 11405 | Patch 7.4.1852 |
| 11406 | Problem: Unix: Cannot run all tests with the GUI. |
| 11407 | Solution: Add the "testgui" target. |
| 11408 | Files: src/Makefile, src/testdir/Makefile |
| 11409 | |
| 11410 | Patch 7.4.1853 |
| 11411 | Problem: Crash when job and channel are in the same dict while using |
| 11412 | partials. (Luc Hermitte) |
| 11413 | Solution: Do not decrement the channel reference count too early. |
| 11414 | Files: src/channel.c |
| 11415 | |
| 11416 | Patch 7.4.1854 |
| 11417 | Problem: When setting 'termguicolors' the Ignore highlighting doesn't work. |
| 11418 | (Charles Campbell) |
| 11419 | 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] | 11420 | and no colors are specified, fall back to black and white. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11421 | Files: src/syntax.c |
| 11422 | |
| 11423 | Patch 7.4.1855 |
| 11424 | Problem: Valgrind reports memory leak for job that is not freed. |
| 11425 | Solution: Free all jobs on exit. Add test for failing job. |
| 11426 | Files: src/channel.c, src/misc2.c, src/proto/channel.pro, |
| 11427 | src/testdir/test_partial.vim |
| 11428 | |
| 11429 | Patch 7.4.1856 (after 7.4.1855) |
| 11430 | Problem: failing job test fails on MS-Windows. |
| 11431 | Solution: Expect "fail" status instead of "dead". |
| 11432 | Files: src/testdir/test_partial.vim |
| 11433 | |
| 11434 | Patch 7.4.1857 |
| 11435 | Problem: When a channel appends to a buffer that is 'nomodifiable' there is |
| 11436 | an error but appending is done anyway. |
| 11437 | Solution: Add the 'modifiable' option. Refuse to write to a 'nomodifiable' |
| 11438 | when the value is 1. |
| 11439 | Files: src/structs.h, src/channel.c, src/testdir/test_channel.vim, |
| 11440 | runtime/doc/channel.txt |
| 11441 | |
| 11442 | Patch 7.4.1858 |
| 11443 | Problem: When a channel writes to a buffer it doesn't find a buffer by the |
| 11444 | short name but re-uses it anyway. |
| 11445 | Solution: Find buffer also by the short name. |
| 11446 | Files: src/channel.c, src/buffer.c, src/vim.h |
| 11447 | |
| 11448 | Patch 7.4.1859 |
| 11449 | Problem: Cannot use a function reference for "exit_cb". |
| 11450 | Solution: Use get_callback(). (Yegappan Lakshmanan) |
| 11451 | Files: src/channel.c, src/structs.h |
| 11452 | |
| 11453 | Patch 7.4.1860 |
| 11454 | Problem: Using a partial for timer_start() may cause a crash. |
| 11455 | Solution: Set the copyID in timer objects. (Ozaki Kiichi) |
| 11456 | Files: src/testdir/test_timers.vim, src/eval.c, src/ex_cmds2.c, |
| 11457 | src/proto/ex_cmds2.pro |
| 11458 | |
| 11459 | Patch 7.4.1861 |
| 11460 | Problem: Compiler warnings with 64 bit compiler. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11461 | Solution: Change int to size_t. (Mike Williams) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11462 | Files: src/ex_cmds2.c |
| 11463 | |
| 11464 | Patch 7.4.1862 |
| 11465 | Problem: string() with repeated argument does not give a result usable by |
| 11466 | eval(). |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11467 | Solution: Refactor echo_string and tv2string(), moving the common part to |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11468 | echo_string_core(). (Ken Takata) |
| 11469 | Files: src/eval.c, src/testdir/test_viml.vim, src/testdir/test86.ok, |
| 11470 | src/testdir/test87.ok |
| 11471 | |
| 11472 | Patch 7.4.1863 |
| 11473 | Problem: Compiler warnings on Win64. |
| 11474 | Solution: Adjust types, add type casts. (Ken Takata) |
| 11475 | Files: src/if_mzsch.c, src/if_perl.xs, src/if_ruby.c, src/version.c |
| 11476 | |
| 11477 | Patch 7.4.1864 |
| 11478 | Problem: Python: encoding error with Python 2. |
| 11479 | Solution: Use "getcwdu" instead of "getcwd". (Ken Takata) |
| 11480 | Files: src/if_py_both.h |
| 11481 | |
| 11482 | Patch 7.4.1865 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11483 | Problem: Memory leaks in test49. (Dominique Pelle) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11484 | Solution: Use NULL instead of an empty string. |
| 11485 | Files: src/eval.c |
| 11486 | |
| 11487 | Patch 7.4.1866 |
| 11488 | Problem: Invalid memory access when exiting with EXITFREE defined. |
| 11489 | (Dominique Pelle) |
| 11490 | Solution: Set "really_exiting" and skip error messages. |
| 11491 | Files: src/misc2.c, src/eval.c |
| 11492 | |
| 11493 | Patch 7.4.1867 |
| 11494 | Problem: Memory leak in test_matchstrpos. |
| 11495 | Solution: Free the string before overwriting. (Yegappan Lakshmanan) |
| 11496 | Files: src/eval.c |
| 11497 | |
| 11498 | Patch 7.4.1868 |
| 11499 | Problem: Setting really_exiting causes memory leaks to be reported. |
| 11500 | Solution: Add the in_free_all_mem flag. |
| 11501 | Files: src/globals.h, src/misc2.c, src/eval.c |
| 11502 | |
| 11503 | Patch 7.4.1869 |
| 11504 | Problem: Can't build with old version of Perl. |
| 11505 | Solution: Define PERLIO_FUNCS_DECL. (Tom G. Christensen) |
| 11506 | Files: src/if_perl.xs |
| 11507 | |
| 11508 | Patch 7.4.1870 (after 7.4.1863) |
| 11509 | Problem: One more Win64 compiler warning. |
| 11510 | Solution: Change declared argument type. (Ken Takata) |
| 11511 | Files: src/if_mzsch.c |
| 11512 | |
| 11513 | Patch 7.4.1871 |
| 11514 | Problem: Appending to the quickfix list while the quickfix window is open |
| 11515 | is very slow. |
| 11516 | Solution: Do not delete all the lines, only append the new ones. Avoid |
| 11517 | using a window while updating the list. (closes #841) |
| 11518 | Files: src/quickfix.c |
| 11519 | |
| 11520 | Patch 7.4.1872 |
| 11521 | Problem: Still build problem with old version of Perl. |
| 11522 | Solution: Also define SvREFCNT_inc_void_NN if needed. (Tom G. Christensen) |
| 11523 | Files: src/if_perl.xs |
| 11524 | |
| 11525 | Patch 7.4.1873 |
| 11526 | Problem: When a callback adds a timer the GUI doesn't use it until later. |
| 11527 | (Ramel Eshed) |
| 11528 | Solution: Return early if a callback adds a timer. |
| 11529 | Files: src/ex_cmds2.c, src/gui_gtk_x11.c, src/gui_w32.c, src/gui_x11.c, |
| 11530 | src/globals.h |
| 11531 | |
| 11532 | Patch 7.4.1874 |
| 11533 | Problem: Unused variable in Win32 code. |
| 11534 | Solution: Remove it. (Mike Williams) |
| 11535 | Files: src/gui_w32.c |
| 11536 | |
| 11537 | Patch 7.4.1875 |
| 11538 | Problem: Comparing functions and partials doesn't work well. |
| 11539 | Solution: Add tests. (Nikolai Pavlov) Compare the dict and arguments in the |
| 11540 | partial. (closes #813) |
| 11541 | Files: src/eval.c, src/testdir/test_partial.vim |
| 11542 | |
| 11543 | Patch 7.4.1876 |
| 11544 | Problem: Typing "k" at the hit-enter prompt has no effect. |
| 11545 | Solution: Don't assume recursive use of the prompt if a character was typed. |
| 11546 | (Hirohito Higashi) |
| 11547 | Files: src/message.c |
| 11548 | |
| 11549 | Patch 7.4.1877 |
| 11550 | Problem: No test for invoking "close_cb" when writing to a buffer. |
| 11551 | Solution: Add using close_cb to a test case. |
| 11552 | Files: src/testdir/test_channel.vim |
| 11553 | |
| 11554 | Patch 7.4.1878 |
| 11555 | Problem: Whether a job has exited isn't detected until a character is |
| 11556 | typed. After calling exit_cb the cursor is in the wrong place. |
| 11557 | 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] | 11558 | pending job. Update the screen if needed after calling exit_cb. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11559 | Files: src/os_unix.c, src/channel.c, src/proto/channel.pro |
| 11560 | |
| 11561 | Patch 7.4.1879 (after 7.4.1877) |
| 11562 | Problem: Channel test is flaky. |
| 11563 | Solution: Wait for close_cb to be invoked. |
| 11564 | Files: src/testdir/test_channel.vim |
| 11565 | |
| 11566 | Patch 7.4.1880 |
| 11567 | Problem: MS-Windows console build defaults to not having +channel. |
| 11568 | Solution: Include the channel feature if building with huge features. |
| 11569 | Files: src/Make_mvc.mak |
| 11570 | |
| 11571 | Patch 7.4.1881 |
| 11572 | Problem: Appending to a long quickfix list is slow. |
| 11573 | Solution: Add qf_last. |
| 11574 | Files: src/quickfix.c |
| 11575 | |
| 11576 | Patch 7.4.1882 |
| 11577 | Problem: Check for line break at end of line wrong. (Dominique Pelle) |
| 11578 | Solution: Correct the logic. |
| 11579 | Files: src/quickfix.c |
| 11580 | |
| 11581 | Patch 7.4.1883 |
| 11582 | Problem: Cppcheck found 2 incorrect printf formats. |
| 11583 | Solution: Use %ld and %lx. (Dominique Pelle) |
| 11584 | Files: src/VisVim/Commands.cpp, src/gui_mac.c |
| 11585 | |
| 11586 | Patch 7.4.1884 |
| 11587 | Problem: Updating marks in a quickfix list is very slow when the list is |
| 11588 | long. |
| 11589 | Solution: Only update marks if the buffer has a quickfix entry. |
| 11590 | Files: src/structs.h, src/quickfix.c |
| 11591 | |
| 11592 | Patch 7.4.1885 |
| 11593 | Problem: MinGW console build defaults to not having +channel. |
| 11594 | Solution: Include the channel feature if building with huge features. (Ken |
| 11595 | Takata) |
| 11596 | Files: src/Make_cyg_ming.mak |
| 11597 | |
| 11598 | Patch 7.4.1886 |
| 11599 | Problem: When waiting for a character is interrupted by receiving channel |
| 11600 | data and the first character of a mapping was typed, the mapping |
| 11601 | times out. (Ramel Eshed) |
| 11602 | Solution: When dealing with channel data don't return from mch_inchar(). |
| 11603 | Files: src/getchar.c, src/proto/getchar.pro, src/os_unix.c |
| 11604 | |
| 11605 | Patch 7.4.1887 |
| 11606 | Problem: When receiving channel data 'updatetime' is not respected. |
| 11607 | Solution: Recompute the waiting time after being interrupted. |
| 11608 | Files: src/os_unix.c |
| 11609 | |
| 11610 | Patch 7.4.1888 |
| 11611 | Problem: Wrong computation of remaining wait time in RealWaitForChar() |
| 11612 | Solution: Remember the original waiting time. |
| 11613 | Files: src/os_unix.c |
| 11614 | |
| 11615 | Patch 7.4.1889 |
| 11616 | Problem: When umask is set to 0177 Vim can't create temp files. (Lcd) |
| 11617 | Solution: Also correct umask when using mkdtemp(). |
| 11618 | Files: src/fileio.c |
| 11619 | |
| 11620 | Patch 7.4.1890 |
| 11621 | Problem: GUI: When channel data is received the cursor blinking is |
| 11622 | interrupted. (Ramel Eshed) |
| 11623 | Solution: Don't update the cursor when it is blinking. |
| 11624 | Files: src/screen.c, src/gui_gtk_x11.c, src/proto/gui_gtk_x11.pro, |
| 11625 | src/gui_mac.c, src/proto/gui_mac.pro, src/gui_photon.c, |
| 11626 | src/proto/gui_photon.pro, src/gui_w32.c, src/proto/gui_w32.pro, |
| 11627 | src/gui_x11.c, src/proto/gui_x11.pro |
| 11628 | |
| 11629 | Patch 7.4.1891 |
| 11630 | Problem: Channel reading very long lines is slow. |
| 11631 | Solution: Collapse multiple buffers until a NL is found. |
| 11632 | Files: src/channel.c, src/netbeans.c, src/proto/channel.pro, |
| 11633 | src/structs.h |
| 11634 | |
| 11635 | Patch 7.4.1892 |
| 11636 | Problem: balloon eval only gets the window number, not the ID. |
| 11637 | Solution: Add v:beval_winid. |
| 11638 | Files: src/eval.c, src/gui_beval.c, src/vim.h |
| 11639 | |
| 11640 | Patch 7.4.1893 |
| 11641 | Problem: Cannot easily get the window ID for a buffer. |
| 11642 | Solution: Add bufwinid(). |
| 11643 | Files: src/eval.c, runtime/doc/eval.txt |
| 11644 | |
| 11645 | Patch 7.4.1894 |
| 11646 | Problem: Cannot get the window ID for a mouse click. |
| 11647 | Solution: Add v:mouse_winid. |
| 11648 | Files: src/eval.c, src/vim.h, runtime/doc/eval.txt |
| 11649 | |
| 11650 | Patch 7.4.1895 |
| 11651 | Problem: Cannot use a window ID where a window number is expected. |
| 11652 | Solution: Add LOWEST_WIN_ID, so that the window ID can be used where a |
| 11653 | number is expected. |
| 11654 | Files: src/window.c, src/eval.c, src/vim.h, runtime/doc/eval.txt, |
| 11655 | src/testdir/test_window_id.vim |
| 11656 | |
| 11657 | Patch 7.4.1896 |
| 11658 | Problem: Invoking mark_adjust() when adding a new line below the last line |
| 11659 | is pointless. |
| 11660 | Solution: Skip calling mark_adjust() when appending below the last line. |
| 11661 | Files: src/misc1.c, src/ops.c |
| 11662 | |
| 11663 | Patch 7.4.1897 |
| 11664 | Problem: Various typos, long lines and style mistakes. |
| 11665 | Solution: Fix the typos, wrap lines, improve style. |
| 11666 | Files: src/buffer.c, src/ex_docmd.c, src/getchar.c, src/option.c, |
| 11667 | src/main.aap, src/testdir/README.txt, |
| 11668 | src/testdir/test_reltime.vim, src/testdir/test_tagjump.vim, |
| 11669 | src/INSTALL, src/config.aap.in, src/if_mzsch.c |
| 11670 | |
| 11671 | Patch 7.4.1898 |
| 11672 | Problem: User commands don't support modifiers. |
| 11673 | Solution: Add the <mods> item. (Yegappan Lakshmanan, closes #829) |
| 11674 | Files: runtime/doc/map.txt, src/ex_docmd.c, src/testdir/Make_all.mak, |
| 11675 | src/testdir/test_usercommands.vim |
| 11676 | |
| 11677 | Patch 7.4.1899 |
| 11678 | Problem: GTK 3: cursor blinking doesn't work well. |
| 11679 | Solution: Instead of gui_gtk_window_clear() use gui_mch_clear_block(). |
| 11680 | (Kazunobu Kuriyama) |
| 11681 | Files: src/gui_gtk_x11.c |
| 11682 | |
| 11683 | Patch 7.4.1900 |
| 11684 | Problem: Using CTRL-] in the help on "{address}." doesn't work. |
| 11685 | Solution: Recognize an item in {}. (Hirohito Higashi, closes #814) |
| 11686 | Files: src/ex_cmds.c, src/testdir/test_help_tagjump.vim |
| 11687 | |
| 11688 | Patch 7.4.1901 |
| 11689 | Problem: Win32: the "Disabled" menu items would appear enabled. |
| 11690 | Solution: Use submenu_id if there is a parent. (Shane Harper, closes #834) |
| 11691 | Files: src/gui_w32.c |
| 11692 | |
| 11693 | Patch 7.4.1902 |
| 11694 | Problem: No test for collapsing buffers for a channel. Some text is lost. |
| 11695 | Solution: Add a simple test. Set rq_buflen correctly. |
| 11696 | Files: src/channel.c, src/testdir/test_channel.vim, |
| 11697 | src/testdir/test_channel_pipe.py |
| 11698 | |
| 11699 | Patch 7.4.1903 |
| 11700 | Problem: When writing viminfo merging current history with history in |
| 11701 | viminfo may drop recent history entries. |
| 11702 | Solution: Add new format for viminfo lines, use it for history entries. Use |
| 11703 | a timestamp for ordering the entries. Add test_settime(). |
| 11704 | Add the viminfo version. Does not do merging on timestamp yet. |
| 11705 | Files: src/eval.c, src/ex_getln.c, src/ex_cmds.c, src/structs.h, |
| 11706 | src/globals.h, src/proto/ex_cmds.pro, src/proto/ex_getln.pro, |
| 11707 | src/testdir/test_viminfo.vim |
| 11708 | |
| 11709 | Patch 7.4.1904 (after 7.4.1903) |
| 11710 | Problem: Build fails. |
| 11711 | Solution: Add missing changes. |
| 11712 | Files: src/vim.h |
| 11713 | |
| 11714 | Patch 7.4.1905 (after 7.4.1903) |
| 11715 | Problem: Some compilers can't handle a double semicolon. |
| 11716 | Solution: Remove one semicolon. |
| 11717 | Files: src/ex_cmds.c |
| 11718 | |
| 11719 | Patch 7.4.1906 |
| 11720 | Problem: Collapsing channel buffers and searching for NL does not work |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11721 | properly. (Xavier de Gaye, Ramel Eshed) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11722 | Solution: Do not assume the buffer contains a NUL or not. Change NUL bytes |
| 11723 | to NL to avoid the string is truncated. |
| 11724 | Files: src/channel.c, src/netbeans.c, src/proto/channel.pro |
| 11725 | |
| 11726 | Patch 7.4.1907 |
| 11727 | Problem: Warnings from 64 bit compiler. |
| 11728 | Solution: Change type to size_t. (Mike Williams) |
| 11729 | Files: src/ex_cmds.c |
| 11730 | |
| 11731 | Patch 7.4.1908 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11732 | Problem: Netbeans uses uninitialized pointer and freed memory. |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11733 | Solution: Set "buffer" at the right place (hint by Ken Takata) |
| 11734 | Files: src/netbeans.c |
| 11735 | |
| 11736 | Patch 7.4.1909 |
| 11737 | Problem: Doubled semicolons. |
| 11738 | Solution: Reduce to one. (Dominique Pelle) |
| 11739 | Files: src/dosinst.c, src/fold.c, src/gui_gtk_x11.c, src/gui_w32.c, |
| 11740 | src/main.c, src/misc2.c |
| 11741 | |
| 11742 | Patch 7.4.1910 |
| 11743 | Problem: Tests using external command to delete directory. |
| 11744 | Solution: Use delete(). |
| 11745 | Files: src/testdir/test17.in, src/testdir/test73.in, |
| 11746 | src/testdir/test_getcwd.in |
| 11747 | |
| 11748 | Patch 7.4.1911 |
| 11749 | Problem: Recent history lines may be lost when exiting Vim. |
| 11750 | Solution: Merge history using the timestamp. |
| 11751 | Files: src/ex_getln.c, src/ex_cmds.c, src/vim.h, src/proto/ex_getln.pro, |
| 11752 | src/testdir/test_viminfo.vim |
| 11753 | |
| 11754 | Patch 7.4.1912 |
| 11755 | Problem: No test for using setqflist() on an older quickfix list. |
| 11756 | Solution: Add a couple of tests. |
| 11757 | Files: src/testdir/test_quickfix.vim |
| 11758 | |
| 11759 | Patch 7.4.1913 |
| 11760 | Problem: When ":doautocmd" is used modelines are used even when no |
| 11761 | autocommands were executed. (Daniel Hahler) |
| 11762 | Solution: Skip processing modelines. (closes #854) |
| 11763 | Files: src/fileio.c, src/ex_cmds.c, src/ex_docmd.c, src/proto/fileio.pro |
| 11764 | |
| 11765 | Patch 7.4.1914 |
| 11766 | Problem: Executing autocommands while using the signal stack has a high |
| 11767 | chance of crashing Vim. |
| 11768 | Solution: Don't invoke autocommands when on the signal stack. |
| 11769 | Files: src/os_unix.c |
| 11770 | |
| 11771 | Patch 7.4.1915 |
| 11772 | Problem: The effect of the PopupMenu autocommand isn't directly visible. |
| 11773 | Solution: Call gui_update_menus() before displaying the popup menu. (Shane |
| 11774 | Harper, closs #855) |
| 11775 | Files: src/menu.c |
| 11776 | |
| 11777 | Patch 7.4.1916 (after 7.4.1906) |
| 11778 | Problem: No proper test for what 7.4.1906 fixes. |
| 11779 | Solution: Add a test for reading many lines. |
| 11780 | Files: src/testdir/test_channel.vim |
| 11781 | |
| 11782 | Patch 7.4.1917 |
| 11783 | Problem: History lines read from viminfo in different encoding than when |
| 11784 | writing are not converted. |
| 11785 | Solution: Convert the history lines. |
| 11786 | Files: src/ex_cmds.c, src/testdir/test_viminfo.vim |
| 11787 | |
| 11788 | Patch 7.4.1918 |
| 11789 | Problem: Not enough testing for parsing viminfo lines. |
| 11790 | Solution: Add test with viminfo lines in bad syntax. Fix memory leak. |
| 11791 | Files: src/ex_cmds.c, src/ex_getln.c, src/testdir/test_viminfo.vim |
| 11792 | |
| 11793 | Patch 7.4.1919 |
| 11794 | Problem: Register contents is not merged when writing viminfo. |
| 11795 | Solution: Use timestamps for register contents. |
| 11796 | Files: src/ops.c, src/ex_getln.c, src/ex_cmds.c, src/proto/ex_cmds.pro, |
| 11797 | src/proto/ex_getln.pro, src/proto/ops.pro, src/vim.h |
| 11798 | |
| 11799 | Patch 7.4.1920 (after 7.4.1919) |
| 11800 | Problem: Missing test changes. |
| 11801 | Solution: Update viminfo test. |
| 11802 | Files: src/testdir/test_viminfo.vim |
| 11803 | |
| 11804 | Patch 7.4.1921 (after 7.4.1919) |
| 11805 | Problem: vim_time() not included when needed. |
| 11806 | Solution: Adjust #ifdef. |
| 11807 | Files: src/ex_cmds.c |
| 11808 | |
| 11809 | Patch 7.4.1922 |
| 11810 | Problem: Ruby 2.4.0 unifies Fixnum and Bignum into Integer. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 11811 | Solution: Use rb_cInteger. (Weiyong Mao) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11812 | Files: src/if_ruby.c |
| 11813 | |
| 11814 | Patch 7.4.1923 |
| 11815 | Problem: Command line editing is not tested much. |
| 11816 | Solution: Add tests for expanding the file name and 'wildmenu'. |
| 11817 | Files: src/testdir/test_cmdline.vim, src/testdir/Make_all.mak |
| 11818 | |
| 11819 | Patch 7.4.1924 |
| 11820 | Problem: Missing "void" for functions without argument. |
| 11821 | Solution: Add "void". (Hirohito Higashi) |
| 11822 | Files: src/channel.c, src/edit.c, src/ex_cmds2.c, src/ops.c, src/screen.c |
| 11823 | |
| 11824 | Patch 7.4.1925 |
| 11825 | Problem: Viminfo does not merge file marks properly. |
| 11826 | Solution: Use a timestamp. Add the :clearjumps command. |
| 11827 | Files: src/mark.c, src/ex_cmds.c, src/ex_docmd.c, src/proto/mark.pro, |
| 11828 | src/structs.h, src/vim.h, src/ex_cmds.h, |
| 11829 | src/testdir/test_viminfo.vim |
| 11830 | |
| 11831 | Patch 7.4.1926 |
| 11832 | Problem: Possible crash with many history items. |
| 11833 | Solution: Avoid the index going past the last item. |
| 11834 | Files: src/ex_getln.c |
| 11835 | |
| 11836 | Patch 7.4.1927 |
| 11837 | Problem: Compiler warning for signed/unsigned. |
| 11838 | Solution: Add type cast. |
| 11839 | Files: src/if_mzsch.c |
| 11840 | |
| 11841 | Patch 7.4.1928 |
| 11842 | Problem: Overwriting pointer argument. |
| 11843 | Solution: Assign to what it points to. (Dominique Pelle) |
| 11844 | Files: src/fileio.c |
| 11845 | |
| 11846 | Patch 7.4.1929 |
| 11847 | Problem: Inconsistent indenting and weird name. |
| 11848 | Solution: Fix indent, make name all upper case. (Ken Takata) |
| 11849 | Files: src/if_ruby.c |
| 11850 | |
| 11851 | Patch 7.4.1930 |
| 11852 | Problem: Can't build without +spell but with +quickfix. (Charles) |
| 11853 | Solution: Add better #ifdef around ml_append_buf(). (closes #864) |
| 11854 | Files: src/memline.c |
| 11855 | |
| 11856 | Patch 7.4.1931 |
| 11857 | Problem: Using both old and new style file mark lines from viminfo. |
| 11858 | Solution: Skip the old style lines if the viminfo file was written with a |
| 11859 | Vim version that supports the new style. |
| 11860 | Files: src/ex_cmds.c |
| 11861 | |
| 11862 | Patch 7.4.1932 |
| 11863 | Problem: When writing viminfo the jumplist is not merged with the one in |
| 11864 | the viminfo file. |
| 11865 | Solution: Merge based on timestamp. |
| 11866 | Files: src/mark.c, src/testdir/test_viminfo.vim |
| 11867 | |
| 11868 | Patch 7.4.1933 |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 11869 | Problem: Compiler warning about uninitialized variable. (Yegappan) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 11870 | Solution: Give it a dummy value. |
| 11871 | Files: src/ex_getln.c |
| 11872 | |
| 11873 | Patch 7.4.1934 |
| 11874 | Problem: New style tests not executed with MinGW compiler. |
| 11875 | Solution: Add new style test support. (Yegappan Lakshmanan) |
| 11876 | Files: src/testdir/Make_ming.mak |
| 11877 | |
| 11878 | Patch 7.4.1935 |
| 11879 | Problem: When using the GUI search/replace a second match right after the |
| 11880 | replacement is skipped. |
| 11881 | Solution: Add the SEARCH_START flag. (Mleddy) |
| 11882 | Files: src/gui.c |
| 11883 | |
| 11884 | Patch 7.4.1936 |
| 11885 | Problem: Off-by-one error in bounds check. (Coverity) |
| 11886 | Solution: Check register number properly. |
| 11887 | Files: src/ops.c |
| 11888 | |
| 11889 | Patch 7.4.1937 |
| 11890 | Problem: No test for directory stack in quickfix. |
| 11891 | Solution: Add a test. (Yegappan Lakshmanan) |
| 11892 | Files: src/testdir/test_quickfix.vim |
| 11893 | |
| 11894 | Patch 7.4.1938 |
| 11895 | Problem: When writing viminfo numbered marks were duplicated. |
| 11896 | Solution: Check for duplicates between current numbered marks and the ones |
| 11897 | read from viminfo. |
| 11898 | Files: src/mark.c |
| 11899 | |
| 11900 | Patch 7.4.1939 |
| 11901 | Problem: Memory access error when reading viminfo. (Dominique Pelle) |
| 11902 | Solution: Correct index in jumplist when at the end. |
| 11903 | Files: src/mark.c, src/testdir/test_viminfo.vim |
| 11904 | |
| 11905 | Patch 7.4.1940 |
| 11906 | Problem: "gd" hangs in some situations. (Eric Biggers) |
| 11907 | Solution: Remove the SEARCH_START flag when looping. Add a test. |
| 11908 | Files: src/normal.c, src/testdir/test_goto.vim |
| 11909 | |
| 11910 | Patch 7.4.1941 |
| 11911 | Problem: Not all quickfix tests are also done with the location lists. |
| 11912 | Solution: Test more quickfix code. Use user commands instead of "exe". |
| 11913 | (Yegappan Lakshmanan) |
| 11914 | Files: src/testdir/test_quickfix.vim |
| 11915 | |
| 11916 | Patch 7.4.1942 |
| 11917 | Problem: Background is not drawn properly when 'termguicolors' is set. |
| 11918 | Solution: Check cterm_normal_bg_color. (Jacob Niehus, closes #805) |
| 11919 | Files: src/screen.c |
| 11920 | |
| 11921 | Patch 7.4.1943 |
| 11922 | Problem: Coverity warns for unreachable code. |
| 11923 | Solution: Remove the code that won't do anything. |
| 11924 | Files: src/mark.c |
| 11925 | |
| 11926 | Patch 7.4.1944 |
| 11927 | Problem: Win32: Cannot compile with XPM feature using VC2015 |
| 11928 | Solution: Add XPM libraries compiled with VC2015, and enable to build |
| 11929 | gvim.exe which supports XPM using VC2015. (Ken Takata) |
| 11930 | Files: src/Make_mvc.mak, src/xpm/x64/lib-vc14/libXpm.lib, |
| 11931 | src/xpm/x86/lib-vc14/libXpm.lib |
| 11932 | |
| 11933 | Patch 7.4.1945 |
| 11934 | Problem: The Man plugin doesn't work that well. |
| 11935 | Solution: Use "g:ft_man_open_mode" to be able open man pages in vert split |
| 11936 | or separate tab. Set nomodifiable for buffer with man content. Add |
| 11937 | a test. (Andrey Starodubtsev, closes #873) |
| 11938 | Files: runtime/ftplugin/man.vim, src/testdir/test_man.vim, |
| 11939 | src/testdir/Make_all.mak |
| 11940 | |
| 11941 | Patch 7.4.1946 (after 7.4.1944) |
| 11942 | Problem: File list does not include new XPM libraries. |
| 11943 | Solution: Add the file list entries. |
| 11944 | Files: Filelist |
| 11945 | |
| 11946 | Patch 7.4.1947 |
| 11947 | Problem: Viminfo continuation line with wrong length isn't skipped. (Marius |
| 11948 | Gedminas) |
| 11949 | Solution: Skip a line when encountering an error, but not two lines. |
| 11950 | Files: src/ex_cmds.c |
| 11951 | |
| 11952 | Patch 7.4.1948 |
| 11953 | Problem: Using Ctrl-A with double-byte encoding may result in garbled text. |
| 11954 | Solution: Skip to the start of a character. (Hirohito Higashi) |
| 11955 | Files: src/ops.c |
| 11956 | |
| 11957 | Patch 7.4.1949 |
| 11958 | Problem: Minor problems with the quickfix code. |
| 11959 | Solution: Fix the problems. (Yegappan Lakshmanan) |
| 11960 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 11961 | |
| 11962 | Patch 7.4.1950 |
| 11963 | Problem: Quickfix long lines test not executed for buffer. |
| 11964 | Solution: Call the function to test long lines. (Yegappan Lakshmanan) |
| 11965 | Files: src/testdir/test_quickfix.vim |
| 11966 | |
| 11967 | Patch 7.4.1951 |
| 11968 | Problem: Ruby test is old style. |
| 11969 | Solution: Convert to a new style test. (Ken Takata) |
| 11970 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_ruby.in, |
| 11971 | src/testdir/test_ruby.ok, src/testdir/test_ruby.vim |
| 11972 | |
| 11973 | Patch 7.4.1952 |
| 11974 | Problem: Cscope interface does not support finding assignments. |
| 11975 | Solution: Add the "a" command. (ppettina, closes #882) |
| 11976 | Files: runtime/doc/if_cscop.txt, src/if_cscope.c |
| 11977 | |
| 11978 | Patch 7.4.1953 |
| 11979 | Problem: Not all parts of the quickfix code are tested. |
| 11980 | Solution: Add more tests. (Yegappan Lakshmanan) |
| 11981 | Files: src/testdir/samples/quickfix.txt, |
| 11982 | src/testdir/test_quickfix.vim |
| 11983 | |
| 11984 | Patch 7.4.1954 (after 7.4.1948) |
| 11985 | Problem: No test for what 7.4.1948 fixes. |
| 11986 | Solution: Add a test. (Hirohito Higashi, closes #880) |
| 11987 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 11988 | src/testdir/test_increment_dbcs.vim |
| 11989 | |
| 11990 | Patch 7.4.1955 |
| 11991 | Problem: Using 32-bit Perl with 64-bit time_t causes memory corruption. |
| 11992 | (Christian Brabandt) |
| 11993 | Solution: Use time_T instead of time_t for global variables. (Ken Takata) |
| 11994 | Files: src/ex_cmds.c, src/globals.h, src/misc2.c, src/proto/ex_cmds.pro, |
| 11995 | src/proto/misc2.pro, src/structs.h, src/vim.h |
| 11996 | |
| 11997 | Patch 7.4.1956 |
| 11998 | Problem: When using CTRL-W f and pressing "q" at the ATTENTION dialog the |
| 11999 | newly opened window is not closed. |
| 12000 | Solution: Close the window and go back to the original one. (Norio Takagi, |
| 12001 | Hirohito Higashi) |
| 12002 | Files: src/window.c, src/testdir/test_window_cmd.vim |
| 12003 | |
| 12004 | Patch 7.4.1957 |
| 12005 | Problem: Perl interface has obsolete workaround. |
| 12006 | Solution: Remove the workaround added by 7.3.623. (Ken Takata) |
| 12007 | Files: src/if_perl.xs |
| 12008 | |
| 12009 | Patch 7.4.1958 |
| 12010 | Problem: Perl interface preprocessor statements not nicely indented. |
| 12011 | Solution: Improve the indenting. (Ken Takata) |
| 12012 | Files: src/if_perl.xs |
| 12013 | |
| 12014 | Patch 7.4.1959 |
| 12015 | Problem: Crash when running test_channel.vim on Windows. |
| 12016 | Solution: Check for NULL pointer result from FormatMessage(). (Christian |
| 12017 | Brabandt) |
| 12018 | Files: src/channel.c |
| 12019 | |
| 12020 | Patch 7.4.1960 |
| 12021 | Problem: Unicode standard 9 was released. |
| 12022 | Solution: Update the character property tables. (Christian Brabandt) |
| 12023 | Files: src/mbyte.c |
| 12024 | |
| 12025 | Patch 7.4.1961 |
| 12026 | Problem: When 'insertmode' is reset while doing completion the popup menu |
| 12027 | remains even though Vim is in Normal mode. |
| 12028 | Solution: Ignore stop_insert_mode when the popup menu is visible. Don't set |
| 12029 | stop_insert_mode when 'insertmode' was already off. (Christian |
| 12030 | Brabandt) |
| 12031 | Files: src/edit.c, src/option.c, src/Makefile, src/testdir/test_alot.vim, |
| 12032 | src/testdir/test_popup.vim |
| 12033 | |
| 12034 | Patch 7.4.1962 |
| 12035 | Problem: Two test files for increment/decrement. |
| 12036 | Solution: Move the old style test into the new style test. (Hirohito |
| 12037 | Higashi, closes #881) |
| 12038 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/main.aap, |
| 12039 | src/testdir/test35.in, src/testdir/test35.ok, |
| 12040 | src/testdir/test_increment.vim |
| 12041 | |
| 12042 | Patch 7.4.1963 |
| 12043 | Problem: Running Win32 Vim in mintty does not work. |
| 12044 | Solution: Detect mintty and give a helpful error message. (Ken Takata) |
| 12045 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak, src/iscygpty.c, |
| 12046 | src/iscygpty.h, src/main.c, Filelist |
| 12047 | |
| 12048 | Patch 7.4.1964 |
| 12049 | Problem: The quickfix init function is too big. |
| 12050 | Solution: Factor out parsing 'errorformat' to a separate function. (Yegappan |
| 12051 | Lakshmanan) |
| 12052 | Files: src/quickfix.c |
| 12053 | |
| 12054 | Patch 7.4.1965 |
| 12055 | Problem: When using a job in raw mode to append to a buffer garbage |
| 12056 | characters are added. |
| 12057 | Solution: Do not replace the trailing NUL with a NL. (Ozaki Kiichi) |
| 12058 | Files: src/channel.c, src/testdir/test_channel.vim |
| 12059 | |
| 12060 | Patch 7.4.1966 |
| 12061 | Problem: Coverity reports a resource leak. |
| 12062 | Solution: Close "fd" also when bailing out. |
| 12063 | Files: src/quickfix.c |
| 12064 | |
| 12065 | Patch 7.4.1967 |
| 12066 | Problem: Falling back from NFA to old regexp engine does not work properly. |
| 12067 | (fritzophrenic) |
| 12068 | Solution: Do not restore nfa_match. (Christian Brabandt, closes #867) |
| 12069 | Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok |
| 12070 | |
| 12071 | Patch 7.4.1968 |
| 12072 | Problem: Invalid memory access with "\<C-">. |
| 12073 | Solution: Do not recognize this as a special character. (Dominique Pelle) |
| 12074 | Files: src/misc2.c, src/testdir/test_expr.vim |
| 12075 | |
| 12076 | Patch 7.4.1969 |
| 12077 | Problem: When the netbeans channel is closed consuming the buffer may cause |
| 12078 | a crash. |
| 12079 | Solution: Check for nb_channel not to be NULL. (Xavier de Gaye) |
| 12080 | Files: src/netbeans.c |
| 12081 | |
| 12082 | Patch 7.4.1970 |
| 12083 | Problem: Using ":insert" in an empty buffer sets the jump mark. (Ingo |
| 12084 | Karkat) |
| 12085 | Solution: Don't adjust marks when replacing the empty line in an empty |
| 12086 | buffer. (closes #892) |
| 12087 | Files: src/ex_cmds.c, src/testdir/test_jumps.vim, |
| 12088 | src/testdir/test_alot.vim |
| 12089 | |
| 12090 | Patch 7.4.1971 |
| 12091 | Problem: It is not easy to see unrecognized error lines below the current |
| 12092 | error position. |
| 12093 | Solution: Add ":clist +count". |
| 12094 | Files: src/quickfix.c, runtime/doc/quickfix.txt |
| 12095 | |
| 12096 | Patch 7.4.1972 |
| 12097 | Problem: On Solaris select() does not work as expected when there is |
| 12098 | typeahead. |
| 12099 | Solution: Add ICANON when sleeping. (Ozaki Kiichi) |
| 12100 | Files: src/os_unix.c |
| 12101 | |
| 12102 | Patch 7.4.1973 |
| 12103 | Problem: On MS-Windows the package directory may be added at the end |
| 12104 | because of forward/backward slash differences. (Matthew |
| 12105 | Desjardins) |
| 12106 | Solution: Ignore slash differences. |
| 12107 | Files: src/ex_cmds2.c |
| 12108 | |
| 12109 | Patch 7.4.1974 |
| 12110 | Problem: GUI has a problem with some termcodes. |
| 12111 | Solution: Handle negative numbers. (Kazunobu Kuriyama) |
| 12112 | Files: src/gui.c |
| 12113 | |
| 12114 | Patch 7.4.1975 |
| 12115 | Problem: On MS-Windows large files (> 2Gbyte) cause problems. |
| 12116 | Solution: Use "off_T" instead of "off_t". Use "stat_T" instead of "struct |
| 12117 | stat". Use 64 bit system functions if available. (Ken Takata) |
| 12118 | Files: src/Makefile, src/buffer.c, src/diff.c, src/eval.c, src/ex_cmds.c, |
| 12119 | src/ex_cmds2.c, src/fileio.c, src/gui.c, src/gui_at_fs.c, |
| 12120 | src/if_cscope.c, src/main.c, src/memfile.c, src/memline.c, |
| 12121 | src/misc1.c, src/misc2.c, src/netbeans.c, src/os_mswin.c, |
| 12122 | src/os_win32.c, src/proto/fileio.pro, src/proto/memline.pro, |
| 12123 | src/proto/os_mswin.pro, src/pty.c, src/quickfix.c, src/spell.c, |
| 12124 | src/structs.h, src/tag.c, src/testdir/Make_all.mak, |
| 12125 | src/testdir/test_largefile.vim, src/testdir/test_stat.vim, |
| 12126 | src/undo.c, src/vim.h |
| 12127 | |
| 12128 | Patch 7.4.1976 |
| 12129 | Problem: Number variables are not 64 bits while they could be. |
| 12130 | Solution: Add the num64 feature. (Ken Takata, Yasuhiro Matsumoto) |
| 12131 | Files: runtime/doc/eval.txt, runtime/doc/various.txt, |
| 12132 | src/Make_cyg_ming.mak, src/Make_mvc.mak, src/charset.c, |
| 12133 | src/eval.c, src/ex_cmds.c, src/ex_getln.c, src/feature.h, |
| 12134 | src/fileio.c, src/fold.c, src/json.c, src/message.c, src/misc1.c, |
| 12135 | src/misc2.c, src/ops.c, src/option.c, src/proto/charset.pro, |
| 12136 | src/proto/eval.pro, src/quickfix.c, src/structs.h, |
| 12137 | src/testdir/test_viml.vim, src/version.c |
| 12138 | |
| 12139 | Patch 7.4.1977 |
| 12140 | Problem: With 64 bit changes don't need three calls to sprintf(). |
| 12141 | Solution: Simplify the code, use vim_snprintf(). (Ken Takata) |
| 12142 | Files: src/fileio.c |
| 12143 | |
| 12144 | Patch 7.4.1978 (after 7.4.1975) |
| 12145 | Problem: Large file test does not delete its output. |
| 12146 | Solution: Delete the output. Check size properly when possible. (Ken Takata) |
| 12147 | Files: src/testdir/test_largefile.vim |
| 12148 | |
| 12149 | Patch 7.4.1979 (after 7.4.1976) |
| 12150 | Problem: Getting value of binary option is wrong. (Kent Sibilev) |
| 12151 | Solution: Fix type cast. Add a test. |
| 12152 | Files: src/option.c, src/testdir/test_expr.vim |
| 12153 | |
| 12154 | Patch 7.4.1980 |
| 12155 | Problem: 'errorformat' is parsed for every call to ":caddexpr". Can't add |
| 12156 | to two location lists asynchronously. |
| 12157 | Solution: Keep the previously parsed data when appropriate. (mostly by |
| 12158 | Yegappan Lakshmanan) |
| 12159 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 12160 | |
| 12161 | Patch 7.4.1981 |
| 12162 | Problem: No testing for Farsi code. |
| 12163 | Solution: Add a minimal test. Clean up Farsi code. |
| 12164 | Files: src/farsi.c, src/Makefile, src/charset.c, src/normal.c, |
| 12165 | src/proto/main.pro, src/testdir/Make_all.mak, |
| 12166 | src/testdir/test_farsi.vim |
| 12167 | |
| 12168 | Patch 7.4.1982 |
| 12169 | Problem: Viminfo file contains duplicate change marks. |
| 12170 | Solution: Drop duplicate marks. |
| 12171 | Files: src/mark.c |
| 12172 | |
| 12173 | Patch 7.4.1983 |
| 12174 | Problem: farsi.c and arabic.c are included in a strange way. |
| 12175 | Solution: Build them like other files. |
| 12176 | Files: src/main.c, src/farsi.c, src/arabic.c, src/proto.h, |
| 12177 | src/proto/main.pro, src/proto/farsi.pro, src/proto/arabic.pro, |
| 12178 | src/Makefile, src/Make_bc5.mak, src/Make_cyg_ming.mak, |
| 12179 | src/Make_dice.mak, src/Make_ivc.mak, src/Make_manx.mak, |
| 12180 | src/Make_morph.mak, src/Make_mvc.mak, src/Make_sas.mak, |
| 12181 | Filelist |
| 12182 | |
| 12183 | Patch 7.4.1984 |
| 12184 | Problem: Not all quickfix features are tested. |
| 12185 | Solution: Add a few more tests. (Yegappan Lakshmanan) |
| 12186 | Files: src/testdir/test_quickfix.vim |
| 12187 | |
| 12188 | Patch 7.4.1985 (after 7.4.1983) |
| 12189 | Problem: Missing changes in VMS build file. |
| 12190 | Solution: Use the right file name. |
| 12191 | Files: src/Make_vms.mms |
| 12192 | |
| 12193 | Patch 7.4.1986 |
| 12194 | Problem: Compiler warns for loss of data. |
| 12195 | Solution: Use size_t instead of int. (Christian Brabandt) |
| 12196 | Files: src/ex_cmds2.c |
| 12197 | |
| 12198 | Patch 7.4.1987 |
| 12199 | Problem: When copying unrecognized lines for viminfo, end up with useless |
| 12200 | continuation lines. |
| 12201 | Solution: Skip continuation lines. |
| 12202 | Files: src/ex_cmds.c |
| 12203 | |
| 12204 | Patch 7.4.1988 |
| 12205 | Problem: When updating viminfo with file marks there is no time order. |
| 12206 | Solution: Remember the time when a buffer was last used, store marks for |
| 12207 | the most recently used buffers. |
| 12208 | Files: src/buffer.c, src/structs.h, src/mark.c, src/main.c, |
| 12209 | src/ex_cmds.c, src/proto/mark.pro, src/testdir/test_viminfo.vim |
| 12210 | |
| 12211 | Patch 7.4.1989 |
| 12212 | Problem: filter() and map() only accept a string argument. |
| 12213 | Solution: Implement using a Funcref argument (Yasuhiro Matsumoto, Ken |
| 12214 | Takata) |
| 12215 | Files: runtime/doc/eval.txt, src/Makefile, src/eval.c, |
| 12216 | src/testdir/test_alot.vim, src/testdir/test_filter_map.vim, |
| 12217 | src/testdir/test_partial.vim |
| 12218 | |
| 12219 | Patch 7.4.1990 (after 7.4.1952) |
| 12220 | Problem: Cscope items are not sorted. |
| 12221 | Solution: Put the new "a" command first. (Ken Takata) |
| 12222 | Files: src/if_cscope.c |
| 12223 | |
| 12224 | Patch 7.4.1991 |
| 12225 | Problem: glob() does not add a symbolic link when there are no wildcards. |
| 12226 | Solution: Remove the call to mch_getperm(). |
| 12227 | Files: src/misc1.c |
| 12228 | |
| 12229 | Patch 7.4.1992 |
| 12230 | Problem: Values for true and false can be confusing. |
| 12231 | Solution: Update the documentation. Add a test. Make v:true evaluate to |
| 12232 | TRUE for a non-zero-arg. |
| 12233 | Files: runtime/doc/eval.txt, src/eval.c, src/Makefile, |
| 12234 | src/testdir/test_true_false.vim, src/testdir/test_alot.vim |
| 12235 | |
| 12236 | Patch 7.4.1993 |
| 12237 | Problem: Not all TRUE and FALSE arguments are tested. |
| 12238 | Solution: Add a few more tests. |
| 12239 | Files: src/testdir/test_true_false.vim |
| 12240 | |
| 12241 | Patch 7.4.1994 (after 7.4.1993) |
| 12242 | Problem: True-false test fails. |
| 12243 | Solution: Filter the dict to only keep the value that matters. |
| 12244 | Files: src/testdir/test_true_false.vim |
| 12245 | |
| 12246 | Patch 7.4.1995 |
| 12247 | Problem: GUI: cursor drawn in wrong place if a timer callback causes a |
| 12248 | screen update. (David Samvelyan) |
| 12249 | Solution: Also redraw the cursor when it's blinking and on. |
| 12250 | Files: src/gui_gtk_x11.c, src/gui_mac.c, src/gui_photon.c, src/gui_w32.c, |
| 12251 | src/gui_x11.c, src/screen.c, src/proto/gui_gtk_x11.pro, |
| 12252 | src/proto/gui_mac.pro, src/proto/gui_photon.pro, |
| 12253 | src/proto/gui_w32.pro, src/proto/gui_x11.pro |
| 12254 | |
| 12255 | Patch 7.4.1996 |
| 12256 | Problem: Capturing the output of a command takes a few commands. |
| 12257 | Solution: Add evalcmd(). |
| 12258 | Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim, |
| 12259 | src/Makefile, src/testdir/test_evalcmd.vim |
| 12260 | |
| 12261 | Patch 7.4.1997 |
| 12262 | Problem: Cannot easily scroll the quickfix window. |
| 12263 | Solution: Add ":cbottom". |
| 12264 | Files: src/ex_cmds.h, src/quickfix.c, src/proto/quickfix.pro, |
| 12265 | src/ex_docmd.c, src/testdir/test_quickfix.vim, |
| 12266 | runtime/doc/quickfix.txt |
| 12267 | |
| 12268 | Patch 7.4.1998 |
| 12269 | Problem: When writing buffer lines to a job there is no NL to NUL |
| 12270 | conversion. |
| 12271 | Solution: Make it work symmetrical with writing lines from a job into a |
| 12272 | buffer. |
| 12273 | Files: src/channel.c, src/proto/channel.pro, src/netbeans.c |
| 12274 | |
| 12275 | Patch 7.4.1999 |
| 12276 | Problem: evalcmd() doesn't work recursively. |
| 12277 | Solution: Use redir_evalcmd instead of redir_vname. |
| 12278 | Files: src/message.c, src/eval.c, src/globals.h, src/proto/eval.pro, |
| 12279 | src/testdir/test_evalcmd.vim |
| 12280 | |
| 12281 | Patch 7.4.2000 (after 7.4.1999) |
| 12282 | Problem: Evalcmd test fails. |
| 12283 | Solution: Add missing piece. |
| 12284 | Files: src/ex_docmd.c |
| 12285 | |
| 12286 | Patch 7.4.2001 (after 7.4.2000) |
| 12287 | Problem: Tiny build fails. (Tony Mechelynck) |
| 12288 | Solution: Add #ifdef. |
| 12289 | Files: src/ex_docmd.c |
| 12290 | |
| 12291 | Patch 7.4.2002 |
| 12292 | Problem: Crash when passing number to filter() or map(). |
| 12293 | Solution: Convert to a string. (Ozaki Kiichi) |
| 12294 | Files: src/eval.c, src/testdir/test_filter_map.vim |
| 12295 | |
| 12296 | Patch 7.4.2003 |
| 12297 | Problem: Still cursor flickering when a callback updates the screen. (David |
| 12298 | Samvelyan) |
| 12299 | Solution: Put the cursor in the right position after updating the screen. |
| 12300 | Files: src/screen.c |
| 12301 | |
| 12302 | Patch 7.4.2004 |
| 12303 | Problem: GUI: cursor displayed in the wrong position. |
| 12304 | Solution: Correct screen_cur_col and screen_cur_row. |
| 12305 | Files: src/screen.c |
| 12306 | |
| 12307 | Patch 7.4.2005 |
| 12308 | Problem: After using evalcmd() message output is in the wrong position. |
| 12309 | (Christian Brabandt) |
| 12310 | Solution: Reset msg_col. |
| 12311 | Files: src/eval.c |
| 12312 | |
| 12313 | Patch 7.4.2006 |
| 12314 | Problem: Crash when using tabnext in BufUnload autocmd. (Norio Takagi) |
| 12315 | Solution: First check that the current buffer is the right one. (Hirohito |
| 12316 | Higashi) |
| 12317 | Files: src/buffer.c, src/testdir/test_autocmd.vim |
| 12318 | |
| 12319 | Patch 7.4.2007 |
| 12320 | Problem: Running the tests leaves a viminfo file behind. |
| 12321 | Solution: Make the viminfo option empty. |
| 12322 | Files: src/testdir/runtest.vim |
| 12323 | |
| 12324 | Patch 7.4.2008 |
| 12325 | Problem: evalcmd() has a confusing name. |
| 12326 | Solution: Rename to execute(). Make silent optional. Support a list of |
| 12327 | commands. |
| 12328 | Files: src/eval.c, src/ex_docmd.c, src/message.c, src/globals.h, |
| 12329 | src/proto/eval.pro, src/Makefile, src/testdir/test_evalcmd.vim, |
| 12330 | src/testdir/test_execute_func.vim, src/testdir/test_alot.vim, |
| 12331 | runtime/doc/eval.txt |
| 12332 | |
| 12333 | Patch 7.4.2009 (after 7.4.2008) |
| 12334 | Problem: Messages test fails. |
| 12335 | Solution: Don't set redir_execute before returning. Add missing version |
| 12336 | number. |
| 12337 | Files: src/eval.c |
| 12338 | |
| 12339 | Patch 7.4.2010 |
| 12340 | Problem: There is a :cbottom command but no :lbottom command. |
| 12341 | Solution: Add :lbottom. (Yegappan Lakshmanan) |
| 12342 | Files: runtime/doc/index.txt, runtime/doc/quickfix.txt, src/ex_cmds.h, |
| 12343 | src/quickfix.c, src/testdir/test_quickfix.vim |
| 12344 | |
| 12345 | Patch 7.4.2011 |
| 12346 | Problem: It is not easy to get a list of command arguments. |
| 12347 | Solution: Add getcompletion(). (Yegappan Lakshmanan) |
| 12348 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_docmd.c, |
| 12349 | src/proto/ex_docmd.pro, src/testdir/test_cmdline.vim |
| 12350 | |
| 12351 | Patch 7.4.2012 (after 7.4.2011) |
| 12352 | Problem: Test for getcompletion() does not pass on all systems. |
| 12353 | Solution: Only test what is supported. |
| 12354 | Files: src/testdir/test_cmdline.vim |
| 12355 | |
| 12356 | Patch 7.4.2013 |
| 12357 | Problem: Using "noinsert" in 'completeopt' breaks redo. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 12358 | Solution: Set compl_curr_match. (Shougo Matsu, closes #874) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 12359 | Files: src/edit.c, src/testdir/test_popup.vim |
| 12360 | |
| 12361 | Patch 7.4.2014 |
| 12362 | Problem: Using "noinsert" in 'completeopt' does not insert match. |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 12363 | Solution: Set compl_enter_selects. (Shougo Matsu, closes #875) |
Bram Moolenaar | 6f1d9a0 | 2016-07-24 14:12:38 +0200 | [diff] [blame] | 12364 | Files: src/edit.c, src/testdir/test_popup.vim |
| 12365 | |
| 12366 | Patch 7.4.2015 |
| 12367 | Problem: When a file gets a name when writing it 'acd' is not effective. |
| 12368 | (Dan Church) |
| 12369 | Solution: Invoke DO_AUTOCHDIR after writing the file. (Allen Haim, closes |
| 12370 | #777, closes #803) Add test_autochdir() to enable 'acd' before |
| 12371 | "starting" is reset. |
| 12372 | Files: src/ex_cmds.c, src/buffer.c, src/eval.c, src/globals.h, |
| 12373 | src/Makefile, src/testdir/test_autochdir.vim, |
| 12374 | src/testdir/Make_all.mak |
| 12375 | |
| 12376 | Patch 7.4.2016 |
| 12377 | Problem: Warning from MinGW about _WIN32_WINNT redefined. (John Marriott) |
| 12378 | Solution: First undefine it. (Ken Takata) |
| 12379 | Files: src/Make_cyg_ming.mak |
| 12380 | |
| 12381 | Patch 7.4.2017 |
| 12382 | Problem: When there are many errors adding them to the quickfix list takes |
| 12383 | a long time. |
| 12384 | Solution: Add BLN_NOOPT. Don't call buf_valid() in buf_copy_options(). |
| 12385 | Remember the last file name used. When going through the buffer |
| 12386 | list start from the end of the list. Only call buf_valid() when |
| 12387 | autocommands were executed. |
| 12388 | Files: src/buffer.c, src/option.c, src/quickfix.c, src/vim.h |
| 12389 | |
| 12390 | Patch 7.4.2018 |
| 12391 | Problem: buf_valid() can be slow when there are many buffers. |
| 12392 | Solution: Add bufref_valid(), only go through the buffer list when a buffer |
| 12393 | was freed. |
| 12394 | Files: src/structs.h, src/buffer.c, src/quickfix.c, src/proto/buffer.pro |
| 12395 | |
| 12396 | Patch 7.4.2019 |
| 12397 | Problem: When ignoring case utf_fold() may consume a lot of time. |
| 12398 | Solution: Optimize for ASCII. |
| 12399 | Files: src/mbyte.c |
| 12400 | |
| 12401 | Patch 7.4.2020 |
| 12402 | Problem: Can't build without +autocmd feature. |
| 12403 | Solution: Adjust #ifdefs. |
| 12404 | Files: src/buffer.c |
| 12405 | |
| 12406 | Patch 7.4.2021 |
| 12407 | Problem: Still too many buf_valid() calls. |
| 12408 | Solution: Make au_new_curbuf a bufref. Use bufref_valid() in more places. |
| 12409 | Files: src/ex_cmds.c, src/buffer.c, src/globals.h |
| 12410 | |
| 12411 | Patch 7.4.2022 |
| 12412 | Problem: Warnings from 64 bit compiler. |
| 12413 | Solution: Add type casts. (Mike Williams) |
| 12414 | Files: src/eval.c |
| 12415 | |
| 12416 | Patch 7.4.2023 |
| 12417 | Problem: buflist_findname_stat() may find a dummy buffer. |
| 12418 | Solution: Set the BF_DUMMY flag after loading a dummy buffer. Start |
| 12419 | finding buffers from the end of the list. |
| 12420 | Files: src/quickfix.c, src/buffer.c |
| 12421 | |
| 12422 | Patch 7.4.2024 |
| 12423 | Problem: More buf_valid() calls can be optimized. |
| 12424 | Solution: Use bufref_valid() instead. |
| 12425 | Files: src/buffer.c, src/ex_cmds.c, src/structs.h, src/channel.c, |
| 12426 | src/diff.c, src/eval.c, src/ex_cmds2.c, src/ex_docmd.c, |
| 12427 | src/ex_getln.c, src/fileio.c, src/main.c, src/misc2.c, |
| 12428 | src/netbeans.c, src/quickfix.c, src/spell.c, src/term.c, |
| 12429 | src/if_py_both.h, src/window.c, src/proto/buffer.pro, |
| 12430 | src/proto/window.pro |
| 12431 | |
| 12432 | Patch 7.4.2025 |
| 12433 | Problem: The cursor blinking stops or is irregular when receiving date over |
| 12434 | a channel and writing it in a buffer, and when updating the status |
| 12435 | line. (Ramel Eshed) |
| 12436 | Solution: Make it a bit better by flushing GUI output. Don't redraw the |
| 12437 | cursor after updating the screen if the blink state is off. |
| 12438 | Files: src/gui_gtk_x11.c, src/screen.c |
| 12439 | |
| 12440 | Patch 7.4.2026 |
| 12441 | Problem: Reference counting for callbacks isn't right. |
| 12442 | Solution: Add free_callback(). (Ken Takata) Fix reference count. |
| 12443 | Files: src/channel.c, src/eval.c, src/ex_cmds2.c, src/proto/eval.pro |
| 12444 | |
| 12445 | Patch 7.4.2027 |
| 12446 | Problem: Can't build with +eval but without +menu. |
| 12447 | Solution: Add #ifdef. (John Marriott) |
| 12448 | Files: src/eval.c |
| 12449 | |
| 12450 | Patch 7.4.2028 |
| 12451 | Problem: cppcheck warns for using index before limits check. |
| 12452 | Solution: Swap the expressions. (Dominique Pelle) |
| 12453 | Files: src/mbyte.c |
| 12454 | |
| 12455 | Patch 7.4.2029 |
| 12456 | Problem: printf() does not work with 64 bit numbers. |
| 12457 | Solution: use the "L" length modifier. (Ken Takata) |
| 12458 | Files: src/message.c, src/testdir/test_expr.vim |
| 12459 | |
| 12460 | Patch 7.4.2030 |
| 12461 | Problem: ARCH must be set properly when using MinGW. |
| 12462 | Solution: Detect the default value of ARCH from the current compiler. (Ken |
| 12463 | Takata) |
| 12464 | Files: src/Make_cyg_ming.mak |
| 12465 | |
| 12466 | Patch 7.4.2031 |
| 12467 | Problem: The list_lbr_utf8 test fails if ~/.vim/syntax/c.vim sets |
| 12468 | 'textwidth' to a non-zero value. (Oyvind A. Holm) |
| 12469 | Solution: Add a setup.vim file that sets 'runtimepath' and $HOME to a safe |
| 12470 | value. (partly by Christian Brabandt, closes #912) |
| 12471 | Files: src/testdir/setup.vim, src/testdir/amiga.vim, src/testdir/dos.vim, |
| 12472 | src/testdir/unix.vim, src/testdir/vms.vim, src/testdir/runtest.vim |
| 12473 | |
| 12474 | Patch 7.4.2032 (after 7.4.2030) |
| 12475 | Problem: Build fails with 64 bit MinGW. (Axel Bender) |
| 12476 | Solution: Handle dash vs. underscore. (Ken Takata, Hirohito Higashi) |
| 12477 | Files: src/Make_cyg_ming.mak |
| 12478 | |
| 12479 | Patch 7.4.2033 |
| 12480 | Problem: 'cscopequickfix' option does not accept new value "a". |
| 12481 | Solution: Adjust list of command characters. (Ken Takata) |
| 12482 | Files: src/option.h, src/Makefile, src/testdir/test_cscope.vim, |
| 12483 | src/testdir/Make_all.mak |
| 12484 | |
| 12485 | Patch 7.4.2034 (after 7.4.2032) |
| 12486 | Problem: Build fails with some version of MinGW. (illusorypan) |
| 12487 | Solution: Recognize mingw32. (Ken Takata, closes #921) |
| 12488 | Files: src/Make_cyg_ming.mak |
| 12489 | |
| 12490 | Patch 7.4.2035 |
| 12491 | Problem: On Solaris with ZFS the ACL may get removed. |
| 12492 | Solution: Always restore the ACL for Solaris ZFS. (Danek Duvall) |
| 12493 | Files: src/fileio.c |
| 12494 | |
| 12495 | Patch 7.4.2036 |
| 12496 | Problem: Looking up a buffer by number is slow if there are many. |
| 12497 | Solution: Use a hashtab. |
| 12498 | Files: src/structs.h, src/buffer.c |
| 12499 | |
| 12500 | Patch 7.4.2037 (after 7.4.2036) |
| 12501 | Problem: Small build fails. |
| 12502 | Solution: Adjust #ifdefs. |
| 12503 | Files: src/hashtab.c |
| 12504 | |
| 12505 | Patch 7.4.2038 (after 7.4.2036) |
| 12506 | Problem: Small build still fails. |
| 12507 | Solution: Adjust more #ifdefs. |
| 12508 | Files: src/globals.h, src/buffer.c |
| 12509 | |
| 12510 | Patch 7.4.2039 |
| 12511 | Problem: The Netbeans integration is not tested. |
| 12512 | Solution: Add a first Netbeans test. |
| 12513 | Files: src/testdir/test_netbeans.vim, src/testdir/test_netbeans.py, |
| 12514 | src/testdir/Make_all.mak, src/Makefile, |
| 12515 | src/testdir/test_channel.vim, src/testdir/shared.vim |
| 12516 | |
| 12517 | Patch 7.4.2040 |
| 12518 | Problem: New files missing from distribution. |
| 12519 | Solution: Add new test scripts. |
| 12520 | Files: Filelist |
| 12521 | |
| 12522 | Patch 7.4.2041 |
| 12523 | Problem: Netbeans file authentication not tested. |
| 12524 | Solution: Add a test. |
| 12525 | Files: src/testdir/test_netbeans.vim |
| 12526 | |
| 12527 | Patch 7.4.2042 |
| 12528 | Problem: GTK: display updating is not done properly and can be slow. |
| 12529 | Solution: Use gdk_display_flush() instead of gdk_display_sync(). Don't call |
| 12530 | gdk_window_process_updates(). (Kazunobu Kuriyama) |
| 12531 | Files: src/gui_gtk_x11.c |
| 12532 | |
| 12533 | Patch 7.4.2043 |
| 12534 | Problem: setbuvfar() causes a screen redraw. |
| 12535 | Solution: Only use aucmd_prepbuf() for options. |
| 12536 | Files: src/eval.c |
| 12537 | |
| 12538 | Patch 7.4.2044 |
| 12539 | Problem: filter() and map() either require a string or defining a function. |
| 12540 | Solution: Support lambda, a short way to define a function that evaluates an |
| 12541 | expression. (Yasuhiro Matsumoto, Ken Takata) |
| 12542 | Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_alot.vim, |
| 12543 | src/Makefile, src/testdir/test_channel.vim, |
| 12544 | src/testdir/test_lambda.vim |
| 12545 | |
| 12546 | Patch 7.4.2045 |
| 12547 | Problem: Memory leak when using a function callback. |
| 12548 | Solution: Don't save the function name when it's in the partial. |
| 12549 | Files: src/channel.c |
| 12550 | |
| 12551 | Patch 7.4.2046 |
| 12552 | Problem: The qf_init_ext() function is too big. |
| 12553 | Solution: Refactor it. (Yegappan Lakshmanan) |
| 12554 | Files: src/quickfix.c |
| 12555 | |
| 12556 | Patch 7.4.2047 |
| 12557 | Problem: Compiler warning for initializing a struct. |
| 12558 | Solution: Initialize in another way. (Anton Lindqvist) |
| 12559 | Files: src/quickfix.c |
| 12560 | |
| 12561 | Patch 7.4.2048 |
| 12562 | Problem: There is still code and help for unsupported systems. |
| 12563 | Solution: Remove the code and text. (Hirohito Higashi) |
| 12564 | Files: runtime/doc/eval.txt, runtime/lang/menu_sk_sk.vim, |
| 12565 | runtime/menu.vim, runtime/optwin.vim, src/Make_bc5.mak, |
| 12566 | src/ex_docmd.c, src/feature.h, src/fileio.c, src/globals.h, |
| 12567 | src/main.c, src/memfile.c, src/memline.c, src/misc1.c, |
| 12568 | src/misc2.c, src/option.c, src/option.h, src/os_unix.c, |
| 12569 | src/os_unix.h, src/proto.h, src/term.c, src/undo.c, src/version.c, |
| 12570 | src/vim.h, src/xxd/xxd.c |
| 12571 | |
| 12572 | Patch 7.4.2049 |
| 12573 | Problem: There is no way to get a list of the error lists. |
| 12574 | Solution: Add ":chistory" and ":lhistory". |
| 12575 | Files: src/ex_cmds.h, src/quickfix.c, src/ex_docmd.c, src/message.c, |
| 12576 | src/proto/quickfix.pro, src/testdir/test_quickfix.vim |
| 12577 | |
| 12578 | Patch 7.4.2050 |
| 12579 | Problem: When using ":vimgrep" may end up with duplicate buffers. |
| 12580 | Solution: When adding an error list entry pass the buffer number if possible. |
| 12581 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 12582 | |
| 12583 | Patch 7.4.2051 |
| 12584 | Problem: No proper testing of trunc_string(). |
| 12585 | Solution: Add a unittest for message.c. |
| 12586 | Files: src/Makefile, src/message.c, src/message_test.c, src/main.c, |
| 12587 | src/proto/main.pro, src/structs.h |
| 12588 | |
| 12589 | Patch 7.4.2052 |
| 12590 | Problem: Coverage report is messed up by the unittests. |
| 12591 | Solution: Add a separate test target for script tests. Use that when |
| 12592 | collecting coverage information. |
| 12593 | Files: src/Makefile |
| 12594 | |
| 12595 | Patch 7.4.2053 |
| 12596 | Problem: Can't run scripttests in the top directory. |
| 12597 | Solution: Add targets to the top Makefile. |
| 12598 | Files: Makefile |
| 12599 | |
| 12600 | Patch 7.4.2054 (after 7.4.2048) |
| 12601 | Problem: Wrong part of #ifdef removed. |
| 12602 | Solution: Use the right part. (Hirohito Higashi) |
| 12603 | Files: src/os_unix.c |
| 12604 | |
| 12605 | Patch 7.4.2055 |
| 12606 | Problem: eval.c is too big |
| 12607 | Solution: Move Dictionary functions to dict.c |
| 12608 | Files: src/eval.c, src/dict.c, src/vim.h, src/globals.h, |
| 12609 | src/proto/eval.pro, src/proto/dict.pro, src/Makefile, Filelist |
| 12610 | |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 12611 | Patch 7.4.2056 (after 7.4.2055) |
| 12612 | Problem: Build fails. |
| 12613 | Solution: Add missing changes. |
| 12614 | Files: src/proto.h |
| 12615 | |
| 12616 | Patch 7.4.2057 |
| 12617 | Problem: eval.c is too big. |
| 12618 | Solution: Move List functions to list.c |
| 12619 | Files: src/eval.c, src/dict.c, src/list.c, src/proto.h, src/Makefile, |
| 12620 | src/globals.h, src/proto/eval.pro, src/proto/list.pro, Filelist |
| 12621 | |
| 12622 | Patch 7.4.2058 |
| 12623 | Problem: eval.c is too big. |
| 12624 | Solution: Move user functions to userfunc.c |
| 12625 | Files: src/userfunc.c, src/eval.c, src/vim.h, src/globals.h, |
| 12626 | src/structs.h, src/proto.h, src/Makefile, src/proto/eval.pro, |
| 12627 | src/proto/userfunc.pro, Filelist |
| 12628 | |
| 12629 | Patch 7.4.2059 |
| 12630 | Problem: Non-Unix builds fail. |
| 12631 | Solution: Update Makefiles for new files. |
| 12632 | Files: src/Make_bc5.mak, src/Make_cyg_ming.mak, src/Make_dice.mak, |
| 12633 | src/Make_ivc.mak, src/Make_manx.mak, src/Make_morph.mak, |
| 12634 | src/Make_mvc.mak, src/Make_sas.mak |
| 12635 | |
| 12636 | Patch 7.4.2060 (after 7.4.2059) |
| 12637 | Problem: Wrong file name. |
| 12638 | Solution: Fix typo. |
| 12639 | Files: src/Make_mvc.mak |
| 12640 | |
| 12641 | Patch 7.4.2061 |
| 12642 | Problem: qf_init_ext() is too big. |
| 12643 | Solution: Move code to qf_parse_line() (Yegappan Lakshmanan) |
| 12644 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 12645 | |
| 12646 | Patch 7.4.2062 |
| 12647 | Problem: Using dummy variable to compute struct member offset. |
| 12648 | Solution: Use offsetof(). |
| 12649 | Files: src/globals.h, src/macros.h, src/vim.h, src/spell.c |
| 12650 | |
| 12651 | Patch 7.4.2063 |
| 12652 | Problem: eval.c is still too big. |
| 12653 | Solution: Split off internal functions to evalfunc.c. |
| 12654 | Files: src/eval.c, src/evalfunc.c, src/list.c, src/proto.h, |
| 12655 | src/globals.h, src/vim.h, src/proto/eval.pro, |
| 12656 | src/proto/evalfunc.pro, src/proto/list.pro, src/Makefile, Filelist, |
| 12657 | src/Make_bc5.mak, src/Make_cyg_ming.mak, src/Make_dice.mak, |
| 12658 | src/Make_ivc.mak, src/Make_manx.mak, src/Make_morph.mak, |
| 12659 | src/Make_mvc.mak, src/Make_sas.mak |
| 12660 | |
| 12661 | Patch 7.4.2064 |
| 12662 | Problem: Coverity warns for possible buffer overflow. |
| 12663 | Solution: Use vim_strcat() instead of strcat(). |
| 12664 | Files: src/quickfix.c |
| 12665 | |
| 12666 | Patch 7.4.2065 |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 12667 | Problem: Compiler warns for uninitialized variable. (John Marriott) |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 12668 | Solution: Set lnum to the right value. |
| 12669 | Files: src/evalfunc.c |
| 12670 | |
| 12671 | Patch 7.4.2066 |
| 12672 | Problem: getcompletion() not well tested. |
| 12673 | Solution: Add more testing. |
| 12674 | Files: src/testdir/test_cmdline.vim |
| 12675 | |
| 12676 | Patch 7.4.2067 |
| 12677 | Problem: Compiler warning for char/char_u conversion. (Tony Mechelynck) |
| 12678 | Inefficient code. |
| 12679 | Solution: Use more lines to fill with spaces. (Nikolai Pavlov) Add type cast. |
| 12680 | Files: src/quickfix.c |
| 12681 | |
| 12682 | Patch 7.4.2068 |
| 12683 | Problem: Not all arguments of trunc_string() are tested. Memory access |
| 12684 | error when running the message tests. |
| 12685 | Solution: Add another test case. (Yegappan Lakshmanan) Make it easy to run |
| 12686 | unittests with valgrind. Fix the access error. |
| 12687 | Files: src/message.c, src/message_test.c, src/Makefile |
| 12688 | |
| 12689 | Patch 7.4.2069 |
| 12690 | Problem: spell.c is too big. |
| 12691 | Solution: Split it in spell file handling and spell checking. |
| 12692 | Files: src/spell.c, src/spellfile.c, src/spell.h, src/Makefile, |
| 12693 | src/proto/spell.pro, src/proto/spellfile.pro, src/proto.h |
| 12694 | Filelist, src/Make_bc5.mak, src/Make_cyg_ming.mak, |
| 12695 | src/Make_dice.mak, src/Make_ivc.mak, src/Make_manx.mak, |
| 12696 | src/Make_morph.mak, src/Make_mvc.mak, src/Make_sas.mak |
| 12697 | |
| 12698 | Patch 7.4.2070 (after 7.4.2069) |
| 12699 | Problem: Missing change to include file. |
| 12700 | Solution: Include the spell header file. |
| 12701 | Files: src/vim.h |
| 12702 | |
| 12703 | Patch 7.4.2071 |
| 12704 | Problem: The return value of type() is difficult to use. |
| 12705 | Solution: Define v:t_ constants. (Ken Takata) |
| 12706 | Files: runtime/doc/eval.txt, src/eval.c, src/evalfunc.c, |
| 12707 | src/testdir/test_channel.vim, src/testdir/test_viml.vim, src/vim.h |
| 12708 | |
| 12709 | Patch 7.4.2072 |
| 12710 | Problem: substitute() does not support a Funcref argument. |
| 12711 | Solution: Support a Funcref like it supports a string starting with "\=". |
| 12712 | Files: src/evalfunc.c, src/regexp.c, src/eval.c, src/proto/eval.pro, |
| 12713 | src/proto/regexp.pro, src/testdir/test_expr.vim |
| 12714 | |
| 12715 | Patch 7.4.2073 |
| 12716 | Problem: rgb.txt is read for every color name. |
| 12717 | Solution: Load rgb.txt once. (Christian Brabandt) Add a test. |
| 12718 | Files: runtime/rgb.txt, src/term.c, src/testdir/test_syn_attr.vim |
| 12719 | |
| 12720 | Patch 7.4.2074 |
| 12721 | Problem: One more place using a dummy variable. |
| 12722 | Solution: Use offsetof(). (Ken Takata) |
| 12723 | Files: src/userfunc.c |
| 12724 | |
| 12725 | Patch 7.4.2075 |
| 12726 | Problem: No autocommand event to initialize a window or tab page. |
| 12727 | Solution: Add WinNew and TabNew events. (partly by Felipe Morales) |
| 12728 | Files: src/fileio.c, src/window.c, src/vim.h, |
| 12729 | src/testdir/test_autocmd.vim, runtime/doc/autocmd.txt |
| 12730 | |
| 12731 | Patch 7.4.2076 |
| 12732 | Problem: Syntax error when dict has '>' key. |
| 12733 | Solution: Check for endchar. (Ken Takata) |
| 12734 | Files: src/userfunc.c, src/testdir/test_lambda.vim |
| 12735 | |
| 12736 | Patch 7.4.2077 |
| 12737 | Problem: Cannot update 'tabline' when a tab was closed. |
| 12738 | Solution: Add the TabClosed autocmd event. (partly by Felipe Morales) |
| 12739 | Files: src/fileio.c, src/window.c, src/vim.h, |
| 12740 | src/testdir/test_autocmd.vim, runtime/doc/autocmd.txt |
| 12741 | |
| 12742 | Patch 7.4.2078 |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 12743 | Problem: Running checks in po directory fails. |
| 12744 | Solution: Add colors used in syntax.c to the builtin color table. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 12745 | Files: src/term.c |
| 12746 | |
| 12747 | Patch 7.4.2079 |
| 12748 | Problem: Netbeans test fails on non-Unix systems. |
| 12749 | Solution: Only do the permission check on Unix systems. |
| 12750 | Files: src/testdir/test_netbeans.vim |
| 12751 | |
| 12752 | Patch 7.4.2080 |
| 12753 | Problem: When using PERROR() on some systems assert_fails() does not see |
| 12754 | the error. |
| 12755 | Solution: Make PERROR() always report the error. |
| 12756 | Files: src/vim.h, src/message.c, src/proto/message.pro |
| 12757 | |
| 12758 | Patch 7.4.2081 |
| 12759 | Problem: Line numbers in the error list are not always adjusted. |
| 12760 | Solution: Set b_has_qf_entry properly. (Yegappan Lakshmanan) |
| 12761 | Files: src/quickfix.c, src/structs.h, src/testdir/test_quickfix.vim |
| 12762 | |
| 12763 | Patch 7.4.2082 |
| 12764 | Problem: Not much test coverage for digraphs. |
| 12765 | Solution: Add a new style digraph test. (Christian Brabandt) |
| 12766 | Files: src/Makefile, src/testdir/test_alot.vim, |
| 12767 | src/testdir/test_digraph.vim |
| 12768 | |
| 12769 | Patch 7.4.2083 |
| 12770 | Problem: Coverity complains about not restoring a value. |
| 12771 | Solution: Restore the value, although it's not really needed. Change return |
| 12772 | to jump to cleanup, might leak memory. |
| 12773 | Files: src/userfunc.c |
| 12774 | |
| 12775 | Patch 7.4.2084 |
| 12776 | Problem: New digraph test makes testing hang. |
| 12777 | Solution: Don't set "nocp". |
| 12778 | Files: src/testdir/test_digraph.vim |
| 12779 | |
| 12780 | Patch 7.4.2085 |
| 12781 | Problem: Digraph tests fails on some systems. |
| 12782 | Solution: Run it separately and set 'encoding' early. |
| 12783 | Files: src/testdir/Make_all.mak, src/testdir/test_alot.vim, |
| 12784 | src/testdir/test_digraph.vim |
| 12785 | |
| 12786 | Patch 7.4.2086 |
| 12787 | Problem: Using the system default encoding makes tests unpredictable. |
| 12788 | Solution: Always use utf-8 or latin1 in the new style tests. Remove setting |
| 12789 | encoding and scriptencoding where it is not needed. |
| 12790 | Files: src/testdir/runtest.vim, src/testdir/test_channel.vim, |
| 12791 | src/testdir/test_digraph.vim, src/testdir/test_expand_dllpath.vim, |
| 12792 | src/testdir/test_expr_utf8.vim, src/testdir/test_json.vim, |
| 12793 | src/testdir/test_matchadd_conceal_utf8.vim, |
| 12794 | src/testdir/test_regexp_utf8.vim, src/testdir/test_visual.vim, |
| 12795 | src/testdir/test_alot_utf8.vim, |
| 12796 | |
| 12797 | Patch 7.4.2087 |
| 12798 | Problem: Digraph code test coverage is still low. |
| 12799 | Solution: Add more tests. (Christian Brabandt) |
| 12800 | Files: src/testdir/test_digraph.vim |
| 12801 | |
| 12802 | Patch 7.4.2088 (after 7.4.2087) |
| 12803 | Problem: Keymap test fails with normal features. |
| 12804 | Solution: Bail out if the keymap feature is not supported. |
| 12805 | Files: src/testdir/test_digraph.vim |
| 12806 | |
| 12807 | Patch 7.4.2089 |
| 12808 | Problem: Color handling of X11 GUIs is too complicated. |
| 12809 | Solution: Simplify the code. Use RGBA where appropriate. (Kazunobu |
| 12810 | Kuriyama) |
| 12811 | Files: src/gui.h, src/gui_beval.c, src/gui_gtk_x11.c, src/netbeans.c |
| 12812 | |
| 12813 | Patch 7.4.2090 |
| 12814 | Problem: Using submatch() in a lambda passed to substitute() is verbose. |
| 12815 | Solution: Use a static list and pass it as an optional argument to the |
| 12816 | function. Fix memory leak. |
| 12817 | Files: src/structs.h, src/list.c, src/userfunc.c, src/channel.c, |
| 12818 | src/eval.c, src/evalfunc.c, src/ex_cmds2.c, src/regexp.c, |
| 12819 | src/proto/list.pro, src/proto/userfunc.pro, |
| 12820 | src/testdir/test_expr.vim, runtime/doc/eval.txt |
| 12821 | |
| 12822 | Patch 7.4.2091 |
| 12823 | Problem: Coverity reports a resource leak when out of memory. |
| 12824 | Solution: Close the file before returning. |
| 12825 | Files: src/term.c |
| 12826 | |
| 12827 | Patch 7.4.2092 |
| 12828 | Problem: GTK 3 build fails with older GTK version. |
| 12829 | Solution: Check the pango version. (Kazunobu Kuriyama) |
| 12830 | Files: src/gui_beval.c |
| 12831 | |
| 12832 | Patch 7.4.2093 |
| 12833 | Problem: Netbeans test fails once in a while. Leaving log file behind. |
| 12834 | Solution: Add it to the list of flaky tests. Disable logfile. |
| 12835 | Files: src/testdir/runtest.vim, src/testdir/test_channel.vim |
| 12836 | |
| 12837 | Patch 7.4.2094 |
| 12838 | Problem: The color allocation in X11 is overly complicated. |
| 12839 | Solution: Remove find_closest_color(), XAllocColor() already does this. |
| 12840 | (Kazunobu Kuriyama) |
| 12841 | Files: src/gui_x11.c |
| 12842 | |
| 12843 | Patch 7.4.2095 |
| 12844 | Problem: Man test fails when run with the GUI. |
| 12845 | Solution: Adjust for different behavior of GUI. Add assert_inrange(). |
| 12846 | Files: src/eval.c, src/evalfunc.c, src/proto/eval.pro, |
| 12847 | src/testdir/test_assert.vim, src/testdir/test_man.vim, |
| 12848 | runtime/doc/eval.txt |
| 12849 | |
| 12850 | Patch 7.4.2096 |
| 12851 | Problem: Lambda functions show up with completion. |
| 12852 | Solution: Don't show lambda functions. (Ken Takata) |
| 12853 | Files: src/userfunc.c, src/testdir/test_cmdline.vim |
| 12854 | |
| 12855 | Patch 7.4.2097 |
| 12856 | Problem: Warning from 64 bit compiler. |
| 12857 | Solution: use size_t instead of int. (Mike Williams) |
| 12858 | Files: src/message.c |
| 12859 | |
| 12860 | Patch 7.4.2098 |
| 12861 | Problem: Text object tests are old style. |
| 12862 | Solution: Turn them into new style tests. (James McCoy, closes #941) |
| 12863 | Files: src/testdir/Make_all.mak, src/testdir/test_textobjects.in, |
| 12864 | src/testdir/test_textobjects.ok, src/testdir/test_textobjects.vim, |
| 12865 | src/Makefile |
| 12866 | |
| 12867 | Patch 7.4.2099 |
| 12868 | Problem: When a keymap is active only "(lang)" is displayed. (Ilya |
| 12869 | Dogolazky) |
| 12870 | Solution: Show the keymap name. (Dmitri Vereshchagin, closes #933) |
| 12871 | Files: src/buffer.c, src/proto/screen.pro, src/screen.c |
| 12872 | |
| 12873 | Patch 7.4.2100 |
| 12874 | Problem: "cgn" and "dgn" do not work correctly with a single character |
| 12875 | match and the replacement includes the searched pattern. (John |
| 12876 | Beckett) |
| 12877 | Solution: If the match is found in the wrong column try in the next column. |
| 12878 | Turn the test into new style. (Christian Brabandt) |
| 12879 | Files: src/search.c, src/testdir/Make_all.mak, src/Makefile, |
| 12880 | src/testdir/test53.in, src/testdir/test53.ok, |
| 12881 | src/testdir/test_gn.vim |
| 12882 | |
| 12883 | Patch 7.4.2101 |
Bram Moolenaar | e4a3bcf | 2016-08-26 19:52:37 +0200 | [diff] [blame] | 12884 | Problem: Looping over windows, buffers and tab pages is inconsistent. |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 12885 | Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan) |
| 12886 | Files: src/buffer.c, src/diff.c, src/edit.c, src/eval.c, src/evalfunc.c, |
| 12887 | src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/fileio.c, |
| 12888 | src/globals.h, src/gui.c, src/gui_mac.c, src/if_lua.c, |
| 12889 | src/if_mzsch.c, src/if_perl.xs, src/if_ruby.c, src/if_tcl.c, |
| 12890 | src/main.c, src/mark.c, src/memfile.c, src/memline.c, src/misc1.c, |
| 12891 | src/move.c, src/netbeans.c, src/normal.c, src/option.c, |
| 12892 | src/quickfix.c, src/screen.c, src/spell.c, src/term.c, |
| 12893 | src/window.c, src/workshop.c |
| 12894 | |
| 12895 | Patch 7.4.2102 (after 7.4.2101) |
| 12896 | Problem: Tiny build with GUI fails. |
| 12897 | Solution: Revert one FOR_ALL_ change. |
| 12898 | Files: src/gui.c |
| 12899 | |
| 12900 | Patch 7.4.2103 |
| 12901 | Problem: Can't have "augroup END" right after ":au!". |
| 12902 | Solution: Check for the bar character before the command argument. |
| 12903 | Files: src/fileio.c, src/testdir/test_autocmd.vim, |
| 12904 | runtime/doc/autocmd.txt |
| 12905 | |
| 12906 | Patch 7.4.2104 |
| 12907 | Problem: Code duplication when unreferencing a function. |
| 12908 | Solution: De-duplicate. |
| 12909 | Files: src/userfunc.c |
| 12910 | |
| 12911 | Patch 7.4.2105 |
| 12912 | Problem: Configure reports default features to be "normal" while it is |
| 12913 | "huge". |
| 12914 | Solution: Change the default text. Build with newer autoconf. |
| 12915 | Files: src/configure.in, src/auto/configure |
| 12916 | |
| 12917 | Patch 7.4.2106 |
| 12918 | Problem: Clang warns about missing field in initializer. |
| 12919 | Solution: Define COMMA and use it. (Kazunobu Kuriyama) |
| 12920 | Files: src/ex_cmds.c, src/globals.h, src/vim.h |
| 12921 | |
| 12922 | Patch 7.4.2107 (after 7.4.2106) |
| 12923 | Problem: Misplaced equal sign. |
| 12924 | Solution: Remove it. |
| 12925 | Files: src/globals.h |
| 12926 | |
| 12927 | Patch 7.4.2108 |
| 12928 | Problem: Netbeans test is flaky. |
| 12929 | Solution: Wait for the cursor to be positioned. |
| 12930 | Files: src/testdir/test_netbeans.vim |
| 12931 | |
| 12932 | Patch 7.4.2109 |
| 12933 | Problem: Setting 'display' to "lastline" is a drastic change, while |
| 12934 | omitting it results in lots of "@" lines. |
| 12935 | Solution: Add "truncate" to show "@@@" for a truncated line. |
| 12936 | Files: src/option.h, src/screen.c, runtime/doc/options.txt |
| 12937 | |
| 12938 | Patch 7.4.2110 |
| 12939 | Problem: When there is an CmdUndefined autocmd then the error for a missing |
| 12940 | command is E464 instead of E492. (Manuel Ortega) |
| 12941 | Solution: Don't let the pointer be NULL. |
| 12942 | Files: src/ex_docmd.c, src/testdir/test_usercommands.vim |
| 12943 | |
| 12944 | Patch 7.4.2111 |
| 12945 | Problem: Defaults are very conservative. |
| 12946 | Solution: Move settings from vimrc_example.vim to defaults.vim. Load |
| 12947 | defaults.vim if no .vimrc was found. |
| 12948 | Files: src/main.c, src/version.c, src/os_amiga.h, src/os_dos.h, |
| 12949 | src/os_mac.h, src/os_unix.h, src/feature.h, src/Makefile, |
| 12950 | runtime/vimrc_example.vim, runtime/defaults.vim, |
| 12951 | runtime/evim.vim, Filelist, runtime/doc/starting.txt |
| 12952 | |
| 12953 | Patch 7.4.2112 |
| 12954 | Problem: getcompletion(.., 'dir') returns a match with trailing "*" when |
| 12955 | there are no matches. (Chdiza) |
| 12956 | Solution: Return an empty list when there are no matches. Add a trailing |
| 12957 | slash to directories. (Yegappan Lakshmanan) Add tests for no |
| 12958 | matches. (closes #947) |
| 12959 | Files: src/evalfunc.c, src/testdir/test_cmdline.vim |
| 12960 | |
| 12961 | Patch 7.4.2113 |
| 12962 | Problem: Test for undo is flaky. |
| 12963 | Solution: Turn it into a new style test. Use test_settime() to avoid |
| 12964 | flakyness. |
| 12965 | Files: src/Makefile, src/undo.c, src/testdir/test61.in, |
| 12966 | src/testdir/test61.ok, src/testdir/test_undo.vim, |
| 12967 | src/testdir/test_undolevels.vim, src/testdir/Make_all.mak, |
| 12968 | src/testdir/test_alot.vim |
| 12969 | |
| 12970 | Patch 7.4.2114 |
| 12971 | Problem: Tiny build fails. |
| 12972 | Solution: Always include vim_time(). |
| 12973 | Files: src/ex_cmds.c |
| 12974 | |
| 12975 | Patch 7.4.2115 |
| 12976 | Problem: Loading defaults.vim with -C argument. |
| 12977 | Solution: Don't load the defaults script with -C argument. Test sourcing |
| 12978 | the defaults script. Set 'display' to "truncate". |
| 12979 | Files: src/main.c, src/Makefile, runtime/defaults.vim, |
| 12980 | src/testdir/test_startup.vim, src/testdir/Make_all.mak |
| 12981 | |
| 12982 | Patch 7.4.2116 |
| 12983 | Problem: The default vimrc for Windows is very conservative. |
| 12984 | Solution: Use the defaults.vim in the Windows installer. |
| 12985 | Files: src/dosinst.c |
| 12986 | |
| 12987 | Patch 7.4.2117 |
| 12988 | Problem: Deleting an augroup that still has autocmds does not give a |
| 12989 | warning. The next defined augroup takes its place. |
| 12990 | Solution: Give a warning and prevent the index being used for another group |
| 12991 | name. |
| 12992 | Files: src/fileio.c, src/testdir/test_autocmd.vim |
| 12993 | |
| 12994 | Patch 7.4.2118 |
| 12995 | Problem: Mac: can't build with tiny features. |
| 12996 | Solution: Don't define FEAT_CLIPBOARD unconditionally. (Kazunobu Kuriyama) |
| 12997 | Files: src/vim.h |
| 12998 | |
| 12999 | Patch 7.4.2119 |
| 13000 | Problem: Closures are not supported. |
| 13001 | Solution: Capture variables in lambdas from the outer scope. (Yasuhiro |
| 13002 | Matsumoto, Ken Takata) |
| 13003 | Files: runtime/doc/eval.txt, src/eval.c, src/ex_cmds2.c, src/globals.h, |
| 13004 | src/proto/eval.pro, src/proto/userfunc.pro, |
| 13005 | src/testdir/test_lambda.vim, src/userfunc.c |
| 13006 | |
| 13007 | Patch 7.4.2120 |
| 13008 | Problem: User defined functions can't be a closure. |
| 13009 | Solution: Add the "closure" argument. Allow using :unlet on a bound |
| 13010 | variable. (Yasuhiro Matsumoto, Ken Takata) |
| 13011 | Files: runtime/doc/eval.txt, src/testdir/test_lambda.vim, src/userfunc.c, |
| 13012 | src/eval.c src/proto/userfunc.pro |
| 13013 | |
| 13014 | Patch 7.4.2121 |
| 13015 | Problem: No easy way to check if lambda and closure are supported. |
| 13016 | Solution: Add the +lambda feature. |
| 13017 | Files: src/evalfunc.c, src/version.c, src/testdir/test_lambda.vim |
| 13018 | |
| 13019 | Patch 7.4.2122 (after 7.4.2118) |
| 13020 | Problem: Mac: don't get +clipboard in huge build. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 13021 | Solution: Move #define down below including feature.h |
Bram Moolenaar | 0952131 | 2016-08-12 22:54:35 +0200 | [diff] [blame] | 13022 | Files: src/vim.h |
| 13023 | |
| 13024 | Patch 7.4.2123 |
| 13025 | Problem: No new style test for diff mode. |
| 13026 | Solution: Add a test. Check that folds are in sync. |
| 13027 | Files: src/Makefile, src/testdir/test_diffmode.vim, |
| 13028 | src/testdir/Make_all.mak, src/testdir/test47.in, |
| 13029 | src/testdir/test47.ok |
| 13030 | |
| 13031 | Patch 7.4.2124 |
| 13032 | Problem: diffmode test leaves files behind, breaking another test. |
| 13033 | Solution: Delete the files. |
| 13034 | Files: src/testdir/test_diffmode.vim |
| 13035 | |
| 13036 | Patch 7.4.2125 |
| 13037 | Problem: Compiler warning for loss of data. |
| 13038 | Solution: Add a type cast. (Christian Brabandt) |
| 13039 | Files: src/message.c |
| 13040 | |
| 13041 | Patch 7.4.2126 |
| 13042 | Problem: No tests for :diffget and :diffput |
| 13043 | Solution: Add tests. |
| 13044 | Files: src/testdir/test_diffmode.vim |
| 13045 | |
| 13046 | Patch 7.4.2127 |
| 13047 | Problem: The short form of ":noswapfile" is ":noswap" instead of ":nos". |
| 13048 | (Kent Sibilev) |
| 13049 | Solution: Only require three characters. Add a test for the short forms. |
| 13050 | Files: src/ex_docmd.c, src/testdir/test_usercommands.vim |
| 13051 | |
| 13052 | Patch 7.4.2128 |
| 13053 | Problem: Memory leak when saving for undo fails. |
| 13054 | Solution: Free allocated memory. (Hirohito Higashi) |
| 13055 | Files: src/ex_cmds.c |
| 13056 | |
| 13057 | Patch 7.4.2129 |
| 13058 | Problem: Memory leak when using timer_start(). (Dominique Pelle) |
| 13059 | Solution: Don't copy the callback when using a partial. |
| 13060 | Files: src/evalfunc.c |
| 13061 | |
| 13062 | Patch 7.4.2130 |
| 13063 | Problem: Pending timers cause false memory leak reports. |
| 13064 | Solution: Free all timers on exit. |
| 13065 | Files: src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/misc2.c |
| 13066 | |
| 13067 | Patch 7.4.2131 |
| 13068 | Problem: More memory leaks when using partial, e.g. for "exit-cb". |
| 13069 | Solution: Don't copy the callback when using a partial. |
| 13070 | Files: src/channel.c |
| 13071 | |
| 13072 | Patch 7.4.2132 |
| 13073 | Problem: test_partial has memory leaks reported. |
| 13074 | Solution: Add a note about why this happens. |
| 13075 | Files: src/testdir/test_partial.vim |
| 13076 | |
| 13077 | Patch 7.4.2133 (after 7.4.2128) |
| 13078 | Problem: Can't build with tiny features. |
| 13079 | Solution: Add #ifdef. |
| 13080 | Files: src/ex_cmds.c |
| 13081 | |
| 13082 | Patch 7.4.2134 |
| 13083 | Problem: No error for using function() badly. |
| 13084 | Solution: Check for passing wrong function name. (Ken Takata) |
| 13085 | Files: src/eval.c, src/evalfunc.c, src/proto/userfunc.pro, |
| 13086 | src/testdir/test_expr.vim, src/userfunc.c, src/vim.h |
| 13087 | |
| 13088 | Patch 7.4.2135 |
| 13089 | Problem: Various tiny issues. |
| 13090 | Solution: Update comments, white space, etc. |
| 13091 | Files: src/diff.c, src/digraph.c, src/testdir/test80.in, |
| 13092 | src/testdir/test_channel.vim, src/testdir/Makefile, |
| 13093 | runtime/menu.vim, src/INSTALLpc.txt, src/xpm/README.txt |
| 13094 | |
| 13095 | Patch 7.4.2136 |
| 13096 | Problem: Closure function fails. |
| 13097 | Solution: Don't reset uf_scoped when it points to another funccal. |
| 13098 | Files: src/userfunc.c, src/testdir/test_lambda.vim |
| 13099 | |
| 13100 | Patch 7.4.2137 |
| 13101 | Problem: Using function() with a name will find another function when it is |
| 13102 | redefined. |
| 13103 | Solution: Add funcref(). Refer to lambda using a partial. Fix several |
| 13104 | reference counting issues. |
| 13105 | Files: src/vim.h, src/structs.h, src/userfunc.c, src/eval.c, |
| 13106 | src/evalfunc.c, src/channel.c, src/proto/eval.pro, |
| 13107 | src/proto/userfunc.pro, src/if_mzsch.c, src/regexp.c, src/misc2.c, |
| 13108 | src/if_py_both.h, src/testdir/test_expr.vim, runtime/doc/eval.txt |
| 13109 | |
| 13110 | Patch 7.4.2138 |
| 13111 | Problem: Test 86 and 87 fail. |
| 13112 | Solution: Call func_ref() also for regular functions. |
| 13113 | Files: src/if_py_both.h |
| 13114 | |
| 13115 | Patch 7.4.2139 |
| 13116 | Problem: :delfunction causes illegal memory access. |
| 13117 | Solution: Correct logic when deciding to free a function. |
| 13118 | Files: src/userfunc.c, src/testdir/test_lambda.vim |
| 13119 | |
| 13120 | Patch 7.4.2140 |
| 13121 | Problem: Tiny build fails. |
| 13122 | Solution: Add dummy typedefs. |
| 13123 | Files: src/structs.h |
| 13124 | |
| 13125 | Patch 7.4.2141 |
| 13126 | Problem: Coverity reports bogus NULL check. |
| 13127 | Solution: When checking for a variable in the funccal scope don't pass the |
| 13128 | varname. |
| 13129 | Files: src/userfunc.c, src/proto/userfunc.pro, src/eval.c |
| 13130 | |
| 13131 | Patch 7.4.2142 |
| 13132 | Problem: Leaking memory when redefining a function. |
| 13133 | Solution: Don't increment the function reference count when it's found by |
| 13134 | name. Don't remove the wrong function from the hashtab. More |
| 13135 | reference counting fixes. |
| 13136 | Files: src/structs.h, src/userfunc.c |
| 13137 | |
| 13138 | Patch 7.4.2143 |
| 13139 | Problem: A funccal is garbage collected while it can still be used. |
| 13140 | Solution: Set copyID in all referenced functions. Do not list lambda |
| 13141 | functions with ":function". |
| 13142 | Files: src/userfunc.c, src/proto/userfunc.pro, src/eval.c, |
| 13143 | src/testdir/test_lambda.vim |
| 13144 | |
| 13145 | Patch 7.4.2144 |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 13146 | 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] | 13147 | ending in CR-LF properly. |
| 13148 | Solution: Don't consider CR a line break. (Ken Takata) |
| 13149 | Files: src/quickfix.c |
| 13150 | |
| 13151 | Patch 7.4.2145 |
| 13152 | Problem: Win32: Using CreateThread/ExitThread is not safe. |
| 13153 | Solution: Use _beginthreadex and return from the thread. (Ken Takata) |
| 13154 | Files: src/os_win32.c |
| 13155 | |
| 13156 | Patch 7.4.2146 |
| 13157 | Problem: Not enough testing for popup menu. CTRL-E does not always work |
| 13158 | properly. |
| 13159 | Solution: Add more tests. When using CTRL-E check if the popup menu is |
| 13160 | visible. (Christian Brabandt) |
| 13161 | Files: src/edit.c, src/testdir/test_popup.vim |
| 13162 | |
| 13163 | Patch 7.4.2147 (after 7.4.2146) |
| 13164 | Problem: test_alot fails. |
| 13165 | Solution: Close window. |
| 13166 | Files: src/testdir/test_popup.vim |
| 13167 | |
| 13168 | Patch 7.4.2148 |
| 13169 | Problem: Not much testing for cscope. |
| 13170 | Solution: Add a test that uses the cscope program. (Christian Brabandt) |
| 13171 | Files: src/testdir/test_cscope.vim |
| 13172 | |
| 13173 | Patch 7.4.2149 |
| 13174 | Problem: If a test leaves a window open a following test may fail. |
| 13175 | Solution: Always close extra windows after running a test. |
| 13176 | Files: src/testdir/runtest.vim, src/testdir/test_popup.vim |
| 13177 | |
| 13178 | Patch 7.4.2150 |
| 13179 | Problem: Warning with MinGW 64. (John Marriott) |
| 13180 | Solution: Change return type. (Ken Takata) |
| 13181 | Files: src/os_win32.c |
| 13182 | |
| 13183 | Patch 7.4.2151 |
| 13184 | Problem: Quickfix test fails on MS-Windows. |
| 13185 | Solution: Close the help window. (Christian Brabandt) |
| 13186 | Files: src/testdir/test_quickfix.vim |
| 13187 | |
| 13188 | Patch 7.4.2152 |
| 13189 | Problem: No proper translation of messages with a count. |
| 13190 | Solution: Use ngettext(). (Sergey Alyoshin) |
| 13191 | Files: src/evalfunc.c, src/fold.c, src/os_win32.c, src/screen.c, src/vim.h |
| 13192 | |
| 13193 | Patch 7.4.2153 |
| 13194 | Problem: GUI test isn't testing much. |
| 13195 | Solution: Turn into a new style test. Execute a shell command. |
| 13196 | Files: src/testdir/test_gui.vim, src/testdir/test16.in, |
| 13197 | src/testdir/test16.ok, src/testdir/Make_all.mak, src/Makefile, |
| 13198 | src/testdir/Make_vms.mms |
| 13199 | |
| 13200 | Patch 7.4.2154 |
| 13201 | Problem: Test_communicate() fails sometimes. |
| 13202 | Solution: Add it to the flaky tests. |
| 13203 | Files: src/testdir/runtest.vim |
| 13204 | |
| 13205 | Patch 7.4.2155 |
| 13206 | Problem: Quotes make GUI test fail on MS-Windows. |
| 13207 | Solution: Remove quotes, strip white space. |
| 13208 | Files: src/testdir/test_gui.vim |
| 13209 | |
| 13210 | Patch 7.4.2156 |
| 13211 | Problem: Compiler warning. |
| 13212 | Solution: Add type cast. (Ken Takata, Mike Williams) |
| 13213 | Files: src/os_win32.c |
| 13214 | |
| 13215 | Patch 7.4.2157 |
| 13216 | Problem: Test_job_start_fails() is expected to report memory leaks, making |
| 13217 | it hard to see other leaks in test_partial. |
| 13218 | Solution: Move Test_job_start_fails() to a separate test file. |
| 13219 | Files: src/testdir/test_partial.vim, src/testdir/test_job_fails.vim, |
| 13220 | src/Makefile, src/testdir/Make_all.mak |
| 13221 | |
| 13222 | Patch 7.4.2158 |
| 13223 | Problem: Result of getcompletion('', 'cscope') depends on previous |
| 13224 | completion. (Christian Brabandt) |
| 13225 | Solution: Call set_context_in_cscope_cmd(). |
| 13226 | Files: src/evalfunc.c, src/testdir/test_cmdline.vim |
| 13227 | |
| 13228 | Patch 7.4.2159 |
| 13229 | Problem: Insufficient testing for cscope. |
| 13230 | Solution: Add more tests. (Dominique Pelle) |
| 13231 | Files: src/testdir/test_cscope.vim |
| 13232 | |
| 13233 | Patch 7.4.2160 |
| 13234 | Problem: setmatches() mixes up values. (Nikolai Pavlov) |
| 13235 | Solution: Save the string instead of reusing a shared buffer. |
| 13236 | Files: src/dict.c, src/evalfunc.c, src/testdir/test_expr.vim, |
| 13237 | |
| 13238 | Patch 7.4.2161 (after 7.4.2160) |
| 13239 | Problem: Expression test fails without conceal feature. |
| 13240 | Solution: Only check "conceal" with the conceal feature. |
| 13241 | Files: src/testdir/test_expr.vim |
| 13242 | |
| 13243 | Patch 7.4.2162 |
| 13244 | Problem: Result of getcompletion('', 'sign') depends on previous |
| 13245 | completion. |
| 13246 | Solution: Call set_context_in_sign_cmd(). (Dominique Pelle) |
| 13247 | Files: src/evalfunc.c, src/testdir/test_cmdline.vim |
| 13248 | |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 13249 | Patch 7.4.2163 |
| 13250 | Problem: match() and related functions tested with old style test. |
| 13251 | Solution: Convert to new style test. (Hirohito Higashi) |
| 13252 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test63.in, |
| 13253 | src/testdir/test63.ok, src/testdir/test_alot.vim, |
| 13254 | src/testdir/test_match.vim, src/testdir/test_matchstrpos.vim |
| 13255 | |
| 13256 | Patch 7.4.2164 |
| 13257 | Problem: It is not possible to use plugins in an "after" directory to tune |
| 13258 | the behavior of a package. |
| 13259 | Solution: First load plugins from non-after directories, then packages and |
| 13260 | finally plugins in after directories. |
| 13261 | Reset 'loadplugins' before executing --cmd arguments. |
| 13262 | Files: src/main.c, src/vim.h, src/ex_cmds2.c, src/testdir/Makefile, |
| 13263 | src/testdir/shared.vim, src/testdir/test_startup.vim, |
| 13264 | src/testdir/setup.vim, runtime/doc/starting.txt |
| 13265 | |
| 13266 | Patch 7.4.2165 (after 7.4.2164) |
| 13267 | Problem: Startup test fails on MS-Windows. |
| 13268 | Solution: Don't check output if RunVim() returns zero. |
| 13269 | Files: src/testdir/test_startup.vim |
| 13270 | |
| 13271 | Patch 7.4.2166 (after 7.4.2164) |
| 13272 | Problem: Small build can't run startup test. |
| 13273 | Solution: Skip the test. |
| 13274 | Files: src/testdir/test_startup.vim |
| 13275 | |
| 13276 | Patch 7.4.2167 (after 7.4.2164) |
| 13277 | Problem: Small build can't run tests. |
| 13278 | Solution: Don't try setting 'packpath'. |
| 13279 | Files: src/testdir/setup.vim |
| 13280 | |
| 13281 | Patch 7.4.2168 |
| 13282 | Problem: Not running the startup test on MS-Windows. |
| 13283 | Solution: Write vimcmd. |
| 13284 | Files: src/testdir/Make_ming.mak, src/testdir/Make_dos.mak |
| 13285 | |
| 13286 | Patch 7.4.2169 (after 7.4.2168) |
| 13287 | Problem: Startup test gets stuck on MS-Windows. |
| 13288 | Solution: Use double quotes. |
| 13289 | Files: src/testdir/shared.vim, src/testdir/test_startup.vim |
| 13290 | |
| 13291 | Patch 7.4.2170 |
| 13292 | Problem: Cannot get information about timers. |
| 13293 | Solution: Add timer_info(). |
| 13294 | Files: src/evalfunc.c, src/ex_cmds2.c, src/proto/ex_cmds2.pro, |
| 13295 | runtime/doc/eval.txt |
| 13296 | |
| 13297 | Patch 7.4.2171 (after 7.4.2170) |
| 13298 | Problem: MS-Windows build fails. |
| 13299 | Solution: Add QueryPerformanceCounter(). |
| 13300 | Files: src/ex_cmds2.c |
| 13301 | |
| 13302 | Patch 7.4.2172 |
| 13303 | Problem: No test for "vim --help". |
| 13304 | Solution: Add a test. |
| 13305 | Files: src/testdir/test_startup.vim, src/testdir/shared.vim |
| 13306 | |
| 13307 | Patch 7.4.2173 (after 7.4.2172) |
| 13308 | Problem: Can't test help on MS-Windows. |
| 13309 | Solution: Skip the test. |
| 13310 | Files: src/testdir/test_startup.vim |
| 13311 | |
| 13312 | Patch 7.4.2174 |
| 13313 | Problem: Adding duplicate flags to 'whichwrap' leaves commas behind. |
| 13314 | Solution: Also remove the commas. (Naruhiko Nishino) |
| 13315 | Files: src/Makefile, src/option.c, src/testdir/Make_all.mak, |
| 13316 | src/testdir/test_alot.vim, src/testdir/test_options.in, |
| 13317 | src/testdir/test_options.ok, src/testdir/test_options.vim |
| 13318 | |
| 13319 | Patch 7.4.2175 |
| 13320 | Problem: Insufficient testing of cscope. |
| 13321 | Solution: Add more tests. (Dominique Pelle) |
| 13322 | Files: src/testdir/test_cscope.vim |
| 13323 | |
| 13324 | Patch 7.4.2176 |
| 13325 | Problem: #ifdefs in main() are complicated. |
| 13326 | Solution: Always define vim_main2(). Move params to the file level. |
| 13327 | (suggested by Ken Takata) |
| 13328 | Files: src/main.c, src/structs.h, src/vim.h, src/if_mzsch.c, |
| 13329 | src/proto/if_mzsch.pro |
| 13330 | |
| 13331 | Patch 7.4.2177 |
| 13332 | Problem: No testing for -C and -N command line flags, file arguments, |
| 13333 | startuptime. |
| 13334 | Solution: Add tests. |
| 13335 | Files: src/testdir/test_startup.vim, src/testdir/shared.vim |
| 13336 | |
| 13337 | Patch 7.4.2178 |
| 13338 | Problem: No test for reading from stdin. |
| 13339 | Solution: Add a test. |
| 13340 | Files: src/testdir/test_startup.vim, src/testdir/shared.vim |
| 13341 | |
| 13342 | Patch 7.4.2179 (after 7.4.2178) |
| 13343 | Problem: Reading from stdin test fails on MS-Windows. |
| 13344 | Solution: Strip the extra space. |
| 13345 | Files: src/testdir/test_startup.vim |
| 13346 | |
| 13347 | Patch 7.4.2180 |
| 13348 | Problem: There is no easy way to stop all timers. There is no way to |
| 13349 | temporary pause a timer. |
| 13350 | Solution: Add timer_stopall() and timer_pause(). |
| 13351 | Files: src/evalfunc.c, src/ex_cmds2.c, src/proto/ex_cmds2.pro, |
| 13352 | src/structs.h, src/testdir/test_timers.vim, |
| 13353 | src/testdir/shared.vim, runtime/doc/eval.txt |
| 13354 | |
| 13355 | Patch 7.4.2181 |
| 13356 | Problem: Compiler warning for unused variable. |
| 13357 | Solution: Remove it. (Dominique Pelle) |
| 13358 | Files: src/ex_cmds2.c |
| 13359 | |
| 13360 | Patch 7.4.2182 |
| 13361 | Problem: Color Grey40 used in startup but not in the short list. |
| 13362 | Solution: Add Grey40 to the builtin colors. |
| 13363 | Files: src/term.c |
| 13364 | |
| 13365 | Patch 7.4.2183 |
| 13366 | Problem: Sign tests are old style. |
| 13367 | Solution: Turn them into new style tests. (Dominique Pelle) |
| 13368 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_signs.in, |
| 13369 | src/testdir/test_signs.ok, src/testdir/test_signs.vim, |
| 13370 | |
| 13371 | Patch 7.4.2184 |
| 13372 | Problem: Tests that use RunVim() do not actually perform the test. |
| 13373 | Solution: Use "return" instead of "call". (Ken Takata) |
| 13374 | Files: src/testdir/shared.vim |
| 13375 | |
| 13376 | Patch 7.4.2185 |
| 13377 | Problem: Test glob2regpat does not test much. |
| 13378 | Solution: Add a few more test cases. (Dominique Pelle) |
| 13379 | Files: src/testdir/test_glob2regpat.vim |
| 13380 | |
| 13381 | Patch 7.4.2186 |
| 13382 | Problem: Timers test is flaky. |
| 13383 | Solution: Relax the sleep time check. |
| 13384 | Files: src/testdir/test_timers.vim |
| 13385 | |
| 13386 | Patch 7.4.2187 (after 7.4.2185) |
| 13387 | Problem: glob2regpat test fails on Windows. |
| 13388 | Solution: Remove the checks that use backslashes. |
| 13389 | Files: src/testdir/test_glob2regpat.vim |
| 13390 | |
| 13391 | Patch 7.4.2188 (after 7.4.2146) |
| 13392 | Problem: Completion does not work properly with some plugins. |
| 13393 | Solution: Revert the part related to typing CTRL-E. (closes #972) |
| 13394 | Files: src/edit.c, src/testdir/test_popup.vim |
| 13395 | |
| 13396 | Patch 7.4.2189 |
| 13397 | Problem: Cannot detect encoding in a fifo. |
| 13398 | Solution: Extend the stdin way of detecting encoding to fifo. Add a test |
| 13399 | for detecting encoding on stdin and fifo. (Ken Takata) |
| 13400 | Files: src/buffer.c, src/fileio.c, src/Makefile, |
| 13401 | src/testdir/Make_all.mak, src/testdir/test_startup_utf8.vim, |
| 13402 | src/vim.h |
| 13403 | |
| 13404 | Patch 7.4.2190 |
| 13405 | Problem: When startup test fails it's not easy to find out why. |
| 13406 | GUI test fails with Gnome. |
| 13407 | Solution: Add the help entry matches to a list an assert that. |
| 13408 | Set $HOME for Gnome to create .gnome2 directory. |
| 13409 | Files: src/testdir/test_startup.vim, src/testdir/test_gui.vim |
| 13410 | |
| 13411 | Patch 7.4.2191 |
| 13412 | Problem: No automatic prototype for vim_main2(). |
| 13413 | Solution: Move the #endif. (Ken Takata) |
| 13414 | Files: src/main.c, src/vim.h, src/proto/main.pro |
| 13415 | |
| 13416 | Patch 7.4.2192 |
| 13417 | Problem: Generating prototypes with Cygwin doesn't work well. |
| 13418 | Solution: Change #ifdefs. (Ken Takata) |
| 13419 | Files: src/gui.h, src/gui_w32.c, src/ops.c, src/proto/fileio.pro, |
| 13420 | src/proto/message.pro, src/proto/normal.pro, src/proto/ops.pro, |
| 13421 | src/vim.h |
| 13422 | |
| 13423 | Patch 7.4.2193 |
| 13424 | Problem: With Gnome when the GUI can't start test_startup hangs. |
| 13425 | Solution: Call gui_mch_early_init_check(). (Hirohito Higashi) |
| 13426 | Files: src/gui.c, src/gui_gtk_x11.c, src/proto/gui_gtk_x11.pro |
| 13427 | |
| 13428 | Patch 7.4.2194 |
| 13429 | Problem: Sign tests don't cover enough. |
| 13430 | Solution: Add more test cases. (Dominique Pelle) |
| 13431 | Files: src/testdir/test_signs.vim |
| 13432 | |
| 13433 | Patch 7.4.2195 |
| 13434 | Problem: MS-Windows: The vimrun program does not support Unicode. |
| 13435 | Solution: Use GetCommandLineW(). Cleanup old #ifdefs. (Ken Takata) |
| 13436 | Files: src/vimrun.c |
| 13437 | |
| 13438 | Patch 7.4.2196 |
| 13439 | Problem: glob2regpat test doesn't test everything on MS-Windows. |
| 13440 | Solution: Add patterns with backslash handling. |
| 13441 | Files: src/testdir/test_glob2regpat.vim |
| 13442 | |
| 13443 | Patch 7.4.2197 |
| 13444 | Problem: All functions are freed on exit, which may hide leaks. |
| 13445 | Solution: Only free named functions, not reference counted ones. |
| 13446 | Files: src/userfunc.c |
| 13447 | |
| 13448 | Patch 7.4.2198 |
| 13449 | Problem: Test alot sometimes fails under valgrind. (Dominique Pelle) |
| 13450 | Solution: Avoid passing a callback with the wrong number of arguments. |
| 13451 | Files: src/testdir/test_partial.vim |
| 13452 | |
| 13453 | Patch 7.4.2199 |
| 13454 | Problem: In the GUI the cursor is hidden when redrawing any window, |
| 13455 | causing flicker. |
| 13456 | Solution: Only undraw the cursor when updating the window it's in. |
| 13457 | Files: src/screen.c, src/gui.c, src/proto/gui.pro, src/gui_gtk_x11.c |
| 13458 | |
| 13459 | Patch 7.4.2200 |
| 13460 | Problem: Cannot get all information about a quickfix list. |
| 13461 | Solution: Add an optional argument to get/set loc/qf list(). (Yegappan |
| 13462 | Lakshmanan) |
| 13463 | Files: runtime/doc/eval.txt, src/evalfunc.c, src/proto/quickfix.pro, |
| 13464 | src/quickfix.c, src/tag.c, src/testdir/test_quickfix.vim |
| 13465 | |
| 13466 | Patch 7.4.2201 |
| 13467 | Problem: The sign column disappears when the last sign is deleted. |
| 13468 | Solution: Add the 'signcolumn' option. (Christian Brabandt) |
| 13469 | Files: runtime/doc/options.txt, runtime/optwin.vim, src/edit.c, |
| 13470 | src/move.c, src/option.c, src/option.h, src/proto/option.pro, |
| 13471 | src/screen.c, src/structs.h, src/testdir/test_options.vim |
| 13472 | |
| 13473 | Patch 7.4.2202 |
| 13474 | Problem: Build fails with small features. |
| 13475 | Solution: Correct option initialization. |
| 13476 | Files: src/option.c |
| 13477 | |
| 13478 | Patch 7.4.2203 |
| 13479 | Problem: Test fails with normal features. |
| 13480 | Solution: Check is signs are supported. |
| 13481 | Files: src/testdir/test_options.vim |
| 13482 | |
| 13483 | Patch 7.4.2204 |
| 13484 | Problem: It is not easy to get information about buffers, windows and |
| 13485 | tabpages. |
| 13486 | Solution: Add getbufinfo(), getwininfo() and gettabinfo(). (Yegappan |
| 13487 | Lakshmanan) |
| 13488 | Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/dict.c, |
| 13489 | src/evalfunc.c, src/option.c, src/proto/dict.pro, |
| 13490 | src/proto/option.pro, src/proto/window.pro, |
| 13491 | src/testdir/Make_all.mak, src/testdir/test_bufwintabinfo.vim, |
| 13492 | src/window.c, src/Makefile |
| 13493 | |
| 13494 | Patch 7.4.2205 |
| 13495 | Problem: 'wildignore' always applies to getcompletion(). |
| 13496 | Solution: Add an option to use 'wildignore' or not. (Yegappan Lakshmanan) |
| 13497 | Files: runtime/doc/eval.txt, src/evalfunc.c, src/testdir/test_cmdline.vim |
| 13498 | |
| 13499 | Patch 7.4.2206 |
| 13500 | Problem: Warning for unused function. |
| 13501 | Solution: Put the function inside #ifdef. (John Marriott) |
| 13502 | Files: src/evalfunc.c |
| 13503 | |
| 13504 | Patch 7.4.2207 |
| 13505 | Problem: The +xpm feature is not sorted properly in :version output. |
| 13506 | Solution: Move it up. (Tony Mechelynck) |
| 13507 | Files: src/version.c |
| 13508 | |
| 13509 | Patch 7.4.2208 |
| 13510 | Problem: Test for mappings is old style. |
| 13511 | Solution: Convert the test to new style. |
| 13512 | Files: src/testdir/test_mapping.vim, src/testdir/test_mapping.in, |
| 13513 | src/testdir/test_mapping.ok, src/Makefile, |
| 13514 | src/testdir/test_alot.vim, src/testdir/Make_all.mak |
| 13515 | |
| 13516 | Patch 7.4.2209 |
| 13517 | Problem: Cannot map <M-">. (Stephen Riehm) |
| 13518 | Solution: Solve the memory access problem in another way. (Dominique Pelle) |
| 13519 | Allow for using <M-\"> in a string. |
| 13520 | Files: src/eval.c, src/gui_mac.c, src/misc2.c, src/option.c, |
| 13521 | src/proto/misc2.pro, src/syntax.c, src/term.c, |
| 13522 | src/testdir/test_mapping.vim |
| 13523 | |
| 13524 | Patch 7.4.2210 |
| 13525 | Problem: On OSX configure mixes up a Python framework and the Unix layout. |
| 13526 | Solution: Make configure check properly. (Tim D. Smith, closes #980) |
| 13527 | Files: src/configure.in, src/auto/configure |
| 13528 | |
| 13529 | Patch 7.4.2211 |
| 13530 | Problem: Mouse support is not automatically enabled with simple term. |
| 13531 | Solution: Recognize "st" and other names. (Manuel Schiller, closes #963) |
| 13532 | Files: src/os_unix.c |
| 13533 | |
| 13534 | Patch 7.4.2212 |
| 13535 | Problem: Mark " is not set when closing a window in another tab. (Guraga) |
| 13536 | Solution: Check all tabs for the window to be valid. (based on patch by |
| 13537 | Hirohito Higashi, closes #974) |
| 13538 | Files: src/window.c, src/proto/window.pro, src/buffer.c, |
| 13539 | src/testdir/test_viminfo.vim |
| 13540 | |
| 13541 | Patch 7.4.2213 |
| 13542 | Problem: Cannot highlight the "~" lines at the end of a window differently. |
| 13543 | Solution: Add the EndOfBuffer highlighting. (Marco Hinz, James McCoy) |
| 13544 | Files: runtime/doc/options.txt, runtime/doc/syntax.txt, src/option.c, |
| 13545 | src/screen.c, src/syntax.c, src/vim.h |
| 13546 | |
| 13547 | Patch 7.4.2214 |
| 13548 | Problem: A font that uses ligatures messes up the screen display. |
| 13549 | Solution: Put spaces between characters when building the glyph table. |
| 13550 | (based on a patch from Manuel Schiller) |
| 13551 | Files: src/gui_gtk_x11.c |
| 13552 | |
| 13553 | Patch 7.4.2215 |
| 13554 | Problem: It's not easy to find out if a window is a quickfix or location |
| 13555 | list window. |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 13556 | Solution: Add "loclist" and "quickfix" entries to the dict returned by |
Bram Moolenaar | dc1f164 | 2016-08-16 18:33:43 +0200 | [diff] [blame] | 13557 | getwininfo(). (Yegappan Lakshmanan) |
| 13558 | Files: runtime/doc/eval.txt, src/evalfunc.c, |
| 13559 | src/testdir/test_bufwintabinfo.vim |
| 13560 | |
| 13561 | Patch 7.4.2216 (after 7.4.2215) |
| 13562 | Problem: Test fails without the +sign feature. |
| 13563 | Solution: Only check for signcolumn with the +sign feature. |
| 13564 | Files: src/testdir/test_bufwintabinfo.vim |
| 13565 | |
| 13566 | Patch 7.4.2217 |
| 13567 | Problem: When using matchaddpos() a character after the end of the line can |
| 13568 | be highlighted. |
| 13569 | Solution: Only highlight existing characters. (Hirohito Higashi) |
| 13570 | Files: src/screen.c, src/structs.h, src/testdir/test_match.vim |
| 13571 | |
Bram Moolenaar | 36f44c2 | 2016-08-28 18:17:20 +0200 | [diff] [blame] | 13572 | Patch 7.4.2218 |
| 13573 | Problem: Can't build with +timers when +digraph is not included. |
| 13574 | Solution: Change #ifdef for e_number_exp. (Damien) |
| 13575 | Files: src/globals.h |
| 13576 | |
| 13577 | Patch 7.4.2219 |
| 13578 | Problem: Recursive call to substitute gets stuck in sandbox. (Nikolai |
| 13579 | Pavlov) |
| 13580 | Solution: Handle the recursive call. (Christian Brabandt, closes #950) |
| 13581 | Add a test. |
| 13582 | Files: src/ex_cmds.c, src/testdir/test_regexp_latin.vim |
| 13583 | |
| 13584 | Patch 7.4.2220 |
| 13585 | Problem: printf() gives an error when the argument for %s is not a string. |
| 13586 | (Ozaki Kiichi) |
| 13587 | Solution: Behave like invoking string() on the argument. (Ken Takata) |
| 13588 | Files: runtime/doc/eval.txt, src/message.c, src/testdir/test_expr.vim |
| 13589 | |
| 13590 | Patch 7.4.2221 |
| 13591 | Problem: printf() does not support binary format. |
| 13592 | Solution: Add %b and %B. (Ozaki Kiichi) |
| 13593 | Files: runtime/doc/eval.txt, src/message.c, src/testdir/test_expr.vim |
| 13594 | |
| 13595 | Patch 7.4.2222 |
| 13596 | Problem: Sourcing a script where a character has 0x80 as a second byte does |
| 13597 | not work. (Filipe L B Correia) |
| 13598 | Solution: Turn 0x80 into K_SPECIAL KS_SPECIAL KE_FILLER. (Christian |
| 13599 | Brabandt, closes #728) Add a test case. |
| 13600 | Files: src/getchar.c, src/proto/getchar.pro, src/misc1.c, |
| 13601 | src/testdir/test_regexp_utf8.vim |
| 13602 | |
| 13603 | Patch 7.4.2223 |
| 13604 | Problem: Buffer overflow when using latin1 character with feedkeys(). |
| 13605 | Solution: Check for an illegal character. Add a test. |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 13606 | 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] | 13607 | src/testdir/test_alot_utf8.vim, src/Makefile, src/getchar.c, |
| 13608 | src/macros.h, src/evalfunc.c, src/os_unix.c, src/os_win32.c, |
| 13609 | src/spell.c, |
| 13610 | |
| 13611 | Patch 7.4.2224 |
| 13612 | Problem: Compiler warnings with older compiler and 64 bit numbers. |
| 13613 | Solution: Add "LL" to large values. (Mike Williams) |
| 13614 | Files: src/eval.c, src/evalfunc.c |
| 13615 | |
| 13616 | Patch 7.4.2225 |
| 13617 | Problem: Crash when placing a sign in a deleted buffer. |
| 13618 | Solution: Check for missing buffer name. (Dominique Pelle). Add a test. |
| 13619 | Files: src/ex_cmds.c, src/testdir/test_signs.vim |
| 13620 | |
| 13621 | Patch 7.4.2226 |
| 13622 | Problem: The field names used by getbufinfo(), gettabinfo() and |
| 13623 | getwininfo() are not consistent. |
| 13624 | Solution: Use bufnr, winnr and tabnr. (Yegappan Lakshmanan) |
| 13625 | Files: runtime/doc/eval.txt, src/evalfunc.c, |
| 13626 | src/testdir/test_bufwintabinfo.vim |
| 13627 | |
| 13628 | Patch 7.4.2227 |
| 13629 | Problem: Tab page tests are old style. |
| 13630 | Solution: Change into new style tests. (Hirohito Higashi) |
| 13631 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test62.in, |
| 13632 | src/testdir/test62.ok, src/testdir/test_alot.vim, |
| 13633 | src/testdir/test_tabpage.vim |
| 13634 | |
| 13635 | Patch 7.4.2228 |
| 13636 | Problem: Test files have inconsistent modelines. |
| 13637 | Solution: Don't set 'tabstop' to 2, use 'sts' and 'sw'. |
| 13638 | Files: src/testdir/README.txt, src/testdir/test_backspace_opt.vim, |
| 13639 | src/testdir/test_digraph.vim, src/testdir/test_gn.vim |
| 13640 | src/testdir/test_help_tagjump.vim, |
| 13641 | src/testdir/test_increment_dbcs.vim, |
| 13642 | src/testdir/test_increment.vim, src/testdir/test_match.vim, |
| 13643 | src/testdir/test_tagjump.vim, src/testdir/test_window_cmd.vim, |
| 13644 | src/testdir/test_regexp_latin.vim, src/testdir/test_timers.vim |
| 13645 | |
| 13646 | Patch 7.4.2229 |
| 13647 | Problem: Startup test fails on Solaris. |
| 13648 | Solution: Recognize a character device. (Danek Duvall) |
| 13649 | Files: src/buffer.c, src/fileio.c, src/proto/fileio.pro, src/vim.h |
| 13650 | |
| 13651 | Patch 7.4.2230 |
| 13652 | Problem: There is no equivalent of 'smartcase' for a tag search. |
| 13653 | Solution: Add value "followscs" and "smart" to 'tagcase'. (Christian |
| 13654 | Brabandt, closes #712) Turn tagcase test into new style. |
| 13655 | Files: runtime/doc/options.txt, runtime/doc/tagsrch.txt, src/option.h, |
| 13656 | src/tag.c, src/search.c, src/proto/search.pro, |
| 13657 | src/testdir/test_tagcase.in, src/testdir/test_tagcase.ok, |
| 13658 | src/testdir/test_tagcase.vim, src/Makefile, |
| 13659 | src/testdir/Make_all.mak, src/testdir/test_alot.vim |
| 13660 | |
| 13661 | Patch 7.4.2231 |
| 13662 | Problem: ":oldfiles" output is a very long list. |
| 13663 | Solution: Add a pattern argument. (Coot, closes #575) |
| 13664 | Files: runtime/doc/starting.txt, src/ex_cmds.h, src/eval.c, |
| 13665 | src/ex_cmds.c, src/proto/eval.pro, src/proto/ex_cmds.pro, |
| 13666 | src/testdir/test_viminfo.vim |
| 13667 | |
| 13668 | Patch 7.4.2232 |
| 13669 | Problem: The default ttimeoutlen is very long. |
| 13670 | Solution: Use "100". (Hirohito Higashi) |
| 13671 | Files: runtime/defaults.vim |
| 13672 | |
| 13673 | Patch 7.4.2233 |
| 13674 | Problem: Crash when using funcref() with invalid name. (Dominique Pelle) |
| 13675 | Solution: Check for NULL translated name. |
| 13676 | Files: src/evalfunc.c, src/testdir/test_expr.vim |
| 13677 | |
| 13678 | Patch 7.4.2234 |
| 13679 | Problem: Can't build with +eval but without +quickfix. (John Marriott) |
| 13680 | Solution: Move skip_vimgrep_pat() to separate #ifdef block. |
| 13681 | Files: src/quickfix.c |
| 13682 | |
| 13683 | Patch 7.4.2235 |
| 13684 | Problem: submatch() does not check for a valid argument. |
| 13685 | Solution: Give an error if the argument is out of range. (Dominique Pelle) |
| 13686 | Files: src/evalfunc.c, src/testdir/test_expr.vim |
| 13687 | |
| 13688 | Patch 7.4.2236 |
| 13689 | Problem: The 'langnoremap' option leads to double negatives. And it does |
| 13690 | not work for the last character of a mapping. |
| 13691 | Solution: Add 'langremap' with the opposite value. Keep 'langnoremap' for |
| 13692 | backwards compatibility. Make it work for the last character of a |
| 13693 | mapping. Make the test work. |
| 13694 | Files: runtime/doc/options.txt, runtime/defaults.vim, src/option.c, |
| 13695 | src/option.h, src/macros.h, src/testdir/test_mapping.vim |
| 13696 | |
| 13697 | Patch 7.4.2237 |
| 13698 | Problem: Can't use "." and "$" with ":tab". |
| 13699 | Solution: Support a range for ":tab". (Hirohito Higashi) |
| 13700 | Files: runtime/doc/tabpage.txt, src/ex_docmd.c, |
| 13701 | src/testdir/test_tabpage.vim |
| 13702 | |
| 13703 | Patch 7.4.2238 |
| 13704 | Problem: With SGR mouse reporting (suckless terminal) the mouse release and |
| 13705 | scroll up/down is confused. |
| 13706 | Solution: Don't see a release as a scroll up/down. (Ralph Eastwood) |
| 13707 | Files: src/term.c |
| 13708 | |
| 13709 | Patch 7.4.2239 |
| 13710 | Problem: Warning for missing declaration of skip_vimgrep_pat(). (John |
| 13711 | Marriott) |
| 13712 | Solution: Move it to another file. |
| 13713 | Files: src/quickfix.c, src/proto/quickfix.pro, src/ex_cmds.c, |
| 13714 | src/proto/ex_cmds.pro |
| 13715 | |
| 13716 | Patch 7.4.2240 |
| 13717 | Problem: Tests using the sleep time can be flaky. |
| 13718 | Solution: Use reltime() if available. (Partly by Shane Harper) |
| 13719 | Files: src/testdir/shared.vim, src/testdir/test_timers.vim |
| 13720 | |
| 13721 | Patch 7.4.2241 (after 7.4.2240) |
| 13722 | Problem: Timer test sometimes fails. |
| 13723 | Solution: Increase the maximum time for repeating timer. |
| 13724 | Files: src/testdir/test_timers.vim |
| 13725 | |
| 13726 | Patch 7.4.2242 (after 7.4.2240) |
| 13727 | Problem: Timer test sometimes fails. |
| 13728 | Solution: Increase the maximum time for callback timer test. |
| 13729 | Files: src/testdir/test_timers.vim |
| 13730 | |
| 13731 | Patch 7.4.2243 |
| 13732 | Problem: Warning for assigning negative value to unsigned. (Danek Duvall) |
| 13733 | Solution: Make cterm_normal_fg_gui_color and _bg_ guicolor_T, cast to long_u |
| 13734 | only when an unsigned is needed. |
| 13735 | Files: src/structs.h, src/globals.h, src/screen.c, src/term.c, |
| 13736 | src/syntax.c, src/gui_gtk_x11.c, src/gui.c, src/gui_mac.c, |
| 13737 | src/gui_photon.c, src/gui_w32.c, src/gui_x11.c, |
| 13738 | src/proto/term.pro, src/proto/gui_gtk_x11.pro, |
| 13739 | src/proto/gui_mac.pro, src/proto/gui_photon.pro, |
| 13740 | src/proto/gui_w32.pro, src/proto/gui_x11.pro |
| 13741 | |
| 13742 | Patch 7.4.2244 |
| 13743 | Problem: Adding pattern to ":oldfiles" is not a generic solution. |
| 13744 | Solution: Add the ":filter /pat/ cmd" command modifier. Only works for some |
| 13745 | commands right now. |
| 13746 | Files: src/structs.h, src/ex_docmd.c, src/ex_cmds.h, src/message.c, |
| 13747 | src/proto/message.pro, runtime/doc/starting.txt, |
| 13748 | runtime/doc/various.txt, src/testdir/test_viminfo.vim, |
| 13749 | src/testdir/test_alot.vim, src/testdir/test_filter_cmd.vim, |
| 13750 | src/Makefile |
| 13751 | |
| 13752 | Patch 7.4.2245 (after 7.4.2244) |
| 13753 | Problem: Filter test fails. |
| 13754 | Solution: Include missing changes. |
| 13755 | Files: src/buffer.c |
| 13756 | |
| 13757 | Patch 7.4.2246 (after 7.4.2244) |
| 13758 | Problem: Oldfiles test fails. |
| 13759 | Solution: Include missing changes. |
| 13760 | Files: src/ex_cmds.c |
| 13761 | |
| 13762 | Patch 7.4.2247 (after 7.4.2244) |
| 13763 | Problem: Tiny build fails. (Tony Mechelynck) |
| 13764 | Solution: Remove #ifdef. |
| 13765 | Files: src/ex_cmds.c |
| 13766 | |
| 13767 | Patch 7.4.2248 |
| 13768 | Problem: When cancelling the :ptjump prompt a preview window is opened for |
| 13769 | a following command. |
| 13770 | Solution: Reset g_do_tagpreview. (Hirohito Higashi) Add a test. Avoid that |
| 13771 | the test runner gets stuck in trying to close a window. |
| 13772 | Files: src/tag.c, src/testdir/test_tagjump.vim, src/testdir/runtest.vim |
| 13773 | |
| 13774 | Patch 7.4.2249 |
| 13775 | Problem: Missing colon in error message. |
| 13776 | Solution: Add the colon. (Dominique Pelle) |
| 13777 | Files: src/userfunc.c |
| 13778 | |
| 13779 | Patch 7.4.2250 |
| 13780 | Problem: Some error messages cannot be translated. |
| 13781 | Solution: Enclose them in _() and N_(). (Dominique Pelle) |
| 13782 | Files: src/channel.c, src/evalfunc.c, src/ex_cmds.c, src/spell.c, |
| 13783 | src/window.c |
| 13784 | |
| 13785 | Patch 7.4.2251 |
| 13786 | Problem: In rare cases diffing 4 buffers is not enough. |
| 13787 | Solution: Raise the limit to 8. (closes #1000) |
| 13788 | Files: src/structs.h, runtime/doc/diff.txt |
| 13789 | |
| 13790 | Patch 7.4.2252 |
| 13791 | Problem: Compiler warnings for signed/unsigned in expression. |
| 13792 | Solution: Remove type cast. (Dominique Pelle) |
| 13793 | Files: src/vim.h |
| 13794 | |
| 13795 | Patch 7.4.2253 |
| 13796 | Problem: Check for Windows 3.1 will always return false. (Christian |
| 13797 | Brabandt) |
| 13798 | Solution: Remove the dead code. |
| 13799 | Files: src/gui_w32.c, src/evalfunc.c, src/ex_cmds.c, src/option.c, |
| 13800 | src/os_win32.c, src/version.c, src/proto/gui_w32.pro |
| 13801 | |
| 13802 | Patch 7.4.2254 |
| 13803 | Problem: Compiler warnings in MzScheme code. |
| 13804 | Solution: Add UNUSED. Remove unreachable code. |
| 13805 | Files: src/if_mzsch.c |
| 13806 | |
| 13807 | Patch 7.4.2255 |
| 13808 | Problem: The script that checks translations can't handle plurals. |
| 13809 | Solution: Check for plural msgid and msgstr entries. Leave the cursor on |
| 13810 | the first error. |
| 13811 | Files: src/po/check.vim |
| 13812 | |
| 13813 | Patch 7.4.2256 |
| 13814 | Problem: Coverity complains about null pointer check. |
| 13815 | Solution: Remove wrong and superfluous error check. |
| 13816 | Files: src/eval.c |
| 13817 | |
| 13818 | Patch 7.4.2257 |
| 13819 | Problem: Coverity complains about not checking for NULL. |
| 13820 | Solution: Check for out of memory. |
| 13821 | Files: src/if_py_both.h |
| 13822 | |
| 13823 | Patch 7.4.2258 |
| 13824 | Problem: Two JSON messages are sent without a separator. |
| 13825 | Solution: Separate messages with a NL. (closes #1001) |
| 13826 | Files: src/json.c, src/channel.c, src/vim.h, src/testdir/test_channel.py, |
| 13827 | src/testdir/test_channel.vim, runtime/doc/channel.txt |
| 13828 | |
| 13829 | Patch 7.4.2259 |
| 13830 | Problem: With 'incsearch' can only see the next match. |
| 13831 | Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian |
| 13832 | Brabandt) |
| 13833 | Files: runtime/doc/cmdline.txt, src/ex_getln.c, src/testdir/Make_all.mak, |
| 13834 | src/testdir/test_search.vim, src/Makefile |
| 13835 | |
| 13836 | Patch 7.4.2260 (after 7.4.2258) |
| 13837 | Problem: Channel test is flaky. |
| 13838 | Solution: Add a newline to separate JSON messages. |
| 13839 | Files: src/testdir/test_channel.vim |
| 13840 | |
| 13841 | Patch 7.4.2261 (after 7.4.2259) |
| 13842 | Problem: Build fails with small features. |
| 13843 | Solution: Move "else" inside the #ifdef. |
| 13844 | Files: src/ex_getln.c |
| 13845 | |
| 13846 | Patch 7.4.2262 |
| 13847 | Problem: Fail to read register content from viminfo if it is 438 characters |
| 13848 | long. (John Chen) |
| 13849 | Solution: Adjust the check for line wrapping. (closes #1010) |
| 13850 | Files: src/testdir/test_viminfo.vim, src/ex_cmds.c |
| 13851 | |
| 13852 | Patch 7.4.2263 |
| 13853 | Problem: :filter does not work for many commands. Can only get matching |
| 13854 | messages. |
| 13855 | Solution: Make :filter work for :command, :map, :list, :number and :print. |
| 13856 | Make ":filter!" show non-matching lines. |
| 13857 | Files: src/getchar.c, src/ex_cmds.c, src/ex_cmds.h, src/ex_docmd.c, |
| 13858 | src/message.c, src/structs.h, src/testdir/test_filter_cmd.vim |
| 13859 | |
| 13860 | Patch 7.4.2264 |
| 13861 | Problem: When adding entries to an empty quickfix list the title is reset. |
| 13862 | Solution: Improve handling of the title. (Yegappan Lakshmanan) |
| 13863 | Files: src/testdir/test_quickfix.vim, src/quickfix.c |
| 13864 | |
| 13865 | Patch 7.4.2265 |
| 13866 | Problem: printf() isn't tested much. |
| 13867 | Solution: Add more tests for printf(). (Dominique Pelle) |
| 13868 | Files: src/testdir/test_expr.vim |
| 13869 | |
| 13870 | Patch 7.4.2266 (after 7.4.2265) |
| 13871 | Problem: printf() test fails on Windows. "-inf" is not used. |
| 13872 | Solution: Check for Windows-specific values for "nan". Add sign to "inf" |
| 13873 | when appropriate. |
| 13874 | Files: src/message.c, src/testdir/test_expr.vim |
| 13875 | |
| 13876 | Patch 7.4.2267 (after 7.4.2266) |
| 13877 | Problem: Build fails on MS-Windows. |
| 13878 | Solution: Add define to get isinf(). |
| 13879 | Files: src/message.c |
| 13880 | |
| 13881 | Patch 7.4.2268 (after 7.4.2259) |
| 13882 | Problem: Using CTRL-N and CTRL-P for incsearch shadows completion keys. |
| 13883 | Solution: Use CTRL-T and CTRL-G instead. |
| 13884 | Files: runtime/doc/cmdline.txt, src/ex_getln.c, |
| 13885 | src/testdir/test_search.vim |
| 13886 | |
| 13887 | Patch 7.4.2269 |
| 13888 | Problem: Using 'hlsearch' highlighting instead of matchpos if there is no |
| 13889 | search match. |
| 13890 | Solution: Pass NULL as last item to next_search_hl() when searching for |
| 13891 | 'hlsearch' match. (Shane Harper, closes #1013) |
| 13892 | Files: src/screen.c, src/testdir/test_match.vim. |
| 13893 | |
| 13894 | Patch 7.4.2270 |
| 13895 | Problem: Insufficient testing for NUL bytes on a raw channel. |
| 13896 | Solution: Add a test for writing and reading. |
| 13897 | Files: src/testdir/test_channel.vim |
| 13898 | |
| 13899 | Patch 7.4.2271 |
| 13900 | Problem: Netbeans test doesn't read settings from file. |
| 13901 | Solution: Use "-Xnbauth". |
| 13902 | Files: src/testdir/test_netbeans.vim |
| 13903 | |
| 13904 | Patch 7.4.2272 |
| 13905 | Problem: getbufinfo(), getwininfo() and gettabinfo() are inefficient. |
| 13906 | Solution: Instead of making a copy of the variables dictionary, use a |
| 13907 | reference. |
| 13908 | Files: src/evalfunc.c |
| 13909 | |
| 13910 | Patch 7.4.2273 |
| 13911 | Problem: getwininfo() and getbufinfo() are inefficient. |
| 13912 | Solution: Do not make a copy of all window/buffer-local options. Make it |
| 13913 | possible to get them with gettabwinvar() or getbufvar(). |
| 13914 | Files: src/evalfunc.c, src/eval.c, src/testdir/test_bufwintabinfo.vim, |
| 13915 | runtime/doc/eval.txt |
| 13916 | |
| 13917 | Patch 7.4.2274 |
| 13918 | Problem: Command line completion on "find **/filename" drops sub-directory. |
| 13919 | Solution: Handle this case separately. (Harm te Hennepe, closes #932, closes |
| 13920 | #939) |
| 13921 | Files: src/misc1.c, src/testdir/test_cmdline.vim |
| 13922 | |
| 13923 | Patch 7.4.2275 |
| 13924 | Problem: ":diffoff!" does not remove filler lines. |
| 13925 | Solution: Force a redraw and invalidate the cursor. (closes #1014) |
| 13926 | Files: src/diff.c, src/testdir/test_diffmode.vim |
| 13927 | |
| 13928 | Patch 7.4.2276 |
| 13929 | Problem: Command line test fails on Windows when run twice. |
| 13930 | Solution: Wipe the buffer so that the directory can be deleted. |
| 13931 | Files: src/testdir/test_cmdline.vim |
| 13932 | |
| 13933 | Patch 7.4.2277 |
| 13934 | Problem: Memory leak in getbufinfo() when there is a sign. (Dominique |
| 13935 | Pelle) |
| 13936 | Solution: Remove extra vim_strsave(). |
| 13937 | Files: src/evalfunc.c |
| 13938 | |
| 13939 | Patch 7.4.2278 |
| 13940 | Problem: New users have no idea of the 'scrolloff' option. |
| 13941 | Solution: Set 'scrolloff' in defaults.vim. |
| 13942 | Files: runtime/defaults.vim |
| 13943 | |
| 13944 | Patch 7.4.2279 |
| 13945 | Problem: Starting diff mode with the cursor in the last line might end up |
| 13946 | only showing one closed fold. (John Beckett) |
| 13947 | Solution: Scroll the window to show the same relative cursor position. |
| 13948 | Files: src/diff.c, src/window.c, src/proto/window.pro |
| 13949 | |
| 13950 | Patch 7.4.2280 |
| 13951 | Problem: printf() doesn't handle infinity float values correctly. |
| 13952 | Solution: Add a table with possible infinity values. (Dominique Pelle) |
| 13953 | Files: src/message.c, src/testdir/test_expr.vim |
| 13954 | |
| 13955 | Patch 7.4.2281 |
| 13956 | Problem: Timer test fails sometimes. |
| 13957 | Solution: Reduce minimum time by 1 msec. |
| 13958 | Files: src/testdir/test_timers.vim |
| 13959 | |
| 13960 | Patch 7.4.2282 |
| 13961 | Problem: When a child process is very fast waiting 10 msec for it is |
| 13962 | noticeable. (Ramel Eshed) |
| 13963 | Solution: Start waiting for 1 msec and gradually increase. |
| 13964 | Files: src/os_unix.c |
| 13965 | |
| 13966 | Patch 7.4.2283 |
| 13967 | Problem: Part of ":oldfiles" command isn't cleared. (Lifepillar) |
| 13968 | Solution: Clear the rest of the line. (closes 1018) |
| 13969 | Files: src/ex_cmds.c |
| 13970 | |
| 13971 | Patch 7.4.2284 |
| 13972 | Problem: Comment in scope header file is outdated. (KillTheMule) |
| 13973 | Solution: Point to the help instead. (closes #1017) |
| 13974 | Files: src/if_cscope.h |
| 13975 | |
| 13976 | Patch 7.4.2285 |
| 13977 | Problem: Generated files are outdated. |
| 13978 | Solution: Generate the files. Avoid errors when generating prototypes. |
| 13979 | Files: src/if_mzsch.h, src/Makefile, src/option.h, src/os_mac_conv.c, |
| 13980 | src/os_amiga.c, src/vim.h, src/structs.h, src/os_win32.c, |
| 13981 | src/if_lua.c, src/proto/mbyte.pro |
| 13982 | |
Bram Moolenaar | abd468e | 2016-09-08 22:22:43 +0200 | [diff] [blame] | 13983 | Patch 7.4.2286 |
| 13984 | Problem: The tee program isn't included. Makefile contains build |
| 13985 | instructions that don't work. |
| 13986 | Solution: Update the Filelist and build instructions. Remove build |
| 13987 | instructions for DOS and old Windows. Add the tee program. |
| 13988 | Files: Filelist, Makefile, nsis/gvim.nsi |
| 13989 | |
| 13990 | Patch 7.4.2287 |
| 13991 | Problem: The callback passed to ch_sendraw() is not used. |
| 13992 | Solution: Pass the read part, not the send part. (haya14busa, closes #1019) |
| 13993 | Files: src/channel.c, src/testdir/test_channel.vim |
| 13994 | |
| 13995 | Patch 7.4.2288 |
| 13996 | Problem: MS-Windows build instructions are clumsy. "dosbin" doesn't build. |
| 13997 | Solution: Add rename.bat. Fix building "dosbin". |
| 13998 | Files: Makefile, Filelist, rename.bat |
| 13999 | |
| 14000 | Patch 7.4.2289 |
| 14001 | Problem: When installing and $DESTDIR is set the icons probably won't be |
| 14002 | installed. |
| 14003 | Solution: Create the icon directories if $DESTDIR is not empty. (Danek |
| 14004 | Duvall) |
| 14005 | Files: src/Makefile |
| 14006 | |
| 14007 | Patch 7.4.2290 |
| 14008 | Problem: Compiler warning in tiny build. (Tony Mechelynck) |
| 14009 | Solution: Add #ifdef around infinity_str(). |
| 14010 | Files: src/message.c |
| 14011 | |
| 14012 | Patch 7.4.2291 |
| 14013 | Problem: printf() handles floats wrong when there is a sign. |
| 14014 | Solution: Fix placing the sign. Add tests. (Dominique Pelle) |
| 14015 | Files: src/testdir/test_expr.vim, runtime/doc/eval.txt, src/message.c |
| 14016 | |
| 14017 | Patch 7.4.2292 (after 7.4.2291) |
| 14018 | Problem: Not all systems understand %F in printf(). |
| 14019 | Solution: Use %f. |
| 14020 | Files: src/message.c |
| 14021 | |
| 14022 | Patch 7.4.2293 |
| 14023 | Problem: Modelines in source code are inconsistent. |
| 14024 | Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino) |
| 14025 | Files: src/alloc.h, src/arabic.c, src/arabic.h, src/ascii.h, |
| 14026 | src/blowfish.c, src/buffer.c, src/channel.c, src/charset.c, |
| 14027 | src/crypt.c, src/crypt_zip.c, src/dict.c, src/diff.c, |
| 14028 | src/digraph.c, src/dosinst.c, src/dosinst.h, src/edit.c, |
| 14029 | src/eval.c, src/evalfunc.c, src/ex_cmds.c, src/ex_cmds.h, |
| 14030 | src/ex_cmds2.c, src/ex_docmd.c, src/ex_eval.c, src/ex_getln.c, |
| 14031 | src/farsi.c, src/farsi.h, src/feature.h, src/fileio.c, src/fold.c, |
| 14032 | src/getchar.c, src/glbl_ime.cpp, src/glbl_ime.h, src/globals.h, |
| 14033 | src/gui.c, src/gui.h, src/gui_at_fs.c, src/gui_at_sb.c, |
| 14034 | src/gui_at_sb.h, src/gui_athena.c, src/gui_beval.c, |
| 14035 | src/gui_beval.h, src/gui_gtk.c, src/gui_gtk_f.c, src/gui_gtk_f.h, |
| 14036 | src/gui_gtk_vms.h, src/gui_gtk_x11.c, src/gui_mac.c, |
| 14037 | src/gui_motif.c, src/gui_photon.c, src/gui_w32.c, src/gui_x11.c, |
| 14038 | src/gui_x11_pm.h, src/gui_xmdlg.c, src/gui_xmebw.c, |
| 14039 | src/gui_xmebw.h, src/gui_xmebwp.h, src/hangulin.c, src/hardcopy.c, |
| 14040 | src/hashtab.c, src/if_cscope.c, src/if_cscope.h, src/if_mzsch.c, |
| 14041 | src/if_mzsch.h, src/if_ole.cpp, src/if_perl.xs, src/if_perlsfio.c, |
| 14042 | src/if_python3.c, src/if_ruby.c, src/if_tcl.c, src/if_xcmdsrv.c, |
| 14043 | src/integration.c, src/integration.h, src/iscygpty.c, src/json.c, |
| 14044 | src/json_test.c, src/keymap.h, src/list.c, src/macros.h, |
| 14045 | src/main.c, src/mark.c, src/mbyte.c, src/memfile.c, |
| 14046 | src/memfile_test.c, src/memline.c, src/menu.c, src/message.c, |
| 14047 | src/message_test.c, src/misc1.c, src/misc2.c, src/move.c, |
| 14048 | src/nbdebug.c, src/nbdebug.h, src/netbeans.c, src/normal.c, |
| 14049 | src/ops.c, src/option.c, src/option.h, src/os_amiga.c, |
| 14050 | src/os_amiga.h, src/os_beos.c, src/os_beos.h, src/os_dos.h, |
| 14051 | src/os_mac.h, src/os_mac_conv.c, src/os_macosx.m, src/os_mint.h, |
| 14052 | src/os_mswin.c, src/os_qnx.c, src/os_qnx.h, src/os_unix.c, |
| 14053 | src/os_unix.h, src/os_unixx.h, src/os_vms.c, src/os_w32dll.c, |
| 14054 | src/os_w32exe.c, src/os_win32.c, src/os_win32.h, src/popupmnu.c, |
| 14055 | src/proto.h, src/pty.c, src/quickfix.c, src/regexp.c, |
| 14056 | src/regexp.h, src/regexp_nfa.c, src/screen.c, src/search.c, |
| 14057 | src/sha256.c, src/spell.c, src/spell.h, src/spellfile.c, |
| 14058 | src/structs.h, src/syntax.c, src/tag.c, src/term.c, src/term.h, |
| 14059 | src/termlib.c, src/ui.c, src/undo.c, src/uninstal.c, |
| 14060 | src/userfunc.c, src/version.c, src/version.h, src/vim.h, |
| 14061 | src/vim.rc, src/vimio.h, src/vimrun.c, src/winclip.c, |
| 14062 | src/window.c, src/workshop.c, src/workshop.h, src/wsdebug.c, |
| 14063 | src/wsdebug.h, src/xpm_w32.c |
| 14064 | |
| 14065 | Patch 7.4.2294 |
| 14066 | Problem: Sign test fails on MS-Windows when using the distributed zip |
| 14067 | archives. |
| 14068 | Solution: Create dummy files instead of relying on files in the pixmaps |
| 14069 | directory. |
| 14070 | Files: src/testdir/test_signs.vim |
| 14071 | |
| 14072 | Patch 7.4.2295 (after 7.4.2293) |
| 14073 | Problem: Cscope test fails. |
| 14074 | Solution: Avoid checking for specific line and column numbers. |
| 14075 | Files: src/testdir/test_cscope.vim |
| 14076 | |
| 14077 | Patch 7.4.2296 |
| 14078 | Problem: No tests for :undolist and "U" command. |
| 14079 | Solution: Add tests. (Dominique Pelle) |
| 14080 | Files: src/testdir/test_undo.vim |
| 14081 | |
| 14082 | Patch 7.4.2297 |
| 14083 | Problem: When starting a job that reads from a buffer and reaching the end, |
| 14084 | the job hangs. |
| 14085 | Solution: Close the pipe or socket when all lines were read. |
| 14086 | Files: src/channel.c, src/testdir/test_channel.vim |
| 14087 | |
| 14088 | Patch 7.4.2298 |
| 14089 | Problem: It is not possible to close the "in" part of a channel. |
| 14090 | Solution: Add ch_close_in(). |
| 14091 | Files: src/evalfunc.c, src/channel.c, src/proto/channel.pro, |
| 14092 | src/testdir/test_channel.vim, runtime/doc/eval.txt, |
| 14093 | runtime/doc/channel.txt |
| 14094 | |
| 14095 | Patch 7.4.2299 |
| 14096 | Problem: QuickFixCmdPre and QuickFixCmdPost autocommands are not always |
| 14097 | triggered. |
| 14098 | Solution: Also trigger on ":cexpr", ":cbuffer", etc. (Yegappan Lakshmanan) |
| 14099 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 14100 | |
| 14101 | Patch 7.4.2300 |
| 14102 | Problem: Get warning for deleting autocommand group when the autocommand |
| 14103 | using the group is scheduled for deletion. (Pavol Juhas) |
| 14104 | Solution: Check for deleted autocommand. |
| 14105 | Files: src/fileio.c, src/testdir/test_autocmd.vim |
| 14106 | |
| 14107 | Patch 7.4.2301 |
| 14108 | Problem: MS-Windows: some files remain after testing. |
| 14109 | Solution: Close the channel output file. Wait for the file handle to be |
| 14110 | closed before deleting the file. |
| 14111 | Files: src/os_win32.c, src/testdir/test_channel.vim |
| 14112 | |
| 14113 | Patch 7.4.2302 |
| 14114 | Problem: Default interface versions for MS-Windows are outdated. |
| 14115 | Solution: Use Active Perl 5.24, Python 3.5.2. Could only make it work with |
| 14116 | Ruby 1.9.2. |
| 14117 | Files: src/bigvim.bat, src/bigvim64.bat, src/Make_mvc.mak |
| 14118 | |
| 14119 | Patch 7.4.2303 |
| 14120 | Problem: When using "is" the mode isn't always updated. |
| 14121 | Solution: Redraw the command line. (Christian Brabandt) |
| 14122 | Files: src/search.c |
| 14123 | |
| 14124 | Patch 7.4.2304 |
| 14125 | Problem: In a timer callback the timer itself can't be found or stopped. |
| 14126 | (Thinca) |
| 14127 | Solution: Do not remove the timer from the list, remember whether it was |
| 14128 | freed. |
| 14129 | Files: src/ex_cmds2.c, src/testdir/test_timers.vim |
| 14130 | |
| 14131 | Patch 7.4.2305 |
| 14132 | Problem: Marks, writefile and nested function tests are old style. |
| 14133 | Solution: Turn them into new style tests. (Yegappan Lakshmanan) |
| 14134 | Files: src/testdir/Make_all.mak, src/testdir/test_marks.in, |
| 14135 | src/testdir/test_marks.ok, src/testdir/test_marks.vim, |
| 14136 | src/testdir/test_nested_function.in, |
| 14137 | src/testdir/test_nested_function.ok, |
| 14138 | src/testdir/test_nested_function.vim, |
| 14139 | src/testdir/test_writefile.in, src/testdir/test_writefile.ok, |
| 14140 | src/testdir/test_writefile.vim, src/Makefile |
| 14141 | |
| 14142 | Patch 7.4.2306 |
| 14143 | Problem: Default value for 'langremap' is wrong. |
| 14144 | Solution: Set the right value. (Jürgen Krämer) Add a test. |
| 14145 | Files: src/option.c, src/testdir/test_mapping.vim |
| 14146 | |
| 14147 | Patch 7.4.2307 |
| 14148 | Problem: Several tests are old style. |
| 14149 | Solution: Turn them into new style tests. (Yegappan Lakshmanan) |
| 14150 | Files: src/testdir/Make_all.mak, src/testdir/test102.in, |
| 14151 | src/testdir/test102.ok, src/testdir/test46.in, |
| 14152 | src/testdir/test46.ok, src/testdir/test81.in, |
| 14153 | src/testdir/test81.ok, src/testdir/test_charsearch.in, |
| 14154 | src/testdir/test_charsearch.ok, src/testdir/test_charsearch.vim, |
| 14155 | src/testdir/test_fnameescape.vim, src/testdir/test_substitute.vim, |
| 14156 | src/Makefile |
| 14157 | |
| 14158 | Patch 7.4.2308 (after 7.4.2307) |
| 14159 | Problem: Old charsearch test still listed in Makefile. |
| 14160 | Solution: Remove the line. |
| 14161 | Files: src/testdir/Make_all.mak |
| 14162 | |
| 14163 | Patch 7.4.2309 |
| 14164 | Problem: Crash when doing tabnext in a BufUnload autocmd. (Dominique Pelle) |
| 14165 | Solution: When detecting that the tab page changed, don't just abort but |
| 14166 | delete the window where w_buffer is NULL. |
| 14167 | Files: src/window.c, src/testdir/test_tabpage.vim |
| 14168 | |
| 14169 | Patch 7.4.2310 (after 7.4.2304) |
| 14170 | Problem: Accessing freed memory when a timer does not repeat. |
| 14171 | Solution: Free after removing it. (Dominique Pelle) |
| 14172 | Files: src/ex_cmds2.c |
| 14173 | |
| 14174 | Patch 7.4.2311 |
| 14175 | Problem: Appveyor 64 bit build still using Python 3.4 |
| 14176 | Solution: Switch to Python 3.5. (Ken Takata, closes #1032) |
| 14177 | Files: appveyor.yml, src/appveyor.bat |
| 14178 | |
| 14179 | Patch 7.4.2312 |
| 14180 | Problem: Crash when autocommand moves to another tab. (Dominique Pelle) |
| 14181 | Solution: When navigating to another window halfway the :edit command go |
| 14182 | back to the right window. |
| 14183 | Files: src/buffer.c, src/ex_cmds.c, src/ex_getln.c, src/ex_docmd.c, |
| 14184 | src/window.c, src/proto/ex_getln.pro, src/testdir/test_tabpage.vim |
| 14185 | |
| 14186 | Patch 7.4.2313 |
| 14187 | Problem: Crash when deleting an augroup and listing an autocommand. |
| 14188 | (Dominique Pelle) |
| 14189 | Solution: Make sure deleted_augroup is valid. |
| 14190 | Files: src/fileio.c, src/testdir/test_autocmd.vim |
| 14191 | |
| 14192 | Patch 7.4.2314 |
| 14193 | Problem: No error when deleting an augroup while it's the current one. |
| 14194 | Solution: Disallow deleting an augroup when it's the current one. |
| 14195 | Files: src/fileio.c, src/testdir/test_autocmd.vim |
| 14196 | |
| 14197 | Patch 7.4.2315 |
| 14198 | Problem: Insufficient testing for Normal mode commands. |
| 14199 | Solution: Add a big test. (Christian Brabandt, closes #1029) |
| 14200 | Files: src/Makefile, src/testdir/Make_all.mak, |
| 14201 | src/testdir/test_normal.vim |
| 14202 | |
| 14203 | Patch 7.4.2316 |
| 14204 | Problem: Channel sort test is flaky. |
| 14205 | Solution: Add a check the output has been read. |
| 14206 | Files: src/testdir/test_channel.vim |
| 14207 | |
| 14208 | Patch 7.4.2317 (after 7.4.2315) |
| 14209 | Problem: Normal mode tests fail on MS-Windows. |
| 14210 | Solution: Do some tests only on Unix. Set 'fileformat' to "unix". |
| 14211 | Files: src/testdir/test_normal.vim |
| 14212 | |
| 14213 | Patch 7.4.2318 |
| 14214 | Problem: When 'incsearch' is not set CTRL-T and CTRL-G are not inserted as |
| 14215 | before. |
| 14216 | Solution: Move #ifdef and don't use goto. |
| 14217 | Files: src/ex_getln.c |
| 14218 | |
| 14219 | Patch 7.4.2319 |
| 14220 | Problem: No way for a system wide vimrc to stop loading defaults.vim. |
| 14221 | (Christian Hesse) |
| 14222 | Solution: Bail out of defaults.vim if skip_defaults_vim was set. |
| 14223 | Files: runtime/defaults.vim |
| 14224 | |
| 14225 | Patch 7.4.2320 |
| 14226 | Problem: Redraw problem when using 'incsearch'. |
| 14227 | Solution: Save the current view when deleting characters. (Christian |
| 14228 | Brabandt) Fix that the '" mark is set in the wrong position. Don't |
| 14229 | change the search start when using BS. |
| 14230 | Files: src/ex_getln.c, src/normal.c, src/testdir/test_search.vim |
| 14231 | |
| 14232 | Patch 7.4.2321 |
| 14233 | Problem: When a test is commented out we forget about it. |
| 14234 | Solution: Let a test throw an exception with "Skipped" and list skipped test |
| 14235 | functions. (Christian Brabandt) |
| 14236 | Files: src/testdir/Makefile, src/testdir/runtest.vim, |
| 14237 | src/testdir/test_popup.vim, src/testdir/README.txt |
| 14238 | |
| 14239 | Patch 7.4.2322 |
| 14240 | Problem: Access memory beyond the end of the line. (Dominique Pelle) |
| 14241 | Solution: Adjust the cursor column. |
| 14242 | Files: src/move.c, src/testdir/test_normal.vim |
| 14243 | |
| 14244 | Patch 7.4.2323 |
| 14245 | Problem: Using freed memory when using 'formatexpr'. (Dominique Pelle) |
| 14246 | Solution: Make a copy of 'formatexpr' before evaluating it. |
| 14247 | Files: src/ops.c, src/testdir/test_normal.vim |
| 14248 | |
| 14249 | Patch 7.4.2324 |
| 14250 | Problem: Crash when editing a new buffer and BufUnload autocommand wipes |
| 14251 | out the new buffer. (Norio Takagi) |
| 14252 | Solution: Don't allow wiping out this buffer. (partly by Hirohito Higashi) |
| 14253 | Move old style test13 into test_autocmd. Avoid ml_get error when |
| 14254 | editing a file. |
| 14255 | Files: src/structs.h, src/buffer.c, src/ex_cmds.c, src/ex_docmd.c, |
| 14256 | src/window.c, src/testdir/test13.in, src/testdir/test13.ok, |
| 14257 | src/testdir/test_autocmd.vim, src/testdir/Make_all.mak, |
| 14258 | src/Makefile |
| 14259 | |
| 14260 | Patch 7.4.2325 (after 7.4.2324) |
| 14261 | Problem: Tiny build fails. |
| 14262 | Solution: Add #ifdef. |
| 14263 | Files: src/buffer.c |
| 14264 | |
| 14265 | Patch 7.4.2326 |
| 14266 | Problem: Illegal memory access when Visual selection starts in invalid |
| 14267 | position. (Dominique Pelle) |
| 14268 | Solution: Correct position when needed. |
| 14269 | Files: src/normal.c, src/misc2.c, src/proto/misc2.pro |
| 14270 | |
| 14271 | Patch 7.4.2327 |
| 14272 | Problem: Freeing a variable that is on the stack. |
| 14273 | Solution: Don't free res_tv or err_tv. (Ozaki Kiichi) |
| 14274 | Files: src/channel.c |
| 14275 | |
| 14276 | Patch 7.4.2328 |
| 14277 | Problem: Crash when BufWinLeave autocmd goes to another tab page. (Hirohito |
| 14278 | Higashi) |
| 14279 | Solution: Make close_buffer() go back to the right window. |
| 14280 | Files: src/buffer.c, src/testdir/test_autocmd.vim |
| 14281 | |
| 14282 | Patch 7.4.2329 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 14283 | Problem: Error for min() and max() contains %s. (Nikolai Pavlov) |
Bram Moolenaar | abd468e | 2016-09-08 22:22:43 +0200 | [diff] [blame] | 14284 | Solution: Pass the function name. (closes #1040) |
| 14285 | Files: src/evalfunc.c, src/testdir/test_expr.vim |
| 14286 | |
| 14287 | Patch 7.4.2330 |
| 14288 | Problem: Coverity complains about not checking curwin to be NULL. |
| 14289 | Solution: Use firstwin to avoid the warning. |
| 14290 | Files: src/buffer.c |
| 14291 | |
| 14292 | Patch 7.4.2331 |
| 14293 | Problem: Using CTRL-X CTRL-V to complete a command line from Insert mode |
| 14294 | does not work after entering an expression on the command line. |
| 14295 | Solution: Don't use "ccline" when not actually using a command line. (test |
| 14296 | by Hirohito Higashi) |
| 14297 | Files: src/edit.c, src/ex_getln.c, src/proto/ex_getln.pro, |
| 14298 | src/testdir/test_popup.vim |
| 14299 | |
| 14300 | Patch 7.4.2332 |
| 14301 | Problem: Crash when stop_timer() is called in a callback of a callback. |
| 14302 | Vim hangs when the timer callback uses too much time. |
| 14303 | Solution: Set tr_id to -1 when a timer is to be deleted. Don't keep calling |
| 14304 | callbacks forever. (Ozaki Kiichi) |
| 14305 | Files: src/evalfunc.c, src/ex_cmds2.c, src/structs.h, |
| 14306 | src/proto/ex_cmds2.pro, src/testdir/test_timers.vim |
| 14307 | |
| 14308 | Patch 7.4.2333 |
| 14309 | Problem: Outdated comments in test. |
| 14310 | Solution: Cleanup normal mode test. (Christian Brabandt) |
| 14311 | Files: src/testdir/test_normal.vim |
| 14312 | |
| 14313 | Patch 7.4.2334 |
| 14314 | Problem: On MS-Windows test_getcwd leaves Xtopdir behind. |
| 14315 | Solution: Set 'noswapfile'. (Michael Soyka) |
| 14316 | Files: src/testdir/test_getcwd.in |
| 14317 | |
| 14318 | Patch 7.4.2335 |
| 14319 | Problem: taglist() is slow. (Luc Hermitte) |
| 14320 | Solution: Check for CTRL-C less often when doing a linear search. (closes |
| 14321 | #1044) |
| 14322 | Files: src/tag.c |
| 14323 | |
| 14324 | Patch 7.4.2336 |
| 14325 | Problem: Running normal mode tests leave a couple of files behind. |
| 14326 | (Yegappan Lakshmanan) |
| 14327 | Solution: Delete the files. (Christian Brabandt) |
| 14328 | Files: src/testdir/test_normal.vim |
| 14329 | |
| 14330 | Patch 7.4.2337 |
| 14331 | Problem: taglist() is still slow. (Luc Hermitte) |
| 14332 | Solution: Check for CTRL-C less often when finding duplicates. |
| 14333 | Files: src/tag.c |
| 14334 | |
| 14335 | Patch 7.4.2338 |
| 14336 | Problem: Can't build with small features. (John Marriott) |
| 14337 | Solution: Nearly always define FEAT_TAG_BINS. |
| 14338 | Files: src/feature.h, src/tag.c |
| 14339 | |
| 14340 | Patch 7.4.2339 |
| 14341 | Problem: Tab page test fails when run as fake root. |
| 14342 | Solution: Check 'buftype' instead of 'filetype'. (James McCoy, closes #1042) |
| 14343 | Files: src/testdir/test_tabpage.vim |
| 14344 | |
| 14345 | Patch 7.4.2340 |
| 14346 | Problem: MS-Windows: Building with Ruby uses old version. |
| 14347 | Solution: Update to 2.2.X. Use clearer name for the API version. (Ken |
| 14348 | Takata) |
| 14349 | Files: Makefile, src/INSTALLpc.txt, src/Make_cyg_ming.mak, |
| 14350 | src/Make_mvc.mak, src/bigvim.bat |
| 14351 | |
| 14352 | Patch 7.4.2341 |
| 14353 | Problem: Tiny things. Test doesn't clean up properly. |
| 14354 | Solution: Adjust comment and white space. Restore option value. |
| 14355 | Files: src/ex_cmds.c, src/message.c, src/testdir/test_autocmd.vim |
| 14356 | |
| 14357 | Patch 7.4.2342 |
| 14358 | Problem: Typo in MS-Windows build script. |
| 14359 | Solution: change "w2" to "22". |
| 14360 | Files: src/bigvim.bat |
| 14361 | |
| 14362 | Patch 7.4.2343 |
| 14363 | Problem: Too many old style tests. |
| 14364 | Solution: Turn several into new style tests. (Yegappan Lakshmanan) |
| 14365 | Files: src/testdir/Make_all.mak, src/testdir/test101.in, |
| 14366 | src/testdir/test101.ok, src/testdir/test18.in, |
| 14367 | src/testdir/test18.ok, src/testdir/test2.in, src/testdir/test2.ok, |
| 14368 | src/testdir/test21.in, src/testdir/test21.ok, |
| 14369 | src/testdir/test6.in, src/testdir/test6.ok, |
| 14370 | src/testdir/test_arglist.vim, src/testdir/test_charsearch.vim, |
| 14371 | src/testdir/test_fnameescape.vim, src/testdir/test_gf.vim, |
| 14372 | src/testdir/test_hlsearch.vim, src/testdir/test_smartindent.vim, |
| 14373 | src/testdir/test_tagjump.vim, src/Makefile |
| 14374 | |
| 14375 | Patch 7.4.2344 |
| 14376 | Problem: The "Reading from channel output..." message can be unwanted. |
| 14377 | Appending to a buffer leaves an empty first line behind. |
| 14378 | Solution: Add the "out_msg" and "err_msg" options. Writing the first line |
| 14379 | overwrites the first, empty line. |
| 14380 | Files: src/structs.h, src/channel.c, src/testdir/test_channel.vim, |
| 14381 | runtime/doc/channel.txt |
| 14382 | |
| 14383 | Patch 7.4.2345 (after 7.4.2340) |
| 14384 | Problem: For MinGW RUBY_API_VER_LONG isn't set correctly. Many default |
| 14385 | version numbers are outdated. |
| 14386 | Solution: Set RUBY_API_VER_LONG to RUBY_VER_LONG. Use latest stable releases |
| 14387 | for defaults. (Ken Takata) |
| 14388 | Files: src/Make_cyg_ming.mak, src/Make_mvc.mak |
| 14389 | |
| 14390 | Patch 7.4.2346 |
| 14391 | Problem: Autocommand test fails when run directly, passes when run as part |
| 14392 | of test_alot. |
| 14393 | Solution: Add command to make the cursor move. Close a tab page. |
| 14394 | Files: src/testdir/test_autocmd.vim |
| 14395 | |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 14396 | Patch 7.4.2347 |
| 14397 | Problem: Crash when closing a buffer while Visual mode is active. |
| 14398 | (Dominique Pelle) |
| 14399 | Solution: Adjust the position before computing the number of lines. |
| 14400 | When closing the current buffer stop Visual mode. |
| 14401 | Files: src/buffer.c, src/normal.c, src/testdir/test_normal.vim |
| 14402 | |
| 14403 | Patch 7.4.2348 |
| 14404 | Problem: Crash on exit when EXITFREE is defined. (Dominique Pelle) |
| 14405 | Solution: Don't access curwin when exiting. |
| 14406 | Files: src/buffer.c |
| 14407 | |
| 14408 | Patch 7.4.2349 |
Bram Moolenaar | d079690 | 2016-09-16 20:02:31 +0200 | [diff] [blame] | 14409 | Problem: Valgrind reports using uninitialized memory. (Dominique Pelle) |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 14410 | Solution: Check the length before checking for a NUL. |
| 14411 | Files: src/message.c |
| 14412 | |
| 14413 | Patch 7.4.2350 |
| 14414 | Problem: Test 86 and 87 fail with some version of Python. |
| 14415 | Solution: Unify "can't" and "cannot". Unify quotes. |
| 14416 | Files: src/testdir/test86.in, src/testdir/test86.ok, |
| 14417 | src/testdir/test87.in, src/testdir/test87.ok |
| 14418 | |
| 14419 | Patch 7.4.2351 |
| 14420 | Problem: Netbeans test fails when run from unpacked MS-Windows sources. |
| 14421 | Solution: Open README.txt instead of Makefile. |
| 14422 | Files: src/testdir/test_netbeans.py, src/testdir/test_netbeans.vim |
| 14423 | |
| 14424 | Patch 7.4.2352 |
| 14425 | Problem: Netbeans test fails in shadow directory. |
| 14426 | Solution: Also copy README.txt to the shadow directory. |
| 14427 | Files: src/Makefile |
| 14428 | |
| 14429 | Patch 7.4.2353 |
| 14430 | Problem: Not enough test coverage for Normal mode commands. |
| 14431 | Solution: Add more tests. (Christian Brabandt) |
| 14432 | Files: src/testdir/test_normal.vim |
| 14433 | |
| 14434 | Patch 7.4.2354 |
| 14435 | Problem: The example that explains nested backreferences does not work |
| 14436 | properly with the new regexp engine. (Harm te Hennepe) |
| 14437 | Solution: Also save the end position when adding a state. (closes #990) |
| 14438 | Files: src/regexp_nfa.c, src/testdir/test_regexp_latin.vim |
| 14439 | |
| 14440 | Patch 7.4.2355 |
| 14441 | Problem: Regexp fails to match when using "\>\)\?". (Ramel) |
| 14442 | Solution: When a state is already in the list, but addstate_here() is used |
| 14443 | and the existing state comes later, add the new state anyway. |
| 14444 | Files: src/regexp_nfa.c, src/testdir/test_regexp_latin.vim |
| 14445 | |
| 14446 | Patch 7.4.2356 |
| 14447 | Problem: Reading past end of line when using previous substitute pattern. |
| 14448 | (Dominique Pelle) |
| 14449 | Solution: Don't set "pat" only set "searchstr". |
| 14450 | Files: src/search.c, src/testdir/test_search.vim |
| 14451 | |
| 14452 | Patch 7.4.2357 |
| 14453 | Problem: Attempt to read history entry while not initialized. |
| 14454 | Solution: Skip when the index is negative. |
| 14455 | Files: src/ex_getln.c |
| 14456 | |
| 14457 | Patch 7.4.2358 |
Bram Moolenaar | 220adb1 | 2016-09-12 12:17:26 +0200 | [diff] [blame] | 14458 | Problem: Compiler warnings with Solaris Studio when using GTK3. (Danek |
| 14459 | Duvall) |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 14460 | Solution: Define FUNC2GENERIC depending on the system. (Kazunobu Kuriyama) |
| 14461 | Files: src/gui.h, src/gui_beval.c, src/gui_gtk_f.c |
| 14462 | |
Bram Moolenaar | 220adb1 | 2016-09-12 12:17:26 +0200 | [diff] [blame] | 14463 | Patch 7.4.2359 |
| 14464 | Problem: Memory leak in timer_start(). |
| 14465 | Solution: Check the right field to be NULL. |
| 14466 | Files: src/evalfunc.c, src/testdir/test_timers.vim |
| 14467 | |
| 14468 | Patch 7.4.2360 |
| 14469 | Problem: Invalid memory access when formatting. (Dominique Pelle) |
| 14470 | Solution: Make sure cursor line and column are associated. |
| 14471 | Files: src/misc1.c |
| 14472 | |
| 14473 | Patch 7.4.2361 |
| 14474 | Problem: Checking for last_timer_id to overflow is not reliable. (Ozaki |
| 14475 | Kiichi) |
| 14476 | Solution: Check for the number not going up. |
| 14477 | Files: src/ex_cmds2.c |
| 14478 | |
| 14479 | Patch 7.4.2362 |
| 14480 | Problem: Illegal memory access with ":1@". (Dominique Pelle) |
| 14481 | Solution: Correct cursor column after setting the line number. Also avoid |
| 14482 | calling end_visual_mode() when not in Visual mode. |
| 14483 | Files: src/ex_docmd.c, src/buffer.c |
| 14484 | |
| 14485 | Patch 7.4.2363 |
| 14486 | Problem: Superfluous function prototypes. |
| 14487 | Solution: Remove them. |
| 14488 | Files: src/regexp.c |
| 14489 | |
| 14490 | Patch 7.4.2364 |
| 14491 | Problem: Sort test sometimes fails. |
| 14492 | Solution: Add it to the list of flaky tests. |
| 14493 | Files: src/testdir/runtest.vim |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 14494 | |
Bram Moolenaar | 1b01005 | 2016-09-12 12:24:11 +0200 | [diff] [blame] | 14495 | Patch 7.4.2365 |
| 14496 | Problem: Needless line break. Confusing directory name. |
| 14497 | Solution: Remove line break. Prepend "../" to "tools". |
| 14498 | Files: Makefile, src/normal.c |
| 14499 | |
Bram Moolenaar | bb76f24 | 2016-09-12 14:24:39 +0200 | [diff] [blame] | 14500 | Patch 7.4.2366 |
| 14501 | Problem: MS-Windows gvim.exe does not have DirectX support. |
| 14502 | Solution: Add the DIRECTX to the script. |
| 14503 | Files: src/bigvim.bat |
| 14504 | |
| 14505 | Patch 7.4.2367 (after 7.4.2364) |
| 14506 | Problem: Test runner misses a comma. |
| 14507 | Solution: Add the comma. |
| 14508 | Files: src/testdir/runtest.vim |
| 14509 | |
Bram Moolenaar | c0514bf | 2016-11-17 14:50:09 +0100 | [diff] [blame] | 14510 | Patch 8.0.0001 |
| 14511 | Problem: Intro screen still mentions version7. (Paul) |
| 14512 | Solution: Change it to version8. |
| 14513 | Files: src/version.c |
| 14514 | |
| 14515 | Patch 8.0.0002 |
| 14516 | Problem: The netrw plugin does not work. |
| 14517 | Solution: Make it accept version 8.0. |
| 14518 | Files: runtime/autoload/netrw.vim |
| 14519 | |
| 14520 | Patch 8.0.0003 |
| 14521 | Problem: getwinvar() returns wrong Value of boolean and number options, |
| 14522 | especially non big endian systems. (James McCoy) |
| 14523 | Solution: Cast the pointer to long or int. (closes #1060) |
| 14524 | Files: src/option.c, src/testdir/test_bufwintabinfo.vim |
| 14525 | |
| 14526 | Patch 8.0.0004 |
| 14527 | Problem: A string argument for function() that is not a function name |
| 14528 | results in an error message with NULL. (Christian Brabandt) |
| 14529 | Solution: Use the argument for the error message. |
| 14530 | Files: src/evalfunc.c, src/testdir/test_expr.vim |
| 14531 | |
| 14532 | Patch 8.0.0005 |
| 14533 | Problem: Netbeans test fails with Python 3. (Jonathonf) |
| 14534 | Solution: Encode the string before sending it. (closes #1070) |
| 14535 | Files: src/testdir/test_netbeans.py |
| 14536 | |
| 14537 | Patch 8.0.0006 |
| 14538 | Problem: ":lb" is interpreted as ":lbottom" while the documentation says it |
| 14539 | means ":lbuffer". |
| 14540 | Solution: Adjust the order of the commands. (haya14busa, closes #1093) |
| 14541 | Files: src/ex_cmds.h |
| 14542 | |
| 14543 | Patch 8.0.0007 |
| 14544 | Problem: Vim 7.4 is still mentioned in a few places. |
| 14545 | Solution: Update to Vim 8. (Uncle Bill, closes #1094) |
| 14546 | Files: src/INSTALLpc.txt, src/vimtutor, uninstal.txt |
| 14547 | |
| 14548 | Patch 8.0.0008 |
| 14549 | Problem: Popup complete test is disabled. |
| 14550 | Solution: Enable the test and change the assert. (Hirohito Higashi) |
| 14551 | Files: src/testdir/test_popup.vim |
| 14552 | |
| 14553 | Patch 8.0.0009 |
| 14554 | Problem: Unnecessary workaround for AppVeyor. |
| 14555 | Solution: Revert patch 7.4.990. (Christian Brabandt) |
| 14556 | Files: appveyor.yml |
| 14557 | |
| 14558 | Patch 8.0.0010 |
| 14559 | Problem: Crash when editing file that starts with crypt header. (igor2x) |
| 14560 | Solution: Check for length of text. (Christian Brabandt) Add a test. |
| 14561 | Files: src/fileio.c, src/testdir/test_crypt.vim, src/Makefile, |
| 14562 | src/testdir/Make_all.mak |
| 14563 | |
| 14564 | Patch 8.0.0011 |
| 14565 | Problem: On OSX Test_pipe_through_sort_all() sometimes fails. |
| 14566 | Solution: Add the test to the list of flaky tests. |
| 14567 | Files: src/testdir/runtest.vim |
| 14568 | |
| 14569 | Patch 8.0.0012 |
| 14570 | Problem: Typos in comments. |
| 14571 | Solution: Change "its" to "it's". (Matthew Brener, closes #1088) |
| 14572 | Files: src/evalfunc.c, src/main.aap, src/nbdebug.c, src/netbeans.c, |
| 14573 | src/quickfix.c, src/workshop.c, src/wsdebug.c |
| 14574 | |
| 14575 | Patch 8.0.0013 (after 8.0.0011) |
| 14576 | Problem: Missing comma in list. |
| 14577 | Solution: Add the comma. |
| 14578 | Files: src/testdir/runtest.vim |
| 14579 | |
| 14580 | Patch 8.0.0014 |
| 14581 | Problem: Crypt tests are old style. |
| 14582 | Solution: Convert to new style. |
| 14583 | Files: src/testdir/test71.in, src/testdir/test71.ok, |
| 14584 | src/testdir/test71a.in, src/testdir/test_crypt.vim, src/Makefile, |
| 14585 | src/testdir/Make_all.mak |
| 14586 | |
| 14587 | Patch 8.0.0015 |
| 14588 | Problem: Can't tell which part of a channel has "buffered" status. |
| 14589 | Solution: Add an optional argument to ch_status(). Let ch_info() also |
| 14590 | return "buffered" for out_status and err_status. |
| 14591 | Files: src/evalfunc.c, src/channel.c, src/proto/channel.pro, |
| 14592 | src/testdir/test_channel.vim, runtime/doc/eval.txt |
| 14593 | |
| 14594 | Patch 8.0.0016 (after 8.0.0015) |
| 14595 | Problem: Build fails. |
| 14596 | Solution: Include missing change. |
| 14597 | Files: src/eval.c |
| 14598 | |
| 14599 | Patch 8.0.0017 |
| 14600 | Problem: Cannot get the number of the current quickfix or location list. |
| 14601 | Solution: Use the current list if "nr" in "what" is zero. (Yegappan |
| 14602 | Lakshmanan) Remove debug command from test. |
| 14603 | Files: src/quickfix.c, src/testdir/test_quickfix.vim, |
| 14604 | runtime/doc/eval.txt |
| 14605 | |
| 14606 | Patch 8.0.0018 |
| 14607 | Problem: When using ":sleep" channel input is not handled. |
| 14608 | Solution: When there is a channel check for input also when not in raw mode. |
| 14609 | Check every 100 msec. |
| 14610 | Files: src/channel.c, src/proto/channel.pro, src/ui.c, src/proto/ui.pro, |
| 14611 | src/ex_docmd.c, src/os_amiga.c, src/proto/os_amiga.pro, |
| 14612 | src/os_unix.c, src/proto/os_unix.pro, src/os_win32.c, |
| 14613 | src/proto/os_win32.pro |
| 14614 | |
| 14615 | Patch 8.0.0019 |
| 14616 | Problem: Test_command_count is old style. |
| 14617 | Solution: Turn it into a new style test. (Naruhiko Nishino) |
| 14618 | Use more assert functions. |
| 14619 | Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_alot.vim, |
| 14620 | src/testdir/test_autocmd.vim, src/testdir/test_command_count.in, |
| 14621 | src/testdir/test_command_count.ok, |
| 14622 | src/testdir/test_command_count.vim |
| 14623 | |
| 14624 | Patch 8.0.0020 |
| 14625 | Problem: The regexp engines are not reentrant. |
| 14626 | Solution: Add regexec_T and save/restore the state when needed. |
| 14627 | Files: src/regexp.c, src/regexp_nfa.c, src/testdir/test_expr.vim, |
| 14628 | runtime/doc/eval.txt, runtime/doc/change.txt |
| 14629 | |
| 14630 | Patch 8.0.0021 |
| 14631 | Problem: In the GUI when redrawing the cursor it may be on the second half |
| 14632 | of a double byte character. |
| 14633 | Solution: Correct the cursor column. (Yasuhiro Matsumoto) |
| 14634 | Files: src/screen.c |
| 14635 | |
| 14636 | Patch 8.0.0022 |
| 14637 | Problem: If a channel in NL mode is missing the NL at the end the remaining |
| 14638 | characters are dropped. |
| 14639 | Solution: When the channel is closed use the remaining text. (Ozaki Kiichi) |
| 14640 | Files: src/channel.c, src/testdir/test_channel.vim |
| 14641 | |
| 14642 | Patch 8.0.0023 |
| 14643 | Problem: "gd" and "gD" may find a match in a comment or string. |
| 14644 | Solution: Ignore matches in comments and strings. (Anton Lindqvist) |
| 14645 | Files: src/normal.c, src/testdir/test_goto.vim |
| 14646 | |
| 14647 | Patch 8.0.0024 |
| 14648 | Problem: When the netbeans channel closes, "DETACH" is put in the output |
| 14649 | part. (Ozaki Kiichi) |
| 14650 | Solution: Write "DETACH" in the socket part. |
| 14651 | Files: src/channel.c, src/testdir/test_netbeans.vim |
| 14652 | |
| 14653 | Patch 8.0.0025 |
| 14654 | Problem: Inconsistent use of spaces vs tabs in gd test. |
| 14655 | Solution: Use tabs. (Anton Lindqvist) |
| 14656 | Files: src/testdir/test_goto.vim |
| 14657 | |
| 14658 | Patch 8.0.0026 |
| 14659 | Problem: Error format with %W, %C and %Z does not work. (Gerd Wachsmuth) |
| 14660 | Solution: Skip code when qf_multiignore is set. (Lcd) |
| 14661 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 14662 | |
| 14663 | Patch 8.0.0027 |
| 14664 | Problem: A channel is closed when reading on stderr or stdout fails, but |
| 14665 | there may still be something to read on another part. |
| 14666 | Solution: Turn ch_to_be_closed into a bitfield. (Ozaki Kiichi) |
| 14667 | Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro, |
| 14668 | src/testdir/test_channel.vim |
| 14669 | |
| 14670 | Patch 8.0.0028 |
| 14671 | Problem: Superfluous semicolons. |
| 14672 | Solution: Remove them. (Ozaki Kiichi) |
| 14673 | Files: src/ex_cmds2.c |
| 14674 | |
| 14675 | Patch 8.0.0029 |
| 14676 | Problem: Code for MS-Windows is complicated because of the exceptions for |
| 14677 | old systems. |
| 14678 | Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata) |
| 14679 | Files: runtime/doc/gui_w32.txt, runtime/doc/os_win32.txt, |
| 14680 | runtime/doc/todo.txt, src/GvimExt/Makefile, src/Make_mvc.mak, |
| 14681 | src/evalfunc.c, src/ex_cmds.c, src/ex_docmd.c, src/gui_w32.c, |
| 14682 | src/if_cscope.c, src/misc1.c, src/misc2.c, src/option.c, |
| 14683 | src/os_mswin.c, src/os_win32.c, src/os_win32.h, |
| 14684 | src/proto/os_mswin.pro, src/proto/os_win32.pro, src/version.c |
| 14685 | |
| 14686 | Patch 8.0.0030 |
| 14687 | Problem: Mouse mode is not automatically detected for tmux. |
| 14688 | Solution: Check for 'term' to be "tmux". (Michael Henry) |
| 14689 | Files: src/os_unix.c |
| 14690 | |
| 14691 | Patch 8.0.0031 |
| 14692 | Problem: After ":bwipeout" 'fileformat' is not set to the right default. |
| 14693 | Solution: Get the default from 'fileformats'. (Mike Williams) |
| 14694 | Files: src/option.c, src/Makefile, src/testdir/test_fileformat.vim, |
| 14695 | src/testdir/test_alot.vim |
| 14696 | |
| 14697 | Patch 8.0.0032 |
| 14698 | Problem: Tests may change the input file when something goes wrong. |
| 14699 | Solution: Avoid writing the input file. |
| 14700 | Files: src/testdir/test51.in, src/testdir/test67.in, |
| 14701 | src/testdir/test97.in, src/testdir/test_tabpage.vim |
| 14702 | |
| 14703 | Patch 8.0.0033 |
| 14704 | Problem: Cannot use overlapping positions with matchaddpos(). |
| 14705 | Solution: Check end of match. (Ozaki Kiichi) Add a test (Hirohito Higashi) |
| 14706 | Files: src/screen.c, src/testdir/test_match.vim |
| 14707 | |
| 14708 | Patch 8.0.0034 |
| 14709 | Problem: No completion for ":messages". |
| 14710 | Solution: Complete "clear" argument. (Hirohito Higashi) |
| 14711 | Files: src/ex_docmd.c, src/ex_getln.c, src/proto/ex_docmd.pro, |
| 14712 | src/testdir/test_cmdline.vim, src/vim.h, |
| 14713 | runtime/doc/eval.txt, runtime/doc/map.txt |
| 14714 | |
| 14715 | Patch 8.0.0035 (after 7.4.2013) |
| 14716 | Problem: Order of matches for 'omnifunc' is messed up. (Danny Su) |
| 14717 | Solution: Do not set compl_curr_match when called from complete_check(). |
| 14718 | (closes #1168) |
| 14719 | Files: src/edit.c, src/evalfunc.c, src/proto/edit.pro, src/search.c, |
| 14720 | src/spell.c, src/tag.c, src/testdir/test76.in, |
| 14721 | src/testdir/test76.ok, src/testdir/test_popup.vim, src/Makefile, |
| 14722 | src/testdir/Make_all.mak |
| 14723 | |
| 14724 | Patch 8.0.0036 |
| 14725 | Problem: Detecting that a job has finished may take a while. |
| 14726 | Solution: Check for a finished job more often (Ozaki Kiichi) |
| 14727 | Files: src/channel.c, src/os_unix.c, src/os_win32.c, |
| 14728 | src/proto/os_unix.pro, src/proto/os_win32.pro, |
| 14729 | src/testdir/test_channel.vim |
| 14730 | |
| 14731 | Patch 8.0.0037 |
| 14732 | Problem: Get E924 when switching tabs. () |
| 14733 | Solution: Use win_valid_any_tab() instead of win_valid(). (Martin Vuille, |
| 14734 | closes #1167, closes #1171) |
| 14735 | Files: src/quickfix.c, src/testdir/test_quickfix.vim |
| 14736 | |
| 14737 | Patch 8.0.0038 |
| 14738 | Problem: OPEN_CHR_FILES not defined for FreeBSD using Debian userland |
| 14739 | files. |
| 14740 | Solution: Check for __FreeBSD_kernel__. (James McCoy, closes #1166) |
| 14741 | Files: src/vim.h |
| 14742 | |
| 14743 | Patch 8.0.0039 |
| 14744 | Problem: When Vim 8 reads an old viminfo and exits, the next time marks are |
| 14745 | not read from viminfo. (Ned Batchelder) |
| 14746 | Solution: Set a mark when it wasn't set before, even when the timestamp is |
| 14747 | zero. (closes #1170) |
| 14748 | Files: src/mark.c, src/testdir/test_viminfo.vim |
| 14749 | |
| 14750 | Patch 8.0.0040 (after 8.0.0033) |
| 14751 | Problem: Whole line highlighting with matchaddpos() does not work. |
| 14752 | Solution: Check for zero length. (Hirohito Higashi) |
| 14753 | Files: src/screen.c, src/testdir/test_match.vim |
| 14754 | |
| 14755 | Patch 8.0.0041 |
| 14756 | Problem: When using Insert mode completion but not actually inserting |
| 14757 | anything an undo item is still created. (Tommy Allen) |
| 14758 | Solution: Do not call stop_arrow() when not inserting anything. |
| 14759 | Files: src/edit.c, src/testdir/test_popup.vim |
| 14760 | |
| 14761 | Patch 8.0.0042 (after 8.0.0041) |
| 14762 | Problem: When using Insert mode completion with 'completeopt' containing |
| 14763 | "noinsert" change is not saved for undo. (Tommy Allen) |
| 14764 | Solution: Call stop_arrow() before inserting for pressing Enter. |
| 14765 | Files: src/edit.c, src/testdir/test_popup.vim |
| 14766 | |
| 14767 | Patch 8.0.0043 (after 8.0.0041) |
| 14768 | Problem: When using Insert mode completion with 'completeopt' containing |
| 14769 | "noinsert" with CTRL-N the change is not saved for undo. (Tommy |
| 14770 | Allen) |
| 14771 | Solution: Call stop_arrow() before inserting for any key. |
| 14772 | Files: src/edit.c, src/testdir/test_popup.vim |
| 14773 | |
| 14774 | Patch 8.0.0044 |
| 14775 | Problem: In diff mode the cursor may end up below the last line, resulting |
| 14776 | in an ml_get error. |
| 14777 | Solution: Check the line to be valid. |
| 14778 | Files: src/move.c, src/diff.c, src/proto/diff.pro, |
| 14779 | src/testdir/test_diffmode.vim |
| 14780 | |
| 14781 | Patch 8.0.0045 |
| 14782 | Problem: Calling job_stop() right after job_start() does not work. |
| 14783 | Solution: Block signals while fork is still busy. (Ozaki Kiichi, closes |
| 14784 | #1155) |
| 14785 | Files: src/auto/configure, src/config.h.in, src/configure.in, |
| 14786 | src/os_unix.c, src/testdir/test_channel.vim |
| 14787 | |
| 14788 | Patch 8.0.0046 |
| 14789 | Problem: Using NUL instead of NULL. |
| 14790 | Solution: Change to NULL. (Dominique Pelle) |
| 14791 | Files: src/ex_cmds.c, src/json.c |
| 14792 | |
| 14793 | Patch 8.0.0047 |
| 14794 | Problem: Crash when using the preview window from an unnamed buffer. |
| 14795 | (lifepillar) |
| 14796 | Solution: Do not clear the wrong buffer. (closes #1200) |
| 14797 | Files: src/popupmnu.c |
| 14798 | |
| 14799 | Patch 8.0.0048 |
| 14800 | Problem: On Windows job_stop() stops cmd.exe, not the processes it runs. |
| 14801 | (Linwei) |
| 14802 | Solution: Iterate over all processes and terminate the one where the parent |
| 14803 | is the job process. (Yasuhiro Matsumoto, closes #1184) |
| 14804 | Files: src/os_win32.c, src/structs.h |
| 14805 | |
| 14806 | Patch 8.0.0049 |
| 14807 | Problem: When a match ends in part of concealed text highlighting, it might |
| 14808 | mess up concealing by resetting prev_syntax_id. |
| 14809 | Solution: Do not reset prev_syntax_id and add a test to verify. (Christian |
| 14810 | Brabandt, closes #1092) |
| 14811 | Files: src/screen.c, src/testdir/test_matchadd_conceal.vim |
| 14812 | |
| 14813 | Patch 8.0.0050 |
| 14814 | Problem: An exiting job is detected with a large latency. |
| 14815 | Solution: Check for pending job more often. (Ozaki Kiichi) Change the |
| 14816 | double loop in mch_inchar() into one. |
| 14817 | Files: src/channel.c, src/os_unix.c, src/testdir/shared.vim, |
| 14818 | src/testdir/test_channel.vim |
| 14819 | |
| 14820 | Patch 8.0.0051 (after 8.0.0048) |
| 14821 | Problem: New code for job_stop() breaks channel test on AppVeyor. |
| 14822 | Solution: Revert the change. |
| 14823 | Files: src/os_win32.c, src/structs.h |
| 14824 | |
| 14825 | Patch 8.0.0052 (after 8.0.0049) |
| 14826 | Problem: Conceal test passes even without the bug fix. |
| 14827 | Solution: Add a redraw command. (Christian Brabandt) |
| 14828 | Files: src/testdir/test_matchadd_conceal.vim |
| 14829 | |
| 14830 | Patch 8.0.0053 (after 8.0.0047) |
| 14831 | Problem: No test for what 8.0.0047 fixes. |
| 14832 | Solution: Add a test. (Hirohito Higashi) |
| 14833 | Files: src/testdir/test_popup.vim |
| 14834 | |
| 14835 | Patch 8.0.0054 (after 8.0.0051) |
| 14836 | Problem: On Windows job_stop() stops cmd.exe, not the processes it runs. |
| 14837 | (Linwei) |
| 14838 | Solution: Iterate over all processes and terminate the one where the parent |
| 14839 | is the job process. Now only when there is no job object. |
| 14840 | (Yasuhiro Matsumoto, closes #1203) |
| 14841 | Files: src/os_win32.c |
| 14842 | |
| 14843 | Patch 8.0.0055 |
| 14844 | Problem: Minor comment and style deficiencies. |
| 14845 | Solution: Update comments and fix style. |
| 14846 | Files: src/buffer.c, src/misc2.c, src/os_unix.c |
| 14847 | |
| 14848 | Patch 8.0.0056 |
| 14849 | Problem: When setting 'filetype' there is no check for a valid name. |
| 14850 | Solution: Only allow valid characters in 'filetype', 'syntax' and 'keymap'. |
| 14851 | Files: src/option.c, src/testdir/test_options.vim |
| 14852 | |
| 14853 | Patch 8.0.0057 (after 8.0.0056) |
| 14854 | Problem: Tests fail without the 'keymap' features. |
| 14855 | Solution: Check for feature in test. |
| 14856 | Files: src/testdir/test_options.vim |
| 14857 | |
| 14858 | Patch 8.0.0058 |
| 14859 | Problem: Positioning of the popup menu is not good. |
| 14860 | Solution: Position it better. (Hirohito Higashi) |
| 14861 | Files: src/popupmnu.c |
| 14862 | |
| 14863 | Patch 8.0.0059 |
| 14864 | Problem: Vim does not build on VMS systems. |
| 14865 | Solution: Various changes for VMS. (Zoltan Arpadffy) |
| 14866 | Files: src/json.c, src/macros.h, src/Make_vms.mms, src/os_unix.c, |
| 14867 | src/os_unix.h, src/os_vms.c, src/os_vms_conf.h, |
| 14868 | src/proto/os_vms.pro, src/testdir/Make_vms.mms |
| 14869 | |
| 14870 | Patch 8.0.0060 |
| 14871 | Problem: When using an Ex command for 'keywordprg' it is escaped as with a |
| 14872 | shell command. (Romain Lafourcade) |
| 14873 | Solution: Escape for an Ex command. (closes #1175) |
| 14874 | Files: src/normal.c, src/testdir/test_normal.vim |
| 14875 | |
| 14876 | Patch 8.0.0061 (after 8.0.0058) |
| 14877 | Problem: Compiler warning for unused variable. |
| 14878 | Solution: Add #ifdef. (John Marriott) |
| 14879 | Files: src/popupmnu.c |
| 14880 | |
| 14881 | Patch 8.0.0062 |
| 14882 | Problem: No digraph for HORIZONTAL ELLIPSIS. |
| 14883 | Solution: Use ",.". (Hans Ginzel, closes #1226) |
| 14884 | Files: src/digraph.c, runtime/doc/digraph.txt |
| 14885 | |
| 14886 | Patch 8.0.0063 |
| 14887 | Problem: Compiler warning for comparing with unsigned. (Zoltan Arpadffy) |
| 14888 | Solution: Change <= to ==. |
| 14889 | Files: src/undo.c |
| 14890 | |
| 14891 | Patch 8.0.0064 (after 8.0.0060) |
| 14892 | Problem: Normal test fails on MS-Windows. |
| 14893 | Solution: Don't try using an illegal file name. |
| 14894 | Files: src/testdir/test_normal.vim |
| 14895 | |
| 14896 | Patch 8.0.0065 (after 8.0.0056) |
| 14897 | Problem: Compiler warning for unused function in tiny build. (Tony |
| 14898 | Mechelynck) |
| 14899 | Solution: Add #ifdef. |
| 14900 | Files: src/option.c |
| 14901 | |
| 14902 | Patch 8.0.0066 |
| 14903 | Problem: when calling an operator function when 'linebreak' is set, it is |
| 14904 | internally reset before calling the operator function. |
| 14905 | Solution: Restore 'linebreak' before calling op_function(). (Christian |
| 14906 | Brabandt) |
| 14907 | Files: src/normal.c, src/testdir/test_normal.vim |
| 14908 | |
| 14909 | Patch 8.0.0067 |
| 14910 | Problem: VMS has a problem with infinity. |
| 14911 | Solution: Avoid an overflow. (Zoltan Arpadffy) |
| 14912 | Files: src/json.c, src/macros.h |
| 14913 | |
| 14914 | Patch 8.0.0068 |
| 14915 | Problem: Checking did_throw after executing autocommands is wrong. (Daniel |
| 14916 | Hahler) |
| 14917 | Solution: Call aborting() instead, and only when autocommands were executed. |
| 14918 | Files: src/quickfix.c, src/if_cscope.c, src/testdir/test_quickfix.vim |
| 14919 | |
| 14920 | Patch 8.0.0069 |
| 14921 | Problem: Compiler warning for self-comparison. |
| 14922 | Solution: Define ONE_WINDOW and add #ifdef. |
| 14923 | Files: src/globals.h, src/buffer.c, src/ex_docmd.c, src/move.c, |
| 14924 | src/screen.c, src/quickfix.c, src/window.c |
| 14925 | |
Bram Moolenaar | 03413f4 | 2016-04-12 21:07:15 +0200 | [diff] [blame] | 14926 | vim:tw=78:ts=8:ft=help:norl: |