blob: 28c675f526a0dd5aefc3bfe7037b34817f1abe2b [file] [log] [blame]
Bram Moolenaar36f44c22016-08-28 18:17:20 +02001*version8.txt* For Vim version 8.0. Last change: 2016 Aug 28
Bram Moolenaar03413f42016-04-12 21:07:15 +02002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
Bram Moolenaardc1f1642016-08-16 18:33:43 +02006
7NOTE: VIM 8 WAS NOT RELEASED YET, this is work in progress
8
Bram Moolenaar03413f42016-04-12 21:07:15 +02009
10 *vim8* *vim-8* *version-8.0* *version8.0*
Bram Moolenaardc1f1642016-08-16 18:33:43 +020011Welcome to Vim 8! A large number of bugs have been fixed and several nice
Bram Moolenaar03413f42016-04-12 21:07:15 +020012features have been added. This file mentions all the new items and changes to
Bram Moolenaardc1f1642016-08-16 18:33:43 +020013existing features since Vim 7.4. The patches up to Vim 7.4 can be found here:
14|vim-7.4|.
15
16Use this command to see the full version and features information of the Vim
17program you are using: >
Bram Moolenaar03413f42016-04-12 21:07:15 +020018 :version
19
Bram Moolenaar03413f42016-04-12 21:07:15 +020020NEW FEATURES |new-8|
Bram Moolenaardc1f1642016-08-16 18:33:43 +020021 Vim script enhancements |new-vim-script-8|
22 Various new items |new-items-8|
Bram Moolenaar03413f42016-04-12 21:07:15 +020023
Bram Moolenaar063b9d12016-07-09 20:21:48 +020024INCOMPATIBLE CHANGES |incompatible-8|
25
Bram Moolenaar03413f42016-04-12 21:07:15 +020026IMPROVEMENTS |improvements-8|
27
28COMPILE TIME CHANGES |compile-changes-8|
29
30PATCHES |patches-8|
31
32
Bram Moolenaardc1f1642016-08-16 18:33:43 +020033See |vi_diff.txt| for an overview of differences between Vi and Vim 8.0.
34See |version4.txt|, |version5.txt|, |version6.txt| and |version7.txt| for
35differences between other versions.
36
Bram Moolenaar03413f42016-04-12 21:07:15 +020037==============================================================================
Bram Moolenaar03413f42016-04-12 21:07:15 +020038NEW FEATURES *new-8*
39
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +020040First a list of the bigger new features. A comprehensive list is below.
Bram Moolenaar03413f42016-04-12 21:07:15 +020041
42
43Asynchronous I/O support, channels ~
44
Bram Moolenaar063b9d12016-07-09 20:21:48 +020045Vim can now exchange messages with other processes in the background. This
46makes it possible to have servers do work and send back the results to Vim.
47See |channel-demo| for an example, this shows communicating with a Python
48server.
Bram Moolenaar03413f42016-04-12 21:07:15 +020049
50Closely related to channels is JSON support. JSON is widely supported and can
51easily be used for inter-process communication, allowing for writing a server
52in any language. The functions to use are |json_encode()| and |json_decode()|.
53
Bram Moolenaar063b9d12016-07-09 20:21:48 +020054This makes it possible to build very complex plugins, written in any language
55and running in a separate process.
56
Bram Moolenaar03413f42016-04-12 21:07:15 +020057
58Jobs ~
59
60Vim can now start a job, communicate with it and stop it. This is very useful
61to run a process for completion, syntax checking, etc. Channels are used to
62communicate with the job. Jobs can also read from or write to a buffer or a
63file. See |job_start()|.
64
65
66Timers ~
67
68Also asynchronous are timers. They can fire once or repeatedly and invoke a
69function to do any work. For example: >
70 let tempTimer = timer_start(4000, 'CheckTemp')
Bram Moolenaar063b9d12016-07-09 20:21:48 +020071This will call the CheckTemp() function four seconds (4000 milli seconds)
Bram Moolenaar09521312016-08-12 22:54:35 +020072later. See |timer_start()|.
Bram Moolenaar03413f42016-04-12 21:07:15 +020073
74
75Partials ~
76
77Vim already had a Funcref, a reference to a function. A partial also refers
78to a function, and additionally binds arguments and/or a dictionary. This is
79especially useful for callbacks on channels and timers. E.g., for the timer
80example above, to pass an argument to the function: >
81 let tempTimer = timer_start(4000, function('CheckTemp', ['out']))
Bram Moolenaar063b9d12016-07-09 20:21:48 +020082This will call CheckTemp('out') four seconds later.
Bram Moolenaar03413f42016-04-12 21:07:15 +020083
84
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020085Lambda and Closure ~
Bram Moolenaar42ebd062016-07-17 13:35:14 +020086
87A short way to create a function has been added: {args -> expr}. See |lambda|.
88This is useful for functions such as `filter()` and `map()`, which now also
89accept a function argument. Example: >
90 :call filter(mylist, {idx, val -> val > 20})
91
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020092A lambda can use variables defined in the scope where the lambda is defined.
93This is usually called a |closure|.
94
95User defined functions can also be a closure by adding the "closure" argument
96|:func-closure|.
97
Bram Moolenaar42ebd062016-07-17 13:35:14 +020098
Bram Moolenaar03413f42016-04-12 21:07:15 +020099Packages ~
100
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +0200101Plugins keep growing and more of them are available than ever before. To keep
Bram Moolenaar03413f42016-04-12 21:07:15 +0200102the collection of plugins manageable package support has been added. This is
103a convenient way to get one or more plugins, drop them in a directory and
104possibly keep them updated. Vim will load them automatically, or only when
105desired. See |packages|.
106
107
108New style tests ~
109
110This is for Vim developers. So far writing tests for Vim has not been easy.
111Vim 8 adds assert functions and a framework to run tests. This makes it a lot
Bram Moolenaar82af8712016-06-04 20:20:29 +0200112simpler to write tests and keep them updated. Also new are several functions
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200113that are added specifically for testing. See |test-functions|.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200114
115
116Window IDs ~
117
118Previously windows could only be accessed by their number. And every time a
119window would open, close or move that number changes. Each window now has a
Bram Moolenaar82af8712016-06-04 20:20:29 +0200120unique ID, so that they are easy to find. See |win_getid()| and |win_id2win()|.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200121
122
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200123Viminfo uses timestamps ~
124
125Previously the information stored in viminfo was whatever the last Vim wrote
126there. Now timestamps are used to always keep the most recent items.
127See |viminfo-timestamp|.
128
129
Bram Moolenaar03413f42016-04-12 21:07:15 +0200130Wrapping lines with indent ~
131
132The 'breakindent' option has been added to be able to wrap lines without
133changing the amount of indent.
134
135
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200136Windows: DirectX support ~
Bram Moolenaar03413f42016-04-12 21:07:15 +0200137
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200138This adds the 'renderoptions' option to allow for switching on DirectX
Bram Moolenaar03413f42016-04-12 21:07:15 +0200139(DirectWrite) support on MS-Windows.
140
141
142GTK+ 3 support ~
143
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200144The GTK+ 3 GUI works just like GTK+ 2 except for hardly noticeable technical
145differences between them. Configure still chooses GTK+ 2 if both 2 and 3 are
146available. See src/Makefile for how to use GTK+ 3 instead. See
147|gui-x11-compiling| for other details.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200148
149
150Vim script enhancements *new-vim-script-8*
151-----------------------
152
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +0200153In Vim script the following types have been added:
Bram Moolenaar03413f42016-04-12 21:07:15 +0200154
155 |Special| |v:false|, |v:true|, |v:none| and |v:null|
156 |Channel| connection to another process for asynchronous I/O
157 |Job| process control
158
159Many functions and commands have been added to support the new types.
160
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200161On some systems the numbers used in Vim script are now 64 bit. This can be
162checked with the |+num64| feature.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200163
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200164Many items were added so support |new-style-testing|.
165
Bram Moolenaar36f44c22016-08-28 18:17:20 +0200166printf() now accepts any type of argument for %s. It is converted to a string
167like with string().
168
Bram Moolenaar03413f42016-04-12 21:07:15 +0200169
170Various new items *new-items-8*
171-----------------
172
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200173Visual mode commands: ~
174
175|v_CTRL-A| CTRL-A add N to number in highlighted text
176|v_CTRL-X| CTRL-X subtract N from number in highlighted text
177|v_g_CTRL-A| g CTRL-A add N to number in highlighted text
178|v_g_CTRL-X| g CTRL-X subtract N from number in highlighted text
179
Bram Moolenaar03413f42016-04-12 21:07:15 +0200180
181Insert mode commands: ~
182
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200183|i_CTRL-G_U| CTRL-G U don't break undo with next cursor movement
184
Bram Moolenaar03413f42016-04-12 21:07:15 +0200185
186Options: ~
187
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200188'belloff' do not ring the bell for these reasons
189'breakindent' wrapped line repeats indent
190'breakindentopt' settings for 'breakindent'.
191'emoji' emoji characters are considered full width
192'fixendofline' make sure last line in file has <EOL>
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200193'langremap' do apply 'langmap' to mapped characters
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200194'luadll' name of the Lua dynamic library
195'packpath' list of directories used for packages
196'perldll' name of the Perl dynamic library
197'pythondll' name of the Python 2 dynamic library
198'pythonthreedll' name of the Python 3 dynamic library
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200199'signcolumn' when to display the sign column
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200200'renderoptions' options for text rendering on Windows
201'rubydll' name of the Ruby dynamic library
202'tagcase' how to handle case when searching in tags files
203'tcldll' name of the Tcl dynamic library
204'termguicolors' use GUI colors for the terminal
Bram Moolenaar03413f42016-04-12 21:07:15 +0200205
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200206
Bram Moolenaar03413f42016-04-12 21:07:15 +0200207Ex commands: ~
208
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200209|:cbottom| scroll to the bottom of the quickfix window
210|:cdo| execute command in each valid error list entry
211|:cfdo| execute command in each file in error list
212|:chistory| display quickfix list stack
213|:clearjumps| clear the jump list
Bram Moolenaar36f44c22016-08-28 18:17:20 +0200214:filter only output lines that (do not) match a pattern
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200215|:helpclose| close one help window
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200216|:lbottom| scroll to the bottom of the location window
217|:ldo| execute command in valid location list entries
218|:lfdo| execute command in each file in location list
219|:lhistory| display location list stack
220|:noswapfile| following commands don't create a swap file
221|:packadd| add a plugin from 'packpath'
222|:packloadall| load all packages under 'packpath'
223|:smile| make the user happy
Bram Moolenaar03413f42016-04-12 21:07:15 +0200224
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200225
Bram Moolenaar03413f42016-04-12 21:07:15 +0200226Ex command modifiers: ~
227
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200228|:keeppatterns| following command keeps search pattern history
Bram Moolenaar03413f42016-04-12 21:07:15 +0200229
230
231New and extended functions: ~
232
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200233|arglistid()| get id of the argument list
234|assert_equal()| assert that two expressions values are equal
235|assert_exception()| assert that a command throws an exception
236|assert_fails()| assert that a function call fails
237|assert_false()| assert that an expression is false
238|assert_inrange()| assert that an expression is inside a range
239|assert_match()| assert that a pattern matches the value
240|assert_notequal()| assert that two expressions values are not equal
241|assert_notmatch()| assert that a pattern does not match the value
242|assert_true()| assert that an expression is true
243|bufwinid()| get the window ID of a specific buffer
244|byteidxcomp()| like byteidx() but count composing characters
245|ch_close()| close a channel
246|ch_evalexpr()| evaluates an expression over channel
247|ch_evalraw()| evaluates a raw string over channel
248|ch_getbufnr()| get the buffer number of a channel
249|ch_getjob()| get the job associated with a channel
250|ch_info()| get channel information
251|ch_log()| write a message in the channel log file
252|ch_logfile()| set the channel log file
253|ch_open()| open a channel
254|ch_read()| read a message from a channel
255|ch_readraw()| read a raw message from a channel
256|ch_sendexpr()| send a JSON message over a channel
257|ch_sendraw()| send a raw message over a channel
258|ch_setoptions()| set the options for a channel
259|ch_status()| get status of a channel
260|execute()| execute an Ex command and get the output
261|exepath()| full path of an executable program
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200262|funcref()| return a reference to function {name}
263|getbufinfo()| get a list with buffer information
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200264|getcharsearch()| return character search information
265|getcmdwintype()| return the current command-line window type
266|getcompletion()| return a list of command-line completion matches
267|getcurpos()| get position of the cursor
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200268|gettabinfo()| get a list with tab page information
269|getwininfo()| get a list with window information
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200270|glob2regpat()| convert a glob pattern into a search pattern
271|isnan()| check for not a number
272|job_getchannel()| get the channel used by a job
273|job_info()| get information about a job
274|job_setoptions()| set options for a job
275|job_start()| start a job
276|job_status()| get the status of a job
277|job_stop()| stop a job
278|js_decode()| decode a JSON string to Vim types
279|js_encode()| encode an expression to a JSON string
280|json_decode()| decode a JSON string to Vim types
281|json_encode()| encode an expression to a JSON string
282|matchaddpos()| define a list of positions to highlight
283|matchstrpos()| match and positions of a pattern in a string
284|perleval()| evaluate Perl expression
285|reltimefloat()| convert reltime() result to a Float
286|setcharsearch()| set character search information
287|setfperm()| set the permissions of a file
288|strcharpart()| get part of a string using char index
289|strgetchar()| get character from a string using char index
290|systemlist()| get the result of a shell command as a list
291|test_alloc_fail()| make memory allocation fail
292|test_autochdir()| test 'autochdir' functionality
293|test_disable_char_avail()| test without typeahead
294|test_garbagecollect_now()| free memory right now
295|test_null_channel()| return a null Channel
296|test_null_dict()| return a null Dict
297|test_null_job()| return a null Job
298|test_null_list()| return a null List
299|test_null_partial()| return a null Partial function
300|test_null_string()| return a null String
301|test_settime()| set the time Vim uses internally
Bram Moolenaar09521312016-08-12 22:54:35 +0200302|timer_info()| get information about timers
303|timer_pause()| pause or unpause a timer
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200304|timer_start()| create a timer
305|timer_stop()| stop a timer
Bram Moolenaar09521312016-08-12 22:54:35 +0200306|timer_stopall()| stop all timers
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200307|uniq()| remove copies of repeated adjacent items
308|win_findbuf()| find windows containing a buffer
309|win_getid()| get window ID of a window
310|win_gotoid()| go to window with ID
311|win_id2tabwin()| get tab and window nr from window ID
312|win_id2win()| get window nr from window ID
313|wordcount()| get byte/word/char count of buffer
Bram Moolenaar03413f42016-04-12 21:07:15 +0200314
315
316New Vim variables: ~
317
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200318|v:beval_winid| Window ID of the window where the mouse pointer is
319|v:completed_item| complete items for the most recently completed word
320|v:errors| errors found by assert functions
321|v:false| a Number with value zero
322|v:hlsearch| indicates whether search highlighting is on
323|v:mouse_winid| Window ID for a mouse click obtained with |getchar()|
324|v:none| an empty String, used for JSON
325|v:null| an empty String, used for JSON
326|v:option_new| new value of the option, used by |OptionSet|
327|v:option_old| old value of the option, used by |OptionSet|
328|v:option_type| scope of the set command, used by |OptionSet|
329|v:progpath| the command with which Vim was invoked
330|v:t_bool| value of Boolean type
331|v:t_channel| value of Channel type
332|v:t_dict| value of Dictionary type
333|v:t_float| value of Float type
334|v:t_func| value of Funcref type
335|v:t_job| value of Job type
336|v:t_list| value of List type
337|v:t_none| value of None type
338|v:t_number| value of Number type
339|v:t_string| value of String type
340|v:testing| must be set before using `test_garbagecollect_now()`
341|v:true| a Number with value one
Bram Moolenaar7571d552016-08-18 22:54:46 +0200342|v:vim_did_enter| set just before VimEnter autocommands are triggered
Bram Moolenaar03413f42016-04-12 21:07:15 +0200343
344
345New autocommand events: ~
346
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200347|CmdUndefined| a user command is used but it isn't defined
348|OptionSet| after setting any option
349|TabClosed| after closing a tab page
350|TabNew| after creating a new tab page
351|TextChangedI| after a change was made to the text in Insert mode
352|TextChanged| after a change was made to the text in Normal mode
353|WinNew| after creating a new window
Bram Moolenaar03413f42016-04-12 21:07:15 +0200354
355
356New highlight groups: ~
357
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200358EndOfBuffer filler lines (~) after the last line in the buffer.
359 |hl-EndOfBuffer|
360
Bram Moolenaar03413f42016-04-12 21:07:15 +0200361
362New items in search patterns: ~
363
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200364|/\%C| \%C match any composing characters
365
Bram Moolenaar03413f42016-04-12 21:07:15 +0200366
367New Syntax/Indent/FTplugin files: ~
368
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200369AVR Assembler (Avra) syntax
370Arduino syntax
371Bazel syntax and indent and ftplugin
372Dockerfile syntax and ftplugin
373Eiffel ftplugin
374Euphoria 3 and 4 syntax
375Go syntax and indent and ftplugin
376Godoc syntax
377Groovy ftplugin
378HGcommit ftplugin
379Hog indent and ftplugin
380Innovation Data Processing upstream.pt syntax
381J syntax and indent and ftplugin
382Jproperties ftplugin
383Json syntax and indent and ftplugin
384Kivy syntax
385Less syntax and indent
386Mix syntax
387Motorola S-Record syntax
388R ftplugin
389ReStructuredText syntax and indent and ftplugin
390Registry ftplugin
391Rhelp indent and ftplugin
392Rmd (markdown with R code chunks) syntax and indent
393Rmd ftplugin
394Rnoweb ftplugin
395Rnoweb indent
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200396Scala syntax and indent and ftplugin
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200397SystemVerilog syntax and indent and ftplugin
398Systemd syntax and indent and ftplugin
399Teraterm (TTL) syntax and indent
400Text ftplugin
401Vroom syntax and indent and ftplugin
402
Bram Moolenaar03413f42016-04-12 21:07:15 +0200403
404New Keymaps: ~
405
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200406Armenian eastern and western
407Russian jcukenwintype
408Vietnamese telex and vni
Bram Moolenaar03413f42016-04-12 21:07:15 +0200409
410==============================================================================
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200411INCOMPATIBLE CHANGES *incompatible-8*
412
413These changes are incompatible with previous releases. Check this list if you
414run into a problem when upgrading from Vim 7.4 to 8.0.
415
Bram Moolenaar09521312016-08-12 22:54:35 +0200416
417Better defaults without a vimrc ~
418
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200419When no vimrc file is found, the |defaults.vim| script is loaded to set more
420useful default values for new users. That includes setting 'nocompatible'.
421Thus Vim no longer starts up in Vi compatible mode. If you do want that,
422either create a .vimrc file that does "set compatible" or start Vim with
423"Vim -C".
424
Bram Moolenaar09521312016-08-12 22:54:35 +0200425
426Support removed ~
427
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200428The support for MS-DOS has been removed. It hasn't been working for a while
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200429(Vim doesn't fit in memory) and removing it cleans up the code quite a bit.
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200430
431The support for Windows 16 bit (Windows 95 and older) has been removed.
432
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200433The support for OS/2 has been removed. It probably hasn't been working for a
434while since nobody uses it.
435
Bram Moolenaar09521312016-08-12 22:54:35 +0200436The SNiFF+ support has been removed.
437
438
439Minor incompatibilities: ~
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200440
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200441Probably...
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200442
443==============================================================================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200444IMPROVEMENTS *improvements-8*
445
446The existing blowfish encryption turned out to be much weaker than it was
447supposed to be. The blowfish2 method has been added to fix that. Note that
448this still isn't a state-of-the-art encryption, but good enough for most
449usage. See 'cryptmethod'.
450
Bram Moolenaar36f44c22016-08-28 18:17:20 +0200451
Bram Moolenaar03413f42016-04-12 21:07:15 +0200452==============================================================================
453COMPILE TIME CHANGES *compile-changes-8*
454
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200455The Vim repository was moved from Google code to github, since Google code
456was shut down. It can now be found at https://github.com/vim/vim.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200457
Bram Moolenaardc1f1642016-08-16 18:33:43 +0200458Functions now use ANSI-C declarations. At least a C-89 compatible compiler is
459required.
460
461The +visual feature is now always included.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200462
463==============================================================================
464PATCHES *patches-8* *bug-fixes-8*
465
466The list of patches that got included since 7.4.0. This includes all the new
467features, but does not include runtime file changes (syntax, indent, help,
468etc.)
469
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200470Patch 7.4.001
471Problem: Character classes such as [a-z] do not react to 'ignorecase'.
472 Breaks man page highlighting. (Mario Grgic)
473Solution: Add separate items for classes that react to 'ignorecase'. Clean
474 up logic handling character classes. Add more tests.
475Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
476
477Patch 7.4.002
478Problem: Pattern with two alternative look-behind matches does not match.
479 (Amadeus Demarzi)
480Solution: When comparing PIMs also compare their state ID to see if they are
481 different.
482Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
483
484Patch 7.4.003
485Problem: Memory access error in Ruby syntax highlighting. (Christopher Chow)
486Solution: Refresh stale pointer. (James McCoy)
487Files: src/regexp_nfa.c
488
489Patch 7.4.004
490Problem: When closing a window fails ":bwipe" may hang.
491Solution: Let win_close() return FAIL and break out of the loop.
492Files: src/window.c, src/proto/window.pro, src/buffer.c
493
494Patch 7.4.005
495Problem: Using "vaB" while 'virtualedit' is set selects the wrong area.
496 (Dimitar Dimitrov)
497Solution: Reset coladd when finding a match.
498Files: src/search.c
499
500Patch 7.4.006
501Problem: mkdir("foo/bar/", "p") gives an error message. (David Barnett)
502Solution: Remove the trailing slash. (lcd)
503Files: src/eval.c
504
505Patch 7.4.007
506Problem: Creating a preview window on startup leaves the screen layout in a
507 messed up state. (Marius Gedminas)
508Solution: Don't change firstwin. (Christian Brabandt)
509Files: src/main.c
510
511Patch 7.4.008
512Problem: New regexp engine can't be interrupted.
513Solution: Check for CTRL-C pressed. (Yasuhiro Matsumoto)
514Files: src/regexp_nfa.c, src/regexp.c
515
516Patch 7.4.009
517Problem: When a file was not decrypted (yet), writing it may destroy the
518 contents.
519Solution: Mark the file as readonly until decryption was done. (Christian
520 Brabandt)
521Files: src/fileio.c
522
523Patch 7.4.010 (after 7.4.006)
524Problem: Crash with invalid argument to mkdir().
525Solution: Check for empty string. (lcd47)
526Files: src/eval.c
527
528Patch 7.4.011
529Problem: Cannot find out if "acl" and "xpm" features are supported.
530Solution: Add "acl" and "xpm" to the list of features. (Ken Takata)
531Files: src/eval.c, src/version.c
532
533Patch 7.4.012
534Problem: MS-Windows: resolving shortcut does not work properly with
535 multi-byte characters.
536Solution: Use wide system functions. (Ken Takata)
537Files: src/os_mswin.c
538
539Patch 7.4.013
540Problem: MS-Windows: File name buffer too small for utf-8.
541Solution: Use character count instead of byte count. (Ken Takata)
542Files: src/os_mswin.c
543
544Patch 7.4.014
545Problem: MS-Windows: check for writing to device does not work.
546Solution: Fix #ifdefs. (Ken Takata)
547Files: src/fileio.c
548
549Patch 7.4.015
550Problem: MS-Windows: Detecting node type does not work for multi-byte
551 characters.
552Solution: Use wide character function when needed. (Ken Takata)
553Files: src/os_win32.c
554
555Patch 7.4.016
556Problem: MS-Windows: File name case can be wrong.
557Solution: Add fname_casew(). (Ken Takata)
558Files: src/os_win32.c
559
560Patch 7.4.017
561Problem: ":help !!" does not find the "!!" tag in the help file. (Ben
562 Fritz)
563Solution: When reading the start of the tags file do parse lines that are
564 not header lines.
565Files: src/tag.c
566
567Patch 7.4.018
568Problem: When completing item becomes unselected. (Shougo Matsu)
569Solution: Revert patch 7.3.1269.
570Files: src/edit.c
571
572Patch 7.4.019
573Problem: MS-Windows: File name completion doesn't work properly with
574 Chinese characters. (Yue Wu)
575Solution: Take care of multi-byte characters when looking for the start of
576 the file name. (Ken Takata)
577Files: src/edit.c
578
579Patch 7.4.020
580Problem: NFA engine matches too much with \@>. (John McGowan)
581Solution: When a whole pattern match is found stop searching.
582Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
583
584Patch 7.4.021
585Problem: NFA regexp: Using \ze in one branch which doesn't match may cause
586 end of another branch to be wrong. (William Fugh)
587Solution: Set end position if it wasn't set yet.
588Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
589
590Patch 7.4.022
591Problem: Deadlock while exiting, because of allocating memory.
592Solution: Do not use gettext() in deathtrap(). (James McCoy)
593Files: src/os_unix.c, src/misc1.c
594
595Patch 7.4.023
596Problem: Compiler warning on 64 bit windows.
597Solution: Add type cast. (Mike Williams)
598Files: src/edit.c
599
600Patch 7.4.024
601Problem: When root edits a file the undo file is owned by root while the
602 edited file may be owned by another user, which is not allowed.
603 (cac2s)
604Solution: Accept an undo file owned by the current user.
605Files: src/undo.c
606
607Patch 7.4.025 (after 7.4.019)
608Problem: Reading before start of a string.
609Solution: Do not call mb_ptr_back() at start of a string. (Dominique Pelle)
610Files: src/edit.c
611
612Patch 7.4.026
613Problem: Clang warning for int shift overflow.
614Solution: Use unsigned and cast back to int. (Dominique Pelle)
615Files: src/misc2.c
616
617Patch 7.4.027 (after 7.4.025)
618Problem: Another valgrind error when using CTRL-X CTRL-F at the start of
619 the line. (Dominique Pelle)
620Solution: Don't call mb_ptr_back() at the start of the line. Add a test.
621Files: src/edit.c, src/testdir/test32.in
622
623Patch 7.4.028
624Problem: Equivalence classes are not working for multi-byte characters.
625Solution: Copy the rules from the old to the new regexp engine. Add a test
626 to check both engines.
627Files: src/regexp_nfa.c, src/testdir/test44.in, src/testdir/test99.in,
628 src/testdir/test99.ok, src/testdir/Make_amiga.mak,
629 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
630 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
631 src/testdir/Makefile
632
633Patch 7.4.029
634Problem: An error in a pattern is reported twice.
635Solution: Remove the retry with the backtracking engine, it won't work.
636Files: src/regexp.c
637
638Patch 7.4.030
639Problem: The -mno-cygwin argument is no longer supported by Cygwin.
640Solution: Remove the arguments. (Steve Hall)
641Files: src/GvimExt/Make_cyg.mak, src/Make_cyg.mak, src/xxd/Make_cyg.mak
642
643Patch 7.4.031
644Problem: ":diffoff!" resets options even when 'diff' is not set. (Charles
645 Cooper)
646Solution: Only resets related options in a window where 'diff' is set.
647Files: src/diff.c
648
649Patch 7.4.032
650Problem: NFA engine does not match the NUL character. (Jonathon Merz)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200651Solution: Use 0x0a instead of NUL. (Christian Brabandt)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200652Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
653
654Patch 7.4.033
655Problem: When the terminal has only 20 lines test 92 and 93 overwrite the
656 input file.
657Solution: Explicitly write test.out. Check that the terminal is large enough
658 to run the tests. (Hirohito Higashi)
659Files: src/testdir/test92.in, src/testdir/test93.in,
660 src/testdir/test1.in, src/testdir/Makefile
661
662Patch 7.4.034
663Problem: Using "p" in Visual block mode only changes the first line.
664Solution: Repeat the put in all text in the block. (Christian Brabandt)
665Files: runtime/doc/change.txt, src/ops.c, src/normal.c,
666 src/testdir/test20.in, src/testdir/test20.ok
667
668Patch 7.4.035
669Problem: MS-Windows: The mouse pointer flickers when going from command
670 line mode to Normal mode.
671Solution: Check for WM_NCMOUSEMOVE. (Ken Takata)
672Files: src/gui_w48.c
673
674Patch 7.4.036
675Problem: NFA engine does not capture group correctly when using \@>. (ZyX)
676Solution: Copy submatches before doing the recursive match.
677Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
678
679Patch 7.4.037
680Problem: Using "\ze" in a sub-pattern does not result in the end of the
681 match to be set. (Axel Bender)
682Solution: Copy the end of match position when a recursive match was
683 successful.
684Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
685
686Patch 7.4.038
687Problem: Using "zw" and "zg" when 'spell' is off give a confusing error
688 message. (Gary Johnson)
689Solution: Ignore the error when locating the word. Explicitly mention what
690 word was added. (Christian Brabandt)
691Files: src/normal.c, src/spell.c
692
693Patch 7.4.039
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200694Problem: MS-Windows: MSVC10 and earlier can't handle symlinks to a
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200695 directory properly.
696Solution: Add stat_symlink_aware() and wstat_symlink_aware(). (Ken Takata)
697Files: src/os_mswin.c, src/os_win32.c, src/os_win32.h
698
699Patch 7.4.040
700Problem: Valgrind error on exit when a script-local variable holds a
701 reference to the scope of another script.
702Solution: First clear all variables, then free the scopes. (ZyX)
703Files: src/eval.c
704
705Patch 7.4.041 (after 7.4.034)
706Problem: Visual selection does not remain after being copied over. (Axel
707 Bender)
708Solution: Move when VIsual_active is reset. (Christian Brabandt)
709Files: src/ops.c
710
711Patch 7.4.042
Bram Moolenaar09521312016-08-12 22:54:35 +0200712Problem: When using ":setlocal" for 'spell' and 'spelllang' then :spelldump
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200713 doesn't work. (Dimitar Dimitrov)
714Solution: Copy the option variables to the new window used to show the dump.
715 (Christian Brabandt)
716Files: src/spell.c
717
718Patch 7.4.043
719Problem: VMS can't handle long function names.
720Solution: Shorten may_req_ambiguous_character_width. (Samuel Ferencik)
721Files: src/main.c, src/term.c, src/proto/term.pro
722
723
724Patch 7.4.044 (after 7.4.039)
725Problem: Can't build with old MSVC. (Wang Shoulin)
726Solution: Define OPEN_OH_ARGTYPE instead of using intptr_t directly.
727Files: src/os_mswin.c
728
729Patch 7.4.045
730Problem: substitute() does not work properly when the pattern starts with
731 "\ze".
732Solution: Detect an empty match. (Christian Brabandt)
733Files: src/eval.c, src/testdir/test80.in, src/testdir/test80.ok
734
735Patch 7.4.046
736Problem: Can't use Tcl 8.6.
737Solution: Change how Tcl_FindExecutable is called. (Jan Nijtmans)
738Files: src/if_tcl.c
739
740Patch 7.4.047
741Problem: When using input() in a function invoked by a mapping it doesn't
742 work.
743Solution: Temporarily reset ex_normal_busy. (Yasuhiro Matsumoto)
744Files: src/eval.c
745
746Patch 7.4.048
747Problem: Recent clang version complains about -fno-strength-reduce.
748Solution: Add a configure check for the clang version. (Kazunobu Kuriyama)
749Files: src/configure.in, src/auto/configure
750
751Patch 7.4.049
752Problem: In Ex mode, when line numbers are enabled the substitute prompt is
753 wrong.
754Solution: Adjust for the line number size. (Benoit Pierre)
755Files: src/ex_cmds.c
756
757Patch 7.4.050
758Problem: "gn" selects too much for the pattern "\d" when there are two
759 lines with a single digit. (Ryan Carney)
760Solution: Adjust the logic of is_one_char(). (Christian Brabandt)
761Files: src/search.c, src/testdir/test53.in, src/testdir/test53.ok
762
763Patch 7.4.051
764Problem: Syntax highlighting a Yaml file causes a crash. (Blake Preston)
765Solution: Copy the pim structure before calling addstate() to avoid it
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200766 becoming invalid when the state list is reallocated.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200767Files: src/regexp_nfa.c
768
769Patch 7.4.052
770Problem: With 'fo' set to "a2" inserting a space in the first column may
771 cause the cursor to jump to the previous line.
772Solution: Handle the case when there is no comment leader properly. (Tor
773 Perkins) Also fix that cursor is in the wrong place when spaces
774 get replaced with a Tab.
775Files: src/misc1.c, src/ops.c, src/testdir/test68.in,
776 src/testdir/test68.ok
777
778Patch 7.4.053
779Problem: Test75 has a wrong header. (ZyX)
780Solution: Fix the text and remove leading ".
781Files: src/testdir/test75.in
782
783Patch 7.4.054
784Problem: Reading past end of the 'stl' string.
785Solution: Don't increment pointer when already at the NUL. (Christian
786 Brabandt)
787Files: src/buffer.c
788
789Patch 7.4.055
790Problem: Mac: Where availability macros are defined depends on the system.
791Solution: Add a configure check. (Felix Bünemann)
792Files: src/config.h.in, src/configure.in, src/auto/configure,
793 src/os_mac.h
794
795Patch 7.4.056
796Problem: Mac: Compilation problem with OS X 10.9 Mavericks.
797Solution: Include AvailabilityMacros.h when available. (Kazunobu Kuriyama)
798Files: src/os_unix.c
799
800Patch 7.4.057
801Problem: byteidx() does not work for composing characters.
802Solution: Add byteidxcomp().
803Files: src/eval.c, src/testdir/test69.in, src/testdir/test69.ok,
804 runtime/doc/eval.txt
805
806Patch 7.4.058
807Problem: Warnings on 64 bit Windows.
808Solution: Add type casts. (Mike Williams)
809Files: src/ops.c
810
811Patch 7.4.059
812Problem: set_last_cursor() may encounter w_buffer being NULL. (Matt
813 Mkaniaris)
814Solution: Check for NULL.
815Files: src/mark.c
816
817Patch 7.4.060
818Problem: Declaration has wrong return type for PyObject_SetAttrString().
819Solution: Use int instead of PyObject. (Andreas Schwab)
820Files: src/if_python.c, src/if_python3.c
821
822Patch 7.4.061 (after 7.4.055 and 7.4.056)
823Problem: Availability macros configure check in wrong place.
824Solution: Also check when not using Darwin. Remove version check.
825Files: src/configure.in, src/auto/configure, src/os_unix.c
826
827Patch 7.4.062 (after 7.4.061)
828Problem: Configure check for AvailabilityMacros.h is wrong.
829Solution: Use AC_CHECK_HEADERS().
830Files: src/configure.in, src/auto/configure
831
832Patch 7.4.063
833Problem: Crash when using invalid key in Python dictionary.
834Solution: Check for object to be NULL. Add tests. (ZyX)
835Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok,
836 src/testdir/test87.in, src/testdir/test87.ok
837
838Patch 7.4.064
839Problem: When replacing a character in Visual block mode, entering a CR
840 does not cause a repeated line break.
841Solution: Recognize the situation and repeat the line break. (Christian
842 Brabandt)
843Files: src/normal.c, src/ops.c, src/testdir/test39.in,
844 src/testdir/test39.ok
845
846Patch 7.4.065
847Problem: When recording, the character typed at the hit-enter prompt is
848 recorded twice. (Urtica Dioica)
849Solution: Avoid recording the character twice. (Christian Brabandt)
850Files: src/message.c
851
852Patch 7.4.066
853Problem: MS-Windows: When there is a colon in the file name (sub-stream
854 feature) the swap file name is wrong.
855Solution: Change the colon to "%". (Yasuhiro Matsumoto)
856Files: src/fileio.c, src/memline.c, src/misc1.c, src/proto/misc1.pro
857
858Patch 7.4.067
859Problem: After inserting comment leader, CTRL-\ CTRL-O does move the
860 cursor. (Wiktor Ruben)
861Solution: Avoid moving the cursor. (Christian Brabandt)
862Files: src/edit.c
863
864Patch 7.4.068
865Problem: Cannot build Vim on Mac with non-Apple compilers.
866Solution: Remove the -no-cpp-precomp flag. (Misty De Meo)
867Files: src/configure.in, src/auto/configure, src/osdef.sh
868
869Patch 7.4.069
870Problem: Cannot right shift lines starting with #.
871Solution: Allow the right shift when 'cino' contains #N with N > 0.
872 (Christian Brabandt)
873 Refactor parsing 'cino', store the values in the buffer.
874Files: runtime/doc/indent.txt, src/buffer.c, src/edit.c, src/eval.c,
875 src/ex_getln.c, src/fold.c, src/misc1.c, src/ops.c,
876 src/proto/misc1.pro, src/proto/option.pro, src/structs.h,
877 src/option.c
878
879Patch 7.4.070 (after 7.4.069)
880Problem: Can't compile with tiny features. (Tony Mechelynck)
881Solution: Add #ifdef.
882Files: src/buffer.c
883
884Patch 7.4.071 (after 7.4.069)
885Problem: Passing limits around too often.
886Solution: Use limits from buffer.
887Files: src/edit.c, src/misc1.c, src/proto/misc1.pro
888
889Patch 7.4.072
890Problem: Crash when using Insert mode completion.
Bram Moolenaar09521312016-08-12 22:54:35 +0200891Solution: Avoid going past the end of pum_array. (idea by Francisco Lopes)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200892Files: src/popupmnu.c
893
894Patch 7.4.073
895Problem: Setting undolevels for one buffer changes undo in another.
896Solution: Make 'undolevels' a global-local option. (Christian Brabandt)
897Files: runtime/doc/options.txt, src/buffer.c, src/option.c, src/option.h
898 src/structs.h, src/undo.c
899
900Patch 7.4.074
901Problem: When undo'ing all changes and creating a new change the undo
902 structure is incorrect. (Christian Brabandt)
903Solution: When deleting the branch starting at the old header, delete the
904 whole branch, not just the first entry.
905Files: src/undo.c
906
907Patch 7.4.075
908Problem: Locally setting 'undolevels' is not tested.
909Solution: Add a test. (Christian Brabandt)
910Files: src/testdir/test100.in, src/testdir/test100.ok,
911 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
912 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
913 src/testdir/Make_vms.mms, src/testdir/Makefile, src/Makefile
914
915Patch 7.4.076
916Problem: "cgn" does not wrap around the end of the file. (Dimitrov
917 Dimitrov)
918Solution: Restore 'wrapscan' earlier. (Christian Brabandt)
919Files: src/search.c
920
921Patch 7.4.077
922Problem: DOS installer creates shortcut without a path, resulting in the
923 current directory to be C:\Windows\system32.
924Solution: Use environment variables.
925Files: src/dosinst.c
926
927Patch 7.4.078
928Problem: MSVC 2013 is not supported.
929Solution: Recognize and support MSVC 2013. (Ed Brown)
930Files: src/Make_mvc.mak
931
932Patch 7.4.079
933Problem: A script cannot detect whether 'hlsearch' highlighting is actually
934 displayed.
935Solution: Add the "v:hlsearch" variable. (ZyX)
936Files: src/eval.c, src/ex_docmd.c,
937 src/option.c, src/screen.c, src/search.c, src/tag.c, src/vim.h,
938 src/testdir/test101.in, src/testdir/test101.ok,
939 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
940 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
941 src/testdir/Make_vms.mms, src/testdir/Makefile
942
943Patch 7.4.080 (after 7.4.079)
944Problem: Missing documentation for v:hlsearch.
945Solution: Include the right file in the patch.
946Files: runtime/doc/eval.txt
947
948Patch 7.4.081 (after 7.4.078)
949Problem: Wrong logic when ANALYZE is "yes".
950Solution: Use or instead of and. (KF Leong)
951Files: src/Make_mvc.mak
952
953Patch 7.4.082
954Problem: Using "gf" in a changed buffer suggests adding "!", which is not
955 possible. (Tim Chase)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200956Solution: Pass a flag to check_changed() whether adding ! make sense.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200957Files: src/vim.h, src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/globals.h,
958 src/ex_cmds.c, src/ex_docmd.c
959
960Patch 7.4.083
961Problem: It's hard to avoid adding a used pattern to the search history.
962Solution: Add the ":keeppatterns" modifier. (Christian Brabandt)
963Files: runtime/doc/cmdline.txt, src/ex_cmds.h, src/ex_docmd.c,
964 src/ex_getln.c, src/structs.h
965
966Patch 7.4.084
967Problem: Python: interrupt not being properly discarded. (Yggdroot Chen)
968Solution: Discard interrupt in VimTryEnd. (ZyX)
969Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok,
970 src/testdir/test87.in, src/testdir/test87.ok
971
972Patch 7.4.085
973Problem: When inserting text in Visual block mode and moving the cursor the
974 wrong text gets repeated in other lines.
975Solution: Use the '[ mark to find the start of the actually inserted text.
976 (Christian Brabandt)
977Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok
978
979Patch 7.4.086
980Problem: Skipping over an expression when not evaluating it does not work
981 properly for dict members.
982Solution: Skip over unrecognized expression. (ZyX)
983Files: src/eval.c, src/testdir/test34.in, src/testdir/test34.ok
984
985Patch 7.4.087
986Problem: Compiler warning on 64 bit Windows systems.
987Solution: Fix type cast. (Mike Williams)
988Files: src/ops.c
989
990Patch 7.4.088
991Problem: When spell checking is enabled Asian characters are always marked
992 as error.
993Solution: When 'spelllang' contains "cjk" do not mark Asian characters as
994 error. (Ken Takata)
995Files: runtime/doc/options.txt, runtime/doc/spell.txt, src/mbyte.c,
996 src/option.c, src/spell.c, src/structs.h
997
998Patch 7.4.089
999Problem: When editing a file in a directory mounted through sshfs Vim
1000 doesn't set the security context on a renamed file.
1001Solution: Add mch_copy_sec() to vim_rename(). (Peter Backes)
1002Files: src/fileio.c
1003
1004Patch 7.4.090
1005Problem: Win32: When a directory name contains an exclamation mark,
1006 completion doesn't complete the contents of the directory.
1007Solution: Escape the exclamation mark. (Jan Stocker)
1008Files: src/ex_getln.c, src/testdir/test102.in, src/testdir/test102.ok,
1009 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
1010 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
1011 src/testdir/Make_vms.mms, src/testdir/Makefile
1012
1013Patch 7.4.091 (after 7.4.089)
1014Problem: Missing semicolon.
1015Solution: Add the semicolon.
1016Files: src/fileio.c
1017
1018Patch 7.4.092 (after 7.4.088)
1019Problem: Can't build small version.
1020Solution: Add #ifdef where the b_cjk flag is used. (Ken Takata)
1021Files: src/spell.c
1022
1023Patch 7.4.093
1024Problem: Configure can't use LuaJIT on ubuntu 12.04.
1025Solution: Adjust the configure regexp that locates the version number.
1026 (Charles Strahan)
1027Files: src/configure.in, src/auto/configure
1028
1029Patch 7.4.094
1030Problem: Configure may not find that -lint is needed for gettext().
1031Solution: Check for gettext() with empty $LIBS. (Thomas De Schampheleire)
1032Files: src/configure.in, src/auto/configure
1033
1034Patch 7.4.095 (after 7.4.093)
1035Problem: Regexp for LuaJIT version doesn't work on BSD.
1036Solution: Use "*" instead of "\+" and "\?". (Ozaki)
1037Files: src/configure.in, src/auto/configure
1038
1039Patch 7.4.096
1040Problem: Can't change directory to an UNC path.
1041Solution: Use win32_getattrs() in mch_getperm(). (Christian Brabandt)
1042Files: src/os_win32.c
1043
1044Patch 7.4.097 (after 7.4.034)
1045Problem: Unexpected behavior change related to 'virtualedit'. (Ingo Karkat)
1046Solution: Update the valid cursor position. (Christian Brabandt)
1047Files: src/ops.c
1048
1049Patch 7.4.098
1050Problem: When using ":'<,'>del" errors may be given for the visual line
1051 numbers being out of range.
1052Solution: Reset Visual mode in ":del". (Lech Lorens)
1053Files: src/ex_docmd.c, src/testdir/test103.in, src/testdir/test103.ok,
1054 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
1055 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
1056 src/testdir/Make_vms.mms, src/testdir/Makefile
1057
1058Patch 7.4.099
1059Problem: Append in blockwise Visual mode with "$" is wrong.
1060Solution: After "$" don't use the code that checks if the cursor was moved.
1061 (Hirohito Higashi, Ken Takata)
1062Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok
1063
1064Patch 7.4.100
1065Problem: NFA regexp doesn't handle backreference correctly. (Ryuichi
1066 Hayashida, Urtica Dioica)
1067Solution: Always add NFA_SKIP, also when it already exists at the start
1068 position.
1069Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
1070
1071Patch 7.4.101
1072Problem: Using \1 in pattern goes one line too far. (Bohr Shaw, John Little)
1073Solution: Only advance the match end for the matched characters in the last
1074 line.
1075Files: src/regexp.c, src/testdir/test64.in, src/testdir/test64.ok
1076
1077Patch 7.4.102
1078Problem: Crash when interrupting "z=".
1079Solution: Add safety check for word length. (Christian Brabandt, Dominique
1080 Pelle)
1081Files: src/spell.c
1082
1083Patch 7.4.103
1084Problem: Dos installer uses an old way to escape spaces in the diff
1085 command.
1086Solution: Adjust the quoting to the new default shellxquote. (Ben Fritz)
1087Files: src/dosinst.c
1088
1089Patch 7.4.104
1090Problem: ":help s/\_" reports an internal error. (John Beckett)
1091Solution: Check for NUL and invalid character classes.
1092Files: src/regexp_nfa.c
1093
1094Patch 7.4.105
1095Problem: Completing a tag pattern may give an error for invalid pattern.
1096Solution: Suppress the error, just return no matches.
1097Files: src/tag.c
1098
1099Patch 7.4.106
1100Problem: Can't build with Ruby using Cygwin.
1101Solution: Fix library name in makefile. (Steve Hall)
1102Files: src/Make_cyg.mak
1103
1104Patch 7.4.107
1105Problem: Python: When vim.eval() encounters a Vim error, a try/catch in the
1106 Python code doesn't catch it. (Yggdroot Chen)
1107Solution: Throw exceptions on errors in vim.eval(). (ZyX)
1108Files: src/ex_eval.c, src/if_py_both.h, src/proto/ex_eval.pro,
1109 src/testdir/test86.in, src/testdir/test86.ok,
1110 src/testdir/test87.in, src/testdir/test87.ok
1111
1112Patch 7.4.108
1113Problem: "zG" and "zW" leave temp files around on MS-Windows.
1114Solution: Delete the temp files when exiting. (Ken Takata)
1115Files: src/memline.c, src/proto/spell.pro, src/spell.c
1116
1117Patch 7.4.109
1118Problem: ColorScheme autocommand matches with the current buffer name.
1119Solution: Match with the colorscheme name. (Christian Brabandt)
1120Files: runtime/doc/autocmd.txt, src/fileio.c, src/syntax.c
1121
1122Patch 7.4.110
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001123Problem: "gUgn" cannot be repeated. (Dimitar Dimitrov)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001124Solution: Don't put "gn" in a different order in the redo buffer. Restore
1125 'wrapscan' when the pattern isn't found. (Christian Wellenbrock)
1126Files: src/normal.c, src/search.c, src/test53.in, src/test53.ok
1127
1128Patch 7.4.111
1129Problem: Memory leak in Python OptionsAssItem. (Ken Takata)
1130Solution: Call Py_XDECREF() where needed. (ZyX)
1131Files: src/if_py_both.h
1132
1133Patch 7.4.112
1134Problem: The defaults for 'directory' and 'backupdir' on MS-Windows do not
1135 include a directory that exists.
1136Solution: Use $TEMP.
1137Files: src/os_dos.h
1138
1139Patch 7.4.113
1140Problem: MSVC static analysis gives warnings.
1141Solution: Avoid the warnings and avoid possible bugs. (Ken Takata)
1142Files: src/os_win32.c
1143
1144Patch 7.4.114
1145Problem: New GNU make outputs messages about changing directory in another
1146 format.
1147Solution: Recognize the new format.
1148Files: src/option.h
1149
1150Patch 7.4.115
1151Problem: When using Zsh expanding ~abc doesn't work when the result
1152 contains a space.
1153Solution: Off-by-one error in detecting the NUL. (Pavol Juhas)
1154Files: src/os_unix.c
1155
1156Patch 7.4.116
1157Problem: When a mapping starts with a space, the typed space does not show
1158 up for 'showcmd'.
1159Solution: Show "<20>". (Brook Hong)
1160Files: src/normal.c
1161
1162Patch 7.4.117
1163Problem: Can't build with Cygwin/MingW and Perl 5.18.
1164Solution: Add a linker argument for the Perl library. (Cesar Romani)
1165 Adjust CFLAGS and LIB. (Cesar Romani)
1166 Move including inline.h further down. (Ken Takata)
1167Files: src/Make_cyg.mak, src/Make_ming.mak, src/if_perl.xs
1168
1169Patch 7.4.118
1170Problem: It's possible that redrawing the status lines causes
1171 win_redr_custom() to be called recursively.
1172Solution: Protect against recursiveness. (Yasuhiro Matsumoto)
1173Files: src/screen.c
1174
1175Patch 7.4.119
1176Problem: Vim doesn't work well on OpenVMS.
1177Solution: Fix various problems. (Samuel Ferencik)
1178Files: src/os_unix.c, src/os_unix.h, src/os_vms.c
1179
1180Patch 7.4.120 (after 7.4.117)
1181Problem: Can't build with Perl 5.18 on Linux. (Lcd 47)
1182Solution: Add #ifdef. (Ken Takata)
1183Files: src/if_perl.xs
1184
1185Patch 7.4.121
1186Problem: Completion doesn't work for ":py3d" and ":py3f". (Bohr Shaw)
1187Solution: Skip over letters after ":py3".
1188Files: src/ex_docmd.c
1189
1190Patch 7.4.122
1191Problem: Win32: When 'encoding' is set to "utf-8" and the active codepage
1192 is cp932 then ":grep" and other commands don't work for multi-byte
1193 characters.
1194Solution: (Yasuhiro Matsumoto)
1195Files: src/os_win32.c
1196
1197Patch 7.4.123
1198Problem: Win32: Getting user name does not use wide function.
1199Solution: Use GetUserNameW() if possible. (Ken Takata)
1200Files: src/os_win32.c
1201
1202Patch 7.4.124
1203Problem: Win32: Getting host name does not use wide function.
1204Solution: Use GetComputerNameW() if possible. (Ken Takata)
1205Files: src/os_win32.c
1206
1207Patch 7.4.125
1208Problem: Win32: Dealing with messages may not work for multi-byte chars.
1209Solution: Use pDispatchMessage(). (Ken Takata)
1210Files: src/os_win32.c
1211
1212Patch 7.4.126
1213Problem: Compiler warnings for "const" and incompatible types.
1214Solution: Remove "const", add type cast. (Ken Takata)
1215Files: src/os_win32.c
1216
1217Patch 7.4.127
1218Problem: Perl 5.18 on Unix doesn't work.
1219Solution: Move workaround to after including vim.h. (Ken Takata)
1220Files: src/if_perl.xs
1221
1222Patch 7.4.128
1223Problem: Perl 5.18 for MSVC doesn't work.
1224Solution: Add check in makefile and define __inline. (Ken Takata)
1225Files: src/Make_mvc.mak, src/if_perl.xs
1226
1227Patch 7.4.129
1228Problem: getline(-1) returns zero. (mvxxc)
1229Solution: Return an empty string.
1230Files: src/eval.c
1231
1232Patch 7.4.130
1233Problem: Relative line numbers mix up windows when using folds.
1234Solution: Use hasFoldingWin() instead of hasFolding(). (Lech Lorens)
1235Files: src/misc2.c
1236
1237Patch 7.4.131
1238Problem: Syncbind causes E315 errors in some situations. (Liang Li)
1239Solution: Set and restore curbuf in ex_syncbind(). (Christian Brabandt)
1240Files: src/ex_docmd.c, src/testdir/test37.ok
1241
1242Patch 7.4.132 (after 7.4.122)
1243Problem: Win32: flags and inherit_handles arguments mixed up.
1244Solution: Swap the argument. (cs86661)
1245Files: src/os_win32.c
1246
1247Patch 7.4.133
1248Problem: Clang warns for using NUL.
1249Solution: Change NUL to NULL. (Dominique Pelle)
1250Files: src/eval.c, src/misc2.c
1251
1252Patch 7.4.134
1253Problem: Spurious space in MingW Makefile.
1254Solution: Remove the space. (Michael Soyka)
1255Files: src/Make_ming.mak
1256
1257Patch 7.4.135
1258Problem: Missing dot in MingW test Makefile.
1259Solution: Add the dot. (Michael Soyka)
1260Files: src/testdir/Make_ming.mak
1261
1262Patch 7.4.136 (after 7.4.096)
1263Problem: MS-Windows: When saving a file with a UNC path the file becomes
1264 read-only.
1265Solution: Don't mix up Win32 attributes and Unix attributes. (Ken Takata)
1266Files: src/os_mswin.c, src/os_win32.c
1267
1268Patch 7.4.137
1269Problem: Cannot use IME with Windows 8 console.
1270Solution: Change the user of ReadConsoleInput() and PeekConsoleInput().
1271 (Nobuhiro Takasaki)
1272Files: src/os_win32.c
1273
1274Patch 7.4.138 (after 7.4.114)
1275Problem: Directory change messages are not recognized.
1276Solution: Fix using a character range literally. (Lech Lorens)
1277Files: src/option.h
1278
1279Patch 7.4.139
1280Problem: Crash when using :cd in autocommand. (François Ingelrest)
1281Solution: Set w_localdir to NULL after freeing it. (Dominique Pelle)
1282Files: src/ex_docmd.c, src/window.c
1283
1284Patch 7.4.140
1285Problem: Crash when wiping out buffer triggers autocommand that wipes out
1286 only other buffer.
1287Solution: Do not delete the last buffer, make it empty. (Hirohito Higashi)
1288Files: src/buffer.c
1289
1290Patch 7.4.141
1291Problem: Problems when building with Borland: st_mode is signed short;
1292 can't build with Python; temp files not ignored by Mercurial;
1293 building with DEBUG doesn't define _DEBUG.
1294Solution: Fix the problems. (Ken Takata)
1295Files: src/Make_bc5.mak, src/if_py_both.h, src/os_win32.c
1296
1297Patch 7.4.142 (after 7.4.137)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001298Problem: On MS-Windows 8 IME input doesn't work correctly.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001299Solution: Work around the problem. (Nobuhiro Takasaki)
1300Files: src/os_win32.c
1301
1302Patch 7.4.143
1303Problem: TextChangedI is not triggered.
1304Solution: Reverse check for "ready". (lilydjwg)
1305Files: src/edit.c
1306
1307Patch 7.4.144
1308Problem: MingW also supports intptr_t for OPEN_OH_ARGTYPE.
1309Solution: Adjust #ifdef. (Ken Takata)
1310Files: src/os_mswin.c
1311
1312Patch 7.4.145
1313Problem: getregtype() does not return zero for unknown register.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001314Solution: Adjust documentation: return empty string for unknown register.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001315 Check the register name to be valid. (Yukihiro Nakadaira)
1316Files: runtime/doc/eval.txt, src/ops.c
1317
1318Patch 7.4.146
1319Problem: When starting Vim with "-u NONE" v:oldfiles is NULL.
1320Solution: Set v:oldfiles to an empty list. (Yasuhiro Matsumoto)
1321Files: src/main.c
1322
1323Patch 7.4.147
1324Problem: Cursor moves to wrong position when using "gj" after "$" and
1325 virtual editing is active.
1326Solution: Make "gj" behave differently when virtual editing is active.
1327 (Hirohito Higashi)
1328Files: src/normal.c, src/testdir/test39.in, src/testdir/test39.ok
1329
1330Patch 7.4.148
1331Problem: Cannot build with Cygwin and X11.
1332Solution: Include Xwindows.h instead of windows.h. (Lech Lorens)
1333Files: src/mbyte.c
1334
1335Patch 7.4.149
1336Problem: Get E685 error when assigning a function to an autoload variable.
1337 (Yukihiro Nakadaira)
1338Solution: Instead of having a global no_autoload variable, pass an autoload
1339 flag down to where it is used. (ZyX)
1340Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok,
1341 src/testdir/test60.in, src/testdir/test60.ok,
1342 src/testdir/sautest/autoload/footest.vim
1343
1344Patch 7.4.150
1345Problem: :keeppatterns is not respected for :s.
1346Solution: Check the keeppatterns flag. (Yasuhiro Matsumoto)
1347Files: src/search.c, src/testdir/test14.in, src/testdir/test14.ok
1348
1349Patch 7.4.151
1350Problem: Python: slices with steps are not supported.
1351Solution: Support slices in Python vim.List. (ZyX)
1352Files: src/eval.c, src/if_py_both.h, src/if_python3.c, src/if_python.c,
1353 src/proto/eval.pro, src/testdir/test86.in, src/testdir/test86.ok,
1354 src/testdir/test87.in, src/testdir/test87.ok
1355
1356Patch 7.4.152
1357Problem: Python: Cannot iterate over options.
1358Solution: Add options iterator. (ZyX)
1359Files: src/if_py_both.h, src/option.c, src/proto/option.pro,
1360 src/testdir/test86.in, src/testdir/test86.ok,
1361 src/testdir/test87.in, src/testdir/test87.ok, src/vim.h
1362
1363Patch 7.4.153
1364Problem: Compiler warning for pointer type.
1365Solution: Add type cast.
1366Files: src/if_py_both.h, src/if_python.c, src/if_python3.c
1367
1368Patch 7.4.154 (after 7.4.149)
1369Problem: Still a problem with auto-loading.
1370Solution: Pass no_autoload to deref_func_name(). (Yukihiro Nakadaira)
1371Files: src/eval.c
1372
1373Patch 7.4.155
1374Problem: ":keeppatterns /pat" does not keep search pattern offset.
1375Solution: Restore the offset after doing the search.
1376Files: src/search.c, src/testdir/test14.in, src/testdir/test14.ok
1377
1378Patch 7.4.156
1379Problem: Test file missing from distribution.
1380Solution: Add new directory to file list.
1381Files: Filelist
1382
1383Patch 7.4.157
1384Problem: Error number used twice. (Yukihiro Nakadaira)
1385Solution: Change the one not referred in the docs.
1386Files: src/undo.c
1387
1388Patch 7.4.158 (after 7.4.045)
1389Problem: Pattern containing \zs is not handled correctly by substitute().
1390Solution: Change how an empty match is skipped. (Yukihiro Nakadaira)
1391Files: src/eval.c, src/testdir/test80.in, src/testdir/test80.ok
1392
1393Patch 7.4.159
1394Problem: Completion hangs when scanning the current buffer after doing
1395 keywords. (Christian Brabandt)
1396Solution: Set the first match position when starting to scan the current
1397 buffer.
1398Files: src/edit.c
1399
1400Patch 7.4.160
1401Problem: Win32: Crash when executing external command.
1402Solution: Only close the handle when it was created. (Yasuhiro Matsumoto)
1403Files: src/os_win32.c
1404
1405Patch 7.4.161
1406Problem: Crash in Python exception handling.
1407Solution: Only use exception variables if did_throw is set. (ZyX)
1408Files: if_py_both.h
1409
1410Patch 7.4.162
1411Problem: Running tests in shadow dir doesn't work.
1412Solution: Add testdir/sautest to the shadow target. (James McCoy)
1413Files: src/Makefile
1414
1415Patch 7.4.163 (after 7.4.142)
1416Problem: MS-Windows input doesn't work properly on Windows 7 and earlier.
1417Solution: Add a check for Windows 8. (Yasuhiro Matsumoto)
1418Files: src/os_win32.c
1419
1420Patch 7.4.164 (after 7.4.163)
1421Problem: Problem with event handling on Windows 8.
1422Solution: Ignore duplicate WINDOW_BUFFER_SIZE_EVENTs. (Nobuhiro Takasaki)
1423Files: src/os_win32.c
1424
1425Patch 7.4.165
1426Problem: By default, after closing a buffer changes can't be undone.
1427Solution: In the example vimrc file set 'undofile'.
1428Files: runtime/vimrc_example.vim
1429
1430Patch 7.4.166
1431Problem: Auto-loading a function for code that won't be executed.
1432Solution: Do not auto-load when evaluation is off. (Yasuhiro Matsumoto)
1433Files: src/eval.c
1434
1435Patch 7.4.167 (after 7.4.149)
1436Problem: Fixes are not tested.
1437Solution: Add a test for not autoloading on assignment. (Yukihiro Nakadaira)
1438Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
1439 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
1440 src/testdir/Make_vms.mms, src/testdir/Makefile,
1441 src/testdir/sautest/autoload/Test104.vim, src/testdir/test104.in,
1442 src/testdir/test104.ok
1443
1444Patch 7.4.168
1445Problem: Can't compile with Ruby 2.1.0.
1446Solution: Add support for new GC. (Kohei Suzuki)
1447Files: src/if_ruby.c
1448
1449Patch 7.4.169
1450Problem: ":sleep" puts cursor in the wrong column. (Liang Li)
1451Solution: Add the window offset. (Christian Brabandt)
1452Files: src/ex_docmd.c
1453
1454Patch 7.4.170
1455Problem: Some help tags don't work with ":help". (Tim Chase)
1456Solution: Add exceptions.
1457Files: src/ex_cmds.c
1458
1459Patch 7.4.171
1460Problem: Redo does not set v:count and v:count1.
1461Solution: Use a separate buffer for redo, so that we can set the counts when
1462 performing redo.
1463Files: src/getchar.c, src/globals.h, src/normal.c, src/proto/getchar.pro,
1464 src/structs.h
1465
1466Patch 7.4.172
1467Problem: The blowfish code mentions output feedback, but the code is
1468 actually doing cipher feedback.
1469Solution: Adjust names and comments.
1470Files: src/blowfish.c, src/fileio.c, src/proto/blowfish.pro,
1471 src/memline.c
1472
1473Patch 7.4.173
1474Problem: When using scrollbind the cursor can end up below the last line.
1475 (mvxxc)
1476Solution: Reset w_botfill when scrolling up. (Christian Brabandt)
1477Files: src/move.c
1478
1479Patch 7.4.174
1480Problem: Compiler warnings for Python interface. (Tony Mechelynck)
1481Solution: Add type casts, initialize variable.
1482Files: src/if_py_both.h
1483
1484Patch 7.4.175
1485Problem: When a wide library function fails, falling back to the non-wide
1486 function may do the wrong thing.
1487Solution: Check the platform, when the wide function is supported don't fall
1488 back to the non-wide function. (Ken Takata)
1489Files: src/os_mswin.c, src/os_win32.c
1490
1491Patch 7.4.176
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001492Problem: Dictionary.update() throws an error when used without arguments.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001493 Python programmers don't expect that.
1494Solution: Make Dictionary.update() without arguments do nothing. (ZyX)
1495Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test87.in
1496
1497Patch 7.4.177
1498Problem: Compiler warning for unused variable. (Tony Mechelynck)
1499Solution: Add #ifdef.
1500Files: src/move.c
1501
1502Patch 7.4.178
1503Problem: The J command does not update '[ and '] marks. (William Gardner)
1504Solution: Set the marks. (Christian Brabandt)
1505Files: src/ops.c
1506
1507Patch 7.4.179
1508Problem: Warning for type-punned pointer. (Tony Mechelynck)
1509Solution: Use intermediate variable.
1510Files: src/if_py_both.h
1511
1512Patch 7.4.180 (after 7.4.174)
1513Problem: Older Python versions don't support %ld.
1514Solution: Use %d instead. (ZyX)
1515Files: src/if_py_both.h
1516
1517Patch 7.4.181
1518Problem: When using 'pastetoggle' the status lines are not updated. (Samuel
1519 Ferencik, Jan Christoph Ebersbach)
1520Solution: Update the status lines. (Nobuhiro Takasaki)
1521Files: src/getchar.c
1522
1523Patch 7.4.182
1524Problem: Building with mzscheme and racket does not work. (David Chimay)
1525Solution: Adjust autoconf. (Sergey Khorev)
1526Files: src/configure.in, src/auto/configure
1527
1528Patch 7.4.183
1529Problem: MSVC Visual Studio update not supported.
Bram Moolenaar09521312016-08-12 22:54:35 +02001530Solution: Add version number. (Mike Williams)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001531Files: src/Make_mvc.mak
1532
1533Patch 7.4.184
1534Problem: match() does not work properly with a {count} argument.
1535Solution: Compute the length once and update it. Quit the loop when at the
1536 end. (Hirohito Higashi)
1537Files: src/eval.c, src/testdir/test53.in, src/testdir/test53.ok
1538
1539Patch 7.4.185
1540Problem: Clang gives warnings.
1541Solution: Adjust how bigness is set. (Dominique Pelle)
1542Files: src/ex_cmds.c
1543
1544Patch 7.4.186 (after 7.4.085)
1545Problem: Insert in Visual mode sometimes gives incorrect results.
1546 (Dominique Pelle)
1547Solution: Remember the original insert start position. (Christian Brabandt,
1548 Dominique Pelle)
1549Files: src/edit.c, src/globals.h, src/ops.c, src/structs.h
1550
1551Patch 7.4.187
1552Problem: Delete that crosses line break splits multi-byte character.
1553Solution: Advance a character instead of a byte. (Cade Foster)
1554Files: src/normal.c, src/testdir/test69.in, src/testdir/test69.ok
1555
1556Patch 7.4.188
1557Problem: SIZEOF_LONG clashes with similar defines in header files.
1558Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
1559Files: src/if_ruby.c, src/vim.h, src/configure.in, src/auto/configure,
1560 src/config.h.in, src/fileio.c, src/if_python.c, src/message.c,
1561 src/spell.c, src/feature.h, src/os_os2_cfg.h, src/os_vms_conf.h,
1562 src/os_win16.h, src/structs.h
1563
1564Patch 7.4.189
1565Problem: Compiler warning for unused argument.
1566Solution: Add UNUSED.
1567Files: src/eval.c
1568
1569Patch 7.4.190
1570Problem: Compiler warning for using %lld for off_t.
1571Solution: Add type cast.
1572Files: src/fileio.c
1573
1574Patch 7.4.191
1575Problem: Escaping a file name for shell commands can't be done without a
1576 function.
1577Solution: Add the :S file name modifier.
1578Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
1579 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
1580 src/testdir/Make_vms.mms, src/testdir/Makefile,
1581 src/testdir/test105.in, src/testdir/test105.ok,
1582 runtime/doc/cmdline.txt, runtime/doc/eval.txt,
1583 runtime/doc/map.txt, runtime/doc/options.txt,
1584 runtime/doc/quickfix.txt, runtime/doc/usr_30.txt,
1585 runtime/doc/usr_40.txt, runtime/doc/usr_42.txt,
1586 runtime/doc/vi_diff.txt, src/eval.c, src/misc2.c, src/normal.c,
1587 src/proto/misc2.pro
1588
1589Patch 7.4.192
1590Problem: Memory leak when giving E853.
1591Solution: Free the argument. (Dominique Pelle)
1592Files: src/eval.c
1593
1594Patch 7.4.193
1595Problem: Typos in messages.
1596Solution: "then" -> "than". (Dominique Pelle)
1597Files: src/if_py_both.h, src/spell.c
1598
1599Patch 7.4.194
1600Problem: Can't build for Android.
1601Solution: Add #if condition. (Fredrik Fornwall)
1602Files: src/mbyte.c
1603
1604Patch 7.4.195 (after 7.4.193)
1605Problem: Python tests fail.
1606Solution: Change "then" to "than" in more places. (Dominique Pelle, Taro
1607 Muraoka)
1608Files: src/testdir/test86.in, src/testdir/test86.ok,
1609 src/testdir/test87.in, src/testdir/test87.ok
1610
1611Patch 7.4.196
1612Problem: Tests fail on Solaris 9 and 10.
1613Solution: Use "test -f" instead of "test -e". (Laurent Blume)
1614Files: src/testdir/Makefile
1615
1616Patch 7.4.197
1617Problem: Various problems on VMS.
1618Solution: Fix several VMS problems. (Zoltan Arpadffy)
1619Files: runtime/doc/os_vms.txt, src/Make_vms.mms, src/fileio.c,
1620 src/os_unix.c, src/os_unix.h, src/os_vms.c, src/os_vms_conf.h,
1621 src/proto/os_vms.pro, src/testdir/Make_vms.mms,
1622 src/testdir/test72.in, src/testdir/test77a.com,
1623 src/testdir/test77a.in, src/testdir/test77a.ok src/undo.c
1624
1625Patch 7.4.198
1626Problem: Can't build Vim with Perl when -Dusethreads is not specified for
1627 building Perl, and building Vim with --enable-perlinterp=dynamic.
1628Solution: Adjust #ifdefs. (Yasuhiro Matsumoto)
1629Files: src/if_perl.xs
1630
1631Patch 7.4.199
1632Problem: (issue 197) ]P doesn't paste over Visual selection.
1633Solution: Handle Visual mode specifically. (Christian Brabandt)
1634Files: src/normal.c
1635
1636Patch 7.4.200
1637Problem: Too many #ifdefs in the code.
1638Solution: Enable FEAT_VISUAL always, await any complaints
1639Files: src/feature.h
1640
1641Patch 7.4.201
1642Problem: 'lispwords' is a global option.
1643Solution: Make 'lispwords' global-local. (Sung Pae)
1644Files: runtime/doc/options.txt, runtime/optwin.vim, src/buffer.c,
1645 src/misc1.c, src/option.c, src/option.h, src/structs.h,
1646 src/testdir/test100.in, src/testdir/test100.ok
1647
1648Patch 7.4.202
1649Problem: MS-Windows: non-ASCII font names don't work.
1650Solution: Convert between the current code page and 'encoding'. (Ken Takata)
1651Files: src/gui_w48.c, src/os_mswin.c, src/proto/winclip.pro,
1652 src/winclip.c
1653
1654Patch 7.4.203
1655Problem: Parsing 'errorformat' is not correct.
1656Solution: Reset "multiignore" at the start of a multi-line message. (Lcd)
1657Files: src/quickfix.c, src/testdir/Make_amiga.mak,
1658 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
1659 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
1660 src/testdir/Makefile, src/testdir/test106.in,
1661 src/testdir/test106.ok
1662
1663Patch 7.4.204
1664Problem: A mapping where the second byte is 0x80 doesn't work.
1665Solution: Unescape before checking for incomplete multi-byte char. (Nobuhiro
1666 Takasaki)
1667Files: src/getchar.c, src/testdir/test75.in, src/testdir/test75.ok
1668
1669Patch 7.4.205
1670Problem: ":mksession" writes command to move to second argument while it
1671 does not exist. When it does exist the order might be wrong.
1672Solution: Use ":argadd" for each argument instead of using ":args" with a
1673 list of names. (Nobuhiro Takasaki)
1674Files: src/ex_docmd.c
1675
1676Patch 7.4.206
1677Problem: Compiler warnings on 64 bit Windows.
1678Solution: Add type casts. (Mike Williams)
1679Files: src/gui_w48.c, src/os_mswin.c
1680
1681Patch 7.4.207
1682Problem: The cursor report sequence is sometimes not recognized and results
1683 in entering replace mode.
1684Solution: Also check for the cursor report when not asked for.
1685Files: src/term.c
1686
1687Patch 7.4.208
1688Problem: Mercurial picks up some files that are not distributed.
1689Solution: Add patterns to the ignore list. (Cade Forester)
1690Files: .hgignore
1691
1692Patch 7.4.209
1693Problem: When repeating a filter command "%" and "#" are expanded.
1694Solution: Escape the command when storing for redo. (Christian Brabandt)
1695Files: src/ex_cmds.c
1696
1697Patch 7.4.210
1698Problem: Visual block mode plus virtual edit doesn't work well with tabs.
1699 (Liang Li)
1700Solution: Take coladd into account. (Christian Brabandt)
1701Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok
1702
1703Patch 7.4.211
1704Problem: ":lu" is an abbreviation for ":lua", but it should be ":lunmap".
1705 (ZyX)
1706Solution: Move "lunmap" to above "lua".
1707Files: src/ex_cmds.h
1708
1709Patch 7.4.212 (after 7.4.200)
1710Problem: Now that the +visual feature is always enabled the #ifdefs for it
1711 are not useful.
1712Solution: Remove the checks for FEAT_VISUAL.
1713Files: src/buffer.c, src/charset.c, src/edit.c, src/eval.c,
1714 src/ex_cmds.c, src/ex_docmd.c, src/fold.c, src/getchar.c,
1715 src/gui.c, src/gui_mac.c, src/gui_w48.c, src/main.c, src/mark.c,
1716 src/menu.c, src/misc2.c, src/move.c, src/netbeans.c, src/normal.c,
1717 src/ops.c, src/option.c, src/os_msdos.c, src/os_qnx.c,
1718 src/quickfix.c, src/regexp.c, src/regexp_nfa.c, src/screen.c,
1719 src/search.c, src/spell.c, src/syntax.c, src/term.c, src/ui.c,
1720 src/undo.c, src/version.c, src/window.c, src/feature.h,
1721 src/globals.h, src/option.h, src/os_win32.h, src/structs.h
1722
1723Patch 7.4.213
1724Problem: It's not possible to open a new buffer without creating a swap
1725 file.
1726Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
1727Files: runtime/doc/recover.txt, src/ex_cmds.h, src/ex_docmd.c,
1728 src/memline.c, src/structs.h
1729
1730Patch 7.4.214
1731Problem: Compilation problems on HP_nonStop (Tandem).
1732Solution: Add #defines. (Joachim Schmitz)
1733Files: src/vim.h
1734
1735Patch 7.4.215
1736Problem: Inconsistency: ":sp foo" does not reload "foo", unless "foo" is
1737 the current buffer. (Liang Li)
1738Solution: Do not reload the current buffer on a split command.
1739Files: runtime/doc/windows.txt, src/ex_docmd.c
1740
1741Patch 7.4.216
1742Problem: Compiler warnings. (Tony Mechelynck)
1743Solution: Initialize variables, add #ifdef.
1744Files: src/term.c, src/os_unix.h
1745
1746Patch 7.4.217
1747Problem: When src/auto/configure was updated, "make clean" would run
1748 configure pointlessly.
1749Solution: Do not run configure for "make clean" and "make distclean" when
1750 the make program supports $MAKECMDGOALS. (Ken Takata)
1751Files: src/Makefile
1752
1753Patch 7.4.218
1754Problem: It's not easy to remove duplicates from a list.
1755Solution: Add the uniq() function. (LCD)
1756Files: runtime/doc/change.txt, runtime/doc/eval.txt,
1757 runtime/doc/usr_41.txt, runtime/doc/version7.txt, src/eval.c,
1758 src/testdir/test55.in, src/testdir/test55.ok
1759
1760Patch 7.4.219
1761Problem: When 'relativenumber' or 'cursorline' are set the window is
1762 redrawn much to often. (Patrick Hemmer, Dominique Pelle)
1763Solution: Check the VALID_CROW flag instead of VALID_WROW.
1764Files: src/move.c
1765
1766Patch 7.4.220
1767Problem: Test 105 does not work in a shadow dir. (James McCoy)
1768Solution: Omit "src/" from the checked path.
1769Files: src/testdir/test105.in, src/testdir/test105.ok
1770
1771Patch 7.4.221
1772Problem: Quickfix doesn't resize on ":copen 20". (issue 199)
1773Solution: Resize the window when requested. (Christian Brabandt)
1774Files: src/quickfix.c
1775
1776Patch 7.4.222
1777Problem: The Ruby directory is constructed from parts.
1778Solution: Use 'rubyarchhdrdir' if it exists. (James McCoy)
1779Files: src/configure.in, src/auto/configure
1780
1781Patch 7.4.223
1782Problem: Still using an older autoconf version.
1783Solution: Switch to autoconf 2.69.
1784Files: src/Makefile, src/configure.in, src/auto/configure
1785
1786Patch 7.4.224
1787Problem: /usr/bin/grep on Solaris does not support -F.
1788Solution: Add configure check to find a good grep. (Danek Duvall)
1789Files: src/configure.in, src/auto/configure
1790
1791Patch 7.4.225
1792Problem: Dynamic Ruby doesn't work on Solaris.
1793Solution: Always use the stubs. (Danek Duvall, Yukihiro Nakadaira)
1794Files: src/if_ruby.c
1795
1796Patch 7.4.226 (after 7.4.219)
1797Problem: Cursurline highlighting not redrawn when scrolling. (John
1798 Marriott)
1799Solution: Check for required redraw in two places.
1800Files: src/move.c
1801
1802Patch 7.4.227 (after 7.4.225)
1803Problem: Can't build with Ruby 1.8.
1804Solution: Do include a check for the Ruby version. (Ken Takata)
1805Files: src/if_ruby.c
1806
1807Patch 7.4.228
1808Problem: Compiler warnings when building with Python 3.2.
1809Solution: Make type cast depend on Python version. (Ken Takata)
1810Files: src/if_py_both.h, src/if_python.c, src/if_python3.c
1811
1812Patch 7.4.229
1813Problem: Using ":let" for listing variables and the second one is a curly
1814 braces expression may fail.
1815Solution: Check for an "=" in a better way. (ZyX)
1816Files: src/eval.c, src/testdir/test104.in, src/testdir/test104.ok
1817
1818Patch 7.4.230
1819Problem: Error when using ":options".
1820Solution: Fix the entry for 'lispwords'. (Kenichi Ito)
1821Files: runtime/optwin.vim
1822
1823Patch 7.4.231
1824Problem: An error in ":options" is not caught by the tests.
1825Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that
1826 it uses the current runtime files instead of the installed ones.
1827Files: src/Makefile, src/testdir/Makefile, src/testdir/test_options.in,
1828 src/testdir/test_options.ok, src/testdir/Make_amiga.mak,
1829 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
1830 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms
1831
1832Patch 7.4.232
1833Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin)
1834Solution: Turn this into a join command. (Christian Brabandt)
1835Files: src/ex_cmds.c, src/ex_docmd.c, src/proto/ex_docmd.pro
1836
1837Patch 7.4.233
1838Problem: Escaping special characters for using "%" with a shell command is
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001839 inconsistent, parentheses are escaped but spaces are not.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02001840Solution: Only escape "!". (Gary Johnson)
1841Files: src/ex_docmd.c
1842
1843Patch 7.4.234
1844Problem: Can't get the command that was used to start Vim.
1845Solution: Add v:progpath. (Viktor Kojouharov)
1846Files: runtime/doc/eval.txt, src/eval.c, src/main.c, src/vim.h
1847
1848Patch 7.4.235
1849Problem: It is not easy to get the full path of a command.
1850Solution: Add the exepath() function.
1851Files: src/eval.c, src/misc1.c, src/os_amiga.c, src/os_msdos.c,
1852 src/os_unix.c, src/os_vms.c, src/os_win32.c,
1853 src/proto/os_amiga.pro, src/proto/os_msdos.pro,
1854 src/proto/os_unix.pro, src/proto/os_win32.pro,
1855 runtime/doc/eval.txt
1856
1857Patch 7.4.236
1858Problem: It's not that easy to check the Vim patch version.
1859Solution: Make has("patch-7.4.123") work. (partly by Marc Weber)
1860Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test60.in,
1861 src/testdir/test60.ok
1862
1863Patch 7.4.237 (after 7.4.236)
1864Problem: When some patches was not included has("patch-7.4.123") may return
1865 true falsely.
1866Solution: Check for the specific patch number.
1867Files: runtime/doc/eval.txt, src/eval.c
1868
1869Patch 7.4.238
1870Problem: Vim does not support the smack library.
1871Solution: Add smack support (Jose Bollo)
1872Files: src/config.h.in, src/configure.in, src/fileio.c, src/memfile.c,
1873 src/os_unix.c, src/undo.c, src/auto/configure
1874
1875Patch 7.4.239
1876Problem: ":e +" does not position cursor at end of the file.
1877Solution: Check for "+" being the last character (ZyX)
1878Files: src/ex_docmd.c
1879
1880Patch 7.4.240
1881Problem: ":tjump" shows "\n" as "\\n".
1882Solution: Skip over "\" that escapes a backslash. (Gary Johnson)
1883Files: src/tag.c
1884
1885Patch 7.4.241
1886Problem: The string returned by submatch() does not distinguish between a
1887 NL from a line break and a NL that stands for a NUL character.
1888Solution: Add a second argument to return a list. (ZyX)
1889Files: runtime/doc/eval.txt, src/eval.c, src/proto/regexp.pro,
1890 src/regexp.c, src/testdir/test79.in, src/testdir/test79.ok,
1891 src/testdir/test80.in, src/testdir/test80.ok
1892
1893Patch 7.4.242
1894Problem: getreg() does not distinguish between a NL used for a line break
1895 and a NL used for a NUL character.
1896Solution: Add another argument to return a list. (ZyX)
1897Files: runtime/doc/eval.txt, src/eval.c src/ops.c, src/proto/ops.pro,
1898 src/vim.h, src/Makefile, src/testdir/test_eval.in,
1899 src/testdir/test_eval.ok, src/testdir/Make_amiga.mak,
1900 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
1901 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms
1902
1903Patch 7.4.243
1904Problem: Cannot use setreg() to add text that includes a NUL.
1905Solution: Make setreg() accept a list.
1906Files: runtime/doc/eval.txt, src/eval.c, src/ops.c, src/proto/ops.pro,
1907 src/testdir/test_eval.in, src/testdir/test_eval.ok
1908
1909Patch 7.4.244 (after 7.4.238)
1910Problem: The smack feature causes stray error messages.
1911Solution: Remove the error messages.
1912Files: src/os_unix.c
1913
1914Patch 7.4.245
1915Problem: Crash for "vim -u NONE -N -c '&&'".
1916Solution: Check for the pattern to be NULL. (Dominique Pelle)
1917Files: src/ex_cmds.c
1918
1919Patch 7.4.246
1920Problem: Configure message for detecting smack are out of sequence.
1921Solution: Put the messages in the right place. (Kazunobu Kuriyama)
1922Files: src/configure.in, src/auto/configure
1923
1924Patch 7.4.247
1925Problem: When passing input to system() there is no way to keep NUL and
1926 NL characters separate.
1927Solution: Optionally use a list for the system() input. (ZyX)
1928Files: runtime/doc/eval.txt, src/eval.c
1929
1930Patch 7.4.248
1931Problem: Cannot distinguish between NL and NUL in output of system().
1932Solution: Add systemlist(). (ZyX)
1933Files: runtime/doc/eval.txt, src/eval.c, src/ex_cmds2.c, src/misc1.c,
1934 src/proto/misc1.pro
1935
1936Patch 7.4.249
1937Problem: Using setreg() with a list of numbers does not work.
1938Solution: Use a separate buffer for numbers. (ZyX)
1939Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok
1940
1941Patch 7.4.250
1942Problem: Some test files missing from distribution.
1943Solution: Add pattern for newly added tests.
1944Files: Filelist
1945
1946Patch 7.4.251
1947Problem: Crash when BufAdd autocommand wipes out the buffer.
1948Solution: Check for buffer to still be valid. Postpone freeing the buffer
1949 structure. (Hirohito Higashi)
1950Files: src/buffer.c, src/ex_cmds.c, src/fileio.c, src/globals.h
1951
1952Patch 7.4.252
1953Problem: Critical error in GTK, removing timer twice.
1954Solution: Clear the timer after removing it. (James McCoy)
1955Files: src/gui_gtk_x11.c
1956
1957Patch 7.4.253
1958Problem: Crash when using cpp syntax file with pattern using external
1959 match. (Havard Garnes)
1960Solution: Discard match when end column is before start column.
1961Files: src/regexp.c, src/regexp_nfa.c
1962
1963Patch 7.4.254
1964Problem: Smack support detection is incomplete.
1965Solution: Check for attr/xattr.h and specific macro.
1966Files: src/configure.in, src/auto/configure
1967
1968Patch 7.4.255
1969Problem: Configure check for smack doesn't work with all shells. (David
1970 Larson)
1971Solution: Remove spaces in set command.
1972Files: src/configure.in, src/auto/configure
1973
1974Patch 7.4.256 (after 7.4.248)
1975Problem: Using systemlist() may cause a crash and does not handle NUL
1976 characters properly.
1977Solution: Increase the reference count, allocate memory by length. (Yasuhiro
1978 Matsumoto)
1979Files: src/eval.c
1980
1981Patch 7.4.257
1982Problem: Compiler warning, possibly for mismatch in parameter name.
1983Solution: Rename the parameter in the declaration.
1984Files: src/ops.c
1985
1986Patch 7.4.258
1987Problem: Configure fails if $CC contains options.
1988Solution: Remove quotes around $CC. (Paul Barker)
1989Files: src/configure.in, src/auto/configure
1990
1991Patch 7.4.259
1992Problem: Warning for misplaced "const".
1993Solution: Move the "const". (Yukihiro Nakadaira)
1994Files: src/os_unix.c
1995
1996Patch 7.4.260
1997Problem: It is possible to define a function with a colon in the name. It
1998 is possible to define a function with a lower case character if a
1999 "#" appears after the name.
2000Solution: Disallow using a colon other than with "s:". Ignore "#" after the
2001 name.
2002Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_eval.in,
2003 src/testdir/test_eval.ok
2004
2005Patch 7.4.261
2006Problem: When updating the window involves a regexp pattern, an interactive
2007 substitute to replace a "\n" with a line break fails. (Ingo
2008 Karkat)
2009Solution: Set reg_line_lbr in vim_regsub() and vim_regsub_multi().
2010Files: src/regexp.c, src/testdir/test79.in, src/testdir/test79.ok
2011
2012Patch 7.4.262
2013Problem: Duplicate code in regexec().
2014Solution: Add line_lbr flag to regexec_nl().
2015Files: src/regexp.c, src/regexp_nfa.c, src/regexp.h
2016
2017Patch 7.4.263
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002018Problem: GCC 4.8 compiler warning for hiding a declaration (François Gannaz)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002019Solution: Remove the second declaration.
2020Files: src/eval.c
2021
2022Patch 7.4.264 (after 7.4.260)
2023Problem: Can't define a function starting with "g:". Can't assign a
2024 funcref to a buffer-local variable.
2025Solution: Skip "g:" at the start of a function name. Don't check for colons
2026 when assigning to a variable.
2027Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok
2028
2029Patch 7.4.265 (after 7.4.260)
2030Problem: Can't call a global function with "g:" in an expression.
2031Solution: Skip the "g:" when looking up the function.
2032Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok
2033
2034Patch 7.4.266
2035Problem: Test 62 fails.
2036Solution: Set the language to C. (Christian Brabandt)
2037Files: src/testdir/test62.in
2038
2039Patch 7.4.267 (after 7.4.178)
2040Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat)
2041Solution: Add the setmark argument to do_join(). (Christian Brabandt)
2042Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
2043 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
2044 src/testdir/Make_vms.mms, src/testdir/Makefile,
2045 src/testdir/test_autoformat_join.in,
2046 src/testdir/test_autoformat_join.ok, src/Makefile, src/edit.c,
2047 src/ex_cmds.c, src/ex_docmd.c, src/normal.c, src/ops.c,
2048 src/proto/ops.pro
2049
2050Patch 7.4.268
2051Problem: Using exists() on a funcref for a script-local function does not
2052 work.
2053Solution: Translate <SNR> to the special byte sequence. Add a test.
2054Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok,
2055 src/testdir/test_eval_func.vim, Filelist
2056
2057Patch 7.4.269
2058Problem: CTRL-U in Insert mode does not work after using a cursor key.
2059 (Pine Wu)
2060Solution: Use the original insert start position. (Christian Brabandt)
2061Files: src/edit.c, src/testdir/test29.in, src/testdir/test29.ok
2062
2063Patch 7.4.270
2064Problem: Comparing pointers instead of the string they point to.
2065Solution: Use strcmp(). (Ken Takata)
2066Files: src/gui_gtk_x11.c
2067
2068Patch 7.4.271
2069Problem: Compiler warning on 64 bit windows.
2070Solution: Add type cast. (Mike Williams)
2071Files: src/ops.c
2072
2073Patch 7.4.272
2074Problem: Using just "$" does not cause an error message.
2075Solution: Check for empty environment variable name. (Christian Brabandt)
2076Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok
2077
2078Patch 7.4.273
2079Problem: "make autoconf" and "make reconfig" may first run configure and
2080 then remove the output.
2081Solution: Add these targets to the exceptions. (Ken Takata)
2082Files: src/Makefile
2083
2084Patch 7.4.274
2085Problem: When doing ":update" just before running an external command that
2086 changes the file, the timestamp may be unchanged and the file
2087 is not reloaded.
2088Solution: Also check the file size.
2089Files: src/fileio.c
2090
2091Patch 7.4.275
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002092Problem: When changing the type of a sign that hasn't been placed there is
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002093 no error message.
2094Solution: Add an error message. (Christian Brabandt)
2095Files: src/ex_cmds.c
2096
2097Patch 7.4.276
2098Problem: The fish shell is not supported.
2099Solution: Use begin/end instead of () for fish. (Andy Russell)
2100Files: src/ex_cmds.c, src/misc1.c, src/option.c, src/proto/misc1.pro
2101
2102Patch 7.4.277
2103Problem: Using ":sign unplace *" may leave the cursor in the wrong position
2104 (Christian Brabandt)
2105Solution: Update the cursor position when removing all signs.
2106Files: src/buffer.c
2107
2108Patch 7.4.278
2109Problem: list_remove() conflicts with function defined in Sun header file.
2110Solution: Rename the function. (Richard Palo)
2111Files: src/eval.c, src/if_lua.c, src/if_py_both.h, src/proto/eval.pro
2112
2113Patch 7.4.279
2114Problem: globpath() returns a string, making it difficult to get a list of
2115 matches. (Greg Novack)
2116Solution: Add an optional argument like with glob(). (Adnan Zafar)
2117Files: runtime/doc/eval.txt, src/eval.c, src/ex_getln.c, src/misc1.c,
2118 src/misc2.c, src/proto/ex_getln.pro, src/proto/misc2.pro,
2119 src/testdir/test97.in, src/testdir/test97.ok
2120
2121Patch 7.4.280
2122Problem: When using a session file the relative position of the cursor is
2123 not restored if there is another tab. (Nobuhiro Takasaki)
2124Solution: Update w_wrow before calculating the fraction.
2125Files: src/window.c
2126
2127Patch 7.4.281
2128Problem: When a session file has more than one tabpage and 'showtabline' is
2129 one the positions may be slightly off.
2130Solution: Set 'showtabline' to two while positioning windows.
2131Files: src/ex_docmd.c
2132
2133Patch 7.4.282 (after 7.4.279)
2134Problem: Test 97 fails on Mac.
2135Solution: Do not ignore case in file names. (Jun Takimoto)
2136Files: src/testdir/test97.in
2137
2138Patch 7.4.283 (after 7.4.276)
2139Problem: Compiler warning about unused variable. (Charles Cooper)
2140Solution: Move the variable inside the #if block.
2141Files: src/ex_cmds.c
2142
2143Patch 7.4.284
2144Problem: Setting 'langmap' in the modeline can cause trouble. E.g. mapping
2145 ":" breaks many commands. (Jens-Wolfhard Schicke-Uffmann)
2146Solution: Disallow setting 'langmap' from the modeline.
2147Files: src/option.c
2148
2149Patch 7.4.285
2150Problem: When 'relativenumber' is set and deleting lines or undoing that,
2151 line numbers are not always updated. (Robert Arkwright)
2152Solution: (Christian Brabandt)
2153Files: src/misc1.c
2154
2155Patch 7.4.286
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002156Problem: Error messages are inconsistent. (ZyX)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002157Solution: Change "Lists" to "list".
2158Files: src/eval.c
2159
2160Patch 7.4.287
2161Problem: Patches for .hgignore don't work, since the file is not in the
2162 distribution.
2163Solution: Add .hgignore to the distribution. Will be effective with the
2164 next version.
2165Files: Filelist
2166
2167Patch 7.4.288
2168Problem: When 'spellfile' is set the screen is not redrawn.
2169Solution: Redraw when updating the spelling info. (Christian Brabandt)
2170Files: src/spell.c
2171
2172Patch 7.4.289
2173Problem: Pattern with repeated backreference does not match with new regexp
2174 engine. (Urtica Dioica)
2175Solution: Also check the end of a submatch when deciding to put a state in
2176 the state list.
2177Files: src/testdir/test64.in, src/testdir/test64.ok, src/regexp_nfa.c
2178
2179Patch 7.4.290
2180Problem: A non-greedy match followed by a branch is too greedy. (Ingo
2181 Karkat)
2182Solution: Add NFA_MATCH when it is already in the state list if the position
2183 differs.
2184Files: src/testdir/test64.in, src/testdir/test64.ok, src/regexp_nfa.c
2185
2186Patch 7.4.291
2187Problem: Compiler warning for int to pointer of different size when DEBUG
2188 is defined.
2189Solution: use smsg() instead of EMSG3().
2190Files: src/regexp.c
2191
2192Patch 7.4.292
2193Problem: Searching for "a" does not match accented "a" with new regexp
2194 engine, does match with old engine. (David Bürgin)
2195 "ca" does not match "ca" with accented "a" with either engine.
2196Solution: Change the old engine, check for following composing character
2197 also for single-byte patterns.
2198Files: src/regexp.c, src/testdir/test95.in, src/testdir/test95.ok
2199
2200Patch 7.4.293
2201Problem: It is not possible to ignore composing characters at a specific
2202 point in a pattern.
2203Solution: Add the %C item.
2204Files: src/regexp.c, src/regexp_nfa.c, src/testdir/test95.in,
2205 src/testdir/test95.ok, runtime/doc/pattern.txt
2206
2207Patch 7.4.294 (7.4.293)
2208Problem: Test files missing from patch.
2209Solution: Patch the test files.
2210Files: src/testdir/test95.in, src/testdir/test95.ok
2211
2212Patch 7.4.295
2213Problem: Various typos, bad white space and unclear comments.
2214Solution: Fix typos. Improve white space. Update comments.
2215Files: src/testdir/test49.in, src/macros.h, src/screen.c, src/structs.h,
2216 src/gui_gtk_x11.c, src/os_unix.c
2217
2218Patch 7.4.296
2219Problem: Can't run tests on Solaris.
2220Solution: Change the way VIMRUNTIME is set. (Laurent Blume)
2221Files: src/testdir/Makefile
2222
2223Patch 7.4.297
2224Problem: Memory leak from result of get_isolated_shell_name().
2225Solution: Free the memory. (Dominique Pelle)
2226Files: src/ex_cmds.c, src/misc1.c
2227
2228Patch 7.4.298
2229Problem: Can't have a funcref start with "t:".
2230Solution: Add "t" to the list of accepted names. (Yukihiro Nakadaira)
2231Files: src/eval.c
2232
2233Patch 7.4.299
2234Problem: When running configure twice DYNAMIC_PYTHON_DLL may become empty.
2235Solution: Use AC_CACHE_VAL. (Ken Takata)
2236Files: src/configure.in, src/auto/configure
2237
2238Patch 7.4.300
2239Problem: The way config.cache is removed doesn't always work.
2240Solution: Always remove config.cache. (Ken Takata)
2241Files: src/Makefile
2242
2243Patch 7.4.301 (after 7.4.280)
2244Problem: Still a scrolling problem when loading a session file.
2245Solution: Fix off-by-one mistake. (Nobuhiro Takasaki)
2246Files: src/window.c
2247
2248Patch 7.4.302
2249Problem: Signs placed with 'foldcolumn' set don't show up after filler
2250 lines.
2251Solution: Take filler lines into account. (Olaf Dabrunz)
2252Files: src/screen.c
2253
2254Patch 7.4.303
2255Problem: When using double-width characters the text displayed on the
2256 command line is sometimes truncated.
Bram Moolenaar09521312016-08-12 22:54:35 +02002257Solution: Reset the string length. (Nobuhiro Takasaki)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002258Files: src/screen.c
2259
2260Patch 7.4.304
2261Problem: Cannot always use Python with Vim.
2262Solution: Add the manifest to the executable. (Jacques Germishuys)
2263Files: src/Make_mvc.mak
2264
2265Patch 7.4.305
2266Problem: Making 'ttymouse' empty after the xterm version was requested
2267 causes problems. (Elijah Griffin)
2268Solution: Do not check for DEC mouse sequences when the xterm version was
2269 requested. Also don't request the xterm version when DEC mouse
2270 was enabled.
2271Files: src/term.c, src/os_unix.c, src/proto/term.pro, src/globals.h
2272
2273Patch 7.4.306
2274Problem: getchar(0) does not return Esc.
2275Solution: Do not wait for an Esc sequence to be complete. (Yasuhiro
2276 Matsumoto)
2277Files: src/eval.c, src/getchar.c
2278
2279Patch 7.4.307 (after 7.4.305)
2280Problem: Can't build without the +termresponse feature.
2281Solution: Add proper #ifdefs.
2282Files: src/os_unix.c, src/term.c
2283
2284Patch 7.4.308
2285Problem: When using ":diffsplit" on an empty file the cursor is displayed
2286 on the command line.
2287Solution: Limit the value of w_topfill.
2288Files: src/diff.c
2289
2290Patch 7.4.309
2291Problem: When increasing the size of the lower window, the upper window
2292 jumps back to the top. (Ron Aaron)
2293Solution: Change setting the topline. (Nobuhiro Takasaki)
2294Files: src/window.c
2295
2296Patch 7.4.310
2297Problem: getpos()/setpos() don't include curswant.
2298Solution: Add a fifth number when getting/setting the cursor.
2299Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok,
2300 runtime/doc/eval.txt
2301
2302Patch 7.4.311
2303Problem: Can't use winrestview to only restore part of the view.
2304Solution: Handle missing items in the dict. (Christian Brabandt)
2305Files: src/eval.c, runtime/doc/eval.txt
2306
2307Patch 7.4.312
2308Problem: Cannot figure out what argument list is being used for a window.
2309Solution: Add the arglistid() function. (Marcin Szamotulski)
2310Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c,
2311 src/ex_docmd.c, src/globals.h, src/structs.h, src/main.c
2312
2313Patch 7.4.313 (after 7.4.310)
2314Problem: Changing the return value of getpos() causes an error. (Jie Zhu)
2315Solution: Revert getpos() and add getcurpos().
2316Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok,
2317 runtime/doc/eval.txt
2318
2319Patch 7.4.314
2320Problem: Completion messages can get in the way of a plugin.
2321Solution: Add 'c' flag to 'shortmess' option. (Shougo Matsu)
2322Files: runtime/doc/options.txt, src/edit.c, src/option.h, src/screen.c
2323
2324Patch 7.4.315 (after 7.4.309)
2325Problem: Fixes for computation of topline not tested.
2326Solution: Add test. (Hirohito Higashi)
2327Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
2328 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
2329 src/testdir/Make_vms.mms, src/testdir/Makefile,
2330 src/testdir/test107.in, src/testdir/test107.ok
2331
2332Patch 7.4.316
2333Problem: Warning from 64-bit compiler.
2334Solution: Add type cast. (Mike Williams)
2335Files: src/ex_getln.c
2336
2337Patch 7.4.317
2338Problem: Crash when starting gvim. Issue 230.
2339Solution: Check for a pointer to be NULL. (Christian Brabandt)
2340Files: src/window.c
2341
2342Patch 7.4.318
2343Problem: Check for whether a highlight group has settings ignores fg and bg
2344 color settings.
2345Solution: Also check cterm and GUI color settings. (Christian Brabandt)
2346Files: src/syntax.c
2347
2348Patch 7.4.319
2349Problem: Crash when putting zero bytes on the clipboard.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002350Solution: Do not support the utf8_atom target when not using a Unicode
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002351 encoding. (Naofumi Honda)
2352Files: src/ui.c
2353
2354Patch 7.4.320
2355Problem: Possible crash when an BufLeave autocommand deletes the buffer.
2356Solution: Check for the window pointer being valid. Postpone freeing the
2357 window until autocommands are done. (Yasuhiro Matsumoto)
2358Files: src/buffer.c, src/fileio.c, src/globals.h, src/window.c
2359
2360Patch 7.4.321
2361Problem: Can't build with strawberry perl 5.20 + mingw-w64-4.9.0.
2362Solution: Define save_strlen. (Ken Takata)
2363Files: src/if_perl.xs
2364
2365Patch 7.4.322
2366Problem: Using "msgfmt" is hard coded, cannot use "gmsgfmt".
2367Solution: Use the msgfmt command found by configure. (Danek Duvall)
2368Files: src/config.mk.in, src/po/Makefile
2369
2370Patch 7.4.323
2371Problem: Substitute() with zero width pattern breaks multi-byte character.
2372Solution: Take multi-byte character size into account. (Yukihiro Nakadaira)
2373Files: src/eval.c src/testdir/test69.in, src/testdir/test69.ok
2374
2375Patch 7.4.324
2376Problem: In Ex mode, cyrillic characters are not handled. (Stas Malavin)
2377Solution: Support multi-byte characters in Ex mode. (Yukihiro Nakadaira)
2378Files: src/ex_getln.c
2379
2380Patch 7.4.325
2381Problem: When starting the gui and changing the window size the status line
2382 may not be drawn correctly.
2383Solution: Catch new_win_height() being called recursively. (Christian
2384 Brabandt)
2385Files: src/window.c
2386
2387Patch 7.4.326
2388Problem: Can't build Tiny version. (Elimar Riesebieter)
2389Solution: Add #ifdef.
2390Files: src/window.c
2391
2392Patch 7.4.327
2393Problem: When 'verbose' is set to display the return value of a function,
2394 may get E724 repeatedly.
2395Solution: Do not give an error for verbose messages. Abort conversion to
2396 string after an error.
2397Files: src/eval.c
2398
2399Patch 7.4.328
2400Problem: Selection of inner block is inconsistent.
2401Solution: Skip indent not only for '}' but all parens. (Tom McDonald)
2402Files: src/search.c
2403
2404Patch 7.4.329
2405Problem: When moving the cursor and then switching to another window the
2406 previous window isn't scrolled. (Yukihiro Nakadaira)
2407Solution: Call update_topline() before leaving the window. (Christian
2408 Brabandt)
2409Files: src/window.c
2410
2411Patch 7.4.330
2412Problem: Using a regexp pattern to highlight a specific position can be
2413 slow.
2414Solution: Add matchaddpos() to highlight specific positions efficiently.
2415 (Alexey Radkov)
2416Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt,
2417 runtime/plugin/matchparen.vim, src/eval.c, src/ex_docmd.c,
2418 src/proto/window.pro, src/screen.c, src/structs.h,
2419 src/testdir/test63.in, src/testdir/test63.ok, src/window.c
2420
2421Patch 7.4.331
2422Problem: Relative numbering not updated after a linewise yank. Issue 235.
2423Solution: Redraw after the yank. (Christian Brabandt)
2424Files: src/ops.c
2425
2426Patch 7.4.332
2427Problem: GTK: When a sign icon doesn't fit exactly there can be ugly gaps.
2428Solution: Scale the sign to fit when the aspect ratio is not too far off.
2429 (Christian Brabandt)
2430Files: src/gui_gtk_x11.c
2431
2432Patch 7.4.333
2433Problem: Compiler warning for unused function.
2434Solution: Put the function inside the #ifdef.
2435Files: src/screen.c
2436
2437Patch 7.4.334 (after 7.4.330)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002438Problem: Uninitialized variables, causing some problems.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002439Solution: Initialize the variables. (Dominique Pelle)
2440Files: src/screen.c, src/window.c
2441
2442Patch 7.4.335
2443Problem: No digraph for the new rouble sign.
2444Solution: Add the digraphs =R and =P.
2445Files: src/digraph.c, runtime/doc/digraph.txt
2446
2447Patch 7.4.336
2448Problem: Setting 'history' to a big value causes out-of-memory errors.
2449Solution: Limit the value to 10000. (Hirohito Higashi)
2450Files: runtime/doc/options.txt, src/option.c
2451
2452Patch 7.4.337
2453Problem: When there is an error preparing to edit the command line, the
2454 command won't be executed. (Hirohito Higashi)
2455Solution: Reset did_emsg before editing.
2456Files: src/ex_getln.c
2457
2458Patch 7.4.338
2459Problem: Cannot wrap lines taking indent into account.
2460Solution: Add the 'breakindent' option. (many authors, final improvements by
2461 Christian Brabandt)
2462Files: runtime/doc/eval.txt, runtime/doc/options.txt, runtime/optwin.vim,
2463 src/buffer.c, src/charset.c, src/edit.c, src/ex_getln.c,
2464 src/getchar.c, src/misc1.c, src/misc2.c, src/ops.c, src/option.c,
2465 src/option.h, src/proto/charset.pro, src/proto/misc1.pro,
2466 src/proto/option.pro, src/screen.c, src/structs.h,
2467 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
2468 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
2469 src/testdir/Make_vms.mms, src/testdir/Makefile,
2470 src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok,
2471 src/ui.c, src/version.c
2472
2473Patch 7.4.339
2474Problem: Local function is available globally.
2475Solution: Add "static".
2476Files: src/option.c, src/proto/option.pro
2477
2478Patch 7.4.340
2479Problem: Error from sed about illegal bytes when installing Vim.
2480Solution: Prepend LC_ALL=C. (Itchyny)
2481Files: src/installman.sh
2482
2483Patch 7.4.341
2484Problem: sort() doesn't handle numbers well.
2485Solution: Add an argument to specify sorting on numbers. (Christian Brabandt)
2486Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test55.in,
2487 src/testdir/test55.ok
2488
2489Patch 7.4.342
2490Problem: Clang gives warnings.
2491Solution: Add an else block. (Dominique Pelle)
2492Files: src/gui_beval.c
2493
2494Patch 7.4.343
2495Problem: matchdelete() does not always update the right lines.
2496Solution: Fix off-by-one error. (Ozaki Kiichi)
2497Files: src/window.c
2498
2499Patch 7.4.344
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002500Problem: Unnecessary initializations and other things related to
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002501 matchaddpos().
2502Solution: Code cleanup. (Alexey Radkov)
2503Files: runtime/doc/eval.txt, src/screen.c, src/window.c
2504
2505Patch 7.4.345 (after 7.4.338)
2506Problem: Indent is not updated when deleting indent.
2507Solution: Remember changedtick.
2508Files: src/misc1.c
2509
2510Patch 7.4.346 (after 7.4.338)
2511Problem: Indent is not updated when changing 'breakindentopt'. (itchyny)
2512Solution: Do not cache "brishift". (Christian Brabandt)
2513Files: src/misc1.c
2514
2515Patch 7.4.347
2516Problem: test55 fails on some systems.
2517Solution: Remove the elements that all result in zero and can end up in an
2518 arbitrary position.
2519Files: src/testdir/test55.in, src/testdir/test55.ok
2520
2521Patch 7.4.348
2522Problem: When using "J1" in 'cinoptions' a line below a continuation line
2523 gets too much indent.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002524Solution: Fix parentheses in condition.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002525Files: src/misc1.c
2526
2527Patch 7.4.349
2528Problem: When there are matches to highlight the whole window is redrawn,
2529 which is slow.
2530Solution: Only redraw everything when lines were inserted or deleted.
2531 Reset b_mod_xlines when needed. (Alexey Radkov)
2532Files: src/screen.c, src/window.c
2533
2534Patch 7.4.350
2535Problem: Using C indenting for Javascript does not work well for a {} block
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002536 inside parentheses.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002537Solution: When looking for a matching paren ignore one that is before the
2538 start of a {} block.
2539Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok
2540
2541Patch 7.4.351
2542Problem: sort() is not stable.
2543Solution: When the items are identical, compare the pointers.
2544Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok
2545
2546Patch 7.4.352
2547Problem: With 'linebreak' a tab causes a missing line break.
2548Solution: Count a tab for what it's worth also for shorter lines.
2549 (Christian Brabandt)
2550Files: src/charset.c
2551
2552Patch 7.4.353
2553Problem: 'linebreak' doesn't work with the 'list' option.
2554Solution: Make it work. (Christian Brabandt)
2555Files: runtime/doc/options.txt, src/charset.c, src/screen.c,
2556 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
2557 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
2558 src/testdir/Make_vms.mms, src/testdir/Makefile,
2559 src/testdir/test_listlbr.in, src/testdir/test_listlbr.ok
2560
2561Patch 7.4.354
2562Problem: Compiler warning.
2563Solution: Change NUL to NULL. (Ken Takata)
2564Files: src/screen.c
2565
2566Patch 7.4.355
2567Problem: Several problems with Javascript indenting.
2568Solution: Improve Javascript indenting.
2569Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok
2570
2571Patch 7.4.356
2572Problem: Mercurial does not ignore memfile_test. (Daniel Hahler)
2573Solution: Add memfile_test to ignored files, remove trailing spaces.
2574Files: .hgignore
2575
2576Patch 7.4.357
2577Problem: After completion some characters are not redrawn.
2578Solution: Clear the command line unconditionally. (Jacob Niehus)
2579Files: src/edit.c
2580
2581Patch 7.4.358 (after 7.4.351)
2582Problem: Sort is not always stable.
2583Solution: Add an index instead of relying on the pointer to remain the same.
2584 Idea by Jun Takimoto.
2585Files: src/eval.c
2586
2587Patch 7.4.359
2588Problem: When 'ttymouse' is set to 'uxterm' the xterm version is not
2589 requested. (Tomas Janousek)
2590Solution: Do not mark uxterm as a conflict mouse and add
2591 resume_get_esc_sequence().
2592Files: src/term.c, src/os_unix.c, src/proto/term.pro
2593
2594Patch 7.4.360
2595Problem: In a regexp pattern a "$" followed by \v or \V is not seen as the
2596 end-of-line.
2597Solution: Handle the situation. (Ozaki Kiichi)
2598Files: src/regexp.c
2599
2600Patch 7.4.361
2601Problem: Lots of flickering when filling the preview window for 'omnifunc'.
2602Solution: Disable redrawing. (Hirohito Higashi)
2603Files: src/popupmnu.c
2604
2605Patch 7.4.362
2606Problem: When matchaddpos() uses a length smaller than the number of bytes
2607 in the (last) character the highlight continues until the end of
2608 the line.
2609Solution: Change condition from equal to larger-or-equal.
2610Files: src/screen.c
2611
2612Patch 7.4.363
2613Problem: In Windows console typing 0xCE does not work.
2614Solution: Convert 0xCE to K_NUL 3. (Nobuhiro Takasaki et al.)
2615Files: src/os_win32.c, src/term.c
2616
2617Patch 7.4.364
2618Problem: When the viminfo file can't be renamed there is no error message.
2619 (Vladimir Berezhnoy)
2620Solution: Check for the rename to fail.
2621Files: src/ex_cmds.c
2622
2623Patch 7.4.365
2624Problem: Crash when using ":botright split" when there isn't much space.
2625Solution: Add a check for the minimum width/height. (Yukihiro Nakadaira)
2626Files: src/window.c
2627
2628Patch 7.4.366
2629Problem: Can't run the linebreak test on MS-Windows.
2630Solution: Fix the output file name. (Taro Muraoka)
2631Files: src/testdir/Make_dos.mak
2632
2633Patch 7.4.367 (after 7.4.357)
2634Problem: Other solution for redrawing after completion.
2635Solution: Schedule a window redraw instead of just clearing the command
2636 line. (Jacob Niehus)
2637Files: src/edit.c
2638
2639Patch 7.4.368
2640Problem: Restoring the window sizes after closing the command line window
2641 doesn't work properly if there are nested splits.
2642Solution: Restore the sizes twice. (Hirohito Higashi)
2643Files: src/window.c
2644
2645Patch 7.4.369
2646Problem: Using freed memory when exiting while compiled with EXITFREE.
2647Solution: Set curwin to NULL and check for that. (Dominique Pelle)
2648Files: src/buffer.c, src/window.c
2649
2650Patch 7.4.370
2651Problem: Linebreak test fails when encoding is not utf-8. (Danek Duvall)
2652Solution: Split the test in a single byte one and a utf-8 one. (Christian
2653 Brabandt)
2654Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
2655 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
2656 src/testdir/Make_vms.mms, src/testdir/Makefile,
2657 src/testdir/test_listlbr.in, src/testdir/test_listlbr.ok,
2658 src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok
2659
2660Patch 7.4.371
2661Problem: When 'linebreak' is set control characters are not correctly
2662 displayed. (Kimmy Lindvall)
2663Solution: Set n_extra. (Christian Brabandt)
2664Files: src/screen.c
2665
2666Patch 7.4.372
2667Problem: When 'winminheight' is zero there might not be one line for the
2668 current window.
2669Solution: Change the size computations. (Yukihiro Nakadaira)
2670Files: src/window.c
2671
2672Patch 7.4.373
2673Problem: Compiler warning for unused argument and unused variable.
2674Solution: Add UNUSED. Move variable inside #ifdef.
2675Files: src/charset.c, src/window.c
2676
2677Patch 7.4.374
2678Problem: Character after "fb" command not mapped if it might be a composing
2679 character.
2680Solution: Don't disable mapping when looking for a composing character.
2681 (Jacob Niehus)
2682Files: src/normal.c
2683
2684Patch 7.4.375
2685Problem: Test 63 fails when run with GUI-only Vim.
2686Solution: Add guibg attributes. (suggested by Mike Soyka)
2687Files: src/testdir/test63.in
2688
2689Patch 7.4.376 (after 7.4.367)
2690Problem: Popup menu flickers too much.
2691Solution: Remove the forced redraw. (Hirohito Higashi)
2692Files: src/edit.c
2693
2694Patch 7.4.377
2695Problem: When 'equalalways' is set a split may report "no room" even though
2696 there is plenty of room.
2697Solution: Compute the available room properly. (Yukihiro Nakadaira)
2698Files: src/window.c
2699
2700Patch 7.4.378
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02002701Problem: Title of quickfix list is not kept for setqflist(list, 'r').
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002702Solution: Keep the title. Add a test. (Lcd)
2703Files: src/quickfix.c, src/testdir/Make_amiga.mak,
2704 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
2705 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
2706 src/testdir/Makefile, src/testdir/test_qf_title.in,
2707 src/testdir/test_qf_title.ok
2708
2709Patch 7.4.379
2710Problem: Accessing freed memory after using setqflist(list, 'r'). (Lcd)
2711Solution: Reset qf_index.
2712Files: src/quickfix.c
2713
2714Patch 7.4.380
2715Problem: Loading python may cause Vim to exit.
2716Solution: Avoid loading the "site" module. (Taro Muraoka)
2717Files: src/if_python.c
2718
2719Patch 7.4.381
2720Problem: Get u_undo error when backspacing in Insert mode deletes more than
2721 one line break. (Ayberk Ozgur)
2722Solution: Also decrement Insstart.lnum.
2723Files: src/edit.c
2724
2725Patch 7.4.382
2726Problem: Mapping characters may not work after typing Esc in Insert mode.
2727Solution: Fix the noremap flags for inserted characters. (Jacob Niehus)
2728Files: src/getchar.c
2729
2730Patch 7.4.383
2731Problem: Bad interaction between preview window and omnifunc.
2732Solution: Avoid redrawing the status line. (Hirohito Higashi)
2733Files: src/popupmnu.c
2734
2735Patch 7.4.384
2736Problem: Test 102 fails when compiled with small features.
2737Solution: Source small.vim. (Jacob Niehus)
2738Files: src/testdir/test102.in
2739
2740Patch 7.4.385
2741Problem: When building with tiny or small features building the .mo files
2742 fails.
2743Solution: In autoconf do not setup for building the .mo files when it would
2744 fail.
2745Files: src/configure.in, src/auto/configure
2746
2747Patch 7.4.386
2748Problem: When splitting a window the changelist position is wrong.
2749Solution: Copy the changelist position. (Jacob Niehus)
2750Files: src/window.c, src/testdir/Make_amiga.mak,
2751 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
2752 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
2753 src/testdir/Makefile, src/testdir/test_changelist.in,
2754 src/testdir/test_changelist.ok
2755
2756Patch 7.4.387
2757Problem: "4gro" replaces one character then executes "ooo". (Urtica Dioica)
2758Solution: Write the ESC in the second stuff buffer.
2759Files: src/getchar.c, src/proto/getchar.pro, src/edit.c,
2760 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
2761 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
2762 src/testdir/Make_vms.mms, src/testdir/Makefile,
2763 src/testdir/test_insertcount.in, src/testdir/test_insertcount.ok
2764
2765Patch 7.4.388
2766Problem: With 'linebreak' set and 'list' unset a Tab is not counted
2767 properly. (Kent Sibilev)
2768Solution: Check the 'list' option. (Christian Brabandt)
2769Files: src/screen.c, src/testdir/test_listlbr_utf8.in,
2770 src/testdir/test_listlbr_utf8.ok
2771
2772Patch 7.4.389
2773Problem: Still sometimes Vim enters Replace mode when starting up.
2774Solution: Use a different solution in detecting the termresponse and
2775 location response. (Hayaki Saito)
2776Files: src/globals.h, src/os_unix.c, src/term.c, src/proto/term.pro
2777
2778Patch 7.4.390
2779Problem: Advancing pointer over end of a string.
2780Solution: Init quote character to -1 instead of zero. (Dominique Pelle)
2781Files: src/misc1.c
2782
2783Patch 7.4.391
2784Problem: No 'cursorline' highlighting when the cursor is on a line with
2785 diff highlighting. (Benjamin Fritz)
2786Solution: Combine the highlight attributes. (Christian Brabandt)
2787Files: src/screen.c
2788
2789Patch 7.4.392
2790Problem: Not easy to detect type of command line window.
2791Solution: Add the getcmdwintype() function. (Jacob Niehus)
2792Files: src/eval.c
2793
2794Patch 7.4.393
2795Problem: Text drawing on newer MS-Windows systems is suboptimal. Some
2796 multi-byte characters are not displayed, even though the same font
2797 in Notepad can display them. (Srinath Avadhanula)
Bram Moolenaardc1f1642016-08-16 18:33:43 +02002798Solution: Add the 'renderoptions' option to enable DirectX drawing. (Taro
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02002799 Muraoka)
2800Files: runtime/doc/eval.txt, runtime/doc/options.txt,
2801 runtime/doc/various.txt, src/Make_cyg.mak, src/Make_ming.mak,
2802 src/Make_mvc.mak, src/eval.c, src/gui_dwrite.cpp,
2803 src/gui_dwrite.h, src/gui_w32.c, src/gui_w48.c, src/option.c,
2804 src/option.h, src/version.c, src/vim.h, src/proto/gui_w32.pro
2805
2806Patch 7.4.394 (after 7.4.393)
2807Problem: When using DirectX last italic character is incomplete.
2808Solution: Add one to the number of cells. (Ken Takata)
2809Files: src/gui_w32.c
2810
2811Patch 7.4.395 (after 7.4.355)
2812Problem: C indent is wrong below an if with wrapped condition followed by
2813 curly braces. (Trevor Powell)
2814Solution: Make a copy of tryposBrace.
2815Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok
2816
2817Patch 7.4.396
2818Problem: When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful)
2819Solution: Only set the clipboard after the last delete. (Christian Brabandt)
2820Files: src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/globals.h,
2821 src/ops.c, src/proto/ui.pro, src/ui.c
2822
2823Patch 7.4.397
2824Problem: Matchparen only uses the topmost syntax item.
2825Solution: Go through the syntax stack to find items. (James McCoy)
2826 Also use getcurpos() when possible.
2827Files: runtime/plugin/matchparen.vim
2828
2829Patch 7.4.398 (after 7.4.393)
2830Problem: Gcc error for the argument of InterlockedIncrement() and
2831 InterlockedDecrement(). (Axel Bender)
2832Solution: Remove "unsigned" from the cRefCount_ declaration.
2833Files: src/gui_dwrite.cpp
2834
2835Patch 7.4.399
2836Problem: Encryption implementation is messy. Blowfish encryption has a
2837 weakness.
2838Solution: Refactor the encryption, store the state in an allocated struct
2839 instead of using a save/restore mechanism. Introduce the
2840 "blowfish2" method, which does not have the weakness and encrypts
2841 the whole undo file. (largely by David Leadbeater)
2842Files: runtime/doc/editing.txt, runtime/doc/options.txt, src/Makefile,
2843 src/blowfish.c, src/crypt.c, src/crypt_zip.c, src/ex_docmd.c,
2844 src/fileio.c, src/globals.h, src/main.c, src/memline.c,
2845 src/misc2.c, src/option.c, src/proto.h, src/proto/blowfish.pro,
2846 src/proto/crypt.pro, src/proto/crypt_zip.pro,
2847 src/proto/fileio.pro, src/proto/misc2.pro, src/structs.h,
2848 src/undo.c, src/testdir/test71.in, src/testdir/test71.ok,
2849 src/testdir/test71a.in, src/testdir/test72.in,
2850 src/testdir/test72.ok
2851
2852Patch 7.4.400
2853Problem: List of distributed files is incomplete.
2854Solution: Add recently added files.
2855Files: Filelist
2856
2857Patch 7.4.401 (after 7.4.399)
2858Problem: Can't build on MS-Windows.
2859Solution: Include the new files in all the Makefiles.
2860Files: src/Make_bc3.mak, src/Make_bc5.mak, src/Make_cyg.mak,
2861 src/Make_dice.mak, src/Make_djg.mak, src/Make_ivc.mak,
2862 src/Make_manx.mak, src/Make_ming.mak, src/Make_morph.mak,
2863 src/Make_mvc.mak, src/Make_os2.mak, src/Make_sas.mak,
2864 Make_vms.mms
2865
2866Patch 7.4.402
2867Problem: Test 72 crashes under certain conditions. (Kazunobu Kuriyama)
2868Solution: Clear the whole bufinfo_T early.
2869Files: src/undo.c
2870
2871Patch 7.4.403
2872Problem: Valgrind reports errors when running test 72. (Dominique Pelle)
2873Solution: Reset the local 'cryptmethod' option before storing the seed.
2874 Set the seed in the memfile even when there is no block0 yet.
2875Files: src/fileio.c, src/option.c, src/memline.c
2876
2877Patch 7.4.404
2878Problem: Windows 64 bit compiler warnings.
2879Solution: Add type casts. (Mike Williams)
2880Files: src/crypt.c, src/undo.c
2881
2882Patch 7.4.405
2883Problem: Screen updating is slow when using matches.
2884Solution: Do not use the ">=" as in patch 7.4.362, check the lnum.
2885Files: src/screen.c, src/testdir/test63.in, src/testdir/test63.ok
2886
2887Patch 7.4.406
2888Problem: Test 72 and 100 fail on MS-Windows.
2889Solution: Set fileformat to unix in the tests. (Taro Muraoka)
2890Files: src/testdir/test72.in, src/testdir/test100.in
2891
2892Patch 7.4.407
2893Problem: Inserting text for Visual block mode, with cursor movement,
2894 repeats the wrong text. (Aleksandar Ivanov)
2895Solution: Reset the update_Insstart_orig flag. (Christian Brabandt)
2896Files: src/edit.c, src/testdir/test39.in, src/testdir/test39.ok
2897
2898Patch 7.4.408
2899Problem: Visual block insert breaks a multi-byte character.
2900Solution: Calculate the position properly. (Yasuhiro Matsumoto)
2901Files: src/ops.c, src/testdir/test_utf8.in, src/testdir/test_utf8.ok,
2902 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
2903 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
2904 src/testdir/Make_vms.mms, src/testdir/Makefile
2905
2906Patch 7.4.409
2907Problem: Can't build with Perl on Fedora 20.
2908Solution: Find xsubpp in another directory. (Michael Henry)
2909Files: src/Makefile, src/config.mk.in, src/configure.in,
2910 src/auto/configure
2911
2912Patch 7.4.410
2913Problem: Fold does not open after search when there is a CmdwinLeave
2914 autocommand.
2915Solution: Restore KeyTyped. (Jacob Niehus)
2916Files: src/ex_getln.c
2917
2918Patch 7.4.411
2919Problem: "foo bar" sorts before "foo" with sort(). (John Little)
2920Solution: Avoid putting quotes around strings before comparing them.
2921Files: src/eval.c
2922
2923Patch 7.4.412
2924Problem: Can't build on Windows XP with MSVC.
2925Solution: Add SUBSYSTEM_VER to the Makefile. (Yongwei Wu)
2926Files: src/Make_mvc.mak, src/INSTALLpc.txt
2927
2928Patch 7.4.413
2929Problem: MS-Windows: Using US international keyboard layout, inserting dead
2930 key by pressing space does not always work. Issue 250.
2931Solution: Let MS-Windows translate the message. (John Wellesz)
2932Files: src/gui_w48.c
2933
2934Patch 7.4.414
2935Problem: Cannot define a command only when it's used.
2936Solution: Add the CmdUndefined autocommand event. (partly by Yasuhiro
2937 Matsumoto)
2938Files: runtime/doc/autocmd.txt, src/ex_docmd.c, src/fileio.c,
2939 src/proto/fileio.pro
2940
2941Patch 7.4.415 (after 7.4.414)
2942Problem: Cannot build. Warning for shadowed variable. (John Little)
2943Solution: Add missing change. Remove declaration.
2944Files: src/vim.h, src/ex_docmd.c
2945
2946Patch 7.4.416
2947Problem: Problem with breakindent/showbreak and tabs.
2948Solution: Handle tabs differently. (Christian Brabandt)
2949Files: src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok,
2950 src/charset.c
2951
2952Patch 7.4.417
2953Problem: After splitting a window and setting 'breakindent' the default
2954 minimum with is not respected.
2955Solution: Call briopt_check() when copying options to a new window.
2956Files: src/option.c, src/proto/option.pro,
2957 src/testdir/test_breakindent.in
2958
2959Patch 7.4.418
2960Problem: When leaving ":append" the cursor shape is like in Insert mode.
2961 (Jacob Niehus)
2962Solution: Do not have State set to INSERT when calling getline().
2963Files: src/ex_cmds.c
2964
2965Patch 7.4.419
2966Problem: When part of a list is locked it's possible to make changes.
2967Solution: Check if any of the list items is locked before make a change.
2968 (ZyX)
2969Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok
2970
2971Patch 7.4.420
2972Problem: It's not obvious how to add a new test.
2973Solution: Add a README file. (Christian Brabandt)
2974Files: src/testdir/README.txt
2975
2976Patch 7.4.421
2977Problem: Crash when searching for "\ze*". (Urtica Dioica)
2978Solution: Disallow a multi after \ze and \zs.
2979Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
2980
2981Patch 7.4.422
2982Problem: When using conceal with linebreak some text is not displayed
2983 correctly. (Grüner Gimpel)
2984Solution: Check for conceal mode when using linebreak. (Christian Brabandt)
2985Files: src/screen.c, src/testdir/test_listlbr.in,
2986 src/testdir/test_listlbr.ok
2987
2988Patch 7.4.423
2989Problem: expand("$shell") does not work as documented.
2990Solution: Do not escape the $ when expanding environment variables.
2991Files: src/os_unix.c, src/misc1.c, src/vim.h
2992
2993Patch 7.4.424
2994Problem: Get ml_get error when using Python to delete lines in a buffer
2995 that is not in a window. issue 248.
2996Solution: Do not try adjusting the cursor for a different buffer.
2997Files: src/if_py_both.h
2998
2999Patch 7.4.425
3000Problem: When 'showbreak' is used "gj" may move to the wrong position.
3001 (Nazri Ramliy)
3002Solution: Adjust virtcol when 'showbreak' is set. (Christian Brabandt)
3003Files: src/normal.c
3004
3005Patch 7.4.426
3006Problem: README File missing from list of files.
3007Solution: Update the list of files.
3008Files: Filelist
3009
3010Patch 7.4.427
3011Problem: When an InsertCharPre autocommand executes system() typeahead may
3012 be echoed and messes up the display. (Jacob Niehus)
3013Solution: Do not set cooked mode when invoked from ":silent".
3014Files: src/eval.c, runtime/doc/eval.txt
3015
3016Patch 7.4.428
3017Problem: executable() may return a wrong result on MS-Windows.
3018Solution: Change the way SearchPath() is called. (Yasuhiro Matsumoto, Ken
3019 Takata)
3020Files: src/os_win32.c
3021
3022Patch 7.4.429
3023Problem: Build fails with fewer features. (Elimar Riesebieter)
3024Solution: Add #ifdef.
3025Files: src/normal.c
3026
3027Patch 7.4.430
3028Problem: test_listlbr fails when compiled with normal features.
3029Solution: Check for the +conceal feature.
3030Files: src/testdir/test_listlbr.in
3031
3032Patch 7.4.431
3033Problem: Compiler warning.
3034Solution: Add type cast. (Mike Williams)
3035Files: src/ex_docmd.c
3036
3037Patch 7.4.432
3038Problem: When the startup code expands command line arguments, setting
3039 'encoding' will not properly convert the arguments.
3040Solution: Call get_cmd_argsW() early in main(). (Yasuhiro Matsumoto)
3041Files: src/os_win32.c, src/main.c, src/os_mswin.c
3042
3043Patch 7.4.433
3044Problem: Test 75 fails on MS-Windows.
3045Solution: Use ":normal" instead of feedkeys(). (Michael Soyka)
3046Files: src/testdir/test75.in
3047
3048Patch 7.4.434
3049Problem: gettabvar() is not consistent with getwinvar() and getbufvar().
3050Solution: Return a dict with all variables when the varname is empty.
3051 (Yasuhiro Matsumoto)
3052Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test91.in,
3053 src/testdir/test91.ok
3054
3055Patch 7.4.435
3056Problem: Line formatting behaves differently when 'linebreak' is set.
3057 (mvxxc)
3058Solution: Disable 'linebreak' temporarily. (Christian Brabandt)
3059Files: src/edit.c
3060
3061Patch 7.4.436
3062Problem: ml_get error for autocommand that moves the cursor of the current
3063 window.
3064Solution: Check the cursor position after switching back to the current
3065 buffer. (Christian Brabandt)
3066Files: src/fileio.c
3067
3068Patch 7.4.437
3069Problem: New and old regexp engine are not consistent.
3070Solution: Also give an error for "\ze*" for the old regexp engine.
3071Files: src/regexp.c, src/regexp_nfa.c
3072
3073Patch 7.4.438
3074Problem: Cached values for 'cino' not reset for ":set all&".
3075Solution: Call parse_cino(). (Yukihiro Nakadaira)
3076Files: src/option.c
3077
3078Patch 7.4.439
3079Problem: Duplicate message in message history. Some quickfix messages
3080 appear twice. (Gary Johnson)
3081Solution: Do not reset keep_msg too early. (Hirohito Higashi)
3082Files: src/main.c
3083
3084Patch 7.4.440
3085Problem: Omni complete popup drawn incorrectly.
3086Solution: Call validate_cursor() instead of check_cursor(). (Hirohito
3087 Higashi)
3088Files: src/edit.c
3089
3090Patch 7.4.441
3091Problem: Endless loop and other problems when 'cedit' is set to CTRL-C.
3092Solution: Do not call ex_window() when ex_normal_busy or got_int was set.
3093 (Yasuhiro Matsumoto)
3094Files: src/ex_getln.c
3095
3096Patch 7.4.442 (after 7.4.434)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003097Problem: Using uninitialized variable.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003098Solution: Pass the first window of the tabpage.
3099Files: src/eval.c
3100
3101Patch 7.4.443
3102Problem: Error reported by ubsan when running test 72.
3103Solution: Add type cast to unsigned. (Dominique Pelle)
3104Files: src/undo.c
3105
3106Patch 7.4.444
3107Problem: Reversed question mark not recognized as punctuation. (Issue 258)
3108Solution: Add the Supplemental Punctuation range.
3109Files: src/mbyte.c
3110
3111Patch 7.4.445
3112Problem: Clipboard may be cleared on startup.
3113Solution: Set clip_did_set_selection to -1 during startup. (Christian
3114 Brabandt)
3115Files: src/main.c, src/ui.c
3116
3117Patch 7.4.446
3118Problem: In some situations, when setting up an environment to trigger an
3119 autocommand, the environment is not properly restored.
3120Solution: Check the return value of switch_win() and call restore_win()
3121 always. (Daniel Hahler)
3122Files: src/eval.c, src/misc2.c, src/window.c
3123
3124Patch 7.4.447
3125Problem: Spell files from Hunspell may generate a lot of errors.
3126Solution: Add the IGNOREEXTRA flag.
3127Files: src/spell.c, runtime/doc/spell.txt
3128
3129Patch 7.4.448
3130Problem: Using ETO_IGNORELANGUAGE causes problems.
3131Solution: Remove this flag. (Paul Moore)
3132Files: src/gui_w32.c
3133
3134Patch 7.4.449
3135Problem: Can't easily close the help window. (Chris Gaal)
3136Solution: Add ":helpclose". (Christian Brabandt)
3137Files: runtime/doc/helphelp.txt, runtime/doc/index.txt, src/ex_cmds.c,
3138 src/ex_cmds.h, src/proto/ex_cmds.pro
3139
3140Patch 7.4.450
3141Problem: Not all commands that edit another buffer support the +cmd
3142 argument.
3143Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski)
3144Files: runtime/doc/windows.txt, src/ex_cmds.h, src/ex_docmd.c
3145
3146Patch 7.4.451
3147Problem: Calling system() with empty input gives an error for writing the
3148 temp file.
3149Solution: Do not try writing if the string length is zero. (Olaf Dabrunz)
3150Files: src/eval.c
3151
3152Patch 7.4.452
3153Problem: Can't build with tiny features. (Tony Mechelynck)
3154Solution: Use "return" instead of "break".
3155Files: src/ex_cmds.c
3156
3157Patch 7.4.453
3158Problem: Still can't build with tiny features.
3159Solution: Add #ifdef.
3160Files: src/ex_cmds.c
3161
3162Patch 7.4.454
3163Problem: When using a Visual selection of multiple words and doing CTRL-W_]
3164 it jumps to the tag matching the word under the cursor, not the
3165 selected text. (Patrick hemmer)
3166Solution: Do not reset Visual mode. (idea by Christian Brabandt)
3167Files: src/window.c
3168
3169Patch 7.4.455
3170Problem: Completion for :buf does not use 'wildignorecase'. (Akshay H)
3171Solution: Pass the 'wildignorecase' flag around.
3172Files: src/buffer.c
3173
3174Patch 7.4.456
3175Problem: 'backupcopy' is global, cannot write only some files in a
3176 different way.
3177Solution: Make 'backupcopy' global-local. (Christian Brabandt)
3178Files: runtime/doc/options.txt, src/buffer.c, src/fileio.c, src/option.c,
3179 src/option.h, src/proto/option.pro, src/structs.h
3180
3181Patch 7.4.457
3182Problem: Using getchar() in an expression mapping may result in
3183 K_CURSORHOLD, which can't be recognized.
3184Solution: Add the <CursorHold> key. (Hirohito Higashi)
3185Files: src/misc2.c
3186
3187Patch 7.4.458
3188Problem: Issue 252: Cursor moves in a zero-height window.
3189Solution: Check for zero height. (idea by Christian Brabandt)
3190Files: src/move.c
3191
3192Patch 7.4.459
3193Problem: Can't change the icon after building Vim.
3194Solution: Load the icon from a file on startup. (Yasuhiro Matsumoto)
3195Files: src/gui_w32.c, src/os_mswin.c, src/os_win32.c,
3196 src/proto/os_mswin.pro
3197
3198Patch 7.4.460 (after 7.4.454)
3199Problem: Can't build without the quickfix feature. (Erik Falor)
3200Solution: Add a #ifdef.
3201Files: src/window.c
3202
3203Patch 7.4.461
3204Problem: MS-Windows: When collate is on the number of copies is too high.
3205Solution: Only set the collated/uncollated count when collate is on.
3206 (Yasuhiro Matsumoto)
3207Files: src/os_mswin.c
3208
3209Patch 7.4.462
3210Problem: Setting the local value of 'backupcopy' empty gives an error.
3211 (Peter Mattern)
3212Solution: When using an empty value set the flags to zero. (Hirohito
3213 Higashi)
3214Files: src/option.c
3215
3216Patch 7.4.463
3217Problem: Test 86 and 87 may hang on MS-Windows.
3218Solution: Call inputrestore() after inputsave(). (Ken Takata)
3219Files: src/testdir/test86.in, src/testdir/test87.in
3220
3221Patch 7.4.464 (after 7.4.459)
3222Problem: Compiler warning.
3223Solution: Add type cast. (Ken Takata)
3224Files: src/gui_w32.c
3225
3226Patch 7.4.465 (after 7.4.016)
3227Problem: Crash when expanding a very long string.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003228Solution: Use wcsncpy() instead of wcscpy(). (Ken Takata)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003229Files: src/os_win32.c
3230
3231Patch 7.4.466 (after 7.4.460)
3232Problem: CTRL-W } does not open preview window. (Erik Falor)
3233Solution: Don't set g_do_tagpreview for CTRL-W }.
3234Files: src/window.c
3235
3236Patch 7.4.467
3237Problem: 'linebreak' does not work well together with Visual mode.
3238Solution: Disable 'linebreak' while applying an operator. Fix the test.
3239 (Christian Brabandt)
3240Files: src/normal.c, src/screen.c, src/testdir/test_listlbr.in,
3241 src/testdir/test_listlbr.ok
3242
3243Patch 7.4.468
3244Problem: Issue 26: CTRL-C does not interrupt after it was mapped and then
3245 unmapped.
3246Solution: Reset mapped_ctrl_c. (Christian Brabandt)
3247Files: src/getchar.c
3248
3249Patch 7.4.469 (after 7.4.467)
3250Problem: Can't build with MSVC. (Ken Takata)
3251Solution: Move the assignment after the declarations.
3252Files: src/normal.c
3253
3254Patch 7.4.470
3255Problem: Test 11 and 100 do not work properly on Windows.
3256Solution: Avoid using feedkeys(). (Ken Takata)
3257Files: src/testdir/Make_dos.mak, src/testdir/test11.in,
3258 src/testdir/test100.in
3259
3260Patch 7.4.471
3261Problem: MS-Windows: When printer name contains multi-byte, the name is
3262 displayed as ???.
3263Solution: Convert the printer name from the active codepage to 'encoding'.
3264 (Yasuhiro Matsumoto)
3265Files: src/os_mswin.c
3266
3267Patch 7.4.472
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003268Problem: The "precedes" entry in 'listchar' will be drawn when 'showbreak'
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003269 is set and 'list' is not.
3270Solution: Only draw this character when 'list' is on. (Christian Brabandt)
3271Files: src/screen.c
3272
3273Patch 7.4.473
3274Problem: Cursor movement is incorrect when there is a number/sign/fold
3275 column and 'sbr' is displayed.
3276Solution: Adjust the column for 'sbr'. (Christian Brabandt)
3277Files: src/charset.c
3278
3279Patch 7.4.474
3280Problem: AIX compiler can't handle // comment. Issue 265.
3281Solution: Remove that line.
3282Files: src/regexp_nfa.c
3283
3284Patch 7.4.475
3285Problem: Can't compile on a system where Xutf8SetWMProperties() is not in
3286 the X11 library. Issue 265.
3287Solution: Add a configure check.
3288Files: src/configure.in, src/auto/configure, src/config.h.in,
3289 src/os_unix.c
3290
3291Patch 7.4.476
3292Problem: MingW: compiling with "XPM=no" doesn't work.
3293Solution: Check for the "no" value. (KF Leong) Also for Cygwin. (Ken
3294 Takata)
3295Files: src/Make_ming.mak, src/Make_cyg.mak
3296
3297Patch 7.4.477
3298Problem: When using ":%diffput" and the other file is empty an extra empty
3299 line remains.
3300Solution: Set the buf_empty flag.
3301Files: src/diff.c
3302
3303Patch 7.4.478
3304Problem: Using byte length instead of character length for 'showbreak'.
3305Solution: Compute the character length. (Marco Hinz)
3306Files: src/charset.c
3307
3308Patch 7.4.479
3309Problem: MS-Windows: The console title can be wrong.
3310Solution: Take the encoding into account. When restoring the title use the
3311 right function. (Yasuhiro Matsumoto)
3312Files: src/os_mswin.c, src/os_win32.c
3313
3314Patch 7.4.480 (after 7.4.479)
3315Problem: MS-Windows: Can't build.
3316Solution: Remove goto, use a flag instead.
3317Files: src/os_win32.c
3318
3319Patch 7.4.481 (after 7.4.471)
3320Problem: Compiler warning on MS-Windows.
3321Solution: Add type casts. (Ken Takata)
3322Files: src/os_mswin.c
3323
3324Patch 7.4.482
3325Problem: When 'balloonexpr' results in a list, the text has a trailing
3326 newline. (Lcd)
3327Solution: Remove one trailing newline.
3328Files: src/gui_beval.c
3329
3330Patch 7.4.483
3331Problem: A 0x80 byte is not handled correctly in abbreviations.
3332Solution: Unescape special characters. Add a test. (Christian Brabandt)
3333Files: src/getchar.c, src/testdir/Make_amiga.mak,
3334 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
3335 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
3336 src/testdir/Makefile, src/testdir/test_mapping.in,
3337 src/testdir/test_mapping.ok
3338
3339Patch 7.4.484 (after 7.4.483)
3340Problem: Compiler warning on MS-Windows. (Ken Takata)
3341Solution: Add type cast.
3342Files: src/getchar.c
3343
3344Patch 7.4.485 (after 7.4.484)
3345Problem: Abbreviations don't work. (Toothpik)
3346Solution: Move the length computation inside the for loop. Compare against
3347 the unescaped key.
3348Files: src/getchar.c
3349
3350Patch 7.4.486
3351Problem: Check for writing to a yank register is wrong.
3352Solution: Negate the check. (Zyx). Also clean up the #ifdefs.
3353Files: src/ex_docmd.c, src/ex_cmds.h
3354
3355Patch 7.4.487
3356Problem: ":sign jump" may use another window even though the file is
3357 already edited in the current window.
3358Solution: First check if the file is in the current window. (James McCoy)
3359Files: src/window.c, src/testdir/Make_amiga.mak,
3360 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
3361 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
3362 src/testdir/Makefile, src/testdir/test_signs.in,
3363 src/testdir/test_signs.ok
3364
3365Patch 7.4.488
3366Problem: test_mapping fails for some people.
3367Solution: Set the 'encoding' option. (Ken Takata)
3368Files: src/testdir/test_mapping.in
3369
3370Patch 7.4.489
3371Problem: Cursor movement still wrong when 'lbr' is set and there is a
3372 number column. (Hirohito Higashi)
3373Solution: Add correction for number column. (Hiroyuki Takagi)
3374Files: src/charset.c
3375
3376Patch 7.4.490
3377Problem: Cannot specify the buffer to use for "do" and "dp", making them
3378 useless for three-way diff.
3379Solution: Use the count as the buffer number. (James McCoy)
3380Files: runtime/doc/diff.txt, src/diff.c, src/normal.c, src/proto/diff.pro
3381
3382Patch 7.4.491
3383Problem: When winrestview() has a negative "topline" value there are
3384 display errors.
3385Solution: Correct a negative value to 1. (Hirohito Higashi)
3386Files: src/eval.c
3387
3388Patch 7.4.492
3389Problem: In Insert mode, after inserting a newline that inserts a comment
3390 leader, CTRL-O moves to the right. (ZyX) Issue 57.
3391Solution: Correct the condition for moving the cursor back to the NUL.
3392 (Christian Brabandt)
3393Files: src/edit.c, src/testdir/test4.in, src/testdir/test4.ok
3394
3395Patch 7.4.493
3396Problem: A TextChanged autocommand is triggered when saving a file.
3397 (William Gardner)
3398Solution: Update last_changedtick after calling unchanged(). (Christian
3399 Brabandt)
3400Files: src/fileio.c
3401
3402Patch 7.4.494
3403Problem: Cursor shape is wrong after a CompleteDone autocommand.
3404Solution: Update the cursor and mouse shape after ":normal" restores the
3405 state. (Jacob Niehus)
3406Files: src/ex_docmd.c
3407
3408Patch 7.4.495
3409Problem: XPM isn't used correctly in the Cygwin Makefile.
3410Solution: Include the rules like in Make_ming.mak. (Ken Takata)
3411Files: src/Make_cyg.mak
3412
3413Patch 7.4.496
3414Problem: Many lines are both in Make_cyg.mak and Make_ming.mak
3415Solution: Move the common parts to one file. (Ken Takata)
3416Files: src/INSTALLpc.txt, src/Make_cyg.mak, src/Make_cyg_ming.mak,
3417 src/Make_ming.mak, src/Make_mvc.mak, Filelist
3418
3419Patch 7.4.497
3420Problem: With some regexp patterns the NFA engine uses many states and
3421 becomes very slow. To the user it looks like Vim freezes.
3422Solution: When the number of states reaches a limit fall back to the old
3423 engine. (Christian Brabandt)
3424Files: runtime/doc/options.txt, src/Makefile, src/regexp.c, src/regexp.h,
3425 src/regexp_nfa.c, src/testdir/Make_dos.mak,
3426 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
3427 src/testdir/Makefile, src/testdir/samples/re.freeze.txt,
3428 src/testdir/bench_re_freeze.in, src/testdir/bench_re_freeze.vim,
3429 Filelist
3430
3431Patch 7.4.498 (after 7.4.497)
3432Problem: Typo in DOS makefile.
3433Solution: Change exists to exist. (Ken Takata)
3434Files: src/testdirMake_dos.mak
3435
3436Patch 7.4.499
3437Problem: substitute() can be slow with long strings.
3438Solution: Store a pointer to the end, instead of calling strlen() every
3439 time. (Ozaki Kiichi)
3440Files: src/eval.c
3441
3442Patch 7.4.500
3443Problem: Test 72 still fails once in a while.
3444Solution: Don't set 'fileformat' to unix, reset it. (Ken Takata)
3445Files: src/testdir/test72.in
3446
3447Patch 7.4.501 (after 7.4.497)
3448Problem: Typo in file pattern.
3449Solution: Insert a slash and remove a dot.
3450Files: Filelist
3451
3452Patch 7.4.502
3453Problem: Language mapping also applies to mapped characters.
3454Solution: Add the 'langnoremap' option, when on 'langmap' does not apply to
3455 mapped characters. (Christian Brabandt)
3456Files: runtime/doc/options.txt, runtime/vimrc_example.vim, src/macros.h,
3457 src/option.c, src/option.h
3458
3459Patch 7.4.503
3460Problem: Cannot append a list of lines to a file.
3461Solution: Add the append option to writefile(). (Yasuhiro Matsumoto)
3462Files: runtime/doc/eval.txt, src/Makefile, src/eval.c,
3463 src/testdir/test_writefile.in, src/testdir/test_writefile.ok
3464
3465Patch 7.4.504
3466Problem: Restriction of the MS-Windows installer that the path must end in
3467 "Vim" prevents installing more than one version.
3468Solution: Remove the restriction. (Tim Lebedkov)
3469Files: nsis/gvim.nsi
3470
3471Patch 7.4.505
3472Problem: On MS-Windows when 'encoding' is a double-byte encoding a file
3473 name longer than MAX_PATH bytes but shorter than that in
3474 characters causes problems.
3475Solution: Fail on file names longer than MAX_PATH bytes. (Ken Takata)
3476Files: src/os_win32.c
3477
3478Patch 7.4.506
3479Problem: MS-Windows: Cannot open a file with 259 characters.
3480Solution: Fix off-by-one error. (Ken Takata)
3481Files: src/os_mswin.c
3482
3483Patch 7.4.507 (after 7.4.496)
3484Problem: Building with MingW and Perl.
3485Solution: Remove quotes. (Ken Takata)
3486Files: src/Make_cyg_ming.mak
3487
3488Patch 7.4.508
3489Problem: When generating ja.sjis.po the header is not correctly adjusted.
3490Solution: Check for the right header string. (Ken Takata)
3491Files: src/po/sjiscorr.c
3492
3493Patch 7.4.509
3494Problem: Users are not aware their encryption is weak.
3495Solution: Give a warning when prompting for the key.
3496Files: src/crypt.c, src/ex_docmd.c, src/fileio.c, src/main.c,
3497 src/proto/crypt.pro
3498
3499Patch 7.4.510
3500Problem: "-fwrapv" argument breaks use of cproto.
3501Solution: Remove the alphabetic arguments in a drastic way.
3502Files: src/Makefile
3503
3504Patch 7.4.511
3505Problem: Generating proto for if_ruby.c uses type not defined elsewhere.
3506Solution: Do not generate a prototype for
3507 rb_gc_writebarrier_unprotect_promoted()
3508Files: src/if_ruby.c
3509
3510Patch 7.4.512
3511Problem: Cannot generate prototypes for Win32 files and VMS.
3512Solution: Add typedefs and #ifdef
3513Files: src/os_win32.c, src/gui_w32.c, src/os_vms.c
3514
3515Patch 7.4.513
3516Problem: Crash because reference count is wrong for list returned by
3517 getreg().
3518Solution: Increment the reference count. (Kimmy Lindvall)
3519Files: src/eval.c
3520
3521Patch 7.4.514 (after 7.4.492)
3522Problem: Memory access error. (Dominique Pelle)
3523Solution: Update tpos. (Christian Brabandt)
3524Files: src/edit.c
3525
3526Patch 7.4.515
3527Problem: In a help buffer the global 'foldmethod' is used. (Paul Marshall)
3528Solution: Reset 'foldmethod' when starting to edit a help file. Move the
3529 code to a separate function.
3530Files: src/ex_cmds.c
3531
3532Patch 7.4.516
3533Problem: Completing a function name containing a # does not work. Issue
3534 253.
3535Solution: Recognize the # character. (Christian Brabandt)
3536Files: src/eval.c
3537
3538Patch 7.4.517
3539Problem: With a wrapping line the cursor may not end up in the right place.
3540 (Nazri Ramliy)
3541Solution: Adjust n_extra for a Tab that wraps. (Christian Brabandt)
3542Files: src/screen.c
3543
3544Patch 7.4.518
3545Problem: Using status line height in width computations.
3546Solution: Use one instead. (Hirohito Higashi)
3547Files: src/window.c
3548
3549Patch 7.4.519 (after 7.4.497)
3550Problem: Crash when using syntax highlighting.
3551Solution: When regprog is freed and replaced, store the result.
3552Files: src/buffer.c, src/regexp.c, src/syntax.c, src/spell.c,
3553 src/ex_cmds2.c, src/fileio.c, src/proto/fileio.pro,
3554 src/proto/regexp.pro, src/os_unix.c
3555
3556Patch 7.4.520
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003557Problem: Sun PCK locale is not recognized.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003558Solution: Add PCK in the table. (Keiichi Oono)
3559Files: src/mbyte.c
3560
3561Patch 7.4.521
3562Problem: When using "vep" a mark is moved to the next line. (Maxi Padulo,
3563 Issue 283)
3564Solution: Decrement the line number. (Christian Brabandt)
3565Files: src/ops.c
3566
3567Patch 7.4.522
3568Problem: Specifying wrong buffer size for GetLongPathName().
3569Solution: Use the actual size. (Ken Takata)
3570Files: src/eval.c
3571
3572Patch 7.4.523
3573Problem: When the X11 server is stopped and restarted, while Vim is kept in
3574 the background, copy/paste no longer works. (Issue 203)
3575Solution: Setup the clipboard again. (Christian Brabandt)
3576Files: src/os_unix.c
3577
3578Patch 7.4.524
3579Problem: When using ":ownsyntax" spell checking is messed up. (Issue 78)
3580Solution: Use the window-local option values. (Christian Brabandt)
3581Files: src/option.c, src/syntax.c
3582
3583Patch 7.4.525
3584Problem: map() leaks memory when there is an error in the expression.
3585Solution: Call clear_tv(). (Christian Brabandt)
3586Files: src/eval.c
3587
3588Patch 7.4.526
3589Problem: matchstr() fails on long text. (Daniel Hahler)
3590Solution: Return NFA_TOO_EXPENSIVE from regexec_nl(). (Christian Brabandt)
3591Files: src/regexp.c
3592
3593Patch 7.4.527
3594Problem: Still confusing regexp failure and NFA_TOO_EXPENSIVE.
3595Solution: NFA changes equivalent of 7.4.526.
3596Files: src/regexp_nfa.c
3597
3598Patch 7.4.528
3599Problem: Crash when using matchadd() (Yasuhiro Matsumoto)
3600Solution: Copy the match regprog.
3601Files: src/screen.c
3602
3603Patch 7.4.529
3604Problem: No test for what 7.4.517 fixes.
3605Solution: Adjust the tests for breakindent. (Christian Brabandt)
3606Files: src/testdir/test_breakindent.in, src/testdir/test_breakindent.ok
3607
3608Patch 7.4.530
3609Problem: Many commands take a count or range that is not using line
3610 numbers.
3611Solution: For each command specify what kind of count it uses. For windows,
3612 buffers and arguments have "$" and "." have a relevant meaning.
3613 (Marcin Szamotulski)
3614Files: runtime/doc/editing.txt, runtime/doc/tabpage.txt,
3615 runtime/doc/windows.txt, src/Makefile, src/ex_cmds.h,
3616 src/ex_docmd.c, src/testdir/Make_amiga.mak
3617 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
3618 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
3619 src/testdir/Makefile, src/testdir/test_argument_count.in,
3620 src/testdir/test_argument_count.ok,
3621 src/testdir/test_close_count.in, src/testdir/test_close_count.ok,
3622 src/window.c
3623
3624Patch 7.4.531
3625Problem: Comments about parsing an Ex command are wrong.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003626Solution: Correct the step numbers.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003627Files: src/ex_docmd.c
3628
3629Patch 7.4.532
3630Problem: When using 'incsearch' "2/pattern/e" highlights the first match.
3631Solution: Move the code to set extra_col inside the loop for count. (Ozaki
3632 Kiichi)
3633Files: src/search.c
3634
3635Patch 7.4.533
3636Problem: ":hardcopy" leaks memory in case of errors.
3637Solution: Free memory in all code paths. (Christian Brabandt)
3638Files: src/hardcopy.c
3639
3640Patch 7.4.534
3641Problem: Warnings when compiling if_ruby.c.
3642Solution: Avoid the warnings. (Ken Takata)
3643Files: src/if_ruby.c
3644
3645Patch 7.4.535 (after 7.4.530)
3646Problem: Can't build with tiny features.
3647Solution: Add #ifdefs and skip a test.
3648Files: src/ex_docmd.c, src/testdir/test_argument_count.in
3649
3650Patch 7.4.536
3651Problem: Test 63 fails when using a black&white terminal.
3652Solution: Add attributes for a non-color terminal. (Christian Brabandt)
3653Files: src/testdir/test63.in
3654
3655Patch 7.4.537
3656Problem: Value of v:hlsearch reflects an internal variable.
3657Solution: Make the value reflect whether search highlighting is actually
3658 displayed. (Christian Brabandt)
3659Files: runtime/doc/eval.txt, src/testdir/test101.in,
3660 src/testdir/test101.ok, src/vim.h
3661
3662Patch 7.4.538
3663Problem: Tests fail with small features plus Python.
3664Solution: Disallow weird combination of options. Do not set "fdm" when
3665 folding is disabled.
3666Files: src/option.c, src/ex_cmds.c, src/configure.in, src/auto/configure,
3667 src/feature.h
3668
3669Patch 7.4.539 (after 7.4.530)
3670Problem: Crash when computing buffer count. Problem with range for user
3671 commands. Line range wrong in Visual area.
3672Solution: Avoid segfault in compute_buffer_local_count(). Check for
3673 CMD_USER when checking type of range. (Marcin Szamotulski)
3674Files: runtime/doc/windows.txt, src/ex_docmd.c
3675
3676Patch 7.4.540 (after 7.4.539)
3677Problem: Cannot build with tiny and small features. (Taro Muraoka)
3678Solution: Add #ifdef around CMD_USER.
3679Files: src/ex_docmd.c
3680
3681Patch 7.4.541
3682Problem: Crash when doing a range assign.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003683Solution: Check for NULL pointer. (Yukihiro Nakadaira)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003684Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok
3685
3686Patch 7.4.542
3687Problem: Using a range for window and buffer commands has a few problems.
3688 Cannot specify the type of range for a user command.
3689Solution: Add the -addr argument for user commands. Fix problems. (Marcin
3690 Szamotulski)
3691Files: src/testdir/test_command_count.in,
3692 src/testdir/test_command_count.ok src/testdir/Make_amiga.mak
3693 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
3694 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
3695 src/testdir/Makefile, runtime/doc/map.txt, src/Makefile,
3696 src/ex_cmds.h, src/ex_docmd.c, src/ex_getln.c,
3697 src/proto/ex_docmd.pro, src/vim.h,
3698
3699Patch 7.4.543
3700Problem: Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three.
3701 (Eliseo Martínez) Issue 287
3702Solution: Correct the line count. (Christian Brabandt)
3703 Also set the last used search pattern.
3704Files: src/ex_cmds.c, src/search.c, src/proto/search.pro
3705
3706Patch 7.4.544
3707Problem: Warnings for unused arguments when compiling with a combination of
3708 features.
3709Solution: Add "UNUSED".
3710Files: src/if_cscope.c
3711
3712Patch 7.4.545
3713Problem: Highlighting for multi-line matches is not correct.
3714Solution: Stop highlight at the end of the match. (Hirohito Higashi)
3715Files: src/screen.c
3716
3717Patch 7.4.546
3718Problem: Repeated use of vim_snprintf() with a number.
3719Solution: Move these vim_snprintf() calls into a function.
3720Files: src/window.c
3721
3722Patch 7.4.547
3723Problem: Using "vit" does not select a multi-byte character at the end
3724 correctly.
3725Solution: Advance the cursor over the multi-byte character. (Christian
3726 Brabandt)
3727Files: src/search.c
3728
3729Patch 7.4.548
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003730Problem: Compilation fails with native version of MinGW-w64, because
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003731 it doesn't have x86_64-w64-mingw32-windres.exe.
3732Solution: Use windres instead. (Ken Takata)
3733Files: src/Make_cyg_ming.mak
3734
3735Patch 7.4.549
3736Problem: Function name not recognized correctly when inside a function.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003737Solution: Don't check for an alpha character. (Ozaki Kiichi)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003738Files: src/eval.c, src/testdir/test_nested_function.in,
3739 src/testdir/test_nested_function.ok, src/testdir/Make_amiga.mak,
3740 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
3741 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
3742 src/testdir/Makefile
3743
3744Patch 7.4.550
3745Problem: curs_rows() function is always called with the second argument
3746 false.
3747Solution: Remove the argument. (Christian Brabandt)
3748 validate_botline_win() can then also be removed.
3749Files: src/move.c
3750
3751Patch 7.4.551
3752Problem: "ygn" may yank too much. (Fritzophrenic) Issue 295.
3753Solution: Check the width of the next match. (Christian Brabandt)
3754Files: src/search.c, src/testdir/test53.in, src/testdir/test53.ok
3755
3756Patch 7.4.552
3757Problem: Langmap applies to Insert mode expression mappings.
3758Solution: Check for Insert mode. (Daniel Hahler)
3759Files: src/getchar.c, src/testdir/test_mapping.in,
3760 src/testdir/test_mapping.ok
3761
3762Patch 7.4.553
3763Problem: Various small issues.
3764Solution: Fix those issues.
3765Files: src/ex_cmds.h, src/gui.h, src/message.c, src/testdir/test39.in,
3766 src/proto/eval.pro, src/proto/misc1.pro, src/proto/ops.pro,
3767 src/proto/screen.pro, src/proto/window.pro. src/os_unix.c,
3768 src/Make_vms.mms, src/proto/os_vms.pro, src/INSTALL
3769
3770Patch 7.4.554
3771Problem: Missing part of patch 7.4.519.
3772Solution: Copy back regprog after calling vim_regexec.
3773Files: src/quickfix.c
3774
3775Patch 7.4.555
3776Problem: test_close_count may fail for some combination of features.
3777Solution: Require normal features.
3778Files: src/testdir/test_close_count.in
3779
3780Patch 7.4.556
3781Problem: Failed commands in Python interface not handled correctly.
3782Solution: Restore window and buffer on failure.
3783Files: src/if_py_both.h
3784
3785Patch 7.4.557
3786Problem: One more small issue.
3787Solution: Update function proto.
3788Files: src/proto/window.pro
3789
3790Patch 7.4.558
3791Problem: When the X server restarts Vim may get stuck.
3792Solution: Destroy the application context and create it again. (Issue 203)
3793Files: src/os_unix.c
3794
3795Patch 7.4.559
3796Problem: Appending a block in the middle of a tab does not work correctly
3797 when virtualedit is set.
3798Solution: Decrement spaces and count, don't reset them. (James McCoy)
3799Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok
3800
3801Patch 7.4.560
3802Problem: Memory leak using :wviminfo. Issue 296.
3803Solution: Free memory when needed. (idea by Christian Brabandt)
3804Files: src/ops.c
3805
3806Patch 7.4.561
3807Problem: Ex range handling is wrong for buffer-local user commands.
3808Solution: Check for CMD_USER_BUF. (Marcin Szamotulski)
3809Files: src/ex_docmd.c, src/testdir/test_command_count.in,
3810 src/testdir/test_command_count.ok
3811
3812Patch 7.4.562
3813Problem: Segfault with wide screen and error in 'rulerformat'. (Ingo Karkat)
3814Solution: Check there is enough space. (Christian Brabandt)
3815Files: src/buffer.c, src/screen.c
3816
3817Patch 7.4.563
3818Problem: No test for replacing on a tab in Virtual replace mode.
3819Solution: Add a test. (Elias Diem)
3820Files: src/testdir/test48.in, src/testdir/test48.ok
3821
3822Patch 7.4.564
3823Problem: FEAT_OSFILETYPE is used even though it's never defined.
3824Solution: Remove the code. (Christian Brabandt)
3825Files: src/fileio.c
3826
3827Patch 7.4.565
3828Problem: Ranges for arguments, buffers, tabs, etc. are not checked to be
3829 valid but limited to the maximum. This can cause the wrong thing
3830 to happen.
3831Solution: Give an error for an invalid value. (Marcin Szamotulski)
3832 Use windows range for ":wincmd".
3833Files: src/ex_docmd.c, src/ex_cmds.h, src/testdir/test62.in,
3834 src/testdir/test_argument_count.in,
3835 src/testdir/test_argument_count.ok,
3836 src/testdir/test_close_count.in,
3837 src/testdir/test_command_count.in,
3838 src/testdir/test_command_count.ok
3839
3840Patch 7.4.566
3841Problem: :argdo, :bufdo, :windo and :tabdo don't take a range.
3842Solution: Support the range. (Marcin Szamotulski)
3843Files: runtime/doc/editing.txt, runtime/doc/tabpage.txt,
3844 runtime/doc/windows.txt, src/ex_cmds.h, src/ex_cmds2.c,
3845 src/testdir/test_command_count.in,
3846 src/testdir/test_command_count.ok
3847
3848Patch 7.4.567
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003849Problem: Non-ascii vertical separator characters are always redrawn.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003850Solution: Compare only the one byte that's stored. (Thiago Padilha)
3851Files: src/screen.c
3852
3853Patch 7.4.568
3854Problem: Giving an error for ":0wincmd w" is a problem for some plugins.
3855Solution: Allow the zero in the range. (Marcin Szamotulski)
3856Files: src/ex_docmd.c, src/testdir/test_command_count.ok
3857
3858Patch 7.4.569 (after 7.4.468)
3859Problem: Having CTRL-C interrupt or not does not check the mode of the
3860 mapping. (Ingo Karkat)
3861Solution: Use a bitmask with the map mode. (Christian Brabandt)
3862Files: src/getchar.c, src/structs.h, src/testdir/test_mapping.in,
3863 src/testdir/test_mapping.ok, src/ui.c, src/globals.h
3864
3865Patch 7.4.570
3866Problem: Building with dynamic library does not work for Ruby 2.2.0
3867Solution: Change #ifdefs and #defines. (Ken Takata)
3868Files: src/if_ruby.c
3869
3870Patch 7.4.571 (after 7.4.569)
3871Problem: Can't build with tiny features. (Ike Devolder)
3872Solution: Add #ifdef.
3873Files: src/getchar.c
3874
3875Patch 7.4.572
3876Problem: Address type of :wincmd depends on the argument.
3877Solution: Check the argument.
3878Files: src/ex_docmd.c, src/window.c, src/proto/window.pro
3879
3880Patch 7.4.573 (after 7.4.569)
3881Problem: Mapping CTRL-C in Visual mode doesn't work. (Ingo Karkat)
3882Solution: Call get_real_state() instead of using State directly.
3883Files: src/ui.c, src/testdir/test_mapping.in, src/testdir/test_mapping.ok
3884
3885Patch 7.4.574
3886Problem: No error for eval('$').
3887Solution: Check for empty name. (Yasuhiro Matsumoto)
3888Files: src/eval.c
3889
3890Patch 7.4.575
3891Problem: Unicode character properties are outdated.
3892Solution: Update the tables with the latest version.
3893Files: src/mbyte.c
3894
3895Patch 7.4.576
3896Problem: Redrawing problem with 'relativenumber' and 'linebreak'.
3897Solution: Temporarily reset 'linebreak' and restore it in more places.
3898 (Christian Brabandt)
3899Files: src/normal.c
3900
3901Patch 7.4.577
3902Problem: Matching with a virtual column has a lot of overhead on very long
3903 lines. (Issue 310)
3904Solution: Bail out early if there can't be a match. (Christian Brabandt)
3905 Also check for CTRL-C at every position.
3906Files: src/regexp_nfa.c
3907
3908Patch 7.4.578
3909Problem: Using getcurpos() after "$" in an empty line returns a negative
3910 number.
3911Solution: Don't add one when this would overflow. (Hirohito Higashi)
3912Files: src/eval.c
3913
3914Patch 7.4.579
3915Problem: Wrong cursor positioning when 'linebreak' is set and lines wrap.
3916Solution: Fix it. (Christian Brabandt)
3917Files: src/charset.c, src/screen.c
3918
3919Patch 7.4.580
3920Problem: ":52wincmd v" still gives an invalid range error. (Charles
3921 Campbell)
3922Solution: Skip over white space.
3923Files: src/ex_docmd.c
3924
3925Patch 7.4.581
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02003926Problem: Compiler warnings for uninitialized variables. (John Little)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02003927Solution: Initialize the variables.
3928Files: src/ops.c
3929
3930Patch 7.4.582 (after 7.4.577)
3931Problem: Can't match "%>80v" properly. (Axel Bender)
3932Solution: Correctly handle ">". (Christian Brabandt)
3933Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
3934
3935Patch 7.4.583
3936Problem: With tiny features test 16 may fail.
3937Solution: Source small.vim. (Christian Brabandt)
3938Files: src/testdir/test16.in
3939
3940Patch 7.4.584
3941Problem: With tiny features test_command_count may fail.
3942Solution: Source small.vim. (Christian Brabandt)
3943Files: src/testdir/test_command_count.in
3944
3945Patch 7.4.585
3946Problem: Range for :bdelete does not work. (Ronald Schild)
3947Solution: Also allow unloaded buffers.
3948Files: src/ex_cmds.h, src/testdir/test_command_count.in,
3949 src/testdir/test_command_count.ok
3950
3951Patch 7.4.586
3952Problem: Parallel building of the documentation html files is not reliable.
3953Solution: Remove a cyclic dependency. (Reiner Herrmann)
3954Files: runtime/doc/Makefile
3955
3956Patch 7.4.587
3957Problem: Conceal does not work properly with 'linebreak'. (cs86661)
3958Solution: Save and restore boguscols. (Christian Brabandt)
3959Files: src/screen.c, src/testdir/test_listlbr_utf8.in,
3960 src/testdir/test_listlbr_utf8.ok
3961
3962Patch 7.4.588
3963Problem: ":0argedit foo" puts the new argument in the second place instead
3964 of the first.
3965Solution: Adjust the range type. (Ingo Karkat)
3966Files: src/ex_cmds.h, src/testdir/Make_amiga.mak,
3967 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
3968 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
3969 src/testdir/Makefile, src/testdir/test_argument_0count.in,
3970 src/testdir/test_argument_0count.ok
3971
3972Patch 7.4.589
3973Problem: In the MS-Windows console Vim can't handle greek characters when
3974 encoding is utf-8.
3975Solution: Escape K_NUL. (Yasuhiro Matsumoto)
3976Files: src/os_win32.c
3977
3978Patch 7.4.590
3979Problem: Using ctrl_x_mode as if it contains flags.
3980Solution: Don't use AND with CTRL_X_OMNI. (Hirohito Higashi)
3981Files: src/edit.c
3982
3983Patch 7.4.591 (after 7.4.587)
3984Problem: test_listlbr_utf8 fails when the conceal feature is not available.
3985Solution: Check for the conceal feature. (Kazunobu Kuriyama)
3986Files: src/testdir/test_listlbr_utf8.in
3987
3988Patch 7.4.592
3989Problem: When doing ":e foobar" when already editing "foobar" and 'buftype'
3990 is "nofile" the buffer is cleared. (Xavier de Gaye)
3991Solution: Do no clear the buffer.
3992Files: src/ex_cmds.c
3993
3994Patch 7.4.593
3995Problem: Crash when searching for "x\{0,90000}". (Dominique Pelle)
3996Solution: Bail out from the NFA engine when the max limit is much higher
3997 than the min limit.
3998Files: src/regexp_nfa.c, src/regexp.c, src/vim.h
3999
4000Patch 7.4.594
4001Problem: Using a block delete while 'breakindent' is set does not work
4002 properly.
4003Solution: Use "line" instead of "prev_pend" as the first argument to
4004 lbr_chartabsize_adv(). (Hirohito Higashi)
4005Files: src/ops.c, src/testdir/test_breakindent.in,
4006 src/testdir/test_breakindent.ok
4007
4008Patch 7.4.595
4009Problem: The test_command_count test fails when using Japanese.
4010Solution: Force the language to C. (Hirohito Higashi)
4011Files: src/testdir/test_command_count.in
4012
4013Patch 7.4.596 (after 7.4.592)
4014Problem: Tiny build doesn't compile. (Ike Devolder)
4015Solution: Add #ifdef.
4016Files: src/ex_cmds.c
4017
4018Patch 7.4.597
4019Problem: Cannot change the result of systemlist().
4020Solution: Initialize v_lock. (Yukihiro Nakadaira)
4021Files: src/eval.c
4022
4023Patch 7.4.598
4024Problem: ":tabdo windo echo 'hi'" causes "* register not to be changed.
4025 (Salman Halim)
4026Solution: Change how clip_did_set_selection is used and add
4027 clipboard_needs_update and global_change_count. (Christian
4028 Brabandt)
4029Files: src/main.c, src/ui.c, src/testdir/test_eval.in,
4030 src/testdir/test_eval.ok
4031
4032Patch 7.4.599
4033Problem: Out-of-memory error.
4034Solution: Avoid trying to allocate a negative amount of memory, use size_t
4035 instead of int. (Dominique Pelle)
4036Files: src/regexp_nfa.c
4037
4038Patch 7.4.600
4039Problem: Memory wasted in struct because of aligning.
4040Solution: Split pos in lnum and col. (Dominique Pelle)
4041Files: src/regexp_nfa.c
4042
4043Patch 7.4.601
4044Problem: It is not possible to have feedkeys() insert characters.
4045Solution: Add the 'i' flag.
4046Files: src/eval.c, runtime/doc/eval.txt
4047
4048Patch 7.4.602
4049Problem: ":set" does not accept hex numbers as documented.
4050Solution: Use vim_str2nr(). (ZyX)
4051Files: src/option.c, runtime/doc/options.txt
4052
4053Patch 7.4.603
4054Problem: 'foldcolumn' may be set such that it fills the whole window, not
4055 leaving space for text.
4056Solution: Reduce the foldcolumn width when there is not sufficient room.
4057 (idea by Christian Brabandt)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02004058Files: src/screen.c
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02004059
4060Patch 7.4.604
4061Problem: Running tests changes viminfo.
4062Solution: Disable viminfo.
4063Files: src/testdir/test_breakindent.in
4064
4065Patch 7.4.605
4066Problem: The # register is not writable, it cannot be restored after
4067 jumping around.
4068Solution: Make the # register writable. (Marcin Szamotulski)
4069Files: runtime/doc/change.txt, src/ops.c, src/buffer.c, src/globals.h
4070
4071Patch 7.4.606
4072Problem: May crash when using a small window.
4073Solution: Avoid dividing by zero. (Christian Brabandt)
4074Files: src/normal.c
4075
4076Patch 7.4.607 (after 7.4.598)
4077Problem: Compiler warnings for unused variables.
4078Solution: Move them inside #ifdef. (Kazunobu Kuriyama)
4079Files: src/ui.c
4080
4081Patch 7.4.608 (after 7.4.598)
4082Problem: test_eval fails when the clipboard feature is missing.
4083Solution: Skip part of the test. Reduce the text used.
4084Files: src/testdir/test_eval.in, src/testdir/test_eval.ok
4085
4086Patch 7.4.609
4087Problem: For complicated list and dict use the garbage collector can run
4088 out of stack space.
4089Solution: Use a stack of dicts and lists to be marked, thus making it
4090 iterative instead of recursive. (Ben Fritz)
4091Files: src/eval.c, src/if_lua.c, src/if_py_both.h, src/if_python.c,
4092 src/if_python3.c, src/proto/eval.pro, src/proto/if_lua.pro,
4093 src/proto/if_python.pro, src/proto/if_python3.pro, src/structs.h
4094
4095Patch 7.4.610
4096Problem: Some function headers may be missing from generated .pro files.
4097Solution: Add PROTO to the #ifdef.
4098Files: src/option.c, src/syntax.c
4099
4100Patch 7.4.611 (after 7.4.609)
4101Problem: Syntax error.
4102Solution: Change statement to return.
4103Files: src/if_python3.c
4104
4105Patch 7.4.612
4106Problem: test_eval fails on Mac.
4107Solution: Use the * register instead of the + register. (Jun Takimoto)
4108Files: src/testdir/test_eval.in, src/testdir/test_eval.ok
4109
4110Patch 7.4.613
4111Problem: The NFA engine does not implement the 'redrawtime' time limit.
4112Solution: Implement the time limit.
4113Files: src/regexp_nfa.c
4114
4115Patch 7.4.614
4116Problem: There is no test for what patch 7.4.601 fixes.
4117Solution: Add a test. (Christian Brabandt)
4118Files: src/testdir/test_mapping.in, src/testdir/test_mapping.ok
4119
4120Patch 7.4.615
4121Problem: Vim hangs when freeing a lot of objects.
4122Solution: Do not go back to the start of the list every time. (Yasuhiro
4123 Matsumoto and Ariya Mizutani)
4124Files: src/eval.c
4125
4126Patch 7.4.616
4127Problem: Cannot insert a tab in front of a block.
4128Solution: Correctly compute aop->start. (Christian Brabandt)
4129Files: src/ops.c, src/testdir/test39.in, src/testdir/test39.ok
4130
4131Patch 7.4.617
4132Problem: Wrong ":argdo" range does not cause an error.
4133Solution: Reset "cmd" to NULL. (Marcin Szamotulski, Ingo Karkat)
4134Files: src/ex_docmd.c
4135
4136Patch 7.4.618 (after 7.4.609)
4137Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi)
4138Solution: Put the return statement back.
4139Files: src/if_lua.c
4140
4141Patch 7.4.619 (after 7.4.618)
4142Problem: luaV_setref() not returning the correct value.
4143Solution: Return one.
4144Files: src/if_lua.c
4145
4146Patch 7.4.620
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02004147Problem: Compiler warning for uninitialized variable. (Tony Mechelynck)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02004148Solution: Initialize "did_free". (Ben Fritz)
4149Files: src/eval.c
4150
4151Patch 7.4.621 (after 7.4.619)
4152Problem: Returning 1 in the wrong function. (Raymond Ko)
4153Solution: Return 1 in the right function (hopefully).
4154Files: src/if_lua.c
4155
4156Patch 7.4.622
4157Problem: Compiler warning for unused argument.
4158Solution: Add UNUSED.
4159Files: src/regexp_nfa.c
4160
4161Patch 7.4.623
4162Problem: Crash with pattern: \(\)\{80000} (Dominique Pelle)
4163Solution: When the max limit is large fall back to the old engine.
4164Files: src/regexp_nfa.c
4165
4166Patch 7.4.624
4167Problem: May leak memory or crash when vim_realloc() returns NULL.
4168Solution: Handle a NULL value properly. (Mike Williams)
4169Files: src/if_cscope.c, src/memline.c, src/misc1.c, src/netbeans.c
4170
4171Patch 7.4.625
4172Problem: Possible NULL pointer dereference.
4173Solution: Check for NULL before using it. (Mike Williams)
4174Files: src/if_py_both.h
4175
4176Patch 7.4.626
4177Problem: MSVC with W4 gives useless warnings.
4178Solution: Disable more warnings. (Mike Williams)
4179Files: src/vim.h
4180
4181Patch 7.4.627
4182Problem: The last screen cell is not updated.
4183Solution: Respect the "tn" termcap feature. (Hayaki Saito)
4184Files: runtime/doc/term.txt, src/option.c, src/screen.c, src/term.c,
4185 src/term.h
4186
4187Patch 7.4.628
4188Problem: Compiler warning for variable might be clobbered by longjmp.
4189Solution: Add volatile. (Michael Jarvis)
4190Files: src/main.c
4191
4192Patch 7.4.629
4193Problem: Coverity warning for Out-of-bounds read.
4194Solution: Increase MAXWLEN to 254. (Eliseo Martínez)
4195Files: src/spell.c
4196
4197Patch 7.4.630
4198Problem: When using Insert mode completion combined with autocommands the
4199 redo command may not work.
4200Solution: Do not save the redo buffer when executing autocommands. (Yasuhiro
4201 Matsumoto)
4202Files: src/fileio.c
4203
4204Patch 7.4.631
4205Problem: The default conceal character is documented to be a space but it's
4206 initially a dash. (Christian Brabandt)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02004207Solution: Make the initial value a space.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02004208Files: src/globals.h
4209
4210Patch 7.4.632 (after 7.4.592)
4211Problem: 7.4.592 breaks the netrw plugin, because the autocommands are
4212 skipped.
4213Solution: Roll back the change.
4214Files: src/ex_cmds.c
4215
4216Patch 7.4.633
4217Problem: After 7.4.630 the problem persists.
4218Solution: Also skip redo when calling a user function.
4219Files: src/eval.c
4220
4221Patch 7.4.634
4222Problem: Marks are not restored after redo + undo.
4223Solution: Fix the way marks are restored. (Olaf Dabrunz)
4224Files: src/undo.c, src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
4225 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
4226 src/testdir/Make_vms.mms, src/testdir/Makefile,
4227 src/testdir/test_marks.in, src/testdir/test_marks.ok
4228
4229Patch 7.4.635
4230Problem: If no NL or CR is found in the first block of a file then the
4231 'fileformat' may be set to "mac". (Issue 77)
4232Solution: Check if a CR was found. (eswald)
4233Files: src/fileio.c
4234
4235Patch 7.4.636
4236Problem: A search with end offset gets stuck at end of file. (Gary Johnson)
4237Solution: When a search doesn't move the cursor repeat it with a higher
4238 count. (Christian Brabandt)
4239Files: src/normal.c, src/testdir/test44.in, src/testdir/test44.ok
4240
4241Patch 7.4.637
4242Problem: Incorrectly read the number of buffer for which an autocommand
4243 should be registered.
4244Solution: Reverse check for "<buffer=abuf>". (Lech Lorens)
4245Files: src/fileio.c
4246
4247Patch 7.4.638
4248Problem: Can't build with Lua 5.3 on Windows.
4249Solution: use luaL_optinteger() instead of LuaL_optlong(). (Ken Takata)
4250Files: src/if_lua.c
4251
4252Patch 7.4.639
4253Problem: Combination of linebreak and conceal doesn't work well.
4254Solution: Fix the display problems. (Christian Brabandt)
4255Files: src/screen.c, src/testdir/test88.in, src/testdir/test88.ok,
4256 src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok
4257
4258Patch 7.4.640
4259Problem: After deleting characters in Insert mode such that lines are
4260 joined undo does not work properly. (issue 324)
4261Solution: Use Insstart instead of Insstart_orig. (Christian Brabandt)
4262Files: src/edit.c
4263
4264Patch 7.4.641
4265Problem: The tabline menu was using ":999tabnew" which is now invalid.
4266Solution: Use ":$tabnew" instead. (Florian Degner)
4267Files: src/normal.c
4268
4269Patch 7.4.642
4270Problem: When using "gf" escaped spaces are not handled.
4271Solution: Recognize escaped spaces.
4272Files: src/vim.h, src/normal.h, src/window.c, src/misc2.c
4273
4274Patch 7.4.643
4275Problem: Using the default file format for Mac files. (Issue 77)
4276Solution: Reset the try_mac counter in the right place. (Oswald)
4277Files: src/fileio.c, src/testdir/test30.in, src/testdir/test30.ok
4278
4279Patch 7.4.644
4280Problem: Stratus VOS doesn't have sync().
4281Solution: Use fflush(). (Karli Aurelia)
4282Files: src/memfile.c
4283
4284Patch 7.4.645
4285Problem: When splitting the window in a BufAdd autocommand while still in
4286 the first, empty buffer the window count is wrong.
4287Solution: Do not reset b_nwindows to zero and don't increment it.
4288Files: src/buffer.c, src/ex_cmds.c
4289
4290Patch 7.4.646
4291Problem: ":bufdo" may start at a deleted buffer.
4292Solution: Find the first not deleted buffer. (Shane Harper)
4293Files: src/ex_cmds2.c, src/testdir/test_command_count.in,
4294 src/testdir/test_command_count.ok
4295
4296Patch 7.4.647
4297Problem: After running the tests on MS-Windows many files differ from their
4298 originals as they were checked out.
4299Solution: Use a temp directory for executing the tests. (Ken Takata, Taro
4300 Muraoka)
4301Files: src/testdir/Make_dos.mak
4302
4303Patch 7.4.648 (after 7.4.647)
4304Problem: Tests broken on MS-Windows.
4305Solution: Delete wrong copy line. (Ken Takata)
4306Files: src/testdir/Make_dos.mak
4307
4308Patch 7.4.649
4309Problem: Compiler complains about ignoring return value of fwrite().
4310 (Michael Jarvis)
4311Solution: Add (void).
4312Files: src/misc2.c
4313
4314Patch 7.4.650
4315Problem: Configure check may fail because the dl library is not used.
4316Solution: Put "-ldl" in LIBS rather than LDFLAGS. (Oazki Kiichi)
4317Files: src/configure.in, src/auto/configure
4318
4319Patch 7.4.651 (after 7.4.582)
4320Problem: Can't match "%>80v" properly for multi-byte characters.
4321Solution: Multiply the character number by the maximum number of bytes in a
4322 character. (Yasuhiro Matsumoto)
4323Files: src/regexp_nfa.c
4324
4325Patch 7.4.652
4326Problem: Xxd lacks a few features.
4327Solution: Use 8 characters for the file position. Add the -e and -o
4328 arguments. (Vadim Vygonets)
4329Files: src/xxd/xxd.c, runtime/doc/xxd.1
4330
4331Patch 7.4.653
4332Problem: Insert mode completion with complete() may have CTRL-L work like
4333 CTRL-P.
4334Solution: Handle completion with complete() differently. (Yasuhiro
4335 Matsumoto, Christian Brabandt, Hirohito Higashi)
4336Files: src/edit.c
4337
4338Patch 7.4.654
4339Problem: glob() and globpath() cannot include links to non-existing files.
4340 (Charles Campbell)
4341Solution: Add an argument to include all links with glob(). (James McCoy)
4342 Also for globpath().
4343Files: src/vim.h, src/eval.c, src/ex_getln.c
4344
4345Patch 7.4.655
4346Problem: Text deleted by "dit" depends on indent of closing tag.
4347 (Jan Parthey)
4348Solution: Do not adjust oap->end in do_pending_operator(). (Christian
4349 Brabandt)
4350Files: src/normal.c, src/search.c, src/testdir/test53.in,
4351 src/testdir/test53.ok
4352
4353Patch 7.4.656 (after 7.4.654)
4354Problem: Missing changes for glob() in one file.
4355Solution: Add the missing changes.
4356Files: src/misc1.c
4357
4358Patch 7.4.657 (after 7.4.656)
4359Problem: Compiler warnings for pointer mismatch.
4360Solution: Add a typecast. (John Marriott)
4361Files: src/misc1.c
4362
4363Patch 7.4.658
4364Problem: 'formatexpr' is evaluated too often.
4365Solution: Only invoke it when beyond the 'textwidth' column, as it is
4366 documented. (James McCoy)
4367Files: src/edit.c
4368
4369Patch 7.4.659
4370Problem: When 'ruler' is set the preferred column is reset. (Issue 339)
4371Solution: Don't set curswant when redrawing the status lines.
4372Files: src/option.c
4373
4374Patch 7.4.660
4375Problem: Using freed memory when g:colors_name is changed in the colors
4376 script. (oni-link)
4377Solution: Make a copy of the variable value.
4378Files: src/syntax.c
4379
4380Patch 7.4.661
4381Problem: Using "0 CTRL-D" in Insert mode may have CursorHoldI interfere.
4382 (Gary Johnson)
4383Solution: Don't store K_CURSORHOLD as the last character. (Christian
4384 Brabandt)
4385Files: src/edit.c
4386
4387Patch 7.4.662
4388Problem: When 'M' is in the 'cpo' option then selecting a text object in
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02004389 parentheses does not work correctly.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02004390Solution: Keep 'M' in 'cpo' when finding a match. (Hirohito Higashi)
4391Files: src/search.c, src/testdir/Make_amiga.mak,
4392 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
4393 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
4394 src/testdir/Makefile, src/testdir/test_textobjects.in,
4395 src/testdir/test_textobjects.ok
4396
4397Patch 7.4.663
4398Problem: When using netbeans a buffer is not found in another tab.
4399Solution: When 'switchbuf' is set to "usetab" then switch to another tab
4400 when possible. (Xavier de Gaye)
4401Files: src/netbeans.c
4402
4403Patch 7.4.664
4404Problem: When 'compatible' is reset 'numberwidth' is set to 4, but the
4405 effect doesn't show until a change is made.
4406Solution: Check if 'numberwidth' changed. (Christian Brabandt)
4407Files: src/screen.c, src/structs.h
4408
4409Patch 7.4.665
4410Problem: 'linebreak' does not work properly with multi-byte characters.
4411Solution: Compute the pointer offset with mb_head_off(). (Yasuhiro
4412 Matsumoto)
4413Files: src/screen.c
4414
4415Patch 7.4.666
4416Problem: There is a chance that Vim may lock up.
4417Solution: Handle timer events differently. (Aaron Burrow)
4418Files: src/os_unix.c
4419
4420Patch 7.4.667
4421Problem: 'colorcolumn' isn't drawn in a closed fold while 'cursorcolumn'
4422 is. (Carlos Pita)
4423Solution: Make it consistent. (Christian Brabandt)
4424Files: src/screen.c
4425
4426Patch 7.4.668
4427Problem: Can't use a glob pattern as a regexp pattern.
4428Solution: Add glob2regpat(). (Christian Brabandt)
4429Files: src/eval.c, runtime/doc/eval.txt
4430
4431Patch 7.4.669
4432Problem: When netbeans is active the sign column always shows up.
4433Solution: Only show the sign column once a sign has been added. (Xavier de
4434 Gaye)
4435Files: src/buffer.c, src/edit.c, src/move.c, src/netbeans.c,
4436 src/screen.c, src/structs.h
4437
4438Patch 7.4.670
4439Problem: Using 'cindent' for Javascript is less than perfect.
4440Solution: Improve indenting of continuation lines. (Hirohito Higashi)
4441Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok
4442
4443Patch 7.4.671 (after 7.4.665)
4444Problem: Warning for shadowing a variable.
4445Solution: Rename off to mb_off. (Kazunobu Kuriyama)
4446Files: src/screen.c
4447
4448Patch 7.4.672
4449Problem: When completing a shell command, directories in the current
4450 directory are not listed.
4451Solution: When "." is not in $PATH also look in the current directory for
4452 directories.
4453Files: src/ex_getln.c, src/vim.h, src/misc1.c, src/eval.c,
4454 src/os_amiga.c, src/os_msdos.c, src/os_unix.c, src/os_vms.c,
4455 src/proto/os_amiga.pro, src/proto/os_msdos.pro,
4456 src/proto/os_unix.pro, src/proto/os_win32.pro
4457
4458Patch 7.4.673
4459Problem: The first syntax entry gets sequence number zero, which doesn't
4460 work. (Clinton McKay)
4461Solution: Start at number one. (Bjorn Linse)
4462Files: src/syntax.c
4463
4464Patch 7.4.674 (after 7.4.672)
4465Problem: Missing changes in one file.
4466Solution: Also change the win32 file.
4467Files: src/os_win32.c
4468
4469Patch 7.4.675
4470Problem: When a FileReadPost autocommand moves the cursor inside a line it
4471 gets moved back.
4472Solution: When checking whether an autocommand moved the cursor store the
4473 column as well. (Christian Brabandt)
4474Files: src/ex_cmds.c
4475
4476Patch 7.4.676
4477Problem: On Mac, when not using the default Python framework configure
4478 doesn't do the right thing.
4479Solution: Use a linker search path. (Kazunobu Kuriyama)
4480Files: src/configure.in, src/auto/configure
4481
4482Patch 7.4.677 (after 7.4.676)
4483Problem: Configure fails when specifying a python-config-dir. (Lcd)
4484Solution: Check if PYTHONFRAMEWORKPREFIX is set.
4485Files: src/configure.in, src/auto/configure
4486
4487Patch 7.4.678
4488Problem: When using --remote the directory may end up being wrong.
4489Solution: Use localdir() to find out what to do. (Xaizek)
4490Files: src/main.c
4491
4492Patch 7.4.679
4493Problem: Color values greater than 255 cause problems on MS-Windows.
4494Solution: Truncate to 255 colors. (Yasuhiro Matsumoto)
4495Files: src/os_win32.c
4496
4497Patch 7.4.680
4498Problem: CTRL-W in Insert mode does not work well for multi-byte
4499 characters.
4500Solution: Use mb_get_class(). (Yasuhiro Matsumoto)
4501Files: src/edit.c, src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
4502 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
4503 src/testdir/Make_vms.mms, src/testdir/Makefile,
4504 src/testdir/test_erasebackword.in,
4505 src/testdir/test_erasebackword.ok,
4506
4507Patch 7.4.681
4508Problem: MS-Windows: When Vim is minimized the window height is computed
4509 incorrectly.
4510Solution: When minimized use the previously computed size. (Ingo Karkat)
4511Files: src/gui_w32.c
4512
4513Patch 7.4.682
4514Problem: The search highlighting and match highlighting replaces the
4515 cursorline highlighting, this doesn't look good.
4516Solution: Combine the highlighting. (Yasuhiro Matsumoto)
4517Files: src/screen.c
4518
4519Patch 7.4.683
4520Problem: Typo in the vimtutor command.
4521Solution: Fix the typo. (Corey Farwell, github pull 349)
4522Files: vimtutor.com
4523
4524Patch 7.4.684
4525Problem: When starting several Vim instances in diff mode, the temp files
4526 used may not be unique. (Issue 353)
4527Solution: Add an argument to vim_tempname() to keep the file.
4528Files: src/diff.c, src/eval.c, src/ex_cmds.c, src/fileio.c,
4529 src/hardcopy.c, src/proto/fileio.pro, src/if_cscope.c,
4530 src/memline.c, src/misc1.c, src/os_unix.c, src/quickfix.c,
4531 src/spell.c
4532
4533Patch 7.4.685
4534Problem: When there are illegal utf-8 characters the old regexp engine may
4535 go past the end of a string.
4536Solution: Only advance to the end of the string. (Dominique Pelle)
4537Files: src/regexp.c
4538
4539Patch 7.4.686
4540Problem: "zr" and "zm" do not take a count.
4541Solution: Implement the count, restrict the fold level to the maximum
4542 nesting depth. (Marcin Szamotulski)
4543Files: runtime/doc/fold.txt, src/normal.c
4544
4545Patch 7.4.687
4546Problem: There is no way to use a different in Replace mode for a terminal.
4547Solution: Add t_SR. (Omar Sandoval)
4548Files: runtime/doc/options.txt, runtime/doc/term.txt,
4549 runtime/syntax/vim.vim, src/option.c, src/term.c, src/term.h
4550
4551Patch 7.4.688
4552Problem: When "$" is in 'cpo' the popup menu isn't undrawn correctly.
4553 (Issue 166)
4554Solution: When using the popup menu remove the "$".
4555Files: src/edit.c
4556
4557Patch 7.4.689
4558Problem: On MS-Windows, when 'autochdir' is set, diff mode with files in
4559 different directories does not work. (Axel Bender)
4560Solution: Remember the current directory and use it where needed. (Christian
4561 Brabandt)
4562Files: src/main.c
4563
4564Patch 7.4.690
4565Problem: Memory access errors when changing indent in Ex mode. Also missing
4566 redraw when using CTRL-U. (Knil Ino)
4567Solution: Update pointers after calling ga_grow().
4568Files: src/ex_getln.c
4569
4570Patch 7.4.691 (after 7.4.689)
4571Problem: Can't build with MzScheme.
4572Solution: Change "cwd" into the global variable "start_dir".
4573Files: src/main.c
4574
4575Patch 7.4.692
4576Problem: Defining SOLARIS for no good reason. (Danek Duvall)
4577Solution: Remove it.
4578Files: src/os_unix.h
4579
4580Patch 7.4.693
4581Problem: Session file is not correct when there are multiple tab pages.
4582Solution: Reset the current window number for each tab page. (Jacob Niehus)
4583Files: src/ex_docmd.c
4584
4585Patch 7.4.694
4586Problem: Running tests changes the .viminfo file.
4587Solution: Disable viminfo in the text objects test.
4588Files: src/testdir/test_textobjects.in
4589
4590Patch 7.4.695
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02004591Problem: Out-of-bounds read, detected by Coverity.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02004592Solution: Remember the value of cmap for the first matching encoding. Reset
4593 cmap to that value if first matching encoding is going to be used.
4594 (Eliseo Martínez)
4595Files: src/hardcopy.c
4596
4597Patch 7.4.696
4598Problem: Not freeing memory when encountering an error.
4599Solution: Free the stack before returning. (Eliseo Martínez)
4600Files: src/regexp_nfa.c
4601
4602Patch 7.4.697
4603Problem: The filename used for ":profile" must be given literally.
4604Solution: Expand "~" and environment variables. (Marco Hinz)
4605Files: src/ex_cmds2.c
4606
4607Patch 7.4.698
4608Problem: Various problems with locked and fixed lists and dictionaries.
4609Solution: Disallow changing locked items, fix a crash, add tests. (Olaf
4610 Dabrunz)
4611Files: src/structs.h, src/eval.c, src/testdir/test55.in,
4612 src/testdir/test55.ok
4613
4614Patch 7.4.699
4615Problem: E315 when trying to delete a fold. (Yutao Yuan)
4616Solution: Make sure the fold doesn't go beyond the last buffer line.
4617 (Christian Brabandt)
4618Files: src/fold.c
4619
4620Patch 7.4.700
4621Problem: Fold can't be opened after ":move". (Ein Brown)
4622Solution: Delete the folding information and update it afterwards.
4623 (Christian Brabandt)
4624Files: src/ex_cmds.c, src/fold.c, src/testdir/test45.in,
4625 src/testdir/test45.ok
4626
4627Patch 7.4.701
4628Problem: Compiler warning for using uninitialized variable. (Yasuhiro
4629 Matsumoto)
4630Solution: Initialize it.
4631Files: src/hardcopy.c
4632
4633Patch 7.4.702
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02004634Problem: Joining an empty list does unnecessary work.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02004635Solution: Let join() return early. (Marco Hinz)
4636Files: src/eval.c
4637
4638Patch 7.4.703
4639Problem: Compiler warning for start_dir unused when building unittests.
4640Solution: Move start_dir inside the #ifdef.
4641Files: src/main.c
4642
4643Patch 7.4.704
4644Problem: Searching for a character matches an illegal byte and causes
4645 invalid memory access. (Dominique Pelle)
4646Solution: Do not match an invalid byte when search for a character in a
4647 string. Fix equivalence classes using negative numbers, which
4648 result in illegal bytes.
4649Files: src/misc2.c, src/regexp.c, src/testdir/test44.in
4650
4651Patch 7.4.705
4652Problem: Can't build with Ruby 2.2.
4653Solution: Add #ifdefs to handle the incompatible change. (Andrei Olsen)
4654Files: src/if_ruby.c
4655
4656Patch 7.4.706
4657Problem: Window drawn wrong when 'laststatus' is zero and there is a
4658 command-line window. (Yclept Nemo)
4659Solution: Set the status height a bit later. (Christian Brabandt)
4660Files: src/window.c
4661
4662Patch 7.4.707
4663Problem: Undo files can have their executable bit set.
4664Solution: Strip of the executable bit. (Mikael Berthe)
4665Files: src/undo.c
4666
4667Patch 7.4.708
4668Problem: gettext() is called too often.
4669Solution: Do not call gettext() for messages until they are actually used.
4670 (idea by Yasuhiro Matsumoto)
4671Files: src/eval.c
4672
4673Patch 7.4.709
4674Problem: ":tabmove" does not work as documented.
4675Solution: Make it work consistently. Update documentation and add tests.
4676 (Hirohito Higashi)
4677Files: src/window.c, runtime/doc/tabpage.txt, src/ex_docmd.c,
4678 src/testdir/test62.in, src/testdir/test62.ok
4679
4680Patch 7.4.710
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02004681Problem: It is not possible to make spaces visible in list mode.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02004682Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350)
4683Files: runtime/doc/options.txt, src/globals.h, src/message.h,
4684 src/screen.c, src/testdir/test_listchars.in,
4685 src/testdir/test_listchars.ok, src/testdir/Make_amiga.mak,
4686 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
4687 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
4688 src/testdir/Makefile
4689
4690Patch 7.4.711 (after 7.4.710)
4691Problem: Missing change in one file.
4692Solution: Also change option.c
4693Files: src/option.c
4694
4695Patch 7.4.712 (after 7.4.710)
4696Problem: Missing change in another file.
4697Solution: Also change message.c
4698Files: src/message.c
4699
4700Patch 7.4.713
4701Problem: Wrong condition for #ifdef.
4702Solution: Change USR_EXRC_FILE2 to USR_VIMRC_FILE2. (Mikael Fourrier)
4703Files: src/os_unix.h
4704
4705Patch 7.4.714
4706Problem: Illegal memory access when there are illegal bytes.
4707Solution: Check the byte length of the character. (Dominique Pelle)
4708Files: src/regexp.c
4709
4710Patch 7.4.715
4711Problem: Invalid memory access when there are illegal bytes.
4712Solution: Get the length from the text, not from the character. (Dominique
4713 Pelle)
4714Files: src/regexp_nfa.c
4715
4716Patch 7.4.716
4717Problem: When using the 'c' flag of ":substitute" and selecting "a" or "l"
4718 at the prompt the flags are not remembered for ":&&". (Ingo
4719 Karkat)
4720Solution: Save the flag values and restore them. (Hirohito Higashi)
4721Files: src/ex_cmds.c
4722
4723Patch 7.4.717
4724Problem: ":let list += list" can change a locked list.
4725Solution: Check for the lock earlier. (Olaf Dabrunz)
4726Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok
4727
4728Patch 7.4.718
4729Problem: Autocommands triggered by quickfix cannot get the current title
4730 value.
4731Solution: Set w:quickfix_title earlier. (Yannick)
4732 Also move the check for a title into the function.
4733Files: src/quickfix.c
4734
4735Patch 7.4.719
4736Problem: Overflow when adding MAXCOL to a pointer.
4737Solution: Subtract pointers instead. (James McCoy)
4738Files: src/screen.c
4739
4740Patch 7.4.720
4741Problem: Can't build with Visual Studio 2015.
4742Solution: Recognize the "version 14" numbers and omit /nodefaultlib when
4743 appropriate. (Paul Moore)
4744Files: src/Make_mvc.mak
4745
4746Patch 7.4.721
4747Problem: When 'list' is set Visual mode does not highlight anything in
4748 empty lines. (mgaleski)
4749Solution: Check the value of lcs_eol in another place. (Christian Brabandt)
4750Files: src/screen.c
4751
4752Patch 7.4.722
4753Problem: 0x202f is not recognized as a non-breaking space character.
4754Solution: Add 0x202f to the list. (Christian Brabandt)
4755Files: runtime/doc/options.txt, src/message.c, src/screen.c
4756
4757Patch 7.4.723
4758Problem: For indenting, finding the C++ baseclass can be slow.
4759Solution: Cache the result. (Hirohito Higashi)
4760Files: src/misc1.c
4761
4762Patch 7.4.724
4763Problem: Vim icon does not show in Windows context menu. (issue 249)
4764Solution: Load the icon in GvimExt.
4765Files: src/GvimExt/gvimext.cpp, src/GvimExt/gvimext.h
4766
4767Patch 7.4.725
4768Problem: ":call setreg('"', [])" reports an internal error.
4769Solution: Make the register empty. (Yasuhiro Matsumoto)
4770Files: src/ops.c
4771
4772Patch 7.4.726 (after 7.4.724)
4773Problem: Cannot build GvimExt.
4774Solution: Set APPVER to 5.0. (KF Leong)
4775Files: src/GvimExt/Makefile
4776
4777Patch 7.4.727 (after 7.4.724)
4778Problem: Cannot build GvimExt with MingW.
4779Solution: Add -lgdi32. (KF Leong)
4780Files: src/GvimExt/Make_ming.mak
4781
4782Patch 7.4.728
4783Problem: Can't build with some version of Visual Studio 2015.
4784Solution: Recognize another version 14 number. (Sinan)
4785Files: src/Make_mvc.mak
4786
4787Patch 7.4.729 (after 7.4.721)
4788Problem: Occasional crash with 'list' set.
4789Solution: Fix off-by-one error. (Christian Brabandt)
4790Files: src/screen.c
4791
4792Patch 7.4.730
4793Problem: When setting the crypt key and using a swap file, text may be
4794 encrypted twice or unencrypted text remains in the swap file.
4795 (Issue 369)
4796Solution: Call ml_preserve() before re-encrypting. Set correct index for
4797 next pointer block.
4798Files: src/memfile.c, src/memline.c, src/proto/memline.pro, src/option.c
4799
4800Patch 7.4.731
4801Problem: The tab menu shows "Close tab" even when it doesn't work.
4802Solution: Don't show "Close tab" for the last tab. (John Marriott)
4803Files: src/gui_w48.c, src/gui_gtk_x11.c, src/gui_mac.c, src/gui_motif.c
4804
4805Patch 7.4.732
4806Problem: The cursor line is not always updated for the "O" command.
4807Solution: Reset the VALID_CROW flag. (Christian Brabandt)
4808Files: src/normal.c
4809
4810Patch 7.4.733
4811Problem: test_listchars breaks on MS-Windows. (Kenichi Ito)
4812Solution: Set fileformat to "unix". (Christian Brabandt)
4813Files: src/testdir/test_listchars.in
4814
4815Patch 7.4.734
4816Problem: ml_get error when using "p" in a Visual selection in the last
4817 line.
4818Solution: Change the behavior at the last line. (Yukihiro Nakadaira)
4819Files: src/normal.c, src/ops.c, src/testdir/test94.in,
4820 src/testdir/test94.ok
4821
4822Patch 7.4.735
4823Problem: Wrong argument for sizeof().
4824Solution: Use a pointer argument. (Chris Hall)
4825Files: src/eval.c
4826
4827Patch 7.4.736
4828Problem: Invalid memory access.
4829Solution: Avoid going over the end of a NUL terminated string. (Dominique
4830 Pelle)
4831Files: src/regexp.c
4832
4833Patch 7.4.737
4834Problem: On MS-Windows vimgrep over arglist doesn't work (Issue 361)
4835Solution: Only escape backslashes in ## expansion when it is not used as the
4836 path separator. (James McCoy)
4837Files: src/ex_docmd.c
4838
4839Patch 7.4.738 (after 7.4.732)
4840Problem: Can't compile without the syntax highlighting feature.
4841Solution: Add #ifdef around use of w_p_cul. (Hirohito Higashi)
4842Files: src/normal.c, src/screen.c
4843
4844Patch 7.4.739
4845Problem: In a string "\U" only takes 4 digits, while after CTRL-V U eight
4846 digits can be used.
4847Solution: Make "\U" also take eight digits. (Christian Brabandt)
4848Files: src/eval.c
4849
4850Patch 7.4.740
4851Problem: ":1quit" works like ":.quit". (Bohr Shaw)
4852Solution: Don't exit Vim when a range is specified. (Christian Brabandt)
4853Files: src/ex_docmd.c, src/testdir/test13.in, src/testdir/test13.ok
4854
4855Patch 7.4.741
4856Problem: When using += with ":set" a trailing comma is not recognized.
4857 (Issue 365)
4858Solution: Don't add a second comma. Add a test. (partly by Christian
4859 Brabandt)
4860Files: src/option.c, src/testdir/test_set.in, src/testdir/test_set.ok,
4861 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
4862 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
4863 src/testdir/Make_vms.mms, src/testdir/Makefile
4864
4865Patch 7.4.742
4866Problem: Cannot specify a vertical split when loading a buffer for a
4867 quickfix command.
4868Solution: Add the "vsplit" value to 'switchbuf'. (Brook Hong)
4869Files: runtime/doc/options.txt, src/buffer.c, src/option.h
4870
4871Patch 7.4.743
4872Problem: "p" in Visual mode causes an unexpected line split.
4873Solution: Advance the cursor first. (Yukihiro Nakadaira)
4874Files: src/ops.c, src/testdir/test94.in, src/testdir/test94.ok
4875
4876Patch 7.4.744
4877Problem: No tests for Ruby and Perl.
4878Solution: Add minimal tests. (Ken Takata)
4879Files: src/testdir/test_perl.in, src/testdir/test_perl.ok,
4880 src/testdir/test_ruby.in, src/testdir/test_ruby.ok,
4881 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
4882 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
4883 src/testdir/Make_vms.mms, src/testdir/Makefile
4884
4885Patch 7.4.745
4886Problem: The entries added by matchaddpos() are returned by getmatches()
4887 but can't be set with setmatches(). (Lcd)
4888Solution: Fix setmatches(). (Christian Brabandt)
4889Files: src/eval.c, src/testdir/test63.in, src/testdir/test63.ok
4890
4891Patch 7.4.746
4892Problem: ":[count]tag" is not always working. (cs86661)
4893Solution: Set cur_match a bit later. (Hirohito Higashi)
4894Files: src/tag.c,
4895
4896Patch 7.4.747
4897Problem: ":cnext" may jump to the wrong column when setting
4898 'virtualedit=all' (cs86661)
4899Solution: Reset the coladd field. (Hirohito Higashi)
4900Files: src/quickfix.c
4901
4902Patch 7.4.748 (after 7.4.745)
4903Problem: Buffer overflow.
4904Solution: Make the buffer larger. (Kazunobu Kuriyama)
4905Files: src/eval.c
4906
4907Patch 7.4.749 (after 7.4.741)
4908Problem: For some options two consecutive commas are OK. (Nikolay Pavlov)
4909Solution: Add the P_ONECOMMA flag.
4910Files: src/option.c
4911
4912Patch 7.4.750
4913Problem: Cannot build with clang 3.5 on Cygwin with perl enabled.
4914Solution: Strip "-fdebug-prefix-map" in configure. (Ken Takata)
4915Files: src/configure.in, src/auto/configure
4916
4917Patch 7.4.751
4918Problem: It is not obvious how to enable the address sanitizer.
4919Solution: Add commented-out flags in the Makefile. (Dominique Pelle)
4920 Also add missing test targets.
4921Files: src/Makefile
4922
4923Patch 7.4.752
4924Problem: Unicode 8.0 not supported.
4925Solution: Update tables for Unicode 8.0. Avoid E36 when running the script.
4926 (James McCoy)
4927Files: runtime/tools/unicode.vim, src/mbyte.c
4928
4929Patch 7.4.753
4930Problem: Appending in Visual mode with 'linebreak' set does not work
4931 properly. Also when 'selection' is "exclusive". (Ingo Karkat)
4932Solution: Recalculate virtual columns. (Christian Brabandt)
4933Files: src/normal.c, src/testdir/test_listlbr.in,
4934 src/testdir/test_listlbr.ok, src/testdir/test_listlbr_utf8.in,
4935 src/testdir/test_listlbr_utf8.ok
4936
4937Patch 7.4.754
4938Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson)
4939Solution: Make it increment all numbers in the Visual area. (Christian
4940 Brabandt)
4941Files: runtime/doc/change.txt, src/normal.c, src/ops.c,
4942 src/proto/ops.pro, src/testdir/Make_amiga.mak,
4943 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
4944 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
4945 src/testdir/Makefile, src/testdir/test_increment.in,
4946 src/testdir/test_increment.ok
4947
4948Patch 7.4.755
4949Problem: It is not easy to count the number of characters.
4950Solution: Add the skipcc argument to strchars(). (Hirohito Higashi, Ken
4951 Takata)
4952Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_utf8.in,
4953 src/testdir/test_utf8.ok
4954
4955Patch 7.4.756
4956Problem: Can't use strawberry Perl 5.22 x64 on MS-Windows.
4957Solution: Add new defines and #if. (Ken Takata)
4958Files: src/Make_cyg_ming.mak, src/Make_mvc.mak, src/if_perl.xs
4959
4960Patch 7.4.757
4961Problem: Cannot detect the background color of a terminal.
4962Solution: Add T_RBG to request the background color if possible. (Lubomir
4963 Rintel)
4964Files: src/main.c, src/term.c, src/term.h, src/proto/term.pro
4965
4966Patch 7.4.758
4967Problem: When 'conceallevel' is 1 and quitting the command-line window with
4968 CTRL-C the first character ':' is erased.
4969Solution: Reset 'conceallevel' in the command-line window. (Hirohito
4970 Higashi)
4971Files: src/ex_getln.c
4972
4973Patch 7.4.759
4974Problem: Building with Lua 5.3 doesn't work, symbols have changed.
4975Solution: Use the new names for the new version. (Felix Schnizlein)
4976Files: src/if_lua.c
4977
4978Patch 7.4.760
4979Problem: Spelling mistakes are not displayed after ":syn spell".
4980Solution: Force a redraw after ":syn spell" command. (Christian Brabandt)
4981Files: src/syntax.c
4982
4983Patch 7.4.761 (after 7.4.757)
4984Problem: The request-background termcode implementation is incomplete.
4985Solution: Add the missing pieces.
4986Files: src/option.c, src/term.c
4987
4988Patch 7.4.762 (after 7.4.757)
4989Problem: Comment for may_req_bg_color() is wrong. (Christ van Willegen)
4990Solution: Rewrite the comment.
4991Files: src/term.c
4992
4993Patch 7.4.763 (after 7.4.759)
4994Problem: Building with Lua 5.1 doesn't work.
4995Solution: Define lua_replace and lua_remove. (KF Leong)
4996Files: src/if_lua.c
4997
4998Patch 7.4.764 (after 7.4.754)
4999Problem: test_increment fails on MS-Windows. (Ken Takata)
5000Solution: Clear Visual mappings. (Taro Muraoka)
5001Files: src/testdir/test_increment.in
5002
5003Patch 7.4.765 (after 7.4.754)
5004Problem: CTRL-A and CTRL-X in Visual mode do not always work well.
5005Solution: Improvements for increment and decrement. (Christian Brabandt)
5006Files: src/normal.c, src/ops.c, src/testdir/test_increment.in,
5007 src/testdir/test_increment.ok
5008
5009Patch 7.4.766 (after 7.4.757)
5010Problem: Background color check does not work on Tera Term.
5011Solution: Also recognize ST as a termination character. (Hirohito Higashi)
5012Files: src/term.c
5013
5014Patch 7.4.767
5015Problem: --remote-tab-silent can fail on MS-Windows.
5016Solution: Use single quotes to avoid problems with backslashes. (Idea by
5017 Weiyong Mao)
5018Files: src/main.c
5019
5020Patch 7.4.768
5021Problem: :diffoff only works properly once.
5022Solution: Also make :diffoff work when used a second time. (Olaf Dabrunz)
5023Files: src/diff.c
5024
5025Patch 7.4.769 (after 7.4 768)
5026Problem: Behavior of :diffoff is not tested.
5027Solution: Add a bit of testing. (Olaf Dabrunz)
5028Files: src/testdir/test47.in, src/testdir/test47.ok
5029
5030Patch 7.4.770 (after 7.4.766)
5031Problem: Background color response with transparency is not ignored.
5032Solution: Change the way escape sequences are recognized. (partly by
5033 Hirohito Higashi)
5034Files: src/ascii.h, src/term.c
5035
5036Patch 7.4.771
5037Problem: Search does not handle multi-byte character at the start position
5038 correctly.
5039Solution: Take byte size of character into account. (Yukihiro Nakadaira)
5040Files: src/search.c, src/testdir/Make_amiga.mak,
5041 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
5042 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
5043 src/testdir/Makefile, src/testdir/test_search_mbyte.in,
5044 src/testdir/test_search_mbyte.ok
5045
5046Patch 7.4.772
5047Problem: Racket 6.2 is not supported on MS-Windows.
5048Solution: Check for the "racket" subdirectory. (Weiyong Mao)
5049Files: src/Make_mvc.mak, src/if_mzsch.c
5050
5051Patch 7.4.773
5052Problem: 'langmap' is used in command-line mode when checking for mappings.
5053 Issue 376.
5054Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez)
5055Files: src/getchar.c, src/testdir/test_mapping.in,
5056 src/testdir/test_mapping.ok
5057
5058Patch 7.4.774
5059Problem: When using the CompleteDone autocommand event it's difficult to
5060 get to the completed items.
5061Solution: Add the v:completed_items variable. (Shougo Matsu)
5062Files: runtime/doc/autocmd.txt, runtime/doc/eval.txt, src/edit.c,
5063 src/eval.c, src/macros.h, src/proto/eval.pro, src/vim.h
5064
5065Patch 7.4.775
5066Problem: It is not possible to avoid using the first item of completion.
5067Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo
5068 Matsu)
5069Files: runtime/doc/options.txt, src/edit.c, src/option.c
5070
5071Patch 7.4.776
5072Problem: Equivalence class for 'd' does not work correctly.
5073Solution: Fix 0x1e0f and 0x1d0b. (Dominique Pelle)
5074Files: src/regexp.c, src/regexp_nfa.c
5075
5076Patch 7.4.777
5077Problem: The README file doesn't look nice on github.
5078Solution: Add a markdown version of the README file.
5079Files: Filelist, README.md
5080
5081Patch 7.4.778
5082Problem: Coverity warns for uninitialized variable.
5083Solution: Change condition of assignment.
5084Files: src/ops.c
5085
5086Patch 7.4.779
5087Problem: Using CTRL-A in a line without a number moves the cursor. May
5088 cause a crash when at the start of the line. (Urtica Dioica)
5089Solution: Do not move the cursor if no number was changed.
5090Files: src/ops.c
5091
5092Patch 7.4.780
5093Problem: Compiler complains about uninitialized variable and clobbered
5094 variables.
5095Solution: Add Initialization. Make variables static.
5096Files: src/ops.c, src/main.c
5097
5098Patch 7.4.781
5099Problem: line2byte() returns one less when 'bin' and 'noeol' are set.
5100Solution: Only adjust the size for the last line. (Rob Wu)
5101Files: src/memline.c
5102
5103Patch 7.4.782
5104Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode.
5105Solution: Fix the reported problems. (Christian Brabandt)
5106Files: src/charset.c, src/eval.c, src/ex_cmds.c, src/ex_getln.c,
5107 src/misc2.c, src/normal.c, src/ops.c, src/option.c,
5108 src/proto/charset.pro, src/testdir/test_increment.in,
5109 src/testdir/test_increment.ok
5110
5111Patch 7.4.783
5112Problem: copy_chars() and copy_spaces() are inefficient.
5113Solution: Use memset() instead. (Dominique Pelle)
5114Files: src/ex_getln.c, src/misc2.c, src/ops.c, src/proto/misc2.pro,
5115 src/screen.c
5116
5117Patch 7.4.784
5118Problem: Using both "noinsert" and "noselect" in 'completeopt' does not
5119 work properly.
5120Solution: Change the ins_complete() calls. (Ozaki Kiichi)
5121Files: src/edit.c
5122
5123Patch 7.4.785
5124Problem: On some systems automatically adding the missing EOL causes
5125 problems. Setting 'binary' has too many side effects.
5126Solution: Add the 'fixeol' option, default on. (Pavel Samarkin)
5127Files: src/buffer.c, src/fileio.c, src/memline.c, src/netbeans.c,
5128 src/ops.c, src/option.c, src/option.h, src/os_unix.c,
5129 src/os_win32.c, src/structs.h, src/testdir/Make_amiga.mak,
5130 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
5131 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
5132 src/testdir/Makefile, src/testdir/test_fixeol.in,
5133 src/testdir/test_fixeol.ok, runtime/doc/options.txt,
5134 runtime/optwin.vim
5135
5136Patch 7.4.786
5137Problem: It is not possible for a plugin to adjust to a changed setting.
5138Solution: Add the OptionSet autocommand event. (Christian Brabandt)
5139Files: runtime/doc/autocmd.txt, runtime/doc/eval.txt, src/eval.c,
5140 src/fileio.c, src/option.c, src/proto/eval.pro,
5141 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
5142 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
5143 src/testdir/Make_vms.mms, src/testdir/Makefile,
5144 src/testdir/test_autocmd_option.in,
5145 src/testdir/test_autocmd_option.ok, src/vim.h
5146
5147Patch 7.4.787 (after 7.4.786)
5148Problem: snprintf() isn't available everywhere.
5149Solution: Use vim_snprintf(). (Ken Takata)
5150Files: src/option.c
5151
5152Patch 7.4.788 (after 7.4.787)
5153Problem: Can't build without the crypt feature. (John Marriott)
5154Solution: Add #ifdef's.
5155Files: src/option.c
5156
5157Patch 7.4.789 (after 7.4.788)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02005158Problem: Using freed memory and crash. (Dominique Pelle)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02005159Solution: Correct use of pointers. (Hirohito Higashi)
5160Files: src/option.c
5161
5162Patch 7.4.790 (after 7.4.786)
5163Problem: Test fails when the autochdir feature is not available. Test
5164 output contains the test script.
5165Solution: Check for the autochdir feature. (Kazunobu Kuriyama) Only write
5166 the relevant test output.
5167Files: src/testdir/test_autocmd_option.in,
5168 src/testdir/test_autocmd_option.ok
5169
5170Patch 7.4.791
5171Problem: The buffer list can be very long.
5172Solution: Add an argument to ":ls" to specify the type of buffer to list.
5173 (Marcin Szamotulski)
5174Files: runtime/doc/windows.txt, src/buffer.c, src/ex_cmds.h
5175
5176Patch 7.4.792
5177Problem: Can only conceal text by defining syntax items.
5178Solution: Use matchadd() to define concealing. (Christian Brabandt)
5179Files: runtime/doc/eval.txt, src/eval.c, src/ex_docmd.c,
5180 src/proto/window.pro, src/screen.c, src/structs.h,
5181 src/testdir/Make_amiga.mak,
5182 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
5183 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
5184 src/testdir/Makefile, src/testdir/test_match_conceal.in,
5185 src/testdir/test_match_conceal.ok, src/window.c
5186
5187Patch 7.4.793
5188Problem: Can't specify when not to ring the bell.
5189Solution: Add the 'belloff' option. (Christian Brabandt)
5190Files: runtime/doc/options.txt, src/edit.c, src/ex_getln.c,
5191 src/hangulin.c, src/if_lua.c, src/if_mzsch.c, src/if_tcl.c,
5192 src/message.c, src/misc1.c, src/normal.c, src/option.c,
5193 src/option.h, src/proto/misc1.pro, src/search.c, src/spell.c
5194
5195Patch 7.4.794
5196Problem: Visual Studio 2015 is not recognized.
5197Solution: Add the version numbers to the makefile. (Taro Muraoka)
5198Files: src/Make_mvc.mak
5199
5200Patch 7.4.795
5201Problem: The 'fixeol' option is not copied to a new window.
5202Solution: Copy the option value. (Yasuhiro Matsumoto)
5203Files: src/option.c
5204
5205Patch 7.4.796
5206Problem: Warning from 64 bit compiler.
5207Solution: Add type cast. (Mike Williams)
5208Files: src/ops.c
5209
5210Patch 7.4.797
5211Problem: Crash when using more lines for the command line than
5212 'maxcombine'.
5213Solution: Use the correct array index. Also, do not try redrawing when
5214 exiting. And use screen_Columns instead of Columns.
5215Files: src/screen.c
5216
5217Patch 7.4.798 (after 7.4.753)
5218Problem: Repeating a change in Visual mode does not work as expected.
5219 (Urtica Dioica)
5220Solution: Make redo in Visual mode work better. (Christian Brabandt)
5221Files: src/normal.c, src/testdir/test_listlbr.in,
5222 src/testdir/test_listlbr.ok
5223
5224Patch 7.4.799
5225Problem: Accessing memory before an allocated block.
5226Solution: Check for not going before the start of a pattern. (Dominique
5227 Pelle)
5228Files: src/fileio.c
5229
5230Patch 7.4.800
5231Problem: Using freed memory when triggering CmdUndefined autocommands.
5232Solution: Set pointer to NULL. (Dominique Pelle)
5233Files: src/ex_docmd.c
5234
5235Patch 7.4.801 (after 7.4.769)
5236Problem: Test for ":diffoff" doesn't catch all potential problems.
5237Solution: Add a :diffthis and a :diffoff command. (Olaf Dabrunz)
5238Files: src/testdir/test47.in
5239
5240Patch 7.4.802
5241Problem: Using "A" in Visual mode while 'linebreak' is set is not tested.
5242Solution: Add a test for this, verifies the problem is fixed. (Ingo Karkat)
5243Files: src/testdir/test39.in, src/testdir/test39.ok
5244
5245Patch 7.4.803
5246Problem: C indent does not support C11 raw strings. (Mark Lodato)
5247Solution: Do not change indent inside the raw string.
5248Files: src/search.c, src/misc1.c, src/edit.c, src/ops.c,
5249 src/testdir/test3.in, src/testdir/test3.ok
5250
5251Patch 7.4.804
5252Problem: Xxd doesn't have a license notice.
5253Solution: Add license as indicated by Juergen.
5254Files: src/xxd/xxd.c
5255
5256Patch 7.4.805
5257Problem: The ruler shows "Bot" even when there are only filler lines
5258 missing. (Gary Johnson)
5259Solution: Use "All" when the first line and one filler line are visible.
5260Files: src/buffer.c
5261
5262Patch 7.4.806
5263Problem: CTRL-A in Visual mode doesn't work properly with "alpha" in
Bram Moolenaar09521312016-08-12 22:54:35 +02005264 'nrformats'.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02005265Solution: Make it work. (Christian Brabandt)
5266Files: src/ops.c, src/testdir/test_increment.in,
5267 src/testdir/test_increment.ok
5268
5269Patch 7.4.807 (after 7.4.798)
5270Problem: After CTRL-V CTRL-A mode isn't updated. (Hirohito Higashi)
5271Solution: Clear the command line or update the displayed command.
5272Files: src/normal.c
5273
5274Patch 7.4.808
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02005275Problem: On MS-Windows 8 IME input doesn't work correctly.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02005276Solution: Read console input before calling MsgWaitForMultipleObjects().
5277 (vim-jp, Nobuhiro Takasaki)
5278Files: src/os_win32.c
5279
5280Patch 7.4.809 (after 7.4.802)
5281Problem: Test is duplicated.
5282Solution: Roll back 7.4.802.
5283Files: src/testdir/test39.in, src/testdir/test39.ok
5284
5285Patch 7.4.810
5286Problem: With a sequence of commands using buffers in diff mode E749 is
5287 given. (itchyny)
5288Solution: Skip unloaded buffer. (Hirohito Higashi)
5289Files: src/diff.c
5290
5291Patch 7.4.811
5292Problem: Invalid memory access when using "exe 'sc'".
5293Solution: Avoid going over the end of the string. (Dominique Pelle)
5294Files: src/ex_docmd.c
5295
5296Patch 7.4.812
5297Problem: Gcc sanitizer complains about using a NULL pointer to memmove().
5298Solution: Only call memmove when there is something to move. (Vittorio
5299 Zecca)
5300Files: src/memline.c
5301
5302Patch 7.4.813
5303Problem: It is not possible to save and restore character search state.
5304Solution: Add getcharsearch() and setcharsearch(). (James McCoy)
5305Files: runtime/doc/eval.txt, src/eval.c, src/proto/search.pro,
5306 src/search.c, src/testdir/test_charsearch.in,
5307 src/testdir/test_charsearch.ok, src/testdir/Makefile,
5308 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
5309 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
5310 src/testdir/Make_vms.mms
5311
5312Patch 7.4.814
5313Problem: Illegal memory access with "sy match a fold".
5314Solution: Check for empty string. (Dominique Pelle)
5315Files: src/syntax.c
5316
5317Patch 7.4.815
5318Problem: Invalid memory access when doing ":call g:".
5319Solution: Check for an empty name. (Dominique Pelle)
5320Files: src/eval.c
5321
5322Patch 7.4.816
5323Problem: Invalid memory access when doing ":fun X(".
5324Solution: Check for missing ')'. (Dominique Pelle)
5325Files: src/eval.c
5326
5327Patch 7.4.817
5328Problem: Invalid memory access in file_pat_to_reg_pat().
5329Solution: Use vim_isspace() instead of checking for a space only. (Dominique
5330 Pelle)
5331Files: src/fileio.c
5332
5333Patch 7.4.818
5334Problem: 'linebreak' breaks c% if the last Visual selection was block.
5335 (Chris Morganiser, Issue 389)
5336Solution: Handle Visual block mode differently. (Christian Brabandt)
5337Files: src/normal.c, src/testdir/test_listlbr.in,
5338 src/testdir/test_listlbr.ok
5339
5340Patch 7.4.819
5341Problem: Beeping when running the tests.
5342Solution: Fix 41 beeps. (Roland Eggner)
5343Files: src/testdir/test17.in, src/testdir/test29.in,
5344 src/testdir/test4.in, src/testdir/test61.in,
5345 src/testdir/test82.in, src/testdir/test83.in,
5346 src/testdir/test90.in, src/testdir/test95.in,
5347 src/testdir/test_autoformat_join.in
5348
5349Patch 7.4.820
5350Problem: Invalid memory access in file_pat_to_reg_pat.
5351Solution: Avoid looking before the start of a string. (Dominique Pelle)
5352Files: src/fileio.c
5353
5354Patch 7.4.821
5355Problem: Coverity reports a few problems.
5356Solution: Avoid the warnings. (Christian Brabandt)
5357Files: src/ex_docmd.c, src/option.c, src/screen.c
5358
5359Patch 7.4.822
5360Problem: More problems reported by coverity.
5361Solution: Avoid the warnings. (Christian Brabandt)
5362Files: src/os_unix.c, src/eval.c, src/ex_cmds.c, src/ex_cmds2.c,
5363 src/ex_getln.c, src/fold.c, src/gui.c, src/gui_w16.c,
5364 src/gui_w32.c, src/if_cscope.c, src/if_xcmdsrv.c, src/move.c,
5365 src/normal.c, src/regexp.c, src/syntax.c, src/ui.c, src/window.c
5366
5367Patch 7.4.823
5368Problem: Cursor moves after CTRL-A on alphabetic character.
5369Solution: (Hirohito Higashi, test by Christian Brabandt)
5370Files: src/testdir/test_increment.in, src/testdir/test_increment.ok,
5371 src/ops.c
5372
5373Patch 7.4.824 (after 7.4.813)
5374Problem: Can't compile without the multi-byte feature. (John Marriott)
5375Solution: Add #ifdef.
5376Files: src/eval.c
5377
5378Patch 7.4.825
5379Problem: Invalid memory access for ":syn keyword x a[".
5380Solution: Do not skip over the NUL. (Dominique Pelle)
5381Files: src/syntax.c
5382
5383Patch 7.4.826
5384Problem: Compiler warnings and errors.
5385Solution: Make it build properly without the multi-byte feature.
5386Files: src/eval.c, src/search.c
5387
5388Patch 7.4.827
5389Problem: Not all test targets are in the Makefile.
5390Solution: Add the missing targets.
5391Files: src/Makefile
5392
5393Patch 7.4.828
5394Problem: Crash when using "syn keyword x c". (Dominique Pelle)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02005395Solution: Initialize the keyword table. (Raymond Ko, PR 397)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02005396Files: src/syntax.c
5397
5398Patch 7.4.829
5399Problem: Crash when clicking in beval balloon. (Travis Lebsock)
5400Solution: Use PostMessage() instead of DestroyWindow(). (Raymond Ko, PR 298)
5401Files: src/gui_w32.c
5402
5403Patch 7.4.830
5404Problem: Resetting 'encoding' when doing ":set all&" causes problems.
5405 (Bjorn Linse) Display is not updated.
5406Solution: Do not reset 'encoding'. Do a full redraw.
5407Files: src/option.c
5408
5409Patch 7.4.831
5410Problem: When expanding `=expr` on the command line and encountering an
5411 error, the command is executed anyway.
5412Solution: Bail out when an error is detected.
5413Files: src/misc1.c
5414
5415Patch 7.4.832
5416Problem: $HOME in `=$HOME . '/.vimrc'` is expanded too early.
5417Solution: Skip over `=expr` when expanding environment names.
5418Files: src/misc1.c
5419
5420Patch 7.4.833
5421Problem: More side effects of ":set all&" are missing. (Björn Linse)
5422Solution: Call didset_options() and add didset_options2() to collect more
5423 side effects to take care of. Still not everything...
5424Files: src/option.c
5425
5426Patch 7.4.834
5427Problem: gettabvar() doesn't work after Vim start. (Szymon Wrozynski)
5428Solution: Handle first window in tab still being NULL. (Christian Brabandt)
5429Files: src/eval.c, src/testdir/test91.in, src/testdir/test91.ok
5430
5431Patch 7.4.835
5432Problem: Comparing utf-8 sequences does not handle different byte sizes
5433 correctly.
5434Solution: Get the byte size of each character. (Dominique Pelle)
5435Files: src/misc2.c
5436
5437Patch 7.4.836
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02005438Problem: Accessing uninitialized memory.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02005439Solution: Add missing calls to init_tv(). (Dominique Pelle)
5440Files: src/eval.c
5441
5442Patch 7.4.837
5443Problem: Compiler warning with MSVC compiler when using +sniff.
5444Solution: Use Sleep() instead of _sleep(). (Tux)
5445Files: src/if_sniff.c
5446
5447Patch 7.4.838 (after 7.4.833)
5448Problem: Can't compile without the crypt feature. (John Marriott)
5449Solution: Add #ifdef.
5450Files: src/option.c
5451
5452Patch 7.4.839
5453Problem: Compiler warning on 64-bit system.
5454Solution: Add cast to int. (Mike Williams)
5455Files: src/search.c
5456
5457Patch 7.4.840 (after 7.4.829)
5458Problem: Tooltip window stays open.
5459Solution: Send a WM_CLOSE message. (Jurgen Kramer)
5460Files: src/gui_w32.c
5461
5462Patch 7.4.841
5463Problem: Can't compile without the multi-byte feature. (John Marriott)
5464Solution: Add more #ifdef's.
5465Files: src/option.c
5466
5467Patch 7.4.842 (after 7.4.840)
5468Problem: Sending too many messages to close the balloon.
5469Solution: Only send a WM_CLOSE message. (Jurgen Kramer)
5470Files: src/gui_w32.c
5471
5472Patch 7.4.843 (after 7.4.835)
5473Problem: Still possible to go beyond the end of a string.
5474Solution: Check for NUL also in second string. (Dominique Pelle)
5475Files: src/misc2.c
5476
5477Patch 7.4.844
5478Problem: When '#' is in 'isident' the is# comparator doesn't work.
5479Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto)
5480Files: src/eval.c, src/testdir/test_comparators.in,
5481 src/testdir/test_comparators.ok, src/testdir/Makefile,
5482 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
5483 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
5484 src/testdir/Make_vms.mms
5485
5486Patch 7.4.845
5487Problem: Compiler warning for possible loss of data.
5488Solution: Add a type cast. (Erich Ritz)
5489Files: src/misc1.c
5490
5491Patch 7.4.846
5492Problem: Some GitHub users don't know how to use issues.
5493Solution: Add a file that explains the basics of contributing.
5494Files: Filelist, CONTRIBUTING.md
5495
5496Patch 7.4.847
5497Problem: "vi)d" may leave a character behind.
5498Solution: Skip over multi-byte character. (Christian Brabandt)
5499Files: src/search.c
5500
5501Patch 7.4.848
5502Problem: CTRL-A on hex number in Visual block mode is incorrect.
5503Solution: Account for the "0x". (Hirohito Higashi)
5504Files: src/charset.c, src/testdir/test_increment.in,
5505 src/testdir/test_increment.ok
5506
5507Patch 7.4.849
5508Problem: Moving the cursor in Insert mode starts new undo sequence.
5509Solution: Add CTRL-G U to keep the undo sequence for the following cursor
5510 movement command. (Christian Brabandt)
5511Files: runtime/doc/insert.txt, src/edit.c, src/testdir/test_mapping.in,
5512 src/testdir/test_mapping.ok
5513
5514Patch 7.4.850 (after 7.4.846)
5515Problem: <Esc> does not show up.
5516Solution: Use &gt; and &lt;. (Kazunobu Kuriyama)
5517Files: CONTRIBUTING.md
5518
5519Patch 7.4.851
5520Problem: Saving and restoring the console buffer does not work properly.
5521Solution: Instead of ReadConsoleOutputA/WriteConsoleOutputA use
5522 CreateConsoleScreenBuffer and SetConsoleActiveScreenBuffer.
5523 (Ken Takata)
5524Files: src/os_win32.c
5525
5526Patch 7.4.852
5527Problem: On MS-Windows console Vim uses ANSI APIs for keyboard input and
5528 console output, it cannot input/output Unicode characters.
5529Solution: Use Unicode APIs for console I/O. (Ken Takata, Yasuhiro Matsumoto)
5530Files: src/os_win32.c, src/ui.c, runtime/doc/options.txt
5531
5532Patch 7.4.853
5533Problem: "zt" in diff mode does not always work properly. (Gary Johnson)
5534Solution: Don't count filler lines twice. (Christian Brabandt)
5535Files: src/move.c
5536
5537Patch 7.4.854 (after 7.4.850)
5538Problem: Missing information about runtime files.
5539Solution: Add section about runtime files. (Christian Brabandt)
5540Files: CONTRIBUTING.md
5541
5542Patch 7.4.855
5543Problem: GTK: font glitches for combining characters
5544Solution: Use pango_shape_full() instead of pango_shape(). (luchr, PR #393)
5545Files: src/gui_gtk_x11.c
5546
5547Patch 7.4.856
5548Problem: "zt" still doesn't work well with filler lines. (Gary Johnson)
5549Solution: Check for filler lines above the cursor. (Christian Brabandt)
5550Files: src/move.c
5551
5552Patch 7.4.857
5553Problem: Dragging the current tab with the mouse doesn't work properly.
5554Solution: Take the current tabpage index into account. (Hirohito Higashi)
5555Files: src/normal.c
5556
5557Patch 7.4.858
5558Problem: It's a bit clumsy to execute a command on a list of matches.
5559Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan
5560 Lakshmanan)
5561Files: runtime/doc/cmdline.txt, runtime/doc/editing.txt,
5562 runtime/doc/index.txt, runtime/doc/quickfix.txt,
5563 runtime/doc/tabpage.txt, runtime/doc/windows.txt, src/ex_cmds.h,
5564 src/ex_cmds2.c, src/ex_docmd.c, src/proto/quickfix.pro,
5565 src/quickfix.c, src/testdir/Make_amiga.mak,
5566 src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
5567 src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
5568 src/testdir/Makefile, src/testdir/test_cdo.in,
5569 src/testdir/test_cdo.ok
5570
5571Patch 7.4.859
5572Problem: Vim doesn't recognize all htmldjango files.
5573Solution: Recognize a comment. (Daniel Hahler, PR #410)
5574Files: runtime/filetype.vim
5575
5576Patch 7.4.860
5577Problem: Filetype detection is outdated.
5578Solution: Include all recent and not-so-recent changes.
5579Files: runtime/filetype.vim
5580
5581Patch 7.4.861 (after 7.4.855)
5582Problem: pango_shape_full() is not always available.
5583Solution: Add a configure check.
5584Files: src/configure.in, src/auto/configure, src/config.h.in,
5585 src/gui_gtk_x11.c
5586
5587Patch 7.4.862 (after 7.4.861)
5588Problem: Still problems with pango_shape_full() not available.
5589Solution: Change AC_TRY_COMPILE to AC_TRY_LINK.
5590Files: src/configure.in, src/auto/configure
5591
5592Patch 7.4.863 (after 7.4.856)
5593Problem: plines_nofill() used without the diff feature.
5594Solution: Define PLINES_NOFILL().
5595Files: src/macros.h, src/move.c
5596
5597Patch 7.4.864 (after 7.4.858)
5598Problem: Tiny build fails.
5599Solution: Put qf_ items inside #ifdef.
5600Files: src/ex_docmd.c
5601
5602Patch 7.4.865
5603Problem: Compiler warning for uninitialized variable.
5604Solution: Initialize.
5605Files: src/ex_cmds2.c
5606
5607Patch 7.4.866
5608Problem: Crash when changing the 'tags' option from a remote command.
5609 (Benjamin Fritz)
5610Solution: Instead of executing messages immediately, use a queue, like for
5611 netbeans. (James Kolb)
5612Files: src/ex_docmd.c, src/getchar.c, src/gui_gtk_x11.c, src/gui_w48.c,
5613 src/gui_x11.c, src/if_xcmdsrv.c, src/misc2.c, src/os_unix.c,
5614 src/proto/if_xcmdsrv.pro, src/proto/misc2.pro, src/macros.h
5615
5616Patch 7.4.867 (after 7.4.866)
5617Problem: Can't build on MS-Windows. (Taro Muraoka)
5618Solution: Adjust #ifdef.
5619Files: src/misc2.c
5620
5621Patch 7.4.868
5622Problem: 'smarttab' is also effective when 'paste' is enabled. (Alexander
5623 Monakov)
5624Solution: Disable 'smarttab' when 'paste' is set. (Christian Brabandt)
5625 Do the same for 'expandtab'.
5626Files: src/option.c, src/structs.h
5627
5628Patch 7.4.869
5629Problem: MS-Windows: scrolling may cause text to disappear when using an
5630 Intel GPU.
5631Solution: Call GetPixel(). (Yohei Endo)
5632Files: src/gui_w48.c
5633
5634Patch 7.4.870
5635Problem: May get into an invalid state when using getchar() in an
5636 expression mapping.
5637Solution: Anticipate mod_mask to change. (idea by Yukihiro Nakadaira)
5638Files: src/getchar.c
5639
5640Patch 7.4.871
5641Problem: Vim leaks memory, when 'wildignore' filters out all matches.
5642Solution: Free the files array when it becomes empty.
5643Files: src/misc1.c
5644
5645Patch 7.4.872
5646Problem: Not using CI services available.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02005647Solution: Add configuration files for travis and appveyor. (Ken Takata,
5648 vim-jp, PR #401)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02005649Files: .travis.yml, appveyor.yml, Filelist
5650
5651Patch 7.4.873 (after 7.4.866)
5652Problem: Compiler warning for unused variable. (Tony Mechelynck)
5653Solution: Remove the variable. Also fix int vs long_u mixup.
5654Files: src/if_xcmdsrv.c
5655
5656Patch 7.4.874
5657Problem: MS-Windows: When Vim runs inside another application, the size
5658 isn't right.
5659Solution: When in child mode compute the size differently. (Agorgianitis
5660 Loukas)
5661Files: src/gui_w48.c
5662
5663Patch 7.4.875
5664Problem: Not obvious how to contribute.
5665Solution: Add a remark about CONTRIBUTING.md to README.md
5666Files: README.md
5667
5668Patch 7.4.876
5669Problem: Windows7: when using vim.exe with msys or msys2, conhost.exe
5670 (console window provider on Windows7) will freeze or crash.
5671Solution: Make original screen buffer active, before executing external
5672 program. And when the program is finished, revert to vim's one.
5673 (Taro Muraoka)
5674Files: src/os_win32.c
5675
5676Patch 7.4.877 (after 7.4.843)
5677Problem: ":find" sometimes fails. (Excanoe)
5678Solution: Compare current characters instead of previous ones.
5679Files: src/misc2.c
5680
5681Patch 7.4.878
5682Problem: Coverity error for clearing only one byte of struct.
5683Solution: Clear the whole struct. (Dominique Pelle)
5684Files: src/ex_docmd.c
5685
5686Patch 7.4.879
5687Problem: Can't see line numbers in nested function calls.
5688Solution: Add line number to the file name. (Alberto Fanjul)
5689Files: src/eval.c
5690
5691Patch 7.4.880
5692Problem: No build and coverage status.
5693Solution: Add links to the README file. (Christian Brabandt)
5694Files: README.md
5695
5696Patch 7.4.881 (after 7.4.879)
5697Problem: Test 49 fails.
5698Solution: Add line number to check of call stack.
5699Files: src/testdir/test49.vim
5700
5701Patch 7.4.882
5702Problem: When leaving the command line window with CTRL-C while a
5703 completion menu is displayed the menu isn't removed.
5704Solution: Force a screen update. (Hirohito Higashi)
5705Files: src/edit.c
5706
5707Patch 7.4.883 (after 7.4.818)
5708Problem: Block-mode replace works characterwise instead of blockwise after
5709 column 147. (Issue #422)
5710Solution: Set Visual mode. (Christian Brabandt)
5711Files: src/normal.c, src/testdir/test_listlbr.in,
5712 src/testdir/test_listlbr.ok
5713
5714Patch 7.4.884
5715Problem: Travis also builds on a tag push.
5716Solution: Filter out tag pushes. (Kenichi Ito)
5717Files: .travis.yml
5718
5719Patch 7.4.885
5720Problem: When doing an upwards search without wildcards the search fails if
5721 the initial directory doesn't exist.
5722Solution: Fix the non-wildcard case. (Stefan Kempf)
5723Files: src/misc2.c
5724
5725Patch 7.4.886 (after 7.4.876)
5726Problem: Windows7: Switching screen buffer causes flicker when using
5727 system().
5728Solution: Instead of actually switching screen buffer, duplicate the handle.
5729 (Yasuhiro Matsumoto)
5730Files: src/os_win32.c
5731
5732Patch 7.4.887
5733Problem: Using uninitialized memory for regexp with back reference.
5734 (Dominique Pelle)
5735Solution: Initialize end_lnum.
5736Files: src/regexp_nfa.c
5737
5738Patch 7.4.888
5739Problem: The OptionSet autocommands are not triggered from setwinvar().
5740Solution: Do not use switch_win() when not needed. (Hirohito Higashi)
5741Files: src/eval.c
5742
5743Patch 7.4.889
5744Problem: Triggering OptionSet from setwinvar() isn't tested.
5745Solution: Add a test. (Christian Brabandt)
5746Files: src/testdir/test_autocmd_option.in,
5747 src/testdir/test_autocmd_option.ok
5748
5749Patch 7.4.890
5750Problem: Build failure when using dynamic python but not python3.
5751Solution: Adjust the #if to also include DYNAMIC_PYTHON3 and UNIX.
5752Files: src/if_python3.c
5753
5754Patch 7.4.891
5755Problem: Indentation of array initializer is wrong.
5756Solution: Avoid that calling find_start_rawstring() changes the position
5757 returned by find_start_comment(), add a test. (Hirohito Higashi)
5758Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok
5759
5760Patch 7.4.892
5761Problem: On MS-Windows the iconv DLL may have a different name.
5762Solution: Also try libiconv2.dll and libiconv-2.dll. (Yasuhiro Matsumoto)
5763Files: src/mbyte.c
5764
5765Patch 7.4.893
5766Problem: C indenting is wrong below a "case (foo):" because it is
5767 recognized as a C++ base class construct. Issue #38.
5768Solution: Check for the case keyword.
5769Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok
5770
5771Patch 7.4.894
5772Problem: vimrun.exe is picky about the number of spaces before -s.
5773Solution: Skip all spaces. (Cam Sinclair)
5774Files: src/vimrun.c
5775
5776Patch 7.4.895
5777Problem: Custom command line completion does not work for a command
5778 containing digits.
5779Solution: Skip over the digits. (suggested by Yasuhiro Matsumoto)
5780Files: src/ex_docmd.c
5781
5782Patch 7.4.896
5783Problem: Editing a URL, which netrw should handle, doesn't work.
5784Solution: Avoid changing slashes to backslashes. (Yasuhiro Matsumoto)
5785Files: src/fileio.c, src/os_mswin.c
5786
5787Patch 7.4.897
5788Problem: Freeze and crash when there is a sleep in a remote command.
5789 (Karl Yngve Lervåg)
5790Solution: Remove a message from the queue before dealing with it. (James
5791 Kolb)
5792Files: src/if_xcmdsrv.c
5793
5794Patch 7.4.898
5795Problem: The 'fixendofline' option is set on with ":edit".
5796Solution: Don't set the option when clearing a buffer. (Yasuhiro Matsumoto)
5797Files: src/buffer.c
5798
5799Patch 7.4.899
5800Problem: README file is not optimal.
5801Solution: Move buttons, update some text. (closes #460)
5802Files: README.txt, README.md
5803
5804Patch 7.4.900 (after 7.4.899)
5805Problem: README file can still be improved
5806Solution: Add a couple of links. (Christian Brabandt)
5807Files: README.md
5808
5809Patch 7.4.901
5810Problem: When a BufLeave autocommand changes folding in a way it syncs
5811 undo, undo can be corrupted.
5812Solution: Prevent undo sync. (Jacob Niehus)
5813Files: src/popupmnu.c
5814
5815Patch 7.4.902
5816Problem: Problems with using the MS-Windows console.
5817Solution: Revert patches 7.4.851, 7.4.876 and 7.4.886 until we find a better
5818 solution. (suggested by Ken Takata)
5819Files: src/os_win32.c
5820
5821Patch 7.4.903
5822Problem: MS-Windows: When 'encoding' differs from the current code page,
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02005823 expanding wildcards may cause illegal memory access.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02005824Solution: Allocate a longer buffer. (Ken Takata)
5825Files: src/misc1.c
5826
5827Patch 7.4.904
5828Problem: Vim does not provide .desktop files.
5829Solution: Include and install .desktop files. (James McCoy, closes #455)
5830Files: Filelist, runtime/vim.desktop, runtime/gvim.desktop, src/Makefile
5831
5832Patch 7.4.905
5833Problem: Python interface can produce error "vim.message' object has no
5834 attribute 'isatty'".
5835Solution: Add dummy isatty(), readable(), etc. (closes #464)
5836Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok,
5837 src/testdir/test87.in, src/testdir/test87.ok
5838
5839Patch 7.4.906
5840Problem: On MS-Windows the viminfo file is (always) given the hidden
5841 attribute. (raulnac)
5842Solution: Check the hidden attribute in a different way. (Ken Takata)
5843Files: src/ex_cmds.c, src/os_win32.c, src/os_win32.pro
5844
5845Patch 7.4.907
5846Problem: Libraries for dynamically loading interfaces can only be defined
5847 at compile time.
5848Solution: Add options to specify the dll names. (Kazuki Sakamoto,
5849 closes #452)
5850Files: runtime/doc/if_lua.txt, runtime/doc/if_perl.txt,
5851 runtime/doc/if_pyth.txt, runtime/doc/if_ruby.txt,
5852 runtime/doc/options.txt, src/if_lua.c, src/if_perl.xs,
5853 src/if_python.c, src/if_python3.c, src/if_ruby.c, src/option.c,
5854 src/option.h
5855
5856Patch 7.4.908 (after 7.4.907)
5857Problem: Build error with MingW compiler. (Cesar Romani)
5858Solution: Change #if into #ifdef.
5859Files: src/if_perl.xs
5860
5861Patch 7.4.909 (after 7.4.905)
5862Problem: "make install" fails.
5863Solution: Only try installing desktop files if the destination directory
5864 exists.
5865Files: src/Makefile
5866
5867Patch 7.4.910 (after 7.4.905)
5868Problem: Compiler complains about type punned pointer.
5869Solution: Use another way to increment the ref count.
5870Files: src/if_py_both.h
5871
5872Patch 7.4.911
5873Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi)
5874Solution: Define the options.
5875Files: src/option.c
5876
5877Patch 7.4.912
5878Problem: Wrong indenting for C++ constructor.
5879Solution: Recognize ::. (Anhong)
5880Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok
5881
5882Patch 7.4.913
5883Problem: No utf-8 support for the hangul input feature.
5884Solution: Add utf-8 support. (Namsh)
5885Files: src/gui.c, src/hangulin.c, src/proto/hangulin.pro, src/screen.c,
5886 src/ui.c, runtime/doc/hangulin.txt, src/feature.h
5887
5888Patch 7.4.914
5889Problem: New compiler warning: logical-not-parentheses
5890Solution: Silence the warning.
5891Files: src/term.c
5892
5893Patch 7.4.915
5894Problem: When removing from 'path' and then adding, a comma may go missing.
5895 (Malcolm Rowe)
5896Solution: Fix the check for P_ONECOMMA. (closes #471)
5897Files: src/option.c, src/testdir/test_options.in,
5898 src/testdir/test_options.ok
5899
5900Patch 7.4.916
5901Problem: When running out of memory while copying a dict memory may be
5902 freed twice. (ZyX)
5903Solution: Do not call the garbage collector when running out of memory.
5904Files: src/misc2.c
5905
5906Patch 7.4.917
5907Problem: Compiler warning for comparing signed and unsigned.
5908Solution: Add a type cast.
5909Files: src/hangulin.c
5910
5911Patch 7.4.918
5912Problem: A digit in an option name has problems.
5913Solution: Rename 'python3dll' to 'pythonthreedll'.
5914Files: src/option.c, src/option.h, runtime/doc/options.txt
5915
5916Patch 7.4.919
5917Problem: The dll options are not in the options window.
5918Solution: Add the dll options. And other fixes.
5919Files: runtime/optwin.vim
5920
5921Patch 7.4.920
5922Problem: The rubydll option is not in the options window.
5923Solution: Add the rubydll option.
5924Files: runtime/optwin.vim
5925
5926Patch 7.4.921 (after 7.4.906)
5927Problem: Missing proto file update. (Randall W. Morris)
5928Solution: Add the missing line for mch_ishidden.
5929Files: src/proto/os_win32.pro
5930
5931Patch 7.4.922
5932Problem: Leaking memory with ":helpt {dir-not-exists}".
5933Solution: Free dirname. (Dominique Pelle)
5934Files: src/ex_cmds.c
5935
5936Patch 7.4.923
5937Problem: Prototypes not always generated.
5938Solution: Change #if to OR with PROTO.
5939Files: src/window.c
5940
5941Patch 7.4.924
5942Problem: DEVELOPER_DIR gets reset by configure.
5943Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir
5944 argument. (Kazuki Sakamoto, closes #482)
5945Files: src/configure.in, src/auto/configure
5946
5947Patch 7.4.925
5948Problem: User may yank or put using the register being recorded in.
5949Solution: Add the recording register in the message. (Christian Brabandt,
5950 closes #470)
5951Files: runtime/doc/options.txt, runtime/doc/repeat.txt, src/ops.c,
5952 src/option.h, src/screen.c
5953
5954Patch 7.4.926
5955Problem: Completing the longest match doesn't work properly with multi-byte
5956 characters.
5957Solution: When using multi-byte characters use another way to find the
5958 longest match. (Hirohito Higashi)
5959Files: src/ex_getln.c, src/testdir/test_utf8.in, src/testdir/test_utf8.ok
5960
5961Patch 7.4.927
5962Problem: Ruby crashes when there is a runtime error.
5963Solution: Use ruby_options() instead of ruby_process_options(). (Damien)
5964Files: src/if_ruby.c
5965
5966Patch 7.4.928
5967Problem: A clientserver message interrupts handling keys of a mapping.
5968Solution: Have mch_inchar() send control back to WaitForChar when it is
5969 interrupted by server message. (James Kolb)
5970Files: src/os_unix.c
5971
5972Patch 7.4.929
5973Problem: "gv" after paste selects one character less if 'selection' is
5974 "exclusive".
5975Solution: Increment the end position. (Christian Brabandt)
5976Files: src/normal.c, src/testdir/test94.in, src/testdir/test94.ok
5977
5978Patch 7.4.930
5979Problem: MS-Windows: Most users appear not to like the window border.
5980Solution: Remove WS_EX_CLIENTEDGE. (Ian Halliday)
5981Files: src/gui_w32.c
5982
5983Patch 7.4.931 (after 7.4.929)
5984Problem: Test 94 fails on some systems.
5985Solution: Set 'encoding' to utf-8.
5986Files: src/testdir/test94.in
5987
5988Patch 7.4.932 (after 7.4.926)
5989Problem: test_utf8 has confusing dummy command.
5990Solution: Use a real command instead of a colon.
5991Files: src/testdir/test_utf8.in
5992
5993Patch 7.4.933 (after 7.4.926)
5994Problem: Crash when using longest completion match.
5995Solution: Fix array index.
5996Files: src/ex_getln.c
5997
5998Patch 7.4.934
5999Problem: Appveyor also builds on a tag push.
6000Solution: Add a skip_tags line. (Kenichi Ito, closes #489)
6001Files: appveyor.yml
6002
6003Patch 7.4.935 (after 7.4.932)
6004Problem: test_utf8 fails on MS-Windows when executed with gvim.
6005Solution: Use the insert flag on feedkeys() to put the string before the
6006 ":" that was already read when checking for available chars.
6007Files: src/testdir/test_utf8.in
6008
6009Patch 7.4.936
6010Problem: Crash when dragging with the mouse.
6011Solution: Add safety check for NULL pointer. Check mouse position for valid
6012 value. (Hirohito Higashi)
6013Files: src/window.c, src/term.c
6014
6015Patch 7.4.937
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006016Problem: Segfault reading uninitialized memory.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006017Solution: Do not read match \z0, it does not exist. (Marius Gedminas, closes
6018 #497)
6019Files: src/regexp_nfa.c
6020
6021Patch 7.4.938
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006022Problem: X11 and GTK have more mouse buttons than Vim supports.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006023Solution: Recognize more mouse buttons. (Benoit Pierre, closes #498)
6024Files: src/gui_gtk_x11.c, src/gui_x11.c
6025
6026Patch 7.4.939
6027Problem: Memory leak when encountering a syntax error.
6028Solution: Free the memory. (Dominique Pelle)
6029Files: src/ex_docmd.c
6030
6031Patch 7.4.940
6032Problem: vt52 terminal codes are not correct.
6033Solution: Move entries outside of #if. (Random) Adjustments based on
6034 documented codes.
6035Files: src/term.c
6036
6037Patch 7.4.941
6038Problem: There is no way to ignore case only for tag searches.
6039Solution: Add the 'tagcase' option. (Gary Johnson)
6040Files: runtime/doc/options.txt, runtime/doc/quickref.txt,
6041 runtime/doc/tagsrch.txt, runtime/doc/usr_29.txt,
6042 runtime/optwin.vim, src/Makefile, src/buffer.c, src/option.c,
6043 src/option.h, src/structs.h, src/tag.c,
6044 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
6045 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
6046 src/testdir/Make_vms.mms, src/testdir/Makefile,
6047 src/testdir/test_tagcase.in, src/testdir/test_tagcase.ok
6048
6049Patch 7.4.942 (after 7.4.941)
6050Problem: test_tagcase breaks for small builds.
6051Solution: Bail out of the test early. (Hirohito Higashi)
6052Files: src/testdir/test_tagcase.in
6053
6054Patch 7.4.943
6055Problem: Tests are not run.
6056Solution: Add test_writefile to makefiles. (Ken Takata)
6057Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
6058 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
6059 src/testdir/Make_vms.mms, src/testdir/Makefile
6060
6061Patch 7.4.944
6062Problem: Writing tests for Vim script is hard.
6063Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add
6064 the v:errors variable. Add the runtest script. Add a first new
6065 style test script.
6066Files: src/eval.c, src/vim.h, src/misc2.c, src/testdir/Makefile,
6067 src/testdir/runtest.vim, src/testdir/test_assert.vim,
6068 runtime/doc/eval.txt
6069
6070Patch 7.4.945 (after 7.4.944)
6071Problem: New style testing is incomplete.
6072Solution: Add the runtest script to the list of distributed files.
6073 Add the new functions to the function overview.
6074 Rename the functions to match Vim function style.
6075 Move undolevels testing into a new style test script.
6076Files: Filelist, runtime/doc/usr_41.txt, runtime/doc/eval.txt,
6077 src/testdir/test_assert.vim, src/testdir/Makefile,
6078 src/testdir/test_undolevels.vim, src/testdir/test100.in,
6079 src/testdir/test100.ok
6080
6081Patch 7.4.946 (after 7.4.945)
6082Problem: Missing changes in source file.
6083Solution: Include changes to the eval.c file.
6084Files: src/eval.c
6085
6086Patch 7.4.947
6087Problem: Test_listchars fails with MingW. (Michael Soyka)
6088Solution: Add the test to the ones that need the fileformat fixed.
6089 (Christian Brabandt)
6090Files: src/testdir/Make_ming.mak
6091
6092Patch 7.4.948
6093Problem: Can't build when the insert_expand feature is disabled.
6094Solution: Add #ifdefs. (Dan Pasanen, closes #499)
6095Files: src/eval.c, src/fileio.c
6096
6097Patch 7.4.949
6098Problem: When using 'colorcolumn' and there is a sign with a fullwidth
6099 character the highlighting is wrong. (Andrew Stewart)
6100Solution: Only increment vcol when in the right state. (Christian Brabandt)
6101Files: src/screen.c, src/testdir/test_listlbr_utf8.in,
6102 src/testdir/test_listlbr_utf8.ok
6103
6104Patch 7.4.950
6105Problem: v:errors is not initialized.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006106Solution: Initialize it to an empty list. (Thinca)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006107Files: src/eval.c
6108
6109Patch 7.4.951
6110Problem: Sorting number strings does not work as expected. (Luc Hermitte)
6111Solution: Add the 'N" argument to sort()
6112Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim,
6113 src/testdir/test_sort.vim, src/testdir/Makefile
6114
6115Patch 7.4.952
6116Problem: 'lispwords' is tested in the old way.
6117Solution: Make a new style test for 'lispwords'.
6118Files: src/testdir/test_alot.vim, src/testdir/test_lispwords.vim,
6119 src/testdir/test100.in, src/testdir/test100.ok,
6120 src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
6121 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
6122 src/testdir/Make_vms.mms, src/testdir/Makefile
6123
6124Patch 7.4.953
6125Problem: When a test script navigates to another buffer the .res file is
6126 created with the wrong name.
6127Solution: Use the "testname" for the .res file. (Damien)
6128Files: src/testdir/runtest.vim
6129
6130Patch 7.4.954
6131Problem: When using Lua there may be a crash. (issue #468)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006132Solution: Avoid using an uninitialized tv. (Yukihiro Nakadaira)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006133Files: src/if_lua.c
6134
6135Patch 7.4.955
6136Problem: Vim doesn't recognize .pl6 and .pod6 files.
6137Solution: Recognize them as perl6 and pod6. (Mike Eve, closes #511)
6138Files: runtime/filetype.vim
6139
6140Patch 7.4.956
6141Problem: A few more file name extensions not recognized.
6142Solution: Add .asciidoc, .bzl, .gradle, etc.
6143Files: runtime/filetype.vim
6144
6145Patch 7.4.957
6146Problem: Test_tagcase fails when using another language than English.
6147Solution: Set the messages language to C. (Kenichi Ito)
6148Files: src/testdir/test_tagcase.in
6149
6150Patch 7.4.958
6151Problem: Vim checks if the directory "$TMPDIR" exists.
6152Solution: Do not check if the name starts with "$".
6153Files: src/fileio.c
6154
6155Patch 7.4.959
6156Problem: When setting 'term' the clipboard ownership is lost.
6157Solution: Do not call clip_init(). (James McCoy)
6158Files: src/term.c
6159
6160Patch 7.4.960
6161Problem: Detecting every version of nmake is clumsy.
6162Solution: Use a tiny C program to get the version of _MSC_VER. (Ken Takata)
6163Files: src/Make_mvc.mak
6164
6165Patch 7.4.961
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006166Problem: Test107 fails in some circumstances.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006167Solution: When using "zt", "zb" and "z=" recompute the fraction.
6168Files: src/normal.c, src/window.c, src/proto/window.pro
6169
6170Patch 7.4.962
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006171Problem: Cannot run the tests with gvim. Cannot run individual new tests.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006172Solution: Add the -f flag. Add new test targets in Makefile.
6173Files: src/Makefile, src/testdir/Makefile
6174
6175Patch 7.4.963
6176Problem: test_listlbr_utf8 sometimes fails.
6177Solution: Don't use a literal multibyte character but <C-V>uXXXX. Do not
6178 dump the screen highlighting. (Christian Brabandt, closes #518)
6179Files: src/testdir/test_listlbr_utf8.in, src/testdir/test_listlbr_utf8.ok
6180
6181Patch 7.4.964
6182Problem: Test 87 doesn't work in a shadow directory.
6183Solution: Handle the extra subdirectory. (James McCoy, closes #515)
6184Files: src/testdir/test87.in
6185
6186Patch 7.4.965
6187Problem: On FreeBSD /dev/fd/ files are special.
6188Solution: Use is_dev_fd_file() also for FreeBSD. (Derek Schrock, closes #521)
6189Files: src/fileio.c
6190
6191Patch 7.4.966
6192Problem: Configure doesn't work with a space in a path.
Bram Moolenaar09521312016-08-12 22:54:35 +02006193Solution: Put paths in quotes. (James McCoy, closes #525)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006194Files: src/configure.in, src/auto/configure
6195
6196Patch 7.4.967
6197Problem: Cross compilation on MS-windows doesn't work well.
6198Solution: Tidy up cross compilation across architectures with Visual Studio.
6199 (Mike Williams)
6200Files: src/Make_mvc.mak
6201
6202Patch 7.4.968
6203Problem: test86 and test87 are flaky in Appveyor.
6204Solution: Reduce the count from 8 to 7. (suggested by ZyX)
6205Files: src/testdir/test86.in, src/testdir/test87.in
6206
6207Patch 7.4.969
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006208Problem: Compiler warnings on Windows x64 build.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006209Solution: Add type casts. (Mike Williams)
6210Files: src/option.c
6211
6212Patch 7.4.970
6213Problem: Rare crash in getvcol(). (Timo Mihaljov)
6214Solution: Check for the buffer being NULL in init_preedit_start_col.
6215 (Hirohito Higashi, Christian Brabandt)
6216Files: src/mbyte.c
6217
6218Patch 7.4.971
6219Problem: The asin() function can't be used.
6220Solution: Sort the function table properly. (Watiko)
6221Files: src/eval.c
6222
6223Patch 7.4.972
6224Problem: Memory leak when there is an error in setting an option.
6225Solution: Free the saved value (Christian Brabandt)
6226Files: src/option.c
6227
6228Patch 7.4.973
6229Problem: When pasting on the command line line breaks result in literal
6230 <CR> characters. This makes pasting a long file name difficult.
6231Solution: Skip the characters.
6232Files: src/ex_getln.c, src/ops.c
6233
6234Patch 7.4.974
6235Problem: When using :diffsplit the cursor jumps to the first line.
6236Solution: Put the cursor on the line related to where the cursor was before
6237 the split.
6238Files: src/diff.c
6239
6240Patch 7.4.975
6241Problem: Using ":sort" on a very big file sometimes causes text to be
6242 corrupted. (John Beckett)
6243Solution: Copy the line into a buffer before calling ml_append().
6244Files: src/ex_cmds.c
6245
6246Patch 7.4.976
6247Problem: When compiling Vim for MSYS2 (linked with msys-2.0.dll), the Win32
6248 clipboard is not enabled.
6249Solution: Recognize MSYS like CYGWIN. (Ken Takata)
6250Files: src/configure.in, src/auto/configure
6251
6252Patch 7.4.977
6253Problem: 'linebreak' does not work properly when using "space" in
6254 'listchars'.
6255Solution: (Hirohito Higashi, Christian Brabandt)
6256Files: src/screen.c, src/testdir/test_listlbr.in,
6257 src/testdir/test_listlbr.ok
6258
6259Patch 7.4.978
6260Problem: test_cdo fails when using another language than English.
6261Solution: Set the language to C. (Dominique Pelle, Kenichi Ito)
6262Files: src/testdir/test_cdo.in
6263
6264Patch 7.4.979
6265Problem: When changing the crypt key the blocks read from disk are not
6266 decrypted.
6267Solution: Also call ml_decrypt_data() when mf_old_key is set. (Ken Takata)
6268Files: src/memfile.c
6269
6270Patch 7.4.980
6271Problem: Tests for :cdo, :ldo, etc. are outdated.
6272Solution: Add new style tests for these commands. (Yegappan Lakshmanan)
6273Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
6274 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
6275 src/testdir/Make_vms.mms, src/testdir/Makefile,
6276 src/testdir/test_cdo.in, src/testdir/test_cdo.ok,
6277 src/testdir/test_cdo.vim
6278
6279Patch 7.4.981
6280Problem: An error in a test script goes unnoticed.
6281Solution: Source the test script inside try/catch. (Hirohito Higashi)
6282Files: src/testdir/runtest.vim
6283
6284Patch 7.4.982
6285Problem: Keeping the list of tests updated is a hassle.
6286Solution: Move the list to a separate file, so that it only needs to be
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006287 updated in one place.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006288Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
6289 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
6290 src/testdir/Make_vms.mms, src/testdir/Makefile,
6291 src/testdir/Make_all.mak
6292
6293Patch 7.4.983
6294Problem: Executing one test after "make testclean" doesn't work.
6295Solution: Add a dependency on test1.out.
6296Files: src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
6297 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
6298 src/testdir/Make_vms.mms, src/testdir/Makefile,
6299 src/testdir/Make_all.mak
6300
6301Patch 7.4.984
6302Problem: searchpos() always starts searching in the first column, which is
6303 not what some people expect. (Brett Stahlman)
6304Solution: Add the 'z' flag: start at the specified column.
6305Files: src/vim.h, src/eval.c, src/search.c,
6306 src/testdir/test_searchpos.vim, src/testdir/test_alot.vim,
6307 runtime/doc/eval.txt
6308
6309Patch 7.4.985
6310Problem: Can't build with Ruby 2.3.0.
6311Solution: Use the new TypedData_XXX macro family instead of Data_XXX. Use
6312 TypedData. (Ken Takata)
6313Files: src/if_ruby.c
6314
6315Patch 7.4.986
6316Problem: Test49 doesn't work on MS-Windows. test70 is listed twice.
6317Solution: Move test49 to the group not used on Amiga and MS-Windows.
6318 Remove test70 from SCRIPTS_WIN32.
6319Files: src/testdir/Make_all.mak, src/testdir/Make_dos.mak
6320
6321Patch 7.4.987 (after 7.4.985)
6322Problem: Can't build with Ruby 1.9.2.
6323Solution: Require Rub 2.0 for defining USE_TYPEDDATA.
6324Files: src/if_ruby.c
6325
6326Patch 7.4.988 (after 7.4.982)
6327Problem: Default test target is test49.out.
6328Solution: Add a build rule before including Make_all.mak.
6329Files: src/testdir/Make_dos.mak, src/testdir/Make_amiga.mak,
6330 src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
6331 src/testdir/Make_vms.mms, src/testdir/Makefile
6332
6333Patch 7.4.989
6334Problem: Leaking memory when hash_add() fails. Coverity error 99126.
6335Solution: When hash_add() fails free the memory.
6336Files: src/eval.c
6337
6338Patch 7.4.990
6339Problem: Test 86 fails on AppVeyor.
6340Solution: Do some registry magic. (Ken Takata)
6341Files: appveyor.yml
6342
6343Patch 7.4.991
6344Problem: When running new style tests the output is not visible.
6345Solution: Add the testdir/messages file and show it. Update the list of
6346 test names.
6347Files: src/Makefile, src/testdir/Makefile, src/testdir/runtest.vim
6348
6349Patch 7.4.992
6350Problem: Makefiles for MS-Windows in src/po are outdated.
6351Solution: Make them work. (Ken Takata, Taro Muraoka)
6352Files: src/po/Make_cyg.mak, src/po/Make_ming.mak, src/po/Make_mvc.mak,
6353 src/po/README_mingw.txt, src/po/README_mvc.txt
6354
6355Patch 7.4.993
6356Problem: Test 87 is flaky on AppVeyor.
6357Solution: Reduce the minimum background thread count.
6358Files: src/testdir/test86.in, src/testdir/test87.in
6359
6360Patch 7.4.994
6361Problem: New style tests are not run on MS-Windows.
6362Solution: Add the new style tests.
6363Files: src/testdir/Make_dos.mak
6364
6365Patch 7.4.995
6366Problem: gdk_pixbuf_new_from_inline() is deprecated.
6367Solution: Generate auto/gui_gtk_gresources.c. (Kazunobu Kazunobu,
6368 closes #507)
6369Files: src/Makefile, src/auto/configure, src/config.h.in,
6370 src/config.mk.in, src/configure.in, src/gui_gtk.c,
6371 src/gui_gtk_gresources.xml, src/gui_gtk_x11.c,
6372 src/proto/gui_gtk_gresources.pro,
6373 pixmaps/stock_vim_build_tags.png, pixmaps/stock_vim_find_help.png,
6374 pixmaps/stock_vim_save_all.png,
6375 pixmaps/stock_vim_session_load.png,
6376 pixmaps/stock_vim_session_new.png,
6377 pixmaps/stock_vim_session_save.png, pixmaps/stock_vim_shell.png,
6378 pixmaps/stock_vim_window_maximize.png,
6379 pixmaps/stock_vim_window_maximize_width.png,
6380 pixmaps/stock_vim_window_minimize.png,
6381 pixmaps/stock_vim_window_minimize_width.png,
6382 pixmaps/stock_vim_window_split.png,
6383 pixmaps/stock_vim_window_split_vertical.png
6384
6385Patch 7.4.996
6386Problem: New GDK files and testdir/Make_all.mak missing from distribution.
6387 PC build instructions are outdated.
6388Solution: Add the file to the list. Update PC build instructions.
6389Files: Filelist, Makefile
6390
6391Patch 7.4.997
6392Problem: "make shadow" was sometimes broken.
6393Solution: Add a test for it. (James McCoy, closes #520)
6394Files: .travis.yml
6395
6396Patch 7.4.998
6397Problem: Running tests in shadow directory fails. Test 49 fails.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006398Solution: Link more files for the shadow directory. Make test 49 ends up in
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006399 the right buffer.
6400Files: src/Makefile, src/testdir/test49.in
6401
6402Patch 7.4.999
6403Problem: "make shadow" creates a broken link. (Tony Mechelynck)
6404Solution: Remove vimrc.unix from the list.
6405Files: src/Makefile
6406
6407Patch 7.4.1000
6408Problem: Test 49 is slow and doesn't work on MS-Windows.
6409Solution: Start moving parts of test 49 to test_viml.
6410Files: src/Makefile, src/testdir/runtest.vim, src/testdir/test_viml.vim,
6411 src/testdir/test49.vim, src/testdir/test49.ok
6412
6413Patch 7.4.1001 (after 7.4.1000)
6414Problem: test_viml isn't run.
6415Solution: Include change in makefile.
6416Files: src/testdir/Make_all.mak
6417
6418Patch 7.4.1002
6419Problem: Cannot run an individual test on MS-Windows.
6420Solution: Move the rule to run test1 downwards. (Ken Takata)
6421Files: src/testdir/Make_dos.mak
6422
6423Patch 7.4.1003
6424Problem: Travis could check a few more things.
6425Solution: Run autoconf on one of the builds. (James McCoy, closes #510)
6426 Also build with normal features.
6427Files: .travis.yml
6428
6429Patch 7.4.1004
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006430Problem: Using Makefile when auto/config.mk does not exist results in
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006431 warnings.
6432Solution: Use default values for essential variables.
6433Files: src/Makefile
6434
6435Patch 7.4.1005
6436Problem: Vim users are not always happy.
6437Solution: Make them happy.
6438Files: src/ex_cmds.h, src/ex_cmds.c, src/proto/ex_cmds.pro
6439
6440Patch 7.4.1006
6441Problem: The fix in patch 7.3.192 is not tested.
6442Solution: Add a test, one for each regexp engine. (Elias Diem)
6443Files: src/testdir/test44.in, src/testdir/test44.ok,
6444 src/testdir/test99.in, src/testdir/test99.ok
6445
6446Patch 7.4.1007
6447Problem: When a symbolic link points to a file in the root directory, the
6448 swapfile is not correct.
6449Solution: Do not try getting the full name of a file in the root directory.
6450 (Milly, closes #501)
6451Files: src/os_unix.c
6452
6453Patch 7.4.1008
6454Problem: The OS/2 code pollutes the source while nobody uses it these days.
6455Solution: Drop the support for OS/2.
6456Files: src/feature.h, src/globals.h, src/macros.h, src/option.h,
6457 src/os_unix.c, src/os_unix.h, src/proto/os_unix.pro, src/vim.h,
6458 src/digraph.c, src/eval.c, src/ex_cmds.c, src/ex_docmd.c,
6459 src/ex_getln.c, src/fileio.c, src/getchar.c, src/memline.c,
6460 src/misc1.c, src/misc2.c, src/netbeans.c, src/option.c,
6461 src/term.c, src/ui.c, src/window.c, src/os_os2_cfg.h,
6462 src/Make_os2.mak, src/testdir/Make_os2.mak, src/testdir/os2.vim,
6463 src/INSTALL, runtime/doc/os_os2.txt
6464
6465Patch 7.4.1009
6466Problem: There are still #ifdefs for ARCHIE.
6467Solution: Remove references to ARCHIE, the code was removed in Vim 5.
6468Files: src/ex_cmds.c, src/ex_docmd.c, src/fileio.c, src/main.c,
6469 src/memline.c, src/option.c, src/term.c
6470
6471Patch 7.4.1010
6472Problem: Some developers are unhappy while running tests.
6473Solution: Add a test and some color.
6474Files: src/ex_cmds.c, src/testdir/test_assert.vim
6475
6476Patch 7.4.1011
6477Problem: Can't build with Strawberry Perl.
6478Solution: Include stdbool.h. (Ken Takata, closes #328)
6479Files: Filelist, src/Make_mvc.mak, src/if_perl_msvc/stdbool.h
6480
6481Patch 7.4.1012
6482Problem: Vim overwrites the value of $PYTHONHOME.
6483Solution: Do not set $PYTHONHOME if it is already set. (Kazuki Sakamoto,
6484 closes #500)
6485Files: src/if_python.c, src/if_python3.c
6486
6487Patch 7.4.1013
6488Problem: The local value of 'errorformat' is not used for ":lexpr" and
6489 ":cexpr".
6490Solution: Use the local value if it exists. (Christian Brabandt) Adjust the
6491 help for this.
6492Files: runtime/doc/quickfix.txt, src/quickfix.c
6493
6494Patch 7.4.1014
6495Problem: `fnamemodify('.', ':.')` returns an empty string in Cygwin.
6496Solution: Use CCP_RELATIVE in the call to cygwin_conv_path. (Jacob Niehus,
6497 closes #505)
6498Files: src/os_unix.c
6499
6500Patch 7.4.1015
6501Problem: The column is not restored properly when the matchparen plugin is
6502 used in Insert mode and the cursor is after the end of the line.
6503Solution: Set the curswant flag. (Christian Brabandt). Also fix
6504 highlighting the match of the character before the cursor.
6505Files: src/eval.c, runtime/plugin/matchparen.vim
6506
6507Patch 7.4.1016
6508Problem: Still a few OS/2 pieces remain.
6509Solution: Delete more.
6510Files: Filelist, README_os2.txt, testdir/todos.vim, src/xxd/Make_os2.mak
6511
6512Patch 7.4.1017
6513Problem: When there is a backslash in an option ":set -=" doesn't work.
6514Solution: Handle a backslash better. (Jacob Niehus) Add a new test, merge
6515 in old test.
6516Files: src/testdir/test_cdo.vim, src/testdir/test_set.vim,
6517 src/testdir/test_alot.vim, src/option.c, src/testdir/test_set.in,
6518 src/testdir/test_set.ok, src/Makefile
6519
6520Patch 7.4.1018 (after 7.4.1017)
6521Problem: Failure running tests.
6522Solution: Add missing change to list of old style tests.
6523Files: src/testdir/Make_all.mak
6524
6525Patch 7.4.1019
6526Problem: Directory listing of "src" is too long.
6527Solution: Rename the resources file to make it shorter.
6528Files: src/gui_gtk_gresources.xml, src/gui_gtk_res.xml, src/Makefile,
6529 Filelist
6530
6531Patch 7.4.1020
6532Problem: On MS-Windows there is no target to run tests with gvim.
6533Solution: Add the testgvim target.
6534Files: src/Make_mvc.mak
6535
6536Patch 7.4.1021
6537Problem: Some makefiles are outdated.
6538Solution: Add a note to warn developers.
6539Files: src/Make_manx.mak, src/Make_bc3.mak, src/Make_bc5.mak,
6540 src/Make_djg.mak, src/Make_w16.mak
6541
6542Patch 7.4.1022
6543Problem: The README file contains some outdated information.
6544Solution: Update the information about supported systems.
6545Files: README.txt, README.md
6546
6547Patch 7.4.1023
6548Problem: The distribution files for MS-Windows use CR-LF, which is
6549 inconsistent with what one gets from github.
6550Solution: Use LF in the distribution files.
6551Files: Makefile
6552
6553Patch 7.4.1024
6554Problem: Interfaces for MS-Windows are outdated.
6555Solution: Use Python 2.7.10, Python 3.4.4, Perl 5.22, TCL 8.6.
6556Files: src/bigvim.bat
6557
6558Patch 7.4.1025
6559Problem: Version in installer needs to be updated manually.
6560Solution: Generate a file with the version number. (Guopeng Wen)
6561Files: Makefile, nsis/gvim.nsi, nsis/gvim_version.nsh
6562
6563Patch 7.4.1026
6564Problem: When using MingW the tests do not clean up all files. E.g. test
6565 17 leaves Xdir1 behind. (Michael Soyka)
6566Solution: Also delete directories, like Make_dos.mak. Delete files after
6567 directories to reduce warnings.
6568Files: src/testdir/Make_ming.mak, src/testdir/Make_dos.mak
6569
6570Patch 7.4.1027
6571Problem: No support for binary numbers.
Bram Moolenaar09521312016-08-12 22:54:35 +02006572Solution: Add "bin" to 'nrformats'. (Jason Schulz)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006573Files: runtime/doc/change.txt, runtime/doc/eval.txt,
6574 runtime/doc/version7.txt, src/charset.c, src/eval.c,
6575 src/ex_cmds.c, src/ex_getln.c, src/misc2.c, src/ops.c,
6576 src/option.c, src/proto/charset.pro, src/spell.c,
6577 src/testdir/test57.in, src/testdir/test57.ok,
6578 src/testdir/test58.in, src/testdir/test58.ok,
6579 src/testdir/test_increment.in, src/testdir/test_increment.ok,
6580 src/vim.h
6581
6582Patch 7.4.1028
6583Problem: Nsis version file missing from the distribution.
6584Solution: Add the file to the list.
6585Files: Filelist
6586
6587Patch 7.4.1029 (after 7.4.1027)
6588Problem: test_increment fails on systems with 32 bit long.
6589Solution: Only test with 32 bits.
6590Files: src/testdir/test_increment.in, src/testdir/test_increment.ok
6591
6592Patch 7.4.1030
6593Problem: test49 is still slow.
6594Solution: Move more tests from old to new style.
6595Files: src/testdir/test_viml.vim, src/testdir/test49.vim,
6596 src/testdir/test49.ok, src/testdir/runtest.vim
6597
6598Patch 7.4.1031
6599Problem: Can't build with Python interface using MingW.
6600Solution: Update the Makefile. (Yasuhiro Matsumoto)
6601Files: src/INSTALLpc.txt, src/Make_cyg_ming.mak
6602
6603Patch 7.4.1032
6604Problem: message from assert_false() does not look nice.
6605Solution: Handle missing sourcing_name. Use right number of spaces. (Watiko)
6606 Don't use line number if it's zero.
6607Files: src/eval.c
6608
6609Patch 7.4.1033
6610Problem: Memory use on MS-Windows is very conservative.
6611Solution: Use the global memory status to estimate amount of memory.
6612 (Mike Williams)
6613Files: src/os_win32.c, src/os_win32.h, src/proto/os_win32.pro
6614
6615Patch 7.4.1034
6616Problem: There is no test for the 'backspace' option behavior.
6617Solution: Add a test. (Hirohito Higashi)
6618Files: src/testdir/test_alot.vim, src/testdir/test_backspace_opt.vim
6619
6620Patch 7.4.1035
6621Problem: An Ex range gets adjusted for folded lines even when the range is
6622 not using line numbers.
6623Solution: Only adjust line numbers for folding. (Christian Brabandt)
6624Files: runtime/doc/fold.txt, src/ex_docmd.c
6625
6626Patch 7.4.1036
6627Problem: Only terminals with up to 256 colors work properly.
6628Solution: Use the 256 color behavior for all terminals with 256 or more
6629 colors. (Robert de Bath, closes #504)
6630Files: src/syntax.c
6631
6632Patch 7.4.1037
6633Problem: Using "q!" when there is a modified hidden buffer does not unload
6634 the current buffer, resulting in the need to abandon it again.
6635Solution: When using "q!" unload the current buffer when needed. (Yasuhiro
6636 Matsumoto, Hirohito Higashi)
6637Files: src/testdir/test31.in, src/testdir/test31.ok,
6638 runtime/doc/editing.txt, src/ex_cmds2.c, src/ex_docmd.c,
6639 src/gui.c, src/gui_gtk_x11.c, src/os_unix.c,
6640 src/proto/ex_cmds2.pro
6641
6642Patch 7.4.1038
6643Problem: Still get a warning for a deprecated function with gdk-pixbuf
6644 2.31.
6645Solution: Change minimum minor version from 32 to 31.
6646Files: src/configure.in, src/auto/configure
6647
6648Patch 7.4.1039 (after 7.4.1037)
6649Problem: Test 31 fails with small build.
6650Solution: Bail out for small build. (Hirohito Higashi)
6651Files: src/testdir/test31.in
6652
6653Patch 7.4.1040
6654Problem: The tee command is not available on MS-Windows.
6655Solution: Adjust tee.c for MSVC and add a makefile. (Yasuhiro Matsumoto)
6656Files: src/tee/tee.c, src/tee/Make_mvc.mak, src/Make_mvc.mak
6657
6658Patch 7.4.1041
6659Problem: Various small things.
6660Solution: Add file to list of distributed files. Adjust README. Fix typo.
6661Files: Filelist, src/testdir/README.txt, src/testdir/test_charsearch.in,
Bram Moolenaar09521312016-08-12 22:54:35 +02006662 src/INSTALLmac.txt
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006663
6664Patch 7.4.1042
6665Problem: g-CTRL-G shows the word count, but there is no way to get the word
6666 count in a script.
6667Solution: Add the wordcount() function. (Christian Brabandt)
6668Files: runtime/doc/editing.txt, runtime/doc/eval.txt,
6669 runtime/doc/usr_41.txt, src/eval.c, src/normal.c, src/ops.c,
6670 src/proto/ops.pro, src/testdir/test_wordcount.in,
6671 src/testdir/test_wordcount.ok, src/testdir/Make_all.mak
6672
6673Patch 7.4.1043
6674Problem: Another small thing.
6675Solution: Now really update the Mac install text.
6676Files: src/INSTALLmac.txt
6677
6678Patch 7.4.1044 (after 7.4.1042)
6679Problem: Can't build without the +eval feature.
6680Solution: Add #ifdef.
6681Files: src/ops.c
6682
6683Patch 7.4.1045
6684Problem: Having shadow and coverage on the same build results in the source
6685 files not being available in the coverage view.
6686Solution: Move using shadow to the normal build.
6687Files: .travis.yml
6688
6689Patch 7.4.1046
6690Problem: No test coverage for menus.
6691Solution: Load the standard menus and check there is no error.
6692Files: testdir/test_menu.vim, testdir/test_alot.vim
6693
6694Patch 7.4.1047 (after patch 7.4.1042)
6695Problem: Tests fail on MS-Windows.
6696Solution: Set 'selection' to inclusive.
6697Files: src/testdir/test_wordcount.in
6698
6699Patch 7.4.1048 (after patch 7.4.1047)
6700Problem: Wordcount test still fail on MS-Windows.
6701Solution: Set 'fileformat' to "unix".
6702Files: src/testdir/test_wordcount.in
6703
6704Patch 7.4.1049 (after patch 7.4.1048)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006705Problem: Wordcount test still fails on MS-Windows.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006706Solution: Set 'fileformats' to "unix".
6707Files: src/testdir/test_wordcount.in
6708
6709Patch 7.4.1050
6710Problem: Warning for unused var with tiny features. (Tony Mechelynck)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006711Solution: Add #ifdef. Use vim_snprintf(). Reduce number of statements.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006712Files: src/ops.c
6713
6714Patch 7.4.1051
6715Problem: Segfault when unletting "count".
6716Solution: Check for readonly and locked first. (Dominique Pelle)
6717 Add a test.
6718Files: src/eval.c, src/testdir/test_alot.vim, src/testdir/test_unlet.vim
6719
6720Patch 7.4.1052
6721Problem: Illegal memory access with weird syntax command. (Dominique Pelle)
6722Solution: Check for column past end of line.
6723Files: src/syntax.c
6724
6725Patch 7.4.1053
6726Problem: Insufficient testing for quickfix commands.
6727Solution: Add a new style quickfix test. (Yegappan Lakshmanan)
6728Files: src/testdir/Make_all.mak, src/testdir/test_quickfix.vim
6729
6730Patch 7.4.1054
6731Problem: Illegal memory access.
6732Solution: Check for missing pattern. (Dominique Pelle)
6733Files: src/syntax.c
6734
6735Patch 7.4.1055
6736Problem: Running "make newtests" in src/testdir has no output.
6737Solution: List the messages file when a test fails. (Christian Brabandt)
6738 Update the list of tests.
6739Files: src/Makefile, src/testdir/Makefile
6740
6741Patch 7.4.1056
6742Problem: Don't know why finding spell suggestions is slow.
6743Solution: Add some code to gather profiling information.
6744Files: src/spell.c
6745
6746Patch 7.4.1057
6747Problem: Typos in the :options window.
6748Solution: Fix the typos. (Dominique Pelle)
6749Files: runtime/optwin.vim
6750
6751Patch 7.4.1058
6752Problem: It is not possible to test code that is only reached when memory
6753 allocation fails.
6754Solution: Add the alloc_fail() function. Try it out with :vimgrep.
6755Files: runtime/doc/eval.txt, src/globals.h, src/eval.c, src/quickfix.c,
6756 src/misc2.c, src/proto/misc2.pro, src/testdir/test_quickfix.vim
6757
6758Patch 7.4.1059
6759Problem: Code will never be executed.
6760Solution: Remove the code.
6761Files: src/quickfix.c
6762
6763Patch 7.4.1060
6764Problem: Instructions for writing tests are outdated.
6765Solution: Mention Make_all.mak. Add steps for new style tests.
6766Files: src/testdir/README.txt
6767
6768Patch 7.4.1061
6769Problem: Compiler warning for ignoring return value of fwrite().
6770Solution: Do use the return value. (idea: Charles Campbell)
6771Files: src/misc2.c, src/proto/misc2.pro
6772
6773Patch 7.4.1062
6774Problem: Building with Ruby on MS-Windows requires a lot of arguments.
6775Solution: Make it simpler. (Ken Takata)
6776Files: src/Make_cyg_ming.mak, src/Make_mvc.mak
6777
6778Patch 7.4.1063
6779Problem: TCL_VER_LONG and DYNAMIC_TCL_VER are not set when building with
6780 Cygwin and MingW.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006781Solution: Add TCL_VER_LONG and DYNAMIC_TCL_VER to the makefile. (Ken Takata)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006782Files: src/Make_cyg_ming.mak
6783
6784Patch 7.4.1064
6785Problem: When a spell file has single letter compounding creating
6786 suggestions takes an awful long time.
6787Solution: Add the NOCOMPOUNDSUGS flag.
6788Files: runtime/doc/spell.txt, src/spell.c
6789
6790Patch 7.4.1065
6791Problem: Cannot use the "dll" options on MS-Windows.
6792Solution: Support the options on all platforms. Use the built-in name as
6793 the default, so that it's clear what Vim is looking for.
6794Files: src/if_python.c, src/if_python3.c, src/if_lua.c, src/if_perl.xs,
6795 src/if_ruby.c, src/option.c, runtime/doc/options.txt, src/Makefile
6796
6797Patch 7.4.1066 (after 7.4.1065)
6798Problem: Build fails on MS-Windows.
6799Solution: Adjust the #ifdefs for "dll" options.
6800Files: src/option.h
6801
6802Patch 7.4.1067 (after 7.4.1065)
6803Problem: Can't build with MingW and Python on MS-Windows.
6804Solution: Move the build flags to CFLAGS.
6805Files: src/Make_cyg_ming.mak
6806
6807Patch 7.4.1068
6808Problem: Wrong way to check for unletting internal variables.
6809Solution: Use a better way. (Olaf Dabrunz)
6810Files: src/testdir/test_unlet.c, src/eval.c
6811
6812Patch 7.4.1069
6813Problem: Compiler warning for unused argument.
6814Solution: Add UNUSED.
6815Files: src/misc2.c
6816
6817Patch 7.4.1070
6818Problem: The Tcl interface can't be loaded dynamically on Unix.
6819Solution: Make it possible to load it dynamically. (Ken Takata)
6820Files: runtime/doc/if_tcl.txt, runtime/doc/options.txt,
6821 runtime/doc/quickref.txt, runtime/optwin.vim, src/Makefile,
6822 src/config.h.in, src/configure.in, src/auto/configure,
6823 src/if_tcl.c, src/option.c, src/option.h
6824
6825Patch 7.4.1071
6826Problem: New style tests are executed in arbitrary order.
6827Solution: Sort the test function names. (Hirohito Higashi)
6828 Fix the quickfix test that depended on the order.
6829Files: src/testdir/runtest.vim, src/testdir/test_quickfix.vim
6830
6831Patch 7.4.1072
6832Problem: Increment test is old style.
6833Solution: Make the increment test a new style test. (Hirohito Higashi)
6834Files: src/Makefile, src/testdir/Make_all.mak,
6835 src/testdir/test_increment.in, src/testdir/test_increment.ok,
6836 src/testdir/test_increment.vim
6837
6838Patch 7.4.1073
6839Problem: Alloc_id depends on numbers, may use the same one twice. It's not
6840 clear from the number what it's for.
6841Solution: Use an enum. Add a function to lookup the enum value from the
6842 name.
6843Files: src/misc2.c, src/vim.h, src/alloc.h, src/globals.h,
6844 src/testdir/runtest.vim, src/proto/misc2.pro,
6845 src/testdir/test_quickfix.vim
6846
6847Patch 7.4.1074
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02006848Problem: Warning from VC2015 compiler.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02006849Solution: Add a type cast. (Mike Williams)
6850Files: src/gui_dwrite.cpp
6851
6852Patch 7.4.1075
6853Problem: Crash when using an invalid command.
6854Solution: Fix generating the error message. (Dominique Pelle)
6855Files: src/ex_docmd.c
6856
6857Patch 7.4.1076
6858Problem: CTRL-A does not work well in right-left mode.
6859Solution: Remove reversing the line, add a test. (Hirohito Higashi)
6860Files: src/ops.c, src/testdir/test_increment.vim
6861
6862Patch 7.4.1077
6863Problem: The build instructions for MS-Windows are incomplete.
6864Solution: Add explanations for how to build with various interfaces. (Ken
6865 Takata)
6866Files: src/INSTALLpc.txt
6867
6868Patch 7.4.1078
6869Problem: MSVC: "make clean" doesn't cleanup in the tee directory.
6870Solution: Add the commands to cleanup tee. (Erich Ritz)
6871Files: src/Make_mvc.mak
6872
6873Patch 7.4.1079 (after 7.4.1073)
6874Problem: New include file missing from distribution. Missing changes to
6875 quickfix code.
6876Solution: Add alloc.h to the list of distributed files. Use the enum in
6877 quickfix code.
6878Files: Filelist, src/quickfix.c
6879
6880Patch 7.4.1080
6881Problem: VS2015 has a function HandleToLong() that is shadowed by the macro
6882 that Vim defines.
6883Solution: Do not define HandleToLong() for MSVC version 1400 and later.
6884 (Mike Williams)
6885Files: src/gui_w32.c
6886
6887Patch 7.4.1081
6888Problem: No test for what previously caused a crash.
6889Solution: Add test for unletting errmsg.
6890Files: src/testdir/test_unlet.vim
6891
6892Patch 7.4.1082
6893Problem: The Tcl interface is always skipping memory free on exit.
6894Solution: Only skip for dynamically loaded Tcl.
6895Files: src/if_tcl.c
6896
6897Patch 7.4.1083
6898Problem: Building GvimExt with VS2015 may fail.
6899Solution: Adjust the makefile. (Mike Williams)
6900Files: src/GvimExt/Makefile
6901
6902Patch 7.4.1084
6903Problem: Using "." to repeat CTRL-A in Visual mode increments the wrong
6904 numbers.
6905Solution: Append right size to the redo buffer. (Ozaki Kiichi)
6906Files: src/normal.c, src/testdir/test_increment.vim
6907
6908Patch 7.4.1085
6909Problem: The CTRL-A and CTRL-X commands do not update the '[ and '] marks.
6910Solution: (Yukihiro Nakadaira)
6911Files: src/ops.c, src/testdir/test_marks.in, src/testdir/test_marks.ok
6912
6913Patch 7.4.1086
6914Problem: Crash with an extremely long buffer name.
6915Solution: Limit the return value of vim_snprintf(). (Dominique Pelle)
6916Files: src/buffer.c
6917
6918Patch 7.4.1087
6919Problem: CTRL-A and CTRL-X do not work properly with blockwise visual
6920 selection if there is a mix of Tab and spaces.
6921Solution: Add OP_NR_ADD and OP_NR_SUB. (Hirohito Higashi)
6922Files: src/testdir/test_increment.vim, src/normal.c, src/ops.c,
6923 src/proto/ops.pro, src/vim.h
6924
6925Patch 7.4.1088
6926Problem: Coverity warns for uninitialized variables. Only one is an actual
6927 problem.
6928Solution: Move the conditions. Don't use endpos if handling an error.
6929Files: src/ops.c
6930
6931Patch 7.4.1089
6932Problem: Repeating CTRL-A doesn't work.
6933Solution: Call prep_redo_cmd(). (Hirohito Higashi)
6934Files: src/normal.c, src/testdir/test_increment.vim
6935
6936Patch 7.4.1090
6937Problem: No tests for :hardcopy and related options.
6938Solution: Add test_hardcopy.
6939Files: src/testdir/test_hardcopy.vim, src/Makefile,
6940 src/testdir/Make_all.mak
6941
6942Patch 7.4.1091
6943Problem: When making a change while need_wait_return is set there is a two
6944 second delay.
6945Solution: Do not assume the ATTENTION prompt was given when need_wait_return
6946 was set already.
6947Files: src/misc1.c
6948
6949Patch 7.4.1092
6950Problem: It is not simple to test for an exception and give a proper error
6951 message.
6952Solution: Add assert_exception().
6953Files: src/eval.c, runtime/doc/eval.txt
6954
6955Patch 7.4.1093
6956Problem: Typo in test goes unnoticed.
6957Solution: Fix the typo. Give error for wrong arguments to cursor().
6958 (partly by Hirohito Higashi) Add a test for cursor().
6959Files: src/testdir/test_searchpos.vim, src/testdir/test_cursor_func.vim,
6960 src/eval.c, src/testdir/test_alot.vim
6961
6962Patch 7.4.1094
6963Problem: Test for :hardcopy fails on MS-Windows.
6964Solution: Check for the +postscript feature.
6965Files: src/testdir/test_hardcopy.vim
6966
6967Patch 7.4.1095
6968Problem: Can't build GvimExt with SDK 7.1.
6969Solution: Support using setenv.bat instead of vcvars32.bat. (Ken Takata)
6970Files: src/Make_mvc.mak, src/GvimExt/Makefile
6971
6972Patch 7.4.1096
6973Problem: Need several lines to verify a command produces an error.
6974Solution: Add assert_fails(). (suggested by Nikolay Pavlov)
6975 Make the quickfix alloc test actually work.
6976Files: src/testdir/test_quickfix.vim, src/eval.c, runtime/doc/eval.txt,
6977 src/misc2.c, src/alloc.h
6978
6979Patch 7.4.1097
6980Problem: Looking up the alloc ID for tests fails.
6981Solution: Fix the line computation. Use assert_fails() for unlet test.
6982Files: src/testdir/runtest.vim, src/testdir/test_unlet.vim
6983
6984Patch 7.4.1098
6985Problem: Still using old style C function declarations.
6986Solution: Always define __ARGS() to include types. Turn a few functions
6987 into ANSI style to find out if this causes problems for anyone.
6988Files: src/vim.h, src/os_unix.h, src/eval.c, src/main.c
6989
6990Patch 7.4.1099
6991Problem: It's not easy to know if Vim supports blowfish. (Smu Johnson)
6992Solution: Add has('crypt-blowfish') and has('crypt-blowfish2').
6993Files: src/eval.c
6994
6995Patch 7.4.1100
6996Problem: Cygwin makefiles are unused.
6997Solution: Remove them.
6998Files: src/GvimExt/Make_ming.mak, src/GvimExt/Make_cyg.mak,
6999 src/xxd/Make_ming.mak, src/xxd/Make_cyg.mak
7000
7001Patch 7.4.1101
7002Problem: With 'rightleft' and concealing the cursor may move to the wrong
7003 position.
7004Solution: Compute the column differently when 'rightleft' is set. (Hirohito
7005 Higashi)
7006Files: src/screen.c
7007
7008Patch 7.4.1102
7009Problem: Debugger has no stack backtrace support.
7010Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto
7011 Fanjul, closes #433)
7012Files: runtime/doc/repeat.txt, src/eval.c, src/ex_cmds2.c, src/globals.h,
7013 src/testdir/Make_all.mak, src/testdir/test108.in,
7014 src/testdir/test108.ok
7015
7016Patch 7.4.1103 (after 7.4.1100)
7017Problem: Removed file still in distribution.
7018Solution: Remove Make_cyg.mak from the list of files.
7019Files: Filelist
7020
7021Patch 7.4.1104
7022Problem: Various problems building with MzScheme/Racket.
7023Solution: Make it work with new versions of Racket. (Yukihiro Nakadaira, Ken
7024 Takata)
7025Files: runtime/doc/if_mzsch.txt, src/INSTALLpc.txt,
7026 src/Make_cyg_ming.mak, src/Make_mvc.mak, src/auto/configure,
7027 src/configure.in, src/if_mzsch.c
7028
7029Patch 7.4.1105
7030Problem: When using slices there is a mixup of variable name and namespace.
7031Solution: Recognize variables that can't be a namespace. (Hirohito Higashi)
7032Files: src/eval.c, src/testdir/test_eval.in, src/testdir/test_eval.ok
7033
7034Patch 7.4.1106
7035Problem: The nsis script can't be used from the appveyor build.
7036Solution: Add "ifndef" to allow for variables to be set from the command
7037 line. Remove duplicate SetCompressor command. Support using other
7038 gettext binaries. (Ken Takata) Update build instructions to use
7039 libintl-8.dll.
7040Files: Makefile, nsis/gvim.nsi, src/os_win32.c, src/proto/os_win32.pro,
7041 src/main.c, os_w32exe.c
7042
7043Patch 7.4.1107
7044Problem: Vim can create a directory but not delete it.
7045Solution: Add an argument to delete() to make it possible to delete a
7046 directory, also recursively.
7047Files: src/fileio.c, src/eval.c, src/proto/fileio.pro,
7048 src/testdir/test_delete.vim, src/testdir/test_alot.vim,
7049 runtime/doc/eval.txt
7050
7051Patch 7.4.1108
7052Problem: Expanding "~" halfway a file name.
7053Solution: Handle the file name as one name. (Marco Hinz) Add a test.
7054 Closes #564.
7055Files: src/testdir/test27.in, src/testdir/test27.ok,
7056 src/testdir/test_expand.vim, src/testdir/test_alot.vim,
7057 src/Makefile, src/misc2.c
7058
7059Patch 7.4.1109 (after 7.4.1107)
7060Problem: MS-Windows doesn't have rmdir().
7061Solution: Add mch_rmdir().
Bram Moolenaar09521312016-08-12 22:54:35 +02007062Files: src/os_win32.c, src/proto/os_win32.pro
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02007063
7064Patch 7.4.1110
7065Problem: Test 108 fails when language is French.
7066Solution: Force English messages. (Dominique Pelle)
7067Files: src/testdir/test108.in
7068
7069Patch 7.4.1111
7070Problem: test_expand fails on MS-Windows.
7071Solution: Always use forward slashes. Remove references to test27.
7072Files: src/testdir/runtest.vim, src/testdir/test_expand.vim,
7073 src/testdir/Make_dos.mak, src/testdir/Make_all.mak,
7074 src/testdir/Make_amiga.mak, src/testdir/Make_ming.mak
7075
7076Patch 7.4.1112
7077Problem: When using ":next" with an illegal file name no error is reported.
7078Solution: Give an error message.
7079Files: src/ex_cmds2.c
7080
7081Patch 7.4.1113 (after 7.4.1105)
7082Problem: Using {ns} in variable name does not work. (lilydjwg)
7083Solution: Fix recognizing colon. Add a test.
7084Files: src/eval.c, src/testdir/test_viml.vim
7085
7086Patch 7.4.1114 (after 7.4.1107)
7087Problem: delete() does not work well with symbolic links.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02007088Solution: Recognize symbolic links.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02007089Files: src/eval.c, src/fileio.c, src/os_unix.c, src/proto/os_unix.pro,
7090 src/testdir/test_delete.vim, runtime/doc/eval.txt
7091
7092Patch 7.4.1115
7093Problem: MS-Windows: make clean in testdir doesn't clean everything.
7094Solution: Add command to delete X* directories. (Ken Takata)
7095Files: src/testdir/Make_dos.mak
7096
7097Patch 7.4.1116
7098Problem: delete(x, 'rf') does not delete files starting with a dot.
7099Solution: Also delete files starting with a dot.
7100Files: src/misc1.c, src/fileio.c, src/vim.h
7101
7102Patch 7.4.1117 (after 7.4.1116)
7103Problem: No longer get "." and ".." in directory list.
7104Solution: Do not skip "." and ".." unless EW_DODOT is set.
7105Files: src/mics1.c
7106
7107Patch 7.4.1118
7108Problem: Tests hang in 24 line terminal.
7109Solution: Set the 'more' option off.
7110Files: src/testdir/runtest.vim
7111
7112Patch 7.4.1119
7113Problem: argidx() has a wrong value after ":%argdelete". (Yegappan
7114 Lakshmanan)
7115Solution: Correct the value of w_arg_idx. Add a test.
7116Files: src/ex_cmds2.c, src/testdir/test_arglist.vim,
7117 src/testdir/Make_all.mak
7118
7119Patch 7.4.1120
7120Problem: delete(x, 'rf') fails if a directory is empty. (Lcd)
7121Solution: Ignore not finding matches in an empty directory.
7122Files: src/fileio.c, src/misc1.c, src/vim.h, src/testdir/test_delete.vim
7123
7124Patch 7.4.1121
7125Problem: test_expand leaves files behind.
7126Solution: Edit another file before deleting, otherwise the swap file
7127 remains.
7128Files: src/testdir/test_expand.vim
7129
7130Patch 7.4.1122
7131Problem: Test 92 and 93 fail when using gvim on a system with a non utf-8
7132 locale.
7133Solution: Avoid using .gvimrc by adding -U NONE. (Yukihiro Nakadaira)
7134Files: src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
7135 src/testdir/Make_vms.mms, src/testdir/Makefile
7136
7137Patch 7.4.1123
7138Problem: Using ":argadd" when there are no arguments results in the second
7139 argument to be the current one. (Yegappan Lakshmanan)
7140Solution: Correct the w_arg_idx value.
7141Files: src/ex_cmds2.c, src/testdir/test_arglist.vim
7142
7143Patch 7.4.1124
7144Problem: MS-Windows: dead key behavior is not ideal.
7145Solution: Handle dead keys differently when not in Insert or Select mode.
7146 (John Wellesz, closes #399)
7147Files: src/gui_w48.c
7148
7149Patch 7.4.1125
7150Problem: There is no perleval().
7151Solution: Add perleval(). (Damien)
7152Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c,
7153 src/if_perl.xs, src/proto/if_perl.pro, src/testdir/Make_all.mak,
7154 src/testdir/test_perl.vim
7155
7156Patch 7.4.1126
7157Problem: Can only get the directory of the current window.
7158Solution: Add window and tab arguments to getcwd() and haslocaldir().
7159 (Thinca, Hirohito Higashi)
7160Files: src/Makefile, src/testdir/Make_all.mak,
7161 src/testdir/test_getcwd.in, src/testdir/test_getcwd.ok,
7162 runtime/doc/eval.txt, patching file src/eval.c
7163
7164Patch 7.4.1127
7165Problem: Both old and new style tests for Perl.
7166Solution: Merge the old tests with the new style tests.
7167Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_perl.in,
7168 src/testdir/test_perl.ok, src/testdir/test_perl.vim
7169
7170Patch 7.4.1128
7171Problem: MS-Windows: delete() does not recognize junctions.
7172Solution: Add mch_isrealdir() for MS-Windows. Update mch_is_symbolic_link().
7173 (Ken Takata)
7174Files: src/fileio.c, src/os_win32.c, src/proto/os_win32.pro
7175
7176Patch 7.4.1129
7177Problem: Python None value can't be converted to a Vim value.
7178Solution: Just use zero. (Damien)
7179Files: src/if_py_both.h, src/testdir/test86.in, src/testdir/test86.ok,
7180 src/testdir/test87.in, src/testdir/test87.ok,
7181
7182Patch 7.4.1130
7183Problem: Memory leak in :vimgrep.
7184Solution: Call FreeWild(). (Yegappan Lakshmanan)
7185Files: src/quickfix.c
7186
7187Patch 7.4.1131
7188Problem: New lines in the viminfo file are dropped.
7189Solution: Copy lines starting with "|". Fix that when using :rviminfo in a
7190 function global variables were restored as function-local
7191 variables.
7192Files: src/eval.c, src/structs.h, src/ex_cmds.c, src/misc2.c,
7193 src/proto/misc2.pro, src/testdir/test_viminfo.vim,
7194 src/testdir/Make_all.mak, src/testdir/test74.in,
7195 src/testdir/test74.ok
7196
7197Patch 7.4.1132
7198Problem: Old style tests for the argument list.
7199Solution: Add more new style tests. (Yegappan Lakshmanan)
7200Files: src/testdir/test_arglist.vim, src/testdir/test_argument_0count.in,
7201 src/testdir/test_argument_0count.ok,
7202 src/testdir/test_argument_count.in, src/Makefile,
7203 src/testdir/test_argument_count.ok, src/testdir/Make_all.mak
7204
7205Patch 7.4.1133
7206Problem: Generated function prototypes still have __ARGS().
7207Solution: Generate function prototypes without __ARGS().
7208Files: src/Makefile, src/if_ruby.c, src/os_win32.c,
7209 src/proto/blowfish.pro, src/proto/buffer.pro,
7210 src/proto/charset.pro, src/proto/crypt.pro,
7211 src/proto/crypt_zip.pro, src/proto/diff.pro,
7212 src/proto/digraph.pro, src/proto/edit.pro, src/proto/eval.pro,
7213 src/proto/ex_cmds2.pro, src/proto/ex_cmds.pro,
7214 src/proto/ex_docmd.pro, src/proto/ex_eval.pro,
7215 src/proto/ex_getln.pro, src/proto/fileio.pro, src/proto/fold.pro,
7216 src/proto/getchar.pro, src/proto/gui_athena.pro,
7217 src/proto/gui_beval.pro, src/proto/gui_gtk_gresources.pro,
7218 src/proto/gui_gtk.pro, src/proto/gui_gtk_x11.pro,
7219 src/proto/gui_mac.pro, src/proto/gui_motif.pro,
7220 src/proto/gui_photon.pro, src/proto/gui.pro,
7221 src/proto/gui_w16.pro, src/proto/gui_w32.pro,
7222 src/proto/gui_x11.pro, src/proto/gui_xmdlg.pro,
7223 src/proto/hangulin.pro, src/proto/hardcopy.pro,
7224 src/proto/hashtab.pro, src/proto/if_cscope.pro,
7225 src/proto/if_lua.pro, src/proto/if_mzsch.pro,
7226 src/proto/if_ole.pro, src/proto/if_perl.pro,
7227 src/proto/if_perlsfio.pro, src/proto/if_python3.pro,
7228 src/proto/if_python.pro, src/proto/if_ruby.pro,
7229 src/proto/if_tcl.pro, src/proto/if_xcmdsrv.pro,
7230 src/proto/main.pro, src/proto/mark.pro, src/proto/mbyte.pro,
7231 src/proto/memfile.pro, src/proto/memline.pro, src/proto/menu.pro,
7232 src/proto/message.pro, src/proto/misc1.pro, src/proto/misc2.pro,
7233 src/proto/move.pro, src/proto/netbeans.pro, src/proto/normal.pro,
7234 src/proto/ops.pro, src/proto/option.pro, src/proto/os_amiga.pro,
7235 src/proto/os_beos.pro, src/proto/os_mac_conv.pro,
7236 src/proto/os_msdos.pro, src/proto/os_mswin.pro,
7237 src/proto/os_qnx.pro, src/proto/os_unix.pro, src/proto/os_vms.pro,
7238 src/proto/os_win16.pro, src/proto/os_win32.pro,
7239 src/proto/popupmnu.pro, src/proto/pty.pro, src/proto/quickfix.pro,
7240 src/proto/regexp.pro, src/proto/screen.pro, src/proto/search.pro,
7241 src/proto/sha256.pro, src/proto/spell.pro, src/proto/syntax.pro,
7242 src/proto/tag.pro, src/proto/termlib.pro, src/proto/term.pro,
7243 src/proto/ui.pro, src/proto/undo.pro, src/proto/version.pro,
7244 src/proto/winclip.pro, src/proto/window.pro,
7245 src/proto/workshop.pro
7246
7247Patch 7.4.1134
7248Problem: The arglist test fails on MS-Windows.
7249Solution: Only check for failure of argedit on Unix.
7250Files: src/testdir/test_arglist.vim
7251
7252Patch 7.4.1135
7253Problem: One more arglist test fails on MS-Windows.
7254Solution: Don't edit "Y" after editing "y".
7255Files: src/testdir/test_arglist.vim
7256
7257Patch 7.4.1136
7258Problem: Wrong argument to assert_exception() causes a crash. (reported by
7259 Coverity)
7260Solution: Check for NULL pointer. Add a test.
7261Files: src/eval.c, src/testdir/test_assert.vim
7262
7263Patch 7.4.1137
7264Problem: Illegal memory access when using :copen and :cclose.
7265Solution: Avoid that curbuf is invalid. (suggestion by Justin M. Keyes)
7266 Add a test.
7267Files: src/window.c, src/testdir/test_quickfix.vim
7268
7269Patch 7.4.1138
7270Problem: When running gvim in the foreground some icons are missing.
7271 (Taylor Venable)
7272Solution: Move the call to gui_gtk_register_resource(). (Kazunobu Kuriyama)
7273Files: src/gui_gtk_x11.c
7274
7275Patch 7.4.1139
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02007276Problem: MS-Windows: getftype() returns "file" for symlink to directory.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02007277Solution: Make it return "dir". (Ken Takata)
7278Files: src/os_mswin.c
7279
7280Patch 7.4.1140
7281Problem: Recognizing <sid> does not work when the language is Turkish.
7282 (Christian Brabandt)
7283Solution: Use MB_STNICMP() instead of STNICMP().
7284Files: src/eval.c
7285
7286Patch 7.4.1141
7287Problem: Using searchpair() with a skip expression that uses syntax
7288 highlighting sometimes doesn't work. (David Fishburn)
7289Solution: Reset next_match_idx. (Christian Brabandt)
7290Files: src/syntax.c
7291
7292Patch 7.4.1142
7293Problem: Cannot define keyword characters for a syntax file.
7294Solution: Add the ":syn iskeyword" command. (Christian Brabandt)
7295Files: runtime/doc/options.txt, runtime/doc/syntax.txt, src/buffer.c,
7296 src/option.c, src/structs.h, src/syntax.c,
7297 src/testdir/Make_all.mak, src/testdir/test_syntax.vim
7298
7299Patch 7.4.1143
7300Problem: Can't sort on floating point numbers.
7301Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f"
7302 flag to sort().
7303Files: runtime/doc/change.txt, src/ex_cmds.c, src/testdir/test_sort.vim,
7304 src/testdir/test57.in, src/testdir/test57.ok, src/eval.c
7305
7306Patch 7.4.1144 (after 7.4.1143)
7307Problem: Can't build on several systems.
7308Solution: Include float.h. (Christian Robinson, closes #570 #571)
7309Files: src/ex_cmds.c
7310
7311Patch 7.4.1145
7312Problem: Default features are conservative.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02007313Solution: Make the default feature set for most of today's systems "huge".
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02007314Files: src/feature.h, src/configure.in, src/auto/configure
7315
7316Patch 7.4.1146
7317Problem: Can't build with Python 3 interface using MingW.
7318Solution: Update the Makefile. (Yasuhiro Matsumoto, Ken Takata)
7319Files: src/Make_cyg_ming.mak
7320
7321Patch 7.4.1147
7322Problem: Conflict for "chartab". (Kazunobu Kuriyama)
7323Solution: Rename the global one to something less obvious. Move it into
7324 src/chartab.c.
7325Files: src/macros.h, src/globals.h, src/charset.c, src/main.c,
7326 src/option.c, src/screen.c, src/vim.h
7327
7328Patch 7.4.1148
7329Problem: Default for MingW and Cygwin is still "normal".
7330Solution: Use "huge" as default. (Ken Takata)
7331Files: src/Make_cyg_ming.mak, src/Make_mvc.mak
7332
7333Patch 7.4.1149 (after 7.4.1013)
7334Problem: Using the local value of 'errorformat' causes more problems than
7335 it solves.
7336Solution: Revert 7.4.1013.
7337Files: runtime/doc/quickfix.txt, src/quickfix.c
7338
7339Patch 7.4.1150
7340Problem: 'langmap' applies to the first character typed in Select mode.
7341 (David Watson)
7342Solution: Check for SELECTMODE. (Christian Brabandt, closes #572)
7343 Add the 'x' flag to feedkeys().
7344Files: src/getchar.c, src/normal.c, src/testdir/test_langmap.vim,
7345 src/ex_docmd.c, src/proto/ex_docmd.pro, src/testdir/Make_all.mak,
7346 runtime/doc/eval.txt
7347
7348Patch 7.4.1151 (after 7.4.1150)
7349Problem: Missing change to eval.c
7350Solution: Also change feedkeys().
7351Files: src/eval.c
7352
7353Patch 7.4.1152
7354Problem: Langmap test fails with normal build.
7355Solution: Check for +langmap feature.
7356Files: src/testdir/test_langmap.vim
7357
7358Patch 7.4.1153
7359Problem: Autocommands triggered by quickfix cannot always get the current
7360 title value.
7361Solution: Call qf_fill_buffer() later. (Christian Brabandt)
7362Files: src/quickfix.c, src/testdir/test_quickfix.vim
7363
7364Patch 7.4.1154
7365Problem: No support for JSON.
7366Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true,
7367 v:null and v:none.
7368Files: src/json.c, src/eval.c, src/proto.h, src/structs.h, src/vim.h,
7369 src/if_lua.c, src/if_mzsch.c, src/if_ruby.c, src/if_py_both.h,
7370 src/globals.h, src/Makefile, src/Make_bc3.mak, src/Make_bc5.mak,
7371 src/Make_cyg_ming.mak, src/Make_dice.mak, src/Make_ivc.mak,
7372 src/Make_manx.mak, src/Make_morph.mak, src/Make_mvc.mak,
7373 src/Make_sas.mak, src/Make_vms.mms, src/proto/json.pro,
7374 src/proto/eval.pro, src/testdir/test_json.vim,
7375 src/testdir/test_alot.vim, Filelist, runtime/doc/eval.txt
7376
7377Patch 7.4.1155
7378Problem: Build with normal features fails.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02007379Solution: Always define dict_lookup().
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02007380Files: src/eval.c
7381
7382Patch 7.4.1156
7383Problem: Coverity warns for NULL pointer and ignoring return value.
7384Solution: Check for NULL pointer. When dict_add() returns FAIL free the item.
7385Files: src/json.c
7386
7387Patch 7.4.1157
7388Problem: type() does not work for v:true, v:none, etc.
7389Solution: Add new type numbers.
7390Files: src/eval.c, src/testdir/test_json.vim, src/testdir/test_viml.vim
7391
7392Patch 7.4.1158
7393Problem: Still using __ARGS().
7394Solution: Remove __ARGS() from eval.c
7395Files: src/eval.c
7396
7397Patch 7.4.1159
7398Problem: Automatically generated function prototypes use __ARGS.
7399Solution: Remove __ARGS from osdef.sh.
7400Files: src/osdef.sh, src/osdef1.h.in, src/osdef2.h.in
7401
7402Patch 7.4.1160
7403Problem: No error for jsondecode('"').
7404Solution: Give an error message for missing double quote.
7405Files: src/json.c
7406
7407Patch 7.4.1161
7408Problem: ":argadd" without argument is supposed to add the current buffer
7409 name to the arglist.
7410Solution: Make it work as documented. (Coot, closes #577)
7411Files: src/ex_cmds.h, src/ex_cmds2.c, src/testdir/test_arglist.vim
7412
7413Patch 7.4.1162
7414Problem: Missing error number in MzScheme. (Dominique Pelle)
7415Solution: Add a proper error number.
7416Files: src/if_mzsch.c
7417
7418Patch 7.4.1163
7419Problem: Expressions "0 + v:true" and "'' . v:true" cause an error.
7420Solution: Return something sensible when using a special variable as a
7421 number or as a string. (suggested by Damien)
7422Files: src/eval.c, src/testdir/test_viml.vim
7423
7424Patch 7.4.1164
7425Problem: No tests for comparing special variables. Error in jsondecode()
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02007426 not reported. test_json does not work with Japanese system.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02007427Solution: Set scriptencoding. (Ken Takata) Add a few more tests. Add error.
7428Files: src/json.c, src/testdir/test_viml.vim, src/testdir/test_json.vim
7429
7430Patch 7.4.1165
7431Problem: When defining DYNAMIC_ICONV_DLL in the makefile, the build fails.
7432Solution: Add #ifdef's. (Taro Muraoka) Try the newer version first.
7433Files: src/mbyte.c, src/os_win32.c
7434
7435Patch 7.4.1166
7436Problem: Can't encode a Funcref into JSON. jsonencode() doesn't handle the
7437 same list or dict twice properly. (Nikolay Pavlov)
7438Solution: Give an error. Reset copyID when the list or dict is finished.
7439Files: src/json.c, src/proto/json.pro, src/testdir/test_json.vim
7440
7441Patch 7.4.1167
7442Problem: No tests for "is" and "isnot" with the new variables.
7443Solution: Add tests.
7444Files: src/testdir/test_viml.vim
7445
7446Patch 7.4.1168
7447Problem: This doesn't give the right result: eval(string(v:true)). (Nikolay
7448 Pavlov)
7449Solution: Make the string "v:true" instead of "true".
7450Files: src/eval.c, src/testdir/test_viml.vim
7451
7452Patch 7.4.1169
7453Problem: The socket I/O is intertwined with the netbeans code.
7454Solution: Start refactoring the netbeans communication to split off the
7455 socket I/O. Add the +channel feature.
7456Files: src/channel.c, src/netbeans.c, src/proto/channel.pro,
7457 src/proto/netbeans.pro, src/proto/gui_w32.pro, src/gui_w32.c,
7458 src/eval.c, src/os_mswin.c, src/ui.c, src/macros.h, Makefile,
7459 src/proto.h, src/feature.h, src/os_unix.c, src/vim.h,
7460 src/configure.in, src/auto/configure, src/config.mk.in,
7461 src/config.aap.in, src/config.h.in, src/Make_bc5.mak,
7462 src/Make_cyg_ming.mak, src/Make_mvc.mak
7463
7464Patch 7.4.1170 (after 7.4.1169)
7465Problem: Missing changes in src/Makefile, Filelist.
7466Solution: Add the missing changes.
7467Files: Filelist, src/Makefile
7468
7469Patch 7.4.1171
7470Problem: Makefile dependencies are outdated.
7471Solution: Run "make depend". Add GTK resource dependencies.
7472Files: src/Makefile
7473
7474Patch 7.4.1172 (after 7.4.1169)
7475Problem: Configure is overly positive.
7476Solution: Insert "test".
7477Files: src/configure.in, src/auto/configure
7478
7479Patch 7.4.1173 (after 7.4.1168)
7480Problem: No test for new behavior of v:true et al.
7481Solution: Add a test.
7482Files: src/testdir/test_viml.vim
7483
7484Patch 7.4.1174
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02007485Problem: Netbeans contains dead code inside #ifndef INIT_SOCKETS.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02007486Solution: Remove the dead code.
7487Files: src/netbeans.c
7488
7489Patch 7.4.1175 (after 7.4.1169)
7490Problem: Can't build with Mingw and Cygwin.
7491Solution: Remove extra "endif". (Christian J. Robinson)
7492Files: src/Make_cyg_ming.mak
7493
7494Patch 7.4.1176
7495Problem: Missing change to proto file.
7496Solution: Update the proto file. (Charles Cooper)
7497Files: src/proto/gui_w32.pro
7498
7499Patch 7.4.1177
7500Problem: The +channel feature is not in :version output. (Tony Mechelynck)
7501Solution: Add the feature string.
7502Files: src/version.c
7503
7504Patch 7.4.1178
7505Problem: empty() doesn't work for the new special variables.
7506Solution: Make empty() work. (Damien)
7507Files: src/eval.c, src/testdir/test_viml.vim
7508
7509Patch 7.4.1179
7510Problem: test_writefile and test_viml do not delete the tempfile.
7511Solution: Delete the tempfile. (Charles Cooper) Add DeleteTheScript().
7512Files: src/testdir/test_writefile.in, src/testdir/test_viml.vim
7513
7514Patch 7.4.1180
7515Problem: Crash with invalid argument to glob2regpat().
7516Solution: Check for NULL. (Justin M. Keyes, closes #596) Add a test.
7517Files: src/eval.c, src/testdir/test_glob2regpat.vim,
7518 src/testdir/test_alot.vim
7519
7520Patch 7.4.1181
7521Problem: free_tv() can't handle special variables. (Damien)
7522Solution: Add the variable type.
7523Files: src/eval.c, src/testdir/test_viml.vim
7524
7525Patch 7.4.1182
7526Problem: Still socket code intertwined with netbeans.
7527Solution: Move code from netbeans.c to channel.c
7528Files: src/channel.c, src/netbeans.c, src/proto/channel.pro,
7529 src/proto/netbeans.pro, src/gui.c, src/gui_w48.c
7530
7531Patch 7.4.1183 (after 7.4.1182)
7532Problem: MS-Windows build is broken.
7533Solution: Remove init in wrong place.
7534Files: src/channel.c
7535
7536Patch 7.4.1184 (after 7.4.1182)
7537Problem: MS-Windows build is still broken.
7538Solution: Change nbsock to ch_fd.
7539Files: src/channel.c
7540
7541Patch 7.4.1185
7542Problem: Can't build with TCL on some systems.
7543Solution: Rename the channel_ functions.
7544Files: src/if_tcl.c
7545
7546Patch 7.4.1186
7547Problem: Error messages for security context are hard to translate.
7548Solution: Use one string with %s. (Ken Takata)
7549Files: src/os_unix.c
7550
7551Patch 7.4.1187
7552Problem: MS-Windows channel code only supports one channel. Doesn't build
7553 without netbeans support.
7554Solution: Get the channel index from the socket in the message. Closes #600.
7555Files: src/channel.c, src/netbeans.c, src/gui_w48.c,
7556 src/proto/channel.pro, src/proto/netbeans.pro
7557
7558Patch 7.4.1188
7559Problem: Using older JSON standard.
7560Solution: Update the link. Adjust the text a bit.
7561Files: src/json.c, runtime/doc/eval.txt
7562
7563Patch 7.4.1189 (after 7.4.1165)
7564Problem: Using another language on MS-Windows does not work. (Yongwei Wu)
7565Solution: Undo the change to try loading libintl-8.dll first.
7566Files: src/os_win32.c
7567
7568Patch 7.4.1190
7569Problem: On OSX the default flag for dlopen() is different.
7570Solution: Add RTLD_LOCAL in the configure check. (sv99, closes #604)
7571Files: src/configure.in, src/auto/configure
7572
7573Patch 7.4.1191
7574Problem: The channel feature isn't working yet.
7575Solution: Add the connect(), disconnect(), sendexpr() and sendraw()
7576 functions. Add initial documentation. Add a demo server.
7577Files: src/channel.c, src/eval.c, src/proto/channel.pro,
7578 src/proto/eval.pro, runtime/doc/channel.txt, runtime/doc/eval.txt,
7579 runtime/doc/Makefile, runtime/tools/demoserver.py
7580
7581Patch 7.4.1192
7582Problem: Can't build with FEAT_EVAL but without FEAT_MBYTE. (John
7583 Marriott)
7584Solution: Add #ifdef for FEAT_MBYTE.
7585Files: src/json.c
7586
7587Patch 7.4.1193
7588Problem: Can't build the channel feature on MS-Windows.
7589Solution: Add #ifdef HAVE_POLL.
7590Files: src/channel.c
7591
7592Patch 7.4.1194
7593Problem: Compiler warning for not using return value of fwrite().
7594Solution: Return OK/FAIL. (Charles Campbell)
7595Files: src/channel.c, src/proto/channel.pro
7596
7597Patch 7.4.1195
7598Problem: The channel feature does not work in the MS-Windows console.
7599Solution: Add win32 console support. (Yasuhiro Matsumoto)
7600Files: src/channel.c, src/gui_w32.c, src/os_mswin.c, src/os_win32.c,
7601 src/proto/gui_w32.pro, src/proto/os_mswin.pro, src/vim.h
7602
7603Patch 7.4.1196
7604Problem: Still using __ARGS.
7605Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
7606Files: src/arabic.c, src/buffer.c, src/charset.c, src/crypt_zip.c,
7607 src/diff.c, src/digraph.c, src/edit.c, src/ex_cmds.c,
7608 src/ex_cmds2.c, src/ex_docmd.c
7609
7610Patch 7.4.1197
7611Problem: Still using __ARGS.
7612Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
7613Files: src/ex_eval.c, src/ex_getln.c, src/farsi.c, src/fileio.c,
7614 src/fold.c, src/getchar.c, src/gui.c, src/gui_at_fs.c,
7615 gui_at_sb.c, src/gui_athena.c, src/gui_beval.c, src/gui_motif.c,
7616 src/gui_w32.c, src/gui_w48.c
7617
7618Patch 7.4.1198
7619Problem: Still using __ARGS.
7620Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
7621 Also remove use of HAVE_STDARG_H.
7622Files: src/gui_x11.c, src/hangulin.c, src/hardcopy.c, src/hashtab.c,
7623 src/if_cscope.c, src/if_python3.c, src/if_sniff.c,
7624 src/if_xcmdsrv.c, src/main.c, src/mark.c, src/mbyte.c,
7625 src/memfile.c, src/memfile_test.c, src/memline.c, src/menu.c,
7626 src/message.c, src/misc1.c, src/misc2.c, src/move.c,
7627 src/netbeans.c, src/normal.c
7628
7629Patch 7.4.1199
7630Problem: Still using __ARGS.
7631Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
7632Files: src/ops.c, src/option.c, src/os_amiga.c, src/os_mac_conv.c,
7633 src/os_unix.c, src/os_vms.c, src/os_w32exe.c, src/popupmnu.c,
7634 src/pty.c, src/quickfix.c, src/regexp.c, src/regexp_nfa.c,
7635 src/screen.c, src/search.c, src/sha256.c, src/spell.c,
7636 src/syntax.c, src/tag.c, src/term.c, src/termlib.c, src/ui.c,
7637 src/undo.c, src/version.c, src/window.c
7638
7639Patch 7.4.1200
7640Problem: Still using __ARGS.
7641Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
7642Files: src/blowfish.c, src/ex_cmds2.c, src/ex_getln.c, src/fold.c,
7643 src/gui_beval.c, src/gui_w32.c, src/os_unix.c, src/os_win16.c,
7644 src/pty.c, src/regexp.c, src/syntax.c, src/xpm_w32.c,
7645 src/ex_cmds.h, src/globals.h, src/gui_at_sb.h, src/gui_beval.h,
7646 src/if_cscope.h, src/if_sniff.h, src/nbdebug.h, src/os_unix.h,
7647 src/proto.h, src/structs.h, src/vim.h, src/xpm_w32.h,
7648 src/if_perl.xs, src/proto/if_lua.pro, src/proto/pty.pro,
7649 runtime/tools/xcmdsrv_client.c,
7650 src/Makefile
7651
7652Patch 7.4.1201
7653Problem: One more file still using __ARGS.
7654Solution: Remove __ARGS in the last file. (script by Hirohito Higashi)
7655Files: src/gui_at_sb.c
7656
7657Patch 7.4.1202
7658Problem: Still one more file still using __ARGS.
7659Solution: Remove __ARGS in the last file. (script by Hirohito Higashi)
7660 (closes #612)
7661Files: src/proto/os_mac_conv.pro, src/os_mac_conv.c, src/Makefile
7662
7663Patch 7.4.1203
7664Problem: Still more files still using __ARGS.
7665Solution: Remove __ARGS in really the last files.
7666Files: src/proto/if_mzsch.pro, src/if_mzsch.c, src/vim.h,
7667 src/proto/gui_gtk_gresources.pro, src/proto/gui_mac.pro,
7668 src/proto/if_ole.pro, src/proto/if_ole.pro, src/proto/os_qnx.pro,
7669 src/Makefile
7670
7671Patch 7.4.1204
7672Problem: Latin1 characters cause encoding conversion.
7673Solution: Remove the characters.
7674Files: src/gui_motif.c
7675
7676Patch 7.4.1205
7677Problem: Using old style function declarations.
7678Solution: Change to new style function declarations. (script by Hirohito
7679 Higashi)
7680Files: src/arabic.c, src/blowfish.c, src/buffer.c, src/channel.c,
7681 src/charset.c, src/crypt.c, src/crypt_zip.c, src/diff.c,
7682 src/digraph.c, src/edit.c, src/eval.c
7683
7684Patch 7.4.1206
7685Problem: Using old style function declarations.
7686Solution: Change to new style function declarations. (script by Hirohito
7687 Higashi)
7688Files: src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/ex_eval.c,
7689 src/ex_getln.c, src/farsi.c, src/fileio.c
7690
7691Patch 7.4.1207
7692Problem: Using old style function declarations.
7693Solution: Change to new style function declarations. (script by Hirohito
7694 Higashi)
7695Files: src/fold.c, src/getchar.c, src/gui_at_fs.c, src/gui_athena.c,
7696 src/gui_at_sb.c, src/gui_beval.c, src/gui.c, src/gui_gtk.c,
7697 src/gui_gtk_x11.c, src/gui_mac.c, src/gui_motif.c
7698
7699Patch 7.4.1208
7700Problem: Using old style function declarations.
7701Solution: Change to new style function declarations. (script by Hirohito
7702 Higashi)
7703Files: src/gui_photon.c, src/gui_w32.c, src/gui_w48.c, src/gui_x11.c,
7704 src/hangulin.c, src/hardcopy.c, src/hashtab.c, src/if_cscope.c,
7705 src/if_mzsch.c, src/if_perlsfio.c, src/if_python.c,
7706 src/if_python3.c, src/if_ruby.c, src/if_sniff.c, src/if_tcl.c,
7707 src/if_xcmdsrv.c, src/integration.c
7708
7709Patch 7.4.1209 (after 7.4.1207)
7710Problem: Can't build with Athena. (Elimar Riesebieter)
7711Solution: Fix function declarations.
7712Files: src/gui_athena.c, src/gui_x11.c, src/gui_at_sb.c, src/gui_at_fs.c
7713
7714Patch 7.4.1210
7715Problem: Using old style function declarations.
7716Solution: Change to new style function declarations. (script by Hirohito
7717 Higashi)
7718Files: src/main.c, src/mark.c, src/mbyte.c, src/memfile.c,
7719 src/memfile_test.c, src/memline.c, src/menu.c, src/message.c
7720
7721Patch 7.4.1211
7722Problem: Using old style function declarations.
7723Solution: Change to new style function declarations. (script by Hirohito
7724 Higashi)
7725Files: src/misc1.c, src/misc2.c, src/move.c, src/netbeans.c,
7726 src/normal.c, src/ops.c, src/option.c
7727
7728Patch 7.4.1212 (after 7.4.1207)
7729Problem: Can't build with Motif.
7730Solution: Fix function declaration.(Dominique Pelle)
7731Files: src/gui_motif.c
7732
7733Patch 7.4.1213
7734Problem: Using old style function declarations.
7735Solution: Change to new style function declarations. (script by Hirohito
7736 Higashi)
7737Files: src/os_amiga.c, src/os_mac_conv.c, src/os_msdos.d, src/os_mswin.c,
7738 src/os_qnx.c, src/os_unix.c, src/os_vms.c, src/os_win16.c,
7739 src/os_win32.c, src/popupmnu.c, src/pty.c, src/quickfix.c,
7740 src/regexp.c, src/regexp_nfa.c, src/screen.c
7741
7742Patch 7.4.1214
7743Problem: Using old style function declarations.
7744Solution: Change to new style function declarations. (script by Hirohito
7745 Higashi)
7746Files: src/search.c, src/sha256.c, src/spell.c, src/syntax.c, src/tag.c,
7747 src/term.c, src/termlib.c, src/ui.c, src/undo.c
7748
7749Patch 7.4.1215
7750Problem: Using old style function declarations.
7751Solution: Change to new style function declarations. (script by Hirohito
7752 Higashi)
7753Files: src/version.c, src/winclip.c, src/window.c, src/workshop.c,
7754 src/xpm_w32.c, runtime/doc/doctags.c,
7755 runtime/tools/xcmdsrv_client.c, src/po/sjiscorr.c, src/xxd/xxd.c
7756
7757Patch 7.4.1216
7758Problem: Still using HAVE_STDARG_H.
7759Solution: Assume it's always defined.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02007760Files: src/eval.c, src/misc2.c, src/vim.h, src/proto.h, src/configure.in,
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02007761 src/auto/configure, config.h.in, src/os_amiga.h, src/os_msdos.h,
7762 src/os_vms_conf.h, src/os_win32.h
7763
7764Patch 7.4.1217
7765Problem: Execution of command on channel doesn't work yet.
7766Solution: Implement the "ex" and "normal" commands.
7767Files: src/channel.c, src/proto/channel.pro, src/misc2.c, src/eval.c,
7768 src/ex_docmd.c, src/proto/ex_docmd.pro, src/feature.h
7769
7770Patch 7.4.1218
7771Problem: Missing change in configure. More changes for function style.
7772Solution: Avoid the typos.
7773Files: src/configure.in, src/config.h.in, runtime/tools/ccfilter.c,
7774 src/os_msdos.c
7775
7776Patch 7.4.1219
7777Problem: Build fails with +channel but without +float.
7778Solution: Add #ifdef.
7779Files: src/ex_cmds.c
7780
7781Patch 7.4.1220
7782Problem: Warnings for unused variables in tiny build. (Tony Mechelynck)
7783Solution: Move declarations inside #ifdef. (Hirohito Higashi)
7784Files: src/ex_cmds.c
7785
7786Patch 7.4.1221
7787Problem: Including netbeans and channel support in small and tiny builds.
7788 Build fails with some interfaces.
7789Solution: Only include these features in small build and above. Let
7790 configure fail if trying to enable an interface that won't build.
7791Files: src/configure.in, src/auto/configure
7792
7793Patch 7.4.1222
7794Problem: ":normal" command and others missing in tiny build.
7795Solution: Graduate FEAT_EX_EXTRA.
7796Files: src/feature.h, src/charset.c, src/eval.c, src/ex_cmds.c,
7797 src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c, src/getchar.c,
7798 src/normal.c, src/ui.c, src/version.c, src/globals.h
7799
7800Patch 7.4.1223
7801Problem: Crash when setting v:errors to a number.
7802Solution: Free the typval without assuming its type. (Yasuhiro Matsumoto)
7803Files: src/eval.c, src/testdir/test_assert.vim
7804
7805Patch 7.4.1224
7806Problem: Build problems with GTK on BSD. (Mike Williams)
7807Solution: Don't use "$<". Skip building gui_gtk_gresources.h when it doesn't
7808 work. (Kazunobu Kuriyama)
7809Files: src/Makefile
7810
7811Patch 7.4.1225
7812Problem: Still a few old style function declarations.
7813Solution: Make them new style. (Hirohito Higashi)
7814Files: runtime/tools/blink.c, src/eval.c, src/ex_cmds2.c, src/ex_getln.c,
7815 src/fileio.c, src/gui_w32.c, src/gui_x11.c, src/if_perl.xs,
7816 src/os_unix.c, src/po/sjiscorr.c, src/pty.c
7817
7818Patch 7.4.1226
7819Problem: GRESOURCE_HDR is unused.
7820Solution: Remove it. (Kazunobu Kuriyama)
7821Files: src/configure.in, src/auto/configure, src/config.mk.in
7822
7823Patch 7.4.1227
7824Problem: Compiler warnings.
7825Solution: Add UNUSED. Add type cast. (Yegappan Lakshmanan)
7826Files: src/getchar.c, src/os_macosx.m
7827
7828Patch 7.4.1228
7829Problem: copy() and deepcopy() fail with special variables. (Nikolai
7830 Pavlov)
7831Solution: Make it work. Add a test. Closes #614.
7832Files: src/eval.c, src/testdir/test_viml.vim
7833
7834Patch 7.4.1229
7835Problem: "eval" and "expr" channel commands don't work yet.
7836Solution: Implement them. Update the error numbers. Also add "redraw".
7837Files: src/channel.c, src/eval.c, src/json.c, src/ex_docmd.c,
7838 src/proto/channel.pro, src/proto/json.pro, src/proto/ex_docmd.pro,
7839 runtime/doc/channel.txt
7840
7841Patch 7.4.1230
7842Problem: Win32: opening a channel may hang. Not checking for messages
7843 while waiting for characters.
7844Solution: Add a zero timeout. Call parse_queued_messages(). (Yasuhiro
7845 Matsumoto)
7846Files: src/os_win32.c
7847
7848Patch 7.4.1231
7849Problem: JSON messages are not parsed properly.
7850Solution: Queue received messages.
7851Files: src/eval,c src/channel.c, src/json.c, src/proto/eval.pro,
7852 src/proto/channel.pro, src/proto/json.pro, src/structs.h
7853
7854Patch 7.4.1232
7855Problem: Compiler warnings when the Sniff feature is enabled.
7856Solution: Add UNUSED.
7857Files: src/gui_gtk_x11.c
7858
7859Patch 7.4.1233
7860Problem: Channel command may cause a crash.
7861Solution: Check for NULL argument. (Damien)
7862Files: src/channel.c
7863
7864Patch 7.4.1234
7865Problem: Demo server only runs with Python 2.
7866Solution: Make it run with Python 3 as well. (Ken Takata)
7867Files: runtime/tools/demoserver.py
7868
7869Patch 7.4.1235 (after 7.4.1231)
7870Problem: Missing change to eval.c.
7871Solution: Include that change.
7872Files: src/eval.c
7873
7874Patch 7.4.1236
7875Problem: When "syntax manual" was used switching between buffers removes
7876 the highlighting.
7877Solution: Set the syntax option without changing the value. (Anton
7878 Lindqvist)
7879Files: runtime/syntax/manual.vim
7880
7881Patch 7.4.1237
7882Problem: Can't translate message without adding a line break.
7883Solution: Join the two parts of the message.
7884Files: src/memline.c
7885
7886Patch 7.4.1238
7887Problem: Can't handle two messages right after each other.
7888Solution: Find the end of the JSON. Read more when incomplete. Add a C
7889 test for the JSON decoding.
7890Files: src/channel.c, src/json.c, src/proto/json.pro, src/eval.c,
7891 src/Makefile, src/json_test.c, src/memfile_test.c, src/structs.h
7892
7893Patch 7.4.1239
7894Problem: JSON message after the first one is dropped.
7895Solution: Put remainder of message back in the queue.
7896Files: src/channel.c
7897
7898Patch 7.4.1240
7899Problem: Visual studio tools are noisy.
7900Solution: Suppress startup info. (Mike Williams)
7901Files: src/GvimExt/Makefile, src/Make_mvc.mak, src/tee/Make_mvc.mak
7902
7903Patch 7.4.1241 (after 7.4.1238)
7904Problem: Missing change in Makefile due to diff mismatch
7905Solution: Update the list of object files.
7906Files: src/Makefile
7907
7908Patch 7.4.1242 (after 7.4.1238)
7909Problem: json_test fails without the eval feature.
7910Solution: Add #ifdef.
7911Files: src/json_test.c
7912
7913Patch 7.4.1243
7914Problem: Compiler warning for uninitialized variable.
7915Solution: Initialize it. (Elias Diem)
7916Files: src/json.c
7917
7918Patch 7.4.1244
7919Problem: The channel functions don't sort together.
7920Solution: Use a common "ch_" prefix.
7921Files: src/eval.c, runtime/doc/eval.txt, runtime/tools/demoserver.py
7922
7923Patch 7.4.1245
7924Problem: File missing from distribution.
7925Solution: Add json_test.c.
7926Files: Filelist
7927
7928Patch 7.4.1246
7929Problem: The channel functionality isn't tested.
7930Solution: Add a test using a Python test server.
7931Files: src/channel.c, src/proto/channel.pro,
7932 src/testdir/test_channel.vim, src/testdir/test_channel.py,
7933 src/testdir/Make_all.mak
7934
7935Patch 7.4.1247
7936Problem: The channel test doesn't run on MS-Windows.
7937Solution: Make it work on the MS-Windows console. (Ken Takata)
7938Files: src/testdir/test_channel.py, src/testdir/test_channel.vim
7939
7940Patch 7.4.1248
7941Problem: Can't reliably stop the channel test server. Can't start the
7942 server if the python file is not executable.
7943Solution: Use "pkill" instead of "killall". Run the python file as an
7944 argument instead of as an executable.
7945Files: src/testdir/test_channel.vim
7946
7947Patch 7.4.1249
7948Problem: Crash when the process a channel is connected to exits.
7949Solution: Use the file descriptor properly. Add a test. (Damien)
7950 Also add a test for eval().
7951Files: src/channel.c, src/testdir/test_channel.py,
7952 src/testdir/test_channel.vim
7953
7954Patch 7.4.1250
7955Problem: Running tests in shadow directory fails.
7956Solution: Also link testdir/*.py
7957Files: src/Makefile
7958
7959Patch 7.4.1251
7960Problem: New test file missing from distribution.
7961Solution: Add src/testdir/*.py.
7962Files: Filelist
7963
7964Patch 7.4.1252
7965Problem: The channel test server may receive two messages concatenated.
7966Solution: Split the messages.
7967Files: src/testdir/test_channel.py
7968
7969Patch 7.4.1253
7970Problem: Python test server not displaying second of two commands.
7971 Solaris doesn't have "pkill --full".
7972Solution: Also echo the second command. Use "pkill -f".
7973Files: src/testdir/test_channel.py, src/testdir/test_channel.vim
7974
7975Patch 7.4.1254
7976Problem: Opening a second channel causes a crash. (Ken Takata)
7977Solution: Don't re-allocate the array with channels.
7978Files: src/channel.c, src/testdir/test_channel.vim,
7979 src/testdir/test_channel.py
7980
7981Patch 7.4.1255
7982Problem: Crash for channel "eval" command without third argument.
7983Solution: Check for missing argument.
7984Files: src/channel.c, src/testdir/test_channel.vim,
7985 src/testdir/test_channel.py
7986
7987Patch 7.4.1256
7988Problem: On Mac sys.exit(0) doesn't kill the test server.
7989Solution: Use self.server.shutdown(). (Jun Takimoto)
7990Files: src/testdir/test_channel.py
7991
7992Patch 7.4.1257
7993Problem: Channel test fails in some configurations.
7994Solution: Add check for the +channel feature.
7995Files: src/testdir/test_channel.vim
7996
7997Patch 7.4.1258
7998Problem: The channel test can fail if messages arrive later.
7999Solution: Add a short sleep. (Jun T.)
8000Files: src/testdir/test_channel.vim
8001
8002Patch 7.4.1259
8003Problem: No test for what patch 7.3.414 fixed.
8004Solution: Add a test. (Elias Diem)
8005Files: src/testdir/test_increment.vim
8006
8007Patch 7.4.1260
8008Problem: The channel feature doesn't work on Win32 GUI.
8009Solution: Use WSAGetLastError(). (Ken Takata)
8010Files: src/channel.c, src/testdir/test_channel.vim, src/vim.h
8011
8012Patch 7.4.1261
8013Problem: Pending channel messages are garbage collected. Leaking memory in
8014 ch_sendexpr(). Leaking memory for a decoded JSON string.
8015Solution: Mark the message list as used. Free the encoded JSON. Don't save
8016 the JSON string.
8017Files: src/eval.c, src/channel.c, src/json.c, src/proto/channel.pro
8018
8019Patch 7.4.1262
8020Problem: The channel callback is not invoked.
8021Solution: Make a list of pending callbacks.
8022Files: src/eval.c, src/channel.c, src/proto/channel.pro,
8023 src/testdir/test_channel.vim
8024
8025Patch 7.4.1263
8026Problem: ch_open() hangs when the server isn't running.
8027Solution: Add a timeout. Use a dict to pass arguments. (Yasuhiro Matsumoto)
8028Files: runtime/doc/eval.txt, runtime/doc/channel.txt, src/channel.c,
8029 src/eval.c, src/netbeans.c, src/os_win32.c, src/proto/channel.pro,
8030 src/testdir/test_channel.vim
8031
8032Patch 7.4.1264
8033Problem: Crash when receiving an empty array.
8034Solution: Check for array with wrong number of arguments. (Damien)
8035Files: src/channel.c, src/eval.c, src/testdir/test_channel.py,
8036 src/testdir.test_channel.vim
8037
8038Patch 7.4.1265
8039Problem: Not all channel commands are tested.
8040Solution: Add a test for "normal", "expr" and "redraw".
8041Files: src/testdir/test_channel.py, src/testdir/test_channel.vim
8042
8043Patch 7.4.1266
8044Problem: A BufAdd autocommand may cause an ml_get error (Christian
8045 Brabandt)
8046Solution: Increment RedrawingDisabled earlier.
8047Files: src/ex_cmds.c
8048
8049Patch 7.4.1267
8050Problem: Easy to miss handling all types of variables.
8051Solution: Change the variable type into an enum.
8052Files: src/structs.h, src/eval.c
8053
8054Patch 7.4.1268
8055Problem: Waittime is used as seconds instead of milliseconds. (Hirohito
8056 Higashi)
8057Solution: Divide by 1000.
8058Files: src/channel.c
8059
8060Patch 7.4.1269
8061Problem: Encoding {'key':v:none} to JSON doesn't give an error (Tyru)
8062Solution: Give an error.
8063Files: src/json.c, src/testdir/test_json.vim
8064
8065Patch 7.4.1270
8066Problem: Warnings for missing values in switch.
8067Solution: Change switch to if-else or add values.
8068Files: src/if_py_both.h, src/if_python.c, src/if_python3.c
8069
8070Patch 7.4.1271
8071Problem: assert_false(v:false) reports an error. (Nikolai Pavlov)
8072Solution: Recognize v:true and v:false. (Closes #625)
8073Files: src/eval.c, src/testdir/test_assert.vim
8074
8075Patch 7.4.1272 (after 7.4.1270)
8076Problem: Using future enum value.
8077Solution: Remove it.
8078Files: src/if_python.c, src/if_python3.c
8079
8080Patch 7.4.1273 (after 7.4.1271)
8081Problem: assert_false(v:false) still fails.
8082Solution: Fix the typo.
8083Files: src/eval.c
8084
8085Patch 7.4.1274
8086Problem: Cannot run a job.
8087Solution: Add job_start(), job_status() and job_stop(). Currently only works
8088 for Unix.
8089Files: src/eval.c, src/structs.h, runtime/doc/eval.txt, src/os_unix.c,
8090 src/proto/os_unix.pro, src/feature.h, src/version.c,
8091 src/testdir/test_channel.vim
8092
8093Patch 7.4.1275 (after 7.4.1274)
8094Problem: Build fails on MS-Windows.
8095Solution: Fix wrong #ifdef.
8096Files: src/eval.c
8097
8098Patch 7.4.1276
8099Problem: Warning for not using return value of fcntl().
8100Solution: Explicitly ignore the return value.
8101Files: src/fileio.c, src/channel.c, src/memfile.c, src/memline.c
8102
8103Patch 7.4.1277
8104Problem: Compiler can complain about missing enum value in switch with some
8105 combination of features.
8106Solution: Remove #ifdefs around case statements.
8107Files: src/eval.c
8108
8109Patch 7.4.1278
8110Problem: When jsonencode() fails it still returns something.
8111Solution: Return an empty string on failure.
8112Files: src/json.c, src/channel.c, src/testdir/test_json.vim,
8113 src/testdir/test_channel.vim, src/testdir/test_channel.py
8114
8115Patch 7.4.1279
8116Problem: jsonencode() is not producing strict JSON.
8117Solution: Add jsencode() and jsdecode(). Make jsonencode() and jsondecode()
8118 strict.
8119Files: src/json.c, src/json_test.c, src/proto/json.pro, src/channel.c,
8120 src/proto/channel.pro, src/eval.c, src/vim.h, src/structs.h,
8121 runtime/doc/eval.txt, runtime/doc/channel.txt,
8122 src/testdir/test_json.vim
8123
8124Patch 7.4.1280
8125Problem: Missing case value.
8126Solution: Add VAR_JOB.
8127Files: src/if_python.c, src/if_python3.c
8128
8129Patch 7.4.1281
8130Problem: No test for skipping over code that isn't evaluated.
8131Solution: Add a test with code that would fail when not skipped.
8132Files: src/testdir/test_viml.vim
8133
8134Patch 7.4.1282
8135Problem: Crash when evaluating the pattern of ":catch" causes an error.
8136 (Dominique Pelle)
8137Solution: Block error messages at this point.
8138Files: src/ex_eval.c
8139
8140Patch 7.4.1283
8141Problem: The job feature isn't available on MS-Windows.
8142Solution: Add the job feature. Fix argument of job_stop(). (Yasuhiro
8143 Matsumoto)
8144Files: src/eval.c, src/feature.h, src/os_win32.c, src/proto/os_win32.pro
8145
8146Patch 7.4.1284 (after 7.4.1282)
8147Problem: Test 49 fails.
8148Solution: Check for a different error message.
8149Files: src/testdir/test49.vim
8150
8151Patch 7.4.1285
8152Problem: Cannot measure elapsed time.
8153Solution: Add reltimefloat().
8154Files: src/ex_cmds2.c, src/eval.c, src/proto/ex_cmds2.pro,
8155 src/testdir/test_reltime.vim, src/testdir/test_alot.vim
8156
8157Patch 7.4.1286
8158Problem: ch_open() with a timeout doesn't work correctly.
8159Solution: Change how select() is used. Don't give an error on timeout.
8160 Add a test for ch_open() failing.
8161Files: src/channel.c, src/testdir/test_channel.vim
8162
8163Patch 7.4.1287 (after 7.4.1286)
8164Problem: Channel test fails.
8165Solution: Use reltimefloat().
8166Files: src/testdir/test_channel.vim
8167
8168Patch 7.4.1288
8169Problem: ch_sendexpr() does not use JS encoding.
8170Solution: Use the encoding that fits the channel mode. Refuse using
8171 ch_sendexpr() on a raw channel.
8172Files: src/channel.c, src/proto/channel.pro, src/eval.c
8173
8174Patch 7.4.1289
8175Problem: Channel test fails on MS-Windows, connect() takes too long.
8176Solution: Adjust the test for MS-Windows using "waittime".
8177Files: src/channel.c, src/testdir/test_channel.vim
8178
8179Patch 7.4.1290
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008180Problem: Coverity complains about unnecessary check for NULL.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008181Solution: Remove the check.
8182Files: src/eval.c
8183
8184Patch 7.4.1291
8185Problem: On MS-Windows the channel test server doesn't quit.
8186Solution: Use return instead of break. (Ken Takata)
8187Files: src/testdir/test_channel.py
8188
8189Patch 7.4.1292
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008190Problem: Some compilers complain about uninitialized variable, even though
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008191 all possible cases are handled. (Dominique Pelle)
8192Solution: Add a default initialization.
8193Files: src/eval.c
8194
8195Patch 7.4.1293
8196Problem: Sometimes a channel may hang waiting for a message that was
8197 already discarded. (Ken Takata)
8198Solution: Store the ID of the message blocking on in the channel.
8199Files: src/channel.c
8200
8201Patch 7.4.1294
8202Problem: job_stop() only kills the started process.
8203Solution: Send the signal to the process group. (Olaf Dabrunz)
8204Files: src/os_unix.c
8205
8206Patch 7.4.1295
8207Problem: string(job) doesn't work well on MS-Windows.
8208Solution: Use the process ID. (Yasuhiro Matsumoto)
8209Files: src/eval.c
8210
8211Patch 7.4.1296
8212Problem: Cursor changes column with up motion when the matchparen plugin
8213 saves and restores the cursor position. (Martin Kunev)
8214Solution: Make sure curswant is updated before invoking the autocommand.
8215Files: src/edit.c
8216
8217Patch 7.4.1297
8218Problem: On Mac test_channel leaves python instances running.
8219Solution: Use a small waittime to make ch_open() work. (Ozaki Kiichi)
8220Files: src/testdir/test_channel.vim
8221
8222Patch 7.4.1298
8223Problem: When the channel test fails in an unexpected way the server keeps
8224 running.
8225Solution: Use try/catch. (Ozaki Kiichi)
8226Files: src/testdir/test_channel.vim
8227
8228Patch 7.4.1299
8229Problem: When the server sends a message with ID zero the channel handler
Bram Moolenaar09521312016-08-12 22:54:35 +02008230 is not invoked. (Christian J. Robinson)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008231Solution: Recognize zero value for the request ID. Add a test for invoking
8232 the channel handler.
8233Files: src/channel.c, src/testdir/test_channel.vim,
8234 src/testdir/test_channel.py
8235
8236Patch 7.4.1300
8237Problem: Cannot test CursorMovedI because there is typeahead.
8238Solution: Add disable_char_avail_for_testing().
8239Files: src/eval.c, src/getchar.c, src/globals.h,
8240 src/testdir/test_cursor_func.vim, src/testdir/README.txt
8241
8242Patch 7.4.1301
8243Problem: Missing options in ch_open().
8244Solution: Add s:chopt like in the other calls. (Ozaki Kiichi)
8245Files: src/testdir/test_channel.vim
8246
8247Patch 7.4.1302
8248Problem: Typo in struct field name. (Ken Takata)
8249Solution: Rename jf_pi to jv_pi.
8250Files: src/eval.c, src/os_win32.c, src/structs.h
8251
8252Patch 7.4.1303
8253Problem: A Funcref is not accepted as a callback.
8254Solution: Make a Funcref work. (Damien)
8255Files: src/eval.c, src/testdir/test_channel.vim
8256
8257Patch 7.4.1304
8258Problem: Function names are difficult to read.
8259Solution: Rename jsonencode to json_encode, jsondecode to json_decode,
8260 jsencode to js_encode and jsdecode to js_decode.
8261Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_json.vim
8262
8263Patch 7.4.1305
8264Problem: "\%1l^#.*" does not match on a line starting with "#".
8265Solution: Do not clear the start-of-line flag. (Christian Brabandt)
8266Files: src/regexp.c, src/regexp_nfa.c, src/testdir/test36.in,
8267 src/testdir/test36.ok
8268
8269Patch 7.4.1306
8270Problem: Job control doesn't work well on MS-Windows.
Bram Moolenaardc1f1642016-08-16 18:33:43 +02008271Solution: Various fixes. (Ken Takata, Ozaki Kiichi, Yukihiro Nakadaira,
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008272 Yasuhiro Matsumoto)
8273Files: src/Make_mvc.mak, src/eval.c, src/os_unix.c, src/os_win32.c,
8274 src/proto/os_unix.pro, src/proto/os_win32.pro, src/structs.h
8275
8276Patch 7.4.1307
8277Problem: Some channel tests fail on MS-Windows.
8278Solution: Disable the failing tests temporarily.
8279Files: src/testdir/test_channel.vim
8280
8281Patch 7.4.1308 (after 7.4.1307)
8282Problem: Typo in test.
8283Solution: Change endf to endif.
8284Files: src/testdir/test_channel.vim
8285
8286Patch 7.4.1309
8287Problem: When a test fails not all relevant info is listed.
8288Solution: Add the errors to the messages.
8289Files: src/testdir/runtest.vim
8290
8291Patch 7.4.1310
8292Problem: Jobs don't open a channel.
8293Solution: Create pipes and add them to the channel. Add ch_logfile().
8294 Only Unix for now.
8295Files: src/channel.c, src/eval.c, src/os_unix.c, src/structs.h,
8296 src/gui_w48.c, src/proto/channel.pro, src/testdir/test_channel.vim,
8297 src/testdir/test_channel_pipe.py, runtime/doc/eval.txt
8298
8299Patch 7.4.1311 (after 7.4.1310)
8300Problem: sock_T is defined too late.
8301Solution: Move it up.
8302Files: src/vim.h
8303
8304Patch 7.4.1312 (after 7.4.1311)
8305Problem: sock_T is not defined without the +channel feature.
8306Solution: Always define it.
8307Files: src/vim.h
8308
8309Patch 7.4.1313
8310Problem: MS-Windows: Using socket after it was closed causes an exception.
8311Solution: Don't give an error when handling WM_NETBEANS. Re-enable tests
8312 for MS-Windows.
8313Files: src/gui_w48.c, src/testdir/test_channel.vim
8314
8315Patch 7.4.1314
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008316Problem: Warning for uninitialized variable.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008317Solution: Initialize it. (Dominique Pelle)
8318Files: src/channel.c
8319
8320Patch 7.4.1315
8321Problem: Using a channel handle does not allow for freeing it when unused.
8322Solution: Add the Channel variable type.
8323Files: src/structs.h, src/channel.c, src/misc2.c, src/eval.c,
8324 src/if_python.c, src/if_python3.c, src/json.c, src/gui_w48.c,
8325 src/netbeans.c, src/proto/channel.pro, src/os_unix.c,
8326 src/testdir/test_channel.py, src/testdir/test_channel.vim
8327
8328Patch 7.4.1316
8329Problem: Can't build MS-Windows console version. (Tux)
8330Solution: Add #ifdefs.
8331Files: src/eval.c
8332
8333Patch 7.4.1317
8334Problem: MS-Windows: channel test fails.
8335Solution: Temporarily disable Test_connect_waittime().
8336Files: src/testdir/test_channel.vim
8337
8338Patch 7.4.1318
8339Problem: Channel with pipes doesn't work in GUI.
8340Solution: Register input handlers for pipes.
8341Files: src/structs.h, src/feature.h, src/channel.c, src/eval.c,
8342 src/os_unix.c, src/os_win32.c, src/gui_w48.c, src/proto/channel.pro
8343
8344Patch 7.4.1319 (after 7.4.1318)
8345Problem: Tests fail on MS-Windows and on Unix with GUI.
8346Solution: Fix unregistering.
8347Files: src/structs.h, src/channel.c, src/os_unix.c, src/os_win32.c,
8348 src/proto/channel.pro
8349
8350Patch 7.4.1320
8351Problem: Building with Cygwin or MingW with channel but without Netbeans
8352 doesn't work.
8353Solution: Set NETBEANS to "no" when not used.
8354Files: src/Make_cyg_ming.mak
8355
8356Patch 7.4.1321
8357Problem: Compiler complains about missing statement.
8358Solution: Add an empty statement. (Andrei Olsen)
8359Files: src/os_win32.c
8360
8361Patch 7.4.1322
8362Problem: Crash when unletting the variable that holds the channel in a
8363 callback function. (Christian Robinson)
8364Solution: Increase the reference count while invoking the callback.
8365Files: src/eval.c, src/channel.c, src/proto/eval.pro,
8366 src/testdir/test_channel.vim
8367
8368Patch 7.4.1323
8369Problem: Do not get warnings when building with MingW.
8370Solution: Remove the -w flag. (Ken Takata)
8371Files: src/Make_cyg_ming.mak
8372
8373Patch 7.4.1324
8374Problem: Channels with pipes don't work on MS-Windows.
8375Solution: Add pipe I/O support. (Yasuhiro Matsumoto)
8376Files: src/channel.c, src/os_win32.c, src/proto/channel.pro,
8377 src/structs.h, src/vim.h, src/testdir/test_channel.vim
8378
8379Patch 7.4.1325
8380Problem: Channel test fails on difference between Unix and DOS line endings.
8381Solution: Strip off CR. Make assert show difference better.
8382Files: src/eval.c, src/channel.c
8383
8384Patch 7.4.1326
8385Problem: Build rules are bit too complicated.
8386Solution: Remove -lwsock32 from Netbeans, it's already added for the channel
8387 feature that it depends on. (Tony Mechelynck)
8388Files: src/Make_cyg_ming.mak
8389
8390Patch 7.4.1327
8391Problem: Channel test doesn't work if Python executable is python.exe.
8392Solution: Find py.exe or python.exe. (Ken Takata)
8393Files: src/testdir/test_channel.vim
8394
8395Patch 7.4.1328
8396Problem: Can't compile with +job but without +channel. (John Marriott)
8397Solution: Add more #ifdefs.
8398Files: src/os_unix.c
8399
8400Patch 7.4.1329
8401Problem: Crash when using channel that failed to open.
8402Solution: Check for NULL. Update messages. (Yukihiro Nakadaira)
8403Files: src/channel.c, src/eval.c, src/testdir/test_channel.vim
8404
8405Patch 7.4.1330
8406Problem: fd_read() has an unused argument.
8407Solution: Remove the timeout. (Yasuhiro Matsumoto)
8408Files: src/channel.c
8409
8410Patch 7.4.1331
8411Problem: Crash when closing the channel in a callback. (Christian J.
8412 Robinson)
8413Solution: Take the callback out of the list before invoking it.
8414Files: src/channel.c, src/testdir/test_channel.vim
8415
8416Patch 7.4.1332
8417Problem: Problem using Python3 when compiled with MingW.
8418Solution: Define PYTHON3_HOME as a wide character string. (Yasuhiro
8419 Matsumoto)
8420Files: src/Make_cyg_ming.mak
8421
8422Patch 7.4.1333
8423Problem: Channel test fails on non-darwin builds.
8424Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama)
8425Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_channel.vim
8426
8427Patch 7.4.1334
8428Problem: Many compiler warnings with MingW.
8429Solution: Add type casts. (Yasuhiro Matsumoto)
8430Files: src/channel.c, src/dosinst.h, src/eval.c, src/ex_cmds2.c,
8431 src/ex_getln.c, src/fileio.c, src/if_cscope.c, src/if_perl.xs,
8432 src/if_python.c, src/if_python3.c, src/if_ruby.c, src/main.c,
8433 src/mbyte.c, src/misc1.c, src/option.c, src/os_mswin.c,
8434 src/os_win32.c
8435
8436Patch 7.4.1335
8437Problem: Can't build on MS-Windows with +job but without +channel. (Cesar
8438 Romani)
8439Solution: Add #ifdefs. (Yasuhiro Matsumoto)
8440Files: src/os_win32.c
8441
8442Patch 7.4.1336
8443Problem: Channel NL mode is not supported yet.
8444Solution: Add NL mode support to channels.
8445Files: src/channel.c, src/netbeans.c, src/structs.h, src/os_unix.d,
8446 src/os_win32.c, src/proto/channel.pro, src/proto/os_unix.pro,
8447 src/proto/os_win32.pro, src/testdir/test_channel.vim,
8448 src/testdir/test_channel_pipe.py
8449
8450Patch 7.4.1337 (after 7.4.1336)
8451Problem: Part of the change is missing.
8452Solution: Add changes to eval.c
8453Files: src/eval.c
8454
8455
8456Patch 7.4.1338 (after 7.4.1336)
8457Problem: Another part of the change is missing.
8458Solution: Type os_unix.c right this time.
8459Files: src/os_unix.c
8460
8461Patch 7.4.1339
8462Problem: Warnings when building the GUI with MingW. (Cesar Romani)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008463Solution: Add type casts. (Yasuhiro Matsumoto)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008464Files: src/edit.c, src/gui_w32.c, src/gui_w48.c, src/os_mswin.c,
8465 src/os_win32.c
8466
8467Patch 7.4.1340 (after 7.4.1339)
8468Problem: Merge left extra #endif behind.
8469Solution: Remove the #endif
8470Files: src/os_win32.c
8471
8472Patch 7.4.1341
8473Problem: It's difficult to add more arguments to ch_sendraw() and
8474 ch_sendexpr().
8475Solution: Make the third option a dictionary.
8476Files: src/eval.c, src/structs.h, src/channel.c, src/os_unix.c,
8477 src/os_win32.c, src/proto/channel.pro,
8478 src/testdir/test_channel.vim, runtime/doc/eval.txt
8479
8480Patch 7.4.1342
8481Problem: On Mac OS/X the waittime must be > 0 for connect to work.
8482Solution: Use select() in a different way. (partly by Kazunobu Kuriyama)
8483 Always use a waittime of 1 or more.
8484Files: src/eval.c, src/channel.c, src/testdir/test_channel.vim
8485
8486Patch 7.4.1343
8487Problem: Can't compile with +job but without +channel. (Andrei Olsen)
8488Solution: Move get_job_options up and adjust #ifdef.
8489Files: src/eval.c
8490
8491Patch 7.4.1344
8492Problem: Can't compile Win32 GUI with tiny features.
8493Solution: Add #ifdef. (Christian Brabandt)
8494Files: src/gui_w32.c
8495
8496Patch 7.4.1345
8497Problem: A few more compiler warnings. (Axel Bender)
8498Solution: Add type casts.
8499Files: src/gui_w32.c, src/gui_w48.c
8500
8501Patch 7.4.1346
8502Problem: Compiler warnings in build with -O2.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008503Solution: Add initializations.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008504Files: src/eval.c
8505
8506Patch 7.4.1347
8507Problem: When there is any error Vim will use a non-zero exit code.
8508Solution: When using ":silent!" do not set the exit code. (Yasuhiro
8509 Matsumoto)
8510Files: src/message.c
8511
8512Patch 7.4.1348
8513Problem: More compiler warnings. (John Marriott)
8514Solution: Add type casts, remove unused variable.
8515Files: src/gui_w32.c
8516
8517Patch 7.4.1349
8518Problem: And some more MingW compiler warnings. (Cesar Romani)
8519Solution: Add type casts.
8520Files: src/if_mzsch.c
8521
8522Patch 7.4.1350
8523Problem: When the test server fails to start Vim hangs.
8524Solution: Check that there is actually something to read from the tty fd.
8525Files: src/os_unix.c
8526
8527Patch 7.4.1351
8528Problem: When the port isn't opened yet when ch_open() is called it may
8529 fail instead of waiting for the specified time.
8530Solution: Loop when select() succeeds but when connect() failed. Also use
8531 channel logging for jobs. Add ch_log().
8532Files: src/channel.c, src/eval.c, src/netbeans.c, src/proto/channel.pro,
8533 src/testdir/test_channel.vim, src/testdir/test_channel.py
8534
8535Patch 7.4.1352
8536Problem: The test script lists all functions before executing them.
8537Solution: Only list the function currently being executed.
8538Files: src/testdir/runtest.vim
8539
8540Patch 7.4.1353
8541Problem: Test_connect_waittime is skipped for MS-Windows.
8542Solution: Add the test back, it works now.
8543Files: src/testdir/test_channel.vim
8544
8545Patch 7.4.1354
8546Problem: MS-Windows: Mismatch between default compile options and what the
8547 code expects.
8548Solution: Change the default WINVER from 0x0500 to 0x0501. (Ken Takata)
8549Files: src/Make_cyg_ming.mak, src/Make_mvc.mak
8550
8551Patch 7.4.1355
8552Problem: Win32 console and GUI handle channels differently.
8553Solution: Consolidate code between Win32 console and GUI.
8554Files: src/channel.c, src/eval.c, src/gui_w48.c, src/os_win32.c,
8555 src/proto/channel.pro
8556
8557Patch 7.4.1356
8558Problem: Job and channel options parsing is scattered.
8559Solution: Move all option value parsing to get_job_options();
8560Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro,
8561 src/testdir/test_channel.vim
8562
8563Patch 7.4.1357 (after 7.4.1356)
8564Problem: Error for returning value from void function.
8565Solution: Don't do that.
8566Files: src/eval.c
8567
8568Patch 7.4.1358
8569Problem: Compiler warning when not building with +crypt.
8570Solution: Add #ifdef. (John Marriott)
8571Files: src/undo.c
8572
8573Patch 7.4.1359 (after 7.4.1356)
8574Problem: Channel test ch_sendexpr() times out.
8575Solution: Increase the timeout
8576Files: src/testdir/test_channel.vim
8577
8578Patch 7.4.1360
8579Problem: Can't remove a callback with ch_setoptions().
8580Solution: When passing zero or an empty string remove the callback.
8581Files: src/channel.c, src/proto/channel.pro, src/testdir/test_channel.vim
8582
8583Patch 7.4.1361
8584Problem: Channel test fails on Solaris.
8585Solution: Use the 1 msec waittime for all systems.
8586Files: src/channel.c
8587
8588Patch 7.4.1362 (after 7.4.1356)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008589Problem: Using uninitialized value.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008590Solution: Initialize jo_set.
8591Files: src/eval.c
8592
8593Patch 7.4.1363
8594Problem: Compiler warnings with tiny build.
8595Solution: Add #ifdefs.
8596Files: src/gui_w48.c, src/gui_w32.c
8597
8598Patch 7.4.1364
8599Problem: The Win 16 code is not maintained and unused.
8600Solution: Remove the Win 16 support.
8601Files: src/gui_w16.c, src/gui_w32.c, src/gui_w48.c, src/Make_w16.mak,
8602 src/Makefile, src/Make_cyg_ming.mak, src/Make_mvc.mak,
8603 src/proto/gui_w16.pro, src/proto/os_win16.pro, src/guiw16rc.h,
8604 src/vim16.rc, src/vim16.def, src/tools16.bmp, src/eval.c,
8605 src/gui.c, src/misc2.c, src/option.c, src/os_msdos.c,
8606 src/os_mswin.c, src/os_win16.c, src/os_win16.h, src/version.c,
8607 src/winclip.c, src/feature.h, src/proto.h, src/vim.h, Filelist
8608
8609Patch 7.4.1365
8610Problem: Cannot execute a single test function.
8611Solution: Add an argument to filter the functions with. (Yasuhiro Matsumoto)
8612Files: src/testdir/runtest.vim
8613
8614Patch 7.4.1366
8615Problem: Typo in test and resulting error in test result.
Bram Moolenaar09521312016-08-12 22:54:35 +02008616Solution: Fix the typo and correct the result. (James McCoy, closes #650)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008617Files: src/testdir/test_charsearch.in, src/testdir/test_charsearch.ok
8618
8619Patch 7.4.1367
8620Problem: Compiler warning for unreachable code.
8621Solution: Remove a "break". (Danek Duvall)
8622Files: src/json.c
8623
8624Patch 7.4.1368
8625Problem: One more Win16 file remains.
8626Solution: Delete it.
8627Files: src/proto/os_win16.pro
8628
8629Patch 7.4.1369
8630Problem: Channels don't have a queue for stderr.
8631Solution: Have a queue for each part of the channel.
8632Files: src/channel.c, src/eval.c, src/structs.h, src/netbeans.c,
8633 src/gui_w32.c, src/proto/channel.pro
8634
8635Patch 7.4.1370
8636Problem: The Python test script may keep on running.
8637Solution: Join the threads. (Yasuhiro Matsumoto)
8638Files: src/testdir/test_channel.py
8639
8640Patch 7.4.1371
8641Problem: X11 GUI callbacks don't specify the part of the channel.
8642Solution: Pass the fd instead of the channel ID.
8643Files: src/channel.c
8644
8645Patch 7.4.1372
8646Problem: channel read implementation is incomplete.
8647Solution: Add ch_read() and options for ch_readraw().
8648Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro,
8649 src/testdir/test_channel.vim
8650
8651Patch 7.4.1373
8652Problem: Calling a Vim function over a channel requires turning the
8653 arguments into a string.
8654Solution: Add the "call" command. (Damien) Also merge "expr" and "eval"
8655 into one.
8656Files: src/channel.c, src/testdir/test_channel.py,
8657 src/testdir/test_channel.vim
8658
8659Patch 7.4.1374
8660Problem: Channel test hangs on MS-Windows.
8661Solution: Disable the ch_read() that is supposed to time out.
8662Files: src/testdir/test_channel.vim
8663
8664Patch 7.4.1375
8665Problem: Still some Win16 code.
8666Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
8667Files: src/eval.c, src/ex_cmds.h, src/feature.h, src/gui.h, src/menu.c,
8668 src/misc1.c, src/option.c, src/proto.h, src/structs.h, src/term.c,
8669 src/vim.h, runtime/doc/gui_w16.txt
8670
8671Patch 7.4.1376
8672Problem: ch_setoptions() cannot set all options.
8673Solution: Support more options.
8674Files: src/channel.c, src/eval.c, src/structs.h, runtime/doc/channel.txt,
8675 src/testdir/test_channel.vim
8676
8677Patch 7.4.1377
8678Problem: Test_connect_waittime() is flaky.
8679Solution: Ignore the "Connection reset by peer" error.
8680Files: src/testdir/test_channel.vim
8681
8682Patch 7.4.1378
8683Problem: Can't change job settings after it started.
8684Solution: Add job_setoptions() with the "stoponexit" flag.
8685Files: src/eval.c, src/main.c, src/structs.h, src/proto/eval.pro,
8686 src/testdir/test_channel.vim
8687
8688Patch 7.4.1379
8689Problem: Channel test fails on Win32 console.
8690Solution: Don't sleep when timeout is zero. Call channel_wait() before
8691 channel_read(). Channels are not polled during ":sleep". (Yukihiro
8692 Nakadaira)
8693Files: src/channel.c, src/misc2.c, src/gui_w32.c, src/os_win32.c
8694
8695Patch 7.4.1380
8696Problem: The job exit callback is not implemented.
8697Solution: Add the "exit-cb" option.
8698Files: src/structs.h, src/eval.c, src/channel.c, src/proto/eval.pro,
8699 src/misc2.c, src/macros.h, src/testdir/test_channel.vim
8700
8701Patch 7.4.1381 (after 7.4.1380)
8702Problem: Exit value not available on MS-Windows.
8703Solution: Set the exit value.
8704Files: src/structs.h, src/os_win32.c
8705
8706Patch 7.4.1382
8707Problem: Can't get the job of a channel.
8708Solution: Add ch_getjob().
8709Files: src/eval.c, runtime/doc/channel.txt, runtime/doc/eval.txt
8710
8711Patch 7.4.1383
8712Problem: GvimExt only loads the old libintl.dll.
8713Solution: Also try loading libint-8.dll. (Ken Takata, closes #608)
8714Files: src/GvimExt/gvimext.cpp, src/GvimExt/gvimext.h
8715
8716Patch 7.4.1384
8717Problem: It is not easy to use a set of plugins and their dependencies.
8718Solution: Add packages, ":loadplugin", 'packpath'.
8719Files: src/main.c, src/ex_cmds2.c, src/option.c, src/option.h,
8720 src/ex_cmds.h, src/eval.c, src/version.c, src/proto/ex_cmds2.pro,
8721 runtime/doc/repeat.txt, runtime/doc/options.txt,
8722 runtime/optwin.vim
8723
8724Patch 7.4.1385
8725Problem: Compiler warning for using array.
8726Solution: Use the right member name. (Yegappan Lakshmanan)
8727Files: src/eval.c
8728
8729Patch 7.4.1386
8730Problem: When the Job exit callback is invoked, the job may be freed too
8731 soon. (Yasuhiro Matsumoto)
8732Solution: Increase refcount.
8733Files: src/eval.c
8734
8735Patch 7.4.1387
8736Problem: Win16 docs still referenced.
8737Solution: Remove Win16 files from the docs Makefile. (Kenichi Ito)
8738Files: runtime/doc/Makefile
8739
8740Patch 7.4.1388
8741Problem: Compiler warning. (Cesar Romani)
8742Solution: Initialize variable.
8743Files: src/ex_cmds2.c
8744
8745Patch 7.4.1389
8746Problem: Incomplete function declaration.
8747Solution: Add "void". (Yasuhiro Matsumoto)
8748Files: src/eval.c
8749
8750Patch 7.4.1390
8751Problem: When building with GTK and glib-compile-resources cannot be found
8752 building Vim fails. (Michael Gehring)
8753Solution: Make GLIB_COMPILE_RESOURCES empty instead of leaving it at "no".
8754 (nuko8, closes #655)
8755Files: src/configure.in, src/auto/configure
8756
8757Patch 7.4.1391
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008758Problem: Warning for uninitialized variable.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008759Solution: Set it to zero. (Christian Brabandt)
8760Files: src/eval.c
8761
8762Patch 7.4.1392
8763Problem: Some tests fail for Win32 console version.
8764Solution: Move the tests to SCRIPTS_MORE2. Pass VIMRUNTIME. (Christian
8765 Brabandt)
8766Files: src/testdir/Make_all.mak
8767
8768Patch 7.4.1393
8769Problem: Starting a job hangs in the GUI. (Takuya Fujiwara)
8770Solution: Don't check if ch_job is NULL when checking for an error.
8771 (Yasuhiro Matsumoto)
8772Files: src/channel.c
8773
8774Patch 7.4.1394
8775Problem: Can't sort inside a sort function.
8776Solution: Use a struct to store the sort parameters. (Jacob Niehus)
8777Files: src/eval.c, src/testdir/test_sort.vim
8778
8779Patch 7.4.1395
8780Problem: Using DETACH in quotes is not compatible with the Netbeans
8781 interface. (Xavier de Gaye)
8782Solution: Remove the quotes, only use them for JSON and JS mode.
8783Files: src/netbeans.c, src/channel.c
8784
8785Patch 7.4.1396
8786Problem: Compiler warnings for conversions.
8787Solution: Add type cast.
8788Files: src/ex_cmds2.c
8789
8790Patch 7.4.1397
8791Problem: Sort test fails on MS-Windows.
8792Solution: Correct the compare function.
8793Files: src/testdir/test_sort.vim
8794
8795Patch 7.4.1398
8796Problem: The close-cb option is not implemented yet.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008797Solution: Implement close-cb. (Yasuhiro Matsumoto)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008798Files: src/channel.c, src/eval.c, src/structs.h, src/proto/channel.pro,
8799 src/testdir/test_channel.py, src/testdir/test_channel.vim
8800
8801Patch 7.4.1399
8802Problem: The MS-DOS code does not build.
8803Solution: Remove the old MS-DOS code.
8804Files: Filelist, src/Make_bc3.mak, src/Make_bc5.mak, src/Make_djg.mak,
8805 src/Makefile, src/blowfish.c, src/buffer.c, src/diff.c,
8806 src/digraph.c, src/dosinst.h, src/eval.c, src/ex_cmds.c,
8807 src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c, src/feature.h,
8808 src/fileio.c, src/getchar.c, src/globals.h, src/macros.h,
8809 src/main.c, src/mbyte.c, src/memfile.c, src/memline.c,
8810 src/misc1.c, src/misc2.c, src/netbeans.c, src/option.c,
8811 src/option.h, src/os_msdos.c, src/os_msdos.h, src/proto.h,
8812 src/proto/os_msdos.pro, src/regexp.c, src/screen.c, src/structs.h,
8813 src/syntax.c, src/term.c, src/term.c, src/undo.c, src/uninstal.c,
8814 src/version.c, src/vim.h, src/window.c, src/xxd/Make_bc3.mak,
8815 src/xxd/Make_djg.mak
8816
8817
8818Patch 7.4.1400
8819Problem: Perl eval doesn't work properly on 64-bit big-endian machine.
8820Solution: Use 32 bit type for the key. (Danek Duvall)
8821Files: src/if_perl.xs
8822
8823Patch 7.4.1401
8824Problem: Having 'autochdir' set during startup and using diff mode doesn't
8825 work. (Axel Bender)
8826Solution: Don't use 'autochdir' while still starting up. (Christian
8827 Brabandt)
8828Files: src/buffer.c
8829
8830Patch 7.4.1402
8831Problem: GTK 3 is not supported.
8832Solution: Add GTK 3 support. (Kazunobu Kuriyama)
8833Files: runtime/doc/eval.txt, runtime/doc/gui.txt,
8834 runtime/doc/gui_x11.txt, src/auto/configure, src/channel.c,
8835 src/config.h.in, src/configure.in, src/eval.c, src/gui.h,
8836 src/gui_beval.c, src/gui_beval.h, src/gui_gtk.c, src/gui_gtk_f.c,
8837 src/gui_gtk_f.h, src/gui_gtk_x11.c, src/if_mzsch.c, src/mbyte.c,
8838 src/netbeans.c, src/structs.h, src/version.c
8839
8840Patch 7.4.1403
8841Problem: Can't build without the quickfix feature.
8842Solution: Add #ifdefs. Call ex_ni() for unimplemented commands. (Yegappan
8843 Lakshmanan)
8844Files: src/ex_cmds2.c, src/popupmnu.c
8845
8846Patch 7.4.1404
8847Problem: ch_read() doesn't time out on MS-Windows.
8848Solution: Instead of WM_NETBEANS use select(). (Yukihiro Nakadaira)
8849Files: src/channel.c, src/gui_w32.c, src/os_win32.c, src/structs.h,
8850 src/testdir/test_channel.vim, src/vim.h
8851
8852Patch 7.4.1405
8853Problem: Completion menu flickers.
8854Solution: Delay showing the popup menu. (Shougo, Justin M. Keyes, closes
8855 #656)
8856Files: src/edit.c
8857
8858Patch 7.4.1406
8859Problem: Leaking memory in cs_print_tags_priv().
8860Solution: Free tbuf. (idea by Forrest Fleming)
8861Files: src/if_cscope.c
8862
8863Patch 7.4.1407
8864Problem: json_encode() does not handle NaN and inf properly. (David
8865 Barnett)
8866Solution: For JSON turn them into "null". For JS use "NaN" and "Infinity".
8867 Add isnan().
8868Files: src/eval.c, src/json.c, src/testdir/test_json.vim
8869
8870Patch 7.4.1408
8871Problem: MS-Windows doesn't have isnan() and isinf().
8872Solution: Use _isnan() and _isinf().
8873Files: src/eval.c, src/json.c
8874
8875Patch 7.4.1409 (after 7.4.1402)
8876Problem: Configure includes GUI despite --disable-gui flag.
8877Solution: Add SKIP_GTK3. (Kazunobu Kuriyama)
8878Files: src/configure.in, src/auto/configure
8879
8880Patch 7.4.1410
8881Problem: Leaking memory in cscope interface.
8882Solution: Free memory when no tab is found. (Christian Brabandt)
8883Files: src/if_cscope.c
8884
8885Patch 7.4.1411
8886Problem: Compiler warning for indent. (Ajit Thakkar)
8887Solution: Indent normally.
8888Files: src/ui.c
8889
8890Patch 7.4.1412
8891Problem: Compiler warning for indent. (Dominique Pelle)
8892Solution: Fix the indent.
8893Files: src/farsi.c
8894
8895Patch 7.4.1413
8896Problem: When calling ch_close() the close callback is invoked, even though
8897 the docs say it isn't. (Christian J. Robinson)
8898Solution: Don't call the close callback.
8899Files: src/eval.c, src/channel.c, src/netbeans.c, src/proto/channel.pro
8900
8901Patch 7.4.1414
8902Problem: Appveyor only builds one feature set.
8903Solution: Build a combination of features and GUI/console. (Christian
8904 Brabandt)
8905Files: appveyor.yml, src/appveyor.bat
8906
8907Patch 7.4.1415 (after 7.4.1414)
8908Problem: Dropped the skip-tags setting.
8909Solution: Put it back.
8910Files: appveyor.yml
8911
8912Patch 7.4.1416
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02008913Problem: Using "u_char" instead of "char_u", which doesn't work everywhere.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02008914 (Jörg Plate)
8915Solution: Use "char_u" always.
8916Files: src/integration.c, src/macros.h
8917
8918Patch 7.4.1417 (after 7.4.1414)
8919Problem: Missing appveyor.bat from the distribution.
8920Solution: Add it to the list of files.
8921Files: Filelist
8922
8923Patch 7.4.1418
8924Problem: job_stop() on MS-Windows does not really stop the job.
8925Solution: Make the default to stop the job forcefully. (Ken Takata)
8926 Make MS-Windows and Unix more similar.
8927Files: src/os_win32.c, src/os_unix.c, runtime/doc/eval.txt
8928
8929Patch 7.4.1419
8930Problem: Tests slowed down because of the "not a terminal" warning.
8931Solution: Add the --not-a-term command line argument.
8932Files: src/main.c, src/testdir/Makefile, src/Make_all.mak,
8933 src/Make_amiga.mak, src/testdir/Make_dos.mak,
8934 src/testdir/Make_ming.mak, src/testdir/Make_vms.mms,
8935 runtime/doc/starting.txt
8936
8937Patch 7.4.1420 (after 7.4.1419)
8938Problem: Missing makefile.
8939Solution: Type the path correctly.
8940Files: src/testdir/Make_all.mak
8941
8942Patch 7.4.1421
8943Problem: May free a channel when a callback may need to be invoked.
8944Solution: Keep the channel when refcount is zero.
8945Files: src/eval.c, src/channel.c, src/proto/channel.pro
8946
8947Patch 7.4.1422
8948Problem: Error when reading fails uses wrong errno. Keeping channel open
8949 after job stops results in test failing.
8950Solution: Move the error up. Add ch_job_killed.
8951Files: src/channel.c, src/eval.c, src/structs.h
8952
8953Patch 7.4.1423
8954Problem: Channel test fails on MS-Windows.
8955Solution: Do not give an error message when reading fails, assume the other
8956 end exited.
8957Files: src/channel.c
8958
8959Patch 7.4.1424
8960Problem: Not using --not-a-term when running tests on MS-Windows.
8961Solution: Use NO_PLUGIN. (Christian Brabandt)
8962Files: src/testdir/Make_dos.mak
8963
8964Patch 7.4.1425
8965Problem: There are still references to MS-DOS support.
8966Solution: Remove most of the help txt and install instructions. (Ken Takata)
8967Files: src/INSTALLpc.txt, runtime/doc/os_msdos.txt, csdpmi4b.zip,
8968 Filelist
8969
8970Patch 7.4.1426
8971Problem: The "out-io" option for jobs is not implemented yet.
8972Solution: Implement the "buffer" value: append job output to a buffer.
8973Files: src/eval.c, src/channel.c, src/structs.h, src/netbeans.c,
8974 runtime/doc/channel.txt
8975
8976Patch 7.4.1427
8977Problem: Trailing comma in enums is not ANSI C.
8978Solution: Remove the trailing commas.
8979Files: src/alloc.h, src/gui_mac.c
8980
8981Patch 7.4.1428
8982Problem: Compiler warning for non-virtual destructor.
8983Solution: Make it virtual. (Yasuhiro Matsumoto)
8984Files: src/gui_dwrite.cpp
8985
8986Patch 7.4.1429
8987Problem: On MS-Windows, when not use renderoptions=type:directx, drawing
8988 emoji will be broken.
8989Solution: Fix usage of unicodepdy. (Yasuhiro Matsumoto)
8990Files: src/gui_w32.c
8991
8992Patch 7.4.1430
8993Problem: When encoding JSON, turning NaN and Infinity into null without
8994 giving an error is not useful.
8995Solution: Pass NaN and Infinity on. If the receiver can't handle them it
8996 will generate the error.
8997Files: src/json.c, src/testdir/test_json.vim, runtime/doc/eval.txt
8998
8999Patch 7.4.1431
9000Problem: Including header files twice.
9001Solution: Remove the extra includes.
9002Files: src/if_cscope.h
9003
9004Patch 7.4.1432
9005Problem: Typo in button text.
9006Solution: Fix the typo. (Dominique Pelle)
9007Files: src/gui_gtk.c
9008
9009Patch 7.4.1433
9010Problem: The Sniff interface is no longer useful, the tool has not been
9011 available for may years.
9012Solution: Delete the Sniff interface and related code.
9013Files: src/if_sniff.c, src/if_sniff.h, src/charset.c, src/edit.c,
9014 src/eval.c, src/ex_cmds2.c, src/ex_docmd.c, src/ex_getln.c,
9015 src/gui_gtk_x11.c, src/gui_w32.c, src/gui_x11.c, src/normal.c,
9016 src/os_unix.c, src/os_win32.c, src/term.c, src/ui.c,
9017 src/version.c, src/ex_cmds.h, src/feature.h, src/keymap.h,
9018 src/structs.h, src/vim.h, src/Make_mvc.mak, src/Make_vms.mms,
9019 src/Makefile, src/configure.in, src/auto/configure,
9020 src/config.h.in, src/config.mk.in, runtime/doc/if_sniff.txt,
9021 src/config.aap.in, src/main.aap
9022
9023Patch 7.4.1434
9024Problem: JSON encoding doesn't handle surrogate pair.
9025Solution: Improve multi-byte handling of JSON. (Yasuhiro Matsumoto)
9026Files: src/json.c, src/testdir/test_json.vim
9027
9028Patch 7.4.1435
9029Problem: It is confusing that ch_sendexpr() and ch_sendraw() wait for a
9030 response.
9031Solution: Add ch_evalexpr() and ch_evalraw().
9032Files: src/eval.c, runtime/doc/channel.txt, runtime/doc/eval.txt,
9033 src/testdir/test_channel.vim
9034
9035Patch 7.4.1436 (after 7.4.1433)
9036Problem: Sniff files still referenced in distribution.
9037Solution: Remove sniff files from distribution.
9038Files: Filelist
9039
9040Patch 7.4.1437
9041Problem: Old system doesn't have isinf() and NAN. (Ben Fritz)
9042Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with
9043 configure. Use a replacement when missing. (Kazunobu Kuriyama)
9044Files: src/eval.c, src/json.c, src/macros.h, src/message.c,
9045 src/config.h.in, src/configure.in, src/auto/configure
9046
9047Patch 7.4.1438
9048Problem: Can't get buffer number of a channel.
9049Solution: Add ch_getbufnr().
9050Files: src/eval.c, src/channel.c, src/testdir/test_channel.vim,
9051 runtime/doc/channel.txt, runtime/doc/eval.txt
9052
9053Patch 7.4.1439 (after 7.4.1434)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02009054Problem: Using uninitialized variable.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009055Solution: Initialize vc_type.
9056Files: src/json.c
9057
9058Patch 7.4.1440 (after 7.4.1437)
9059Problem: Can't build on Windows.
9060Solution: Change #ifdefs. Only define isnan when used.
9061Files: src/macros.h, src/eval.c, src/json.c
9062
9063Patch 7.4.1441
9064Problem: Using empty name instead of no name for channel buffer.
9065Solution: Remove the empty name.
9066Files: src/channel.c
9067
9068Patch 7.4.1442
9069Problem: MS-Windows: more compilation warnings for destructor.
9070Solution: Add "virtual". (Ken Takata)
9071Files: src/if_ole.cpp
9072
9073Patch 7.4.1443
9074Problem: Can't build GTK3 with small features.
9075Solution: Use gtk_widget_get_window(). Fix typos. (Dominique Pelle)
9076Files: src/gui_gtk_x11.c
9077
9078Patch 7.4.1444
9079Problem: Can't build with JSON but without multi-byte.
9080Solution: Fix pointer name.
9081Files: src/json.c
9082
9083Patch 7.4.1445
9084Problem: Memory corruption when 'encoding' is not utf-8.
9085Solution: Convert decoded string later.
9086Files: src/json.c
9087
9088Patch 7.4.1446
9089Problem: Crash when using json_decode().
9090Solution: Terminate string with a NUL byte.
9091Files: src/json.c
9092
9093Patch 7.4.1447
9094Problem: Memory leak when using ch_read(). (Dominique Pelle)
9095 No log message when stopping a job and a few other situations.
9096 Too many "Nothing to read" messages. Channels are not freed.
9097Solution: Free the listtv. Add more log messages. Remove "Nothing to read"
9098 message. Remove the channel from the job when its refcount
9099 becomes zero.
9100Files: src/eval.c, src/channel.c
9101
9102Patch 7.4.1448
9103Problem: JSON tests fail if 'encoding' is not utf-8.
9104Solution: Force encoding to utf-8.
9105Files: src/testdir/test_json.vim
9106
9107Patch 7.4.1449
9108Problem: Build fails with job feature but without channel feature.
9109Solution: Add #ifdef.
9110Files: src/eval.c
9111
9112Patch 7.4.1450
9113Problem: Json encoding still fails when encoding is not utf-8.
9114Solution: Set 'encoding' before :scriptencoding. Run the json test
9115 separately to avoid affecting other tests.
9116Files: src/testdir/test_json.vim, src/testdir/Make_all.mak,
9117 src/testdir/test_alot.vim
9118
9119Patch 7.4.1451
9120Problem: Vim hangs when a channel has a callback but isn't referenced.
9121Solution: Have channel_unref() only return TRUE when the channel was
9122 actually freed.
9123Files: src/eval.c, src/channel.c, src/proto/channel.pro
9124
9125Patch 7.4.1452
9126Problem: When a callback adds a syntax item either the redraw doesn't
9127 happen right away or in the GUI the cursor is in the wrong
9128 position for a moment. (Jakson Alves de Aquino)
9129Solution: Redraw after the callback was invoked.
9130Files: src/channel.c
9131
9132Patch 7.4.1453
9133Problem: Missing --not-a-term.
9134Solution: Add the argument.
9135Files: src/testdir/Make_amiga.mak
9136
9137Patch 7.4.1454
9138Problem: The exit callback test is flaky.
9139Solution: Loop to wait for a short time up to a second.
9140Files: src/testdir/test_channel.vim
9141
9142Patch 7.4.1455
9143Problem: JSON decoding test for surrogate pairs is in the wrong place.
9144Solution: Move the test lines. (Ken Takata)
9145Files: src/testdir/test_json.vim
9146
9147Patch 7.4.1456
9148Problem: Test 87 fails with Python 3.5.
9149Solution: Work around difference. (Taro Muraoka)
9150Files: src/testdir/test87.in
9151
9152Patch 7.4.1457
9153Problem: Opening a channel with select() is not done properly.
9154Solution: Also used read-fds. Use getsockopt() to check for errors. (Ozaki
9155 Kiichi)
9156Files: src/channel.c
9157
9158Patch 7.4.1458
9159Problem: When a JSON channel has a callback it may never be cleared.
9160Solution: Do not write "DETACH" into a JS or JSON channel.
9161Files: src/channel.c
9162
9163Patch 7.4.1459 (after 7.4.1457)
9164Problem: MS-Windows doesn't know socklen_t.
9165Solution: Use previous method for WIN32.
9166Files: src/channel.c
9167
9168Patch 7.4.1460
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02009169Problem: Syntax error in rarely used code.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009170Solution: Fix the mch_rename() declaration. (Ken Takata)
9171Files: src/os_unix.c, src/proto/os_unix.pro
9172
9173Patch 7.4.1461
9174Problem: When starting job on MS-Windows all parts of the command are put
9175 in quotes.
9176Solution: Only use quotes when needed. (Yasuhiro Matsumoto)
9177Files: src/eval.c
9178
9179Patch 7.4.1462
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02009180Problem: Two more rarely used functions with errors.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009181Solution: Add proper argument types. (Dominique Pelle)
9182Files: src/misc2.c, src/termlib.c
9183
9184Patch 7.4.1463
9185Problem: Configure doesn't find isinf() and isnan() on some systems.
9186Solution: Use a configure check that includes math.h.
9187Files: src/configure.in, src/auto/configure
9188
9189Patch 7.4.1464
9190Problem: When the argument of sort() is zero or empty it fails.
9191Solution: Make zero work as documented. (suggested by Yasuhiro Matsumoto)
9192Files: src/eval.c, src/testdir/test_sort.vim
9193
9194Patch 7.4.1465
9195Problem: Coverity reported possible use of NULL pointer when using buffer
9196 output with JSON mode.
9197Solution: Make it actually possible to use JSON mode with a buffer.
9198 Re-encode the JSON to append it to the buffer.
9199Files: src/channel.c, src/testdir/test_channel.vim
9200
9201Patch 7.4.1466
9202Problem: Coverity reports dead code.
9203Solution: Remove the two lines.
9204Files: src/channel.c
9205
9206Patch 7.4.1467
9207Problem: Can't build without the float feature.
9208Solution: Add #ifdefs. (Nick Owens, closes #667)
9209Files: src/eval.c, src/json.c
9210
9211Patch 7.4.1468
9212Problem: Sort test doesn't test with "1" argument.
9213Solution: Also test ignore-case sorting. (Yasuhiro Matsumoto)
9214Files: src/testdir/test_sort.vim
9215
9216Patch 7.4.1469
9217Problem: Channel test sometimes fails, especially on OS/X. (Kazunobu
9218 Kuriyama)
9219Solution: Change the && into ||, call getsockopt() in more situations.
9220 (Ozaki Kiichi)
9221Files: src/channel.c
9222
9223Patch 7.4.1470
9224Problem: Coverity reports missing restore.
9225Solution: Move json_encode() call up.
9226Files: src/channel.c
9227
9228Patch 7.4.1471
9229Problem: Missing out-of-memory check. And Coverity warning.
9230Solution: Bail out when msg is NULL.
9231Files: src/channel.c
9232
9233Patch 7.4.1472
9234Problem: Coverity warning for not using return value.
9235Solution: Add "(void)".
9236Files: src/os_unix.c
9237
9238Patch 7.4.1473
9239Problem: Can't build without the autocommand feature.
9240Solution: Add #ifdefs. (Yegappan Lakshmanan)
9241Files: src/edit.c, src/main.c, src/syntax.c
9242
9243Patch 7.4.1474
9244Problem: Compiler warnings without the float feature.
9245Solution: Move #ifdefs. (John Marriott)
9246Files: src/eval.c
9247
9248Patch 7.4.1475
9249Problem: When using hangulinput with utf-8 a CSI character is
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02009250 misinterpreted.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009251Solution: Convert CSI to K_CSI. (SungHyun Nam)
9252Files: src/ui.c
9253
9254Patch 7.4.1476
9255Problem: Function arguments marked as unused while they are not.
9256Solution: Remove UNUSED. (Yegappan Lakshmanan)
9257Files: src/diff.c, src/eval.c, src/ex_cmds2.c, src/ex_docmd.c,
9258 src/window.c
9259
9260Patch 7.4.1477
9261Problem: Test_reltime is flaky, it depends on timing.
9262Solution: When it fails run it a second time.
9263Files: src/testdir/runtest.vim
9264
9265Patch 7.4.1478
9266Problem: ":loadplugin" doesn't take care of ftdetect files.
9267Solution: Also load ftdetect scripts when appropriate.
9268Files: src/ex_cmds2.c
9269
9270Patch 7.4.1479
9271Problem: No testfor ":loadplugin".
9272Solution: Add a test. Fix how option is being set.
9273Files: src/ex_cmds2.c, src/testdir/test_loadplugin.vim,
9274 src/testdir/Make_all.mak
9275
9276Patch 7.4.1480
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02009277Problem: Cannot add a pack directory without loading a plugin.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009278Solution: Add the :packadd command.
9279Files: src/ex_cmds.h, src/ex_cmds2.c, src/proto/ex_cmds2.pro,
9280 src/testdir/test_loadplugin.vim, runtime/doc/repeat.txt
9281
9282Patch 7.4.1481
9283Problem: Can't build with small features.
9284Solution: Add #ifdef.
9285Files: src/ex_cmds2.c
9286
9287Patch 7.4.1482
9288Problem: "timeout" option not supported on ch_eval*().
9289Solution: Get and use the timeout option from the argument.
9290Files: src/eval.c, src/testdir/test_channel.vim
9291
9292Patch 7.4.1483
9293Problem: A one-time callback is not used for a raw channel.
9294Solution: Use a one-time callback when it exists.
9295Files: src/channel.c, src/testdir/test_channel.vim,
9296 src/testdir/test_channel.py
9297
9298Patch 7.4.1484
9299Problem: Channel "err-io" value "out" is not supported.
9300Solution: Connect stderr to stdout if wanted.
9301Files: src/os_unix.c, src/os_win32.c, src/testdir/test_channel.vim,
9302 src/testdir/test_channel_pipe.py
9303
9304Patch 7.4.1485
9305Problem: Job input from buffer is not implemented.
9306Solution: Implement it. Add "in-top" and "in-bot" options.
9307Files: src/structs.h, src/eval.c, src/channel.c, src/proto/channel.pro,
9308 src/os_unix.c, src/os_win32.c, src/testdir/test_channel.vim
9309
9310Patch 7.4.1486
9311Problem: ":loadplugin" is not optimal, some people find it confusing.
9312Solution: Only use ":packadd" with an optional "!".
9313Files: src/ex_cmds.h, src/ex_cmds2.c, src/testdir/test_loadplugin.vim,
9314 src/testdir/test_packadd.vim, src/testdir/Make_all.mak,
9315 runtime/doc/repeat.txt.
9316
9317Patch 7.4.1487
9318Problem: For WIN32 isinf() is defined as a macro.
9319Solution: Define it as an inline function. (ZyX)
9320Files: src/macros.h
9321
9322Patch 7.4.1488 (after 7.4.1475)
9323Problem: Not using key when result from hangul_string_convert() is NULL.
9324Solution: Fall back to not converted string.
9325Files: src/ui.c
9326
9327Patch 7.4.1489 (after 7.4.1487)
9328Problem: "inline" is not supported by old MSVC.
9329Solution: use "__inline". (Ken Takata)
9330Files: src/macros.h
9331
9332Patch 7.4.1490
9333Problem: Compiler warning for unused function.
9334Solution: Add #ifdef. (Dominique Pelle)
9335Files: src/gui_gtk_x11.c
9336
9337Patch 7.4.1491
9338Problem: Visual-block shift breaks multi-byte characters.
9339Solution: Compute column differently. (Yasuhiro Matsumoto) Add a test.
9340Files: src/ops.c, src/testdir/test_visual.vim, src/testdir/Make_all.mak
9341
9342Patch 7.4.1492
9343Problem: No command line completion for ":packadd".
9344Solution: Implement completion. (Hirohito Higashi)
9345Files: src/ex_docmd.c, src/ex_getln.c, src/testdir/test_packadd.vim,
9346 src/vim.h
9347
9348Patch 7.4.1493
9349Problem: Wrong callback invoked for zero-id messages.
9350Solution: Don't use the first one-time callback when the sequence number
9351 doesn't match.
9352Files: src/channel.c, src/testdir/test_channel.vim,
9353 src/testdir/test_channel.py
9354
9355Patch 7.4.1494
9356Problem: clr_history() does not work properly.
9357Solution: Increment hisptr. Add a test. (Yegappan Lakshmanan)
9358Files: src/ex_getln.c, src/testdir/test_history.vim,
9359 src/testdir/Make_all.mak
9360
9361Patch 7.4.1495
9362Problem: Compiler warnings when building on Unix with the job feature but
9363 without the channel feature.
9364Solution: Move #ifdefs. (Dominique Pelle)
Bram Moolenaar09521312016-08-12 22:54:35 +02009365Files: src/os_unix.c
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009366
9367Patch 7.4.1496
9368Problem: Crash when built with GUI but it's not active. (Dominique Pelle)
9369Solution: Check gui.in_use.
9370Files: src/channel.c
9371
9372Patch 7.4.1497
9373Problem: Cursor drawing problem with GTK 3.
9374Solution: Handle blinking differently. (Kazunobu Kuriyama)
9375Files: src/gui_gtk_x11.c
9376
9377Patch 7.4.1498
9378Problem: Error for locked item when using json_decode(). (Shougo)
9379Solution: Initialize v_lock.
9380Files: src/json.c
9381
9382Patch 7.4.1499
9383Problem: No error message when :packadd does not find anything.
9384Solution: Add an error message. (Hirohito Higashi)
9385Files: runtime/doc/repeat.txt, src/ex_cmds.h, src/ex_cmds2.c,
9386 src/globals.h, src/testdir/test_packadd.vim
9387
9388Patch 7.4.1500
9389Problem: Should_free flag set to FALSE.
9390Solution: Set it to TRUE. (Neovim 4415)
9391Files: src/ex_eval.c
9392
9393Patch 7.4.1501
9394Problem: Garbage collection with an open channel is not tested.
9395Solution: Call garbagecollect() in the test.
9396Files: src/testdir/test_channel.vim
9397
9398Patch 7.4.1502
9399Problem: Writing last-but-one line of buffer to a channel isn't implemented
9400 yet.
9401Solution: Implement it. Fix leaving a swap file behind.
9402Files: src/channel.c, src/structs.h, src/memline.c, src/proto/channel.pro
9403
9404Patch 7.4.1503
9405Problem: Crash when using ch_getjob(). (Damien)
9406Solution: Check for a NULL job.
9407Files: src/eval.c, src/testdir/test_channel.vim
9408
9409Patch 7.4.1504 (after 7.4.1502)
9410Problem: No test for reading last-but-one line.
9411Solution: Add a test.
9412Files: src/testdir/test_channel.vim
9413
9414Patch 7.4.1505
9415Problem: When channel log is enabled get too many "looking for messages"
9416 log entries.
9417Solution: Only give the message after another message.
9418Files: src/channel.c
9419
9420Patch 7.4.1506
9421Problem: Job cannot read from a file.
9422Solution: Implement reading from a file for Unix.
9423Files: src/eval.c, src/os_unix.c, src/os_win32.c,
9424 src/testdir/test_channel.vim
9425
9426Patch 7.4.1507
9427Problem: Crash when starting a job fails.
9428Solution: Check for the channel to be NULL. (idea by Yasuhiro Matsumoto)
9429Files: src/eval.c
9430
9431Patch 7.4.1508
9432Problem: Can't build GvimExt with MingW.
9433Solution: Adjust the makefile. (Ben Fritz)
9434Files: src/GvimExt/Make_ming.mak
9435
9436Patch 7.4.1509
9437Problem: Keeping both a variable for a job and the channel it refers to is
9438 a hassle.
9439Solution: Allow passing the job where a channel is expected. (Damien)
9440Files: src/eval.c, src/testdir/test_channel.vim
9441
9442Patch 7.4.1510
9443Problem: Channel test fails on AppVeyor.
9444Solution: Wait longer than 10 msec if needed.
9445Files: src/testdir/test_channel.vim
9446
9447Patch 7.4.1511
9448Problem: Statusline highlighting is sometimes wrong.
9449Solution: Check for Highlight type. (Christian Brabandt)
9450Files: src/buffer.c
9451
9452Patch 7.4.1512
9453Problem: Channel input from file not supported on MS-Windows.
9454Solution: Implement it. (Yasuhiro Matsumoto)
9455Files: src/os_win32.c, src/testdir/test_channel.vim
9456
9457Patch 7.4.1513
9458Problem: "J" fails if there are not enough lines. (Christian Neukirchen)
9459Solution: Reduce the count, only fail on the last line.
9460Files: src/normal.c, src/testdir/test_join.vim, src/testdir/test_alot.vim
9461
9462Patch 7.4.1514
9463Problem: Channel output to file not implemented yet.
9464Solution: Implement it for Unix.
9465Files: src/os_unix.c, src/testdir/test_channel.vim,
9466 src/testdir/test_channel_pipe.py
9467
9468Patch 7.4.1515
9469Problem: Channel test is a bit flaky.
9470Solution: Instead of a fixed sleep time wait until an expression evaluates
9471 to true.
9472Files: src/testdir/test_channel.vim
9473
9474Patch 7.4.1516
9475Problem: Cannot change file permissions.
9476Solution: Add setfperm().
9477Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim,
9478 src/testdir/test_file_perm.vim
9479
9480Patch 7.4.1517
9481Problem: Compiler warning with 64bit compiler.
9482Solution: Add typecast. (Mike Williams)
9483Files: src/channel.c
9484
9485Patch 7.4.1518
9486Problem: Channel with disconnected in/out/err is not supported.
9487Solution: Implement it for Unix.
9488Files: src/eval.c, src/os_unix.c, src/structs.h,
9489 src/testdir/test_channel.vim, src/testdir/test_channel_pipe.py
9490
9491Patch 7.4.1519 (after 7.4.1514)
9492Problem: Channel output to file not implemented for MS-Windows.
9493Solution: Implement it. (Yasuhiro Matsumoto)
9494Files: src/os_win32.c, src/testdir/test_channel.vim
9495
9496Patch 7.4.1520
9497Problem: Channel test: Waiting for a file to appear doesn't work.
9498Solution: In waitFor() ignore errors.
9499Files: src/testdir/test_channel.vim
9500
9501Patch 7.4.1521 (after 7.4.1516)
9502Problem: File permission test fails on MS-Windows.
9503Solution: Expect a different permission.
9504Files: src/testdir/test_file_perm.vim
9505
9506Patch 7.4.1522
9507Problem: Cannot write channel err to a buffer.
9508Solution: Implement it.
9509Files: src/channel.c, src/testdir/test_channel.vim
9510
9511Patch 7.4.1523
9512Problem: Writing channel to a file fails on MS-Windows.
9513Solution: Disable it for now.
9514Files: src/testdir/test_channel.vim
9515
9516Patch 7.4.1524
9517Problem: Channel test fails on BSD.
9518Solution: Break out of the loop when connect() succeeds. (Ozaki Kiichi)
9519Files: src/channel.c
9520
9521Patch 7.4.1525
9522Problem: On a high resolution screen the toolbar icons are too small.
9523Solution: Add "huge" and "giant" to 'toolbariconsize'. (Brian Gix)
9524Files: src/gui_gtk_x11.c, src/option.h
9525
9526Patch 7.4.1526
9527Problem: Writing to file and not connecting a channel doesn't work for
9528 MS-Windows.
9529Solution: Make it work. (Yasuhiro Matsumoto)
9530Files: src/os_win32.c, src/testdir/test_channel.vim
9531
9532Patch 7.4.1527
9533Problem: Channel test is flaky on MS-Windows.
9534Solution: Limit the select() timeout to 50 msec and try with a new socket if
9535 it fails.
9536Files: src/channel.c
9537
9538Patch 7.4.1528
9539Problem: Using "ever" for packages is confusing.
9540Solution: Use "start", as it's related to startup.
9541Files: src/ex_cmds2.c, runtime/doc/repeat.txt
9542
9543Patch 7.4.1529
9544Problem: Specifying buffer number for channel not implemented yet.
9545Solution: Implement passing a buffer number.
9546Files: src/structs.h, src/channel.c, src/eval.c,
9547 src/testdir/test_channel.vim
9548
9549Patch 7.4.1530
9550Problem: MS-Windows job_start() closes wrong handle.
9551Solution: Close hThread on the process info. (Ken Takata)
9552Files: src/os_win32.c
9553
9554Patch 7.4.1531
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02009555Problem: Compiler warning for uninitialized variable. (Dominique Pelle)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009556Solution: Always give the variable a value.
9557Files: src/channel.c
9558
9559Patch 7.4.1532
9560Problem: MS-Windows channel leaks file descriptor.
9561Solution: Use CreateFile with the right options. (Yasuhiro Matsumoto)
9562Files: src/os_win32.c
9563
9564Patch 7.4.1533
9565Problem: Using feedkeys() with an empty string disregards 'x' option.
9566Solution: Make 'x' work with an empty string. (Thinca)
9567Files: src/eval.c, src/testdir/test_alot.vim,
9568 src/testdir/test_feedkeys.vim
9569
9570Patch 7.4.1534
9571Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama)
9572Solution: Rename it.
9573Files: src/eval.c
9574
9575Patch 7.4.1535
9576Problem: The feedkeys test has a one second delay.
9577Solution: Avoid need_wait_return() to delay. (Hirohito Higashi)
9578Files: src/eval.c
9579
9580Patch 7.4.1536
9581Problem: Cannot re-use a channel for another job.
9582Solution: Add the "channel" option to job_start().
9583Files: src/channel.c, src/eval.c, src/structs.h, src/os_unix.c,
9584 src/os_win32.c, src/proto/channel.pro,
9585 src/testdir/test_channel.vim
9586
9587Patch 7.4.1537
9588Problem: Too many feature flags for pipes, jobs and channels.
9589Solution: Only use FEAT_JOB_CHANNEL.
9590Files: src/structs.h, src/feature.h, src/configure.in,
9591 src/auto/configure, src/config.h.in, src/channel.c, src/eval.c,
9592 src/gui.c, src/main.c, src/memline.c, src/misc2.c, src/os_mswin.c,
9593 src/os_unix.c, src/os_win32.c, src/ui.c, src/version.c,
9594 src/macros.h, src/proto.h, src/vim.h, src/Make_cyg_ming.mak,
9595 src/Make_bc5.mak, src/Make_mvc.mak
9596
9597Patch 7.4.1538
9598Problem: Selection with the mouse does not work in command line mode.
9599Solution: Use cairo functions. (Kazunobu Kuriyama)
9600Files: src/gui_gtk_x11.c
9601
9602Patch 7.4.1539
9603Problem: Too much code in eval.c.
9604Solution: Move job and channel code to channel.c.
9605Files: src/eval.c, src/channel.c, src/proto/channel.pro,
9606 src/proto/eval.pro
9607
9608Patch 7.4.1540
9609Problem: Channel test is a bit flaky.
9610Solution: Increase expected wait time.
9611Files: src/testdir/test_channel.vim
9612
9613Patch 7.4.1541
9614Problem: Missing job_info().
9615Solution: Implement it.
9616Files: src/eval.c, src/channel.c, src/proto/channel.pro,
9617 src/testdir/test_channel.vim, runtime/doc/eval.txt
9618
9619Patch 7.4.1542
9620Problem: job_start() with a list is not tested.
9621Solution: Call job_start() with a list.
9622Files: src/testdir/test_channel.vim
9623
9624Patch 7.4.1543
9625Problem: Channel log methods are not tested.
9626Solution: Log job activity and check it.
9627Files: src/testdir/test_channel.vim
9628
9629Patch 7.4.1544
9630Problem: On Win32 escaping the command does not work properly.
9631Solution: Reset 'ssl' when escaping the command. (Yasuhiro Matsumoto)
9632Files: src/channel.c
9633
9634Patch 7.4.1545
9635Problem: GTK3: horizontal cursor movement in Visual selection not good.
9636Solution: Make it work better. (Kazunobu Kuriyama)
9637Files: src/gui_gtk_x11.c
9638
9639Patch 7.4.1546
9640Problem: Sticky type checking is more annoying than useful.
9641Solution: Remove the error for changing a variable type.
9642Files: src/eval.c, src/testdir/test_assign.vim,
9643 src/testdir/test_alot.vim, runtime/doc/eval.txt
9644
9645Patch 7.4.1547
9646Problem: Getting a cterm highlight attribute that is not set results in the
9647 string "-1".
9648Solution: Return an empty string. (Taro Muraoka)
9649Files: src/syntax.c, src/testdir/test_alot.vim,
9650 src/testdir/test_syn_attr.vim
9651
9652Patch 7.4.1548 (after 7.4.1546)
9653Problem: Two tests fail.
9654Solution: Adjust the expected error number. Remove check for type.
9655Files: src/testdir/test101.ok, src/testdir/test55.in,
9656 src/testdir/test55.ok
9657
9658Patch 7.4.1549 (after 7.4.1547)
9659Problem: Test for syntax attributes fails in Win32 GUI.
9660Solution: Use an existing font name.
9661Files: src/testdir/test_syn_attr.vim
9662
9663Patch 7.4.1550
9664Problem: Cannot load packages early.
9665Solution: Add the ":packloadall" command.
9666Files: src/ex_cmds.h, src/ex_cmds2.c, src/main.c,
9667 src/proto/ex_cmds2.pro, src/testdir/test_packadd.vim
9668
9669Patch 7.4.1551
9670Problem: Cannot generate help tags in all doc directories.
9671Solution: Make ":helptags ALL" work.
9672Files: src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/ex_cmds.c, src/vim.h
9673 src/testdir/test_packadd.vim
9674
9675Patch 7.4.1552
9676Problem: ":colorscheme" does not use 'packpath'.
9677Solution: Also use in "start" and "opt" directories in 'packpath'.
9678Files: src/ex_cmds2.c, src/gui.c, src/hardcopy.c, src/os_mswin.c,
9679 src/spell.c, src/tag.c, src/if_py_both.h, src/vim.h,
9680 src/digraph.c, src/eval.c, src/ex_docmd.c, src/main.c,
9681 src/option.c, src/syntax.c, src/testdir/test_packadd.vim
9682
9683Patch 7.4.1553
9684Problem: ":runtime" does not use 'packpath'.
9685Solution: Add "what" argument.
9686Files: src/ex_cmds2.c, src/vim.h, runtime/doc/repeat.txt,
9687 src/testdir/test_packadd.vim
9688
9689Patch 7.4.1554
9690Problem: Completion for :colorscheme does not use 'packpath'.
9691Solution: Make it work, add a test. (Hirohito Higashi)
9692Files: src/ex_getln.c, src/testdir/test_packadd.vim
9693
9694Patch 7.4.1555
9695Problem: List of test targets incomplete.
9696Solution: Add newly added tests.
9697Files: src/Makefile
9698
9699Patch 7.4.1556
9700Problem: "make install" changes the help tags file, causing it to differ
9701 from the repository.
9702Solution: Move it aside and restore it.
9703Files: src/Makefile
9704
9705Patch 7.4.1557
9706Problem: Windows cannot be identified.
9707Solution: Add a unique window number to each window and functions to use it.
9708Files: src/structs.h, src/window.c, src/eval.c, src/proto/eval.pro,
9709 src/proto/window.pro, src/testdir/test_window_id.vim,
9710 src/testdir/Make_all.mak, runtime/doc/eval.txt
9711
9712Patch 7.4.1558
9713Problem: It is not easy to find out what windows display a buffer.
9714Solution: Add win_findbuf().
9715Files: src/eval.c, src/window.c, src/proto/window.pro,
9716 src/testdir/test_window_id.vim, runtime/doc/eval.txt
9717
9718Patch 7.4.1559
9719Problem: Passing cookie to a callback is clumsy.
9720Solution: Change function() to take arguments and return a partial.
9721Files: src/structs.h, src/channel.c, src/eval.c, src/if_python.c,
9722 src/if_python3.c, src/if_py_both.h, src/json.c,
9723 src/proto/eval.pro, src/testdir/test_partial.vim,
9724 src/testdir/test_alot.vim, runtime/doc/eval.txt
9725
9726Patch 7.4.1560
9727Problem: Dict options with a dash are more difficult to use.
9728Solution: Use an underscore, so that dict.err_io can be used.
9729Files: src/channel.c, src/structs.h, src/testdir/test_channel.vim,
9730 runtime/doc/channel.txt
9731
9732Patch 7.4.1561 (after 7.4.1559)
9733Problem: Missing update to proto file.
9734Solution: Change the proto file.
9735Files: src/proto/channel.pro
9736
9737Patch 7.4.1562
9738Problem: ":helptags ALL" crashes. (Lcd)
9739Solution: Don't free twice.
9740Files: src/ex_cmds.c
9741
9742Patch 7.4.1563
9743Problem: Partial test fails on windows.
9744Solution: Return 1 or -1 from compare function.
9745Files: src/testdir/test_partial.vim
9746
9747Patch 7.4.1564
9748Problem: An empty list in function() causes an error.
9749Solution: Handle an empty list like there is no list of arguments.
9750Files: src/eval.c, src/testdir/test_partial.vim
9751
9752Patch 7.4.1565
9753Problem: Crash when assert_equal() runs into a NULL string.
9754Solution: Check for NULL. (Dominique) Add a test.
9755Files: src/eval.c, src/testdir/test_assert.vim
9756
9757Patch 7.4.1566
9758Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama)
9759Solution: Remove the inner one.
9760Files: src/eval.c
9761
9762Patch 7.4.1567
9763Problem: Crash in assert_fails().
9764Solution: Check for NULL. (Dominique Pelle) Add a test.
9765Files: src/eval.c, src/testdir/test_assert.vim
9766
9767Patch 7.4.1568
9768Problem: Using CTRL-] in help on option in parentheses doesn't work.
9769Solution: Skip the "(" in "('". (Hirohito Higashi)
9770Files: src/ex_cmds.c
9771
9772Patch 7.4.1569
9773Problem: Using old style tests for quickfix.
9774Solution: Change them to new style tests. (Yegappan Lakshmanan)
9775Files: src/testdir/Make_all.mak, src/testdir/test106.in,
9776 src/testdir/test106.ok, src/testdir/test_qf_title.in,
9777 src/testdir/test_qf_title.ok, src/testdir/test_quickfix.vim
9778
9779Patch 7.4.1570
9780Problem: There is no way to avoid the message when editing a file.
9781Solution: Add the "F" flag to 'shortmess'. (Shougo, closes #686)
9782Files: runtime/doc/options.txt, src/buffer.c, src/ex_cmds.c,
9783 src/option.h
9784
9785Patch 7.4.1571
9786Problem: No test for ":help".
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02009787Solution: Add a test for what 7.4.1568 fixed. (Hirohito Higashi)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009788Files: src/testdir/test_alot.vim, src/testdir/test_help_tagjump.vim
9789
9790Patch 7.4.1572
9791Problem: Setting 'compatible' in test influences following tests.
9792Solution: Turn 'compatible' off again.
9793Files: src/testdir/test_backspace_opt.vim
9794
9795Patch 7.4.1573
9796Problem: Tests get stuck at the more prompt.
9797Solution: Move the backspace test out of test_alot.
9798Files: src/testdir/test_alot.vim, src/testdir/Make_all.mak
9799
9800Patch 7.4.1574
9801Problem: ":undo 0" does not work. (Florent Fayolle)
9802Solution: Make it undo all the way. (closes #688)
9803Files: src/undo.c, src/testdir/test_undolevels.vim,
9804 src/testdir/test_ex_undo.vim, src/testdir/test_alot.vim
9805
9806Patch 7.4.1575
9807Problem: Using wrong size for struct.
9808Solution: Use the size for wide API. (Ken Takata)
9809Files: src/gui_w32.c
9810
9811Patch 7.4.1576
9812Problem: Write error of viminfo file is not handled properly. (Christian
9813 Neukirchen)
9814Solution: Check the return value of fclose(). (closes #682)
9815Files: src/ex_cmds.c
9816
9817Patch 7.4.1577
9818Problem: Cannot pass "dict.Myfunc" around as a partial.
9819Solution: Create a partial when expected.
9820Files: src/eval.c, src/testdir/test_partial.vim
9821
9822Patch 7.4.1578
9823Problem: There is no way to invoke a function later or periodically.
9824Solution: Add timer support.
9825Files: src/eval.c, src/ex_cmds2.c, src/screen.c, src/ex_docmd.c,
9826 src/feature.h, src/gui.c, src/proto/eval.pro,
9827 src/proto/ex_cmds2.pro, src/proto/screen.pro, src/structs.h,
9828 src/version.c, src/testdir/test_alot.vim,
9829 src/testdir/test_timers.vim, runtime/doc/eval.txt
9830
9831Patch 7.4.1579 (after 7.4.1578)
9832Problem: Missing changes in channel.c
9833Solution: Include the changes.
9834Files: src/channel.c
9835
9836Patch 7.4.1580
9837Problem: Crash when using function reference. (Luchr)
9838Solution: Set initial refcount. (Ken Takata, closes #690)
9839Files: src/eval.c, src/testdir/test_partial.vim
9840
9841Patch 7.4.1581
9842Problem: Using ":call dict.func()" where the function is a partial does
9843 not work. Using "dict.func()" where the function does not take a
9844 Dictionary does not work.
9845Solution: Handle partial properly in ":call". (Yasuhiro Matsumoto)
9846Files: src/eval.c, src/testdir/test_partial.vim, src/testdir/test55.ok
9847
9848Patch 7.4.1582
9849Problem: Get E923 when using function(dict.func, [], dict). (Kent Sibilev)
9850 Storing a function with a dict in a variable drops the dict if the
9851 function is script-local.
9852Solution: Translate the function name. Use dict arg if present.
9853Files: src/eval.c, src/testdir/test_partial.vim
9854
9855Patch 7.4.1583
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02009856Problem: Warning for uninitialized variable.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +02009857Solution: Initialize it. (Dominique)
9858Files: src/ex_cmds2.c
9859
9860Patch 7.4.1584
9861Problem: Timers don't work for Win32 console.
9862Solution: Add check_due_timer() in WaitForChar().
9863Files: src/os_win32.c
9864
9865Patch 7.4.1585
9866Problem: Partial is not recognized everywhere.
9867Solution: Check for partial in trans_function_name(). (Yasuhiro Matsumoto)
9868 Add a test.
9869Files: src/eval.c, src/testdir/test_partial.vim
9870
9871Patch 7.4.1586
9872Problem: Nesting partials doesn't work.
9873Solution: Append arguments. (Ken Takata)
9874Files: src/eval.c, src/testdir/test_partial.vim
9875
9876Patch 7.4.1587
9877Problem: Compiler warnings with 64 bit compiler.
9878Solution: Add type casts. (Mike Williams)
9879Files: src/ex_cmds2.c
9880
9881Patch 7.4.1588
9882Problem: Old style test for quickfix.
9883Solution: Turn test 96 into a new style test.
9884Files: src/testdir/Make_all.mak, src/testdir/test96.in,
9885 src/testdir/test96.ok, src/testdir/test_quickfix.vim
9886
9887Patch 7.4.1589
9888Problem: Combining dict and args with partial doesn't always work.
9889Solution: Use the arguments from the partial.
9890Files: src/eval.c, src/testdir/test_partial.vim
9891
9892Patch 7.4.1590
9893Problem: Warning for shadowed variable. (Christian Brabandt)
9894Solution: Move the variable into a local block.
9895Files: src/eval.c
9896
9897Patch 7.4.1591
9898Problem: The quickfix title is truncated.
9899Solution: Save the command before it is truncated. (Anton Lindqvist)
9900Files: src/quickfix.c, src/testdir/test_quickfix.vim
9901
9902Patch 7.4.1592
9903Problem: Quickfix code using memory after being freed. (Dominique Pelle)
9904Solution: Detect that the window was closed. (Hirohito Higashi)
9905Files: src/quickfix.c, src/testdir/test_quickfix.vim
9906
9907Patch 7.4.1593
9908Problem: Using channel timeout instead of request timeout. (Coverity)
9909Solution: Remove the extra assignment.
9910Files: src/channel.c
9911
9912Patch 7.4.1594
9913Problem: Timers don't work on Unix.
9914Solution: Add missing code.
9915Files: src/os_unix.c
9916
9917Patch 7.4.1595
9918Problem: Not checking for failed open(). (Coverity)
9919Solution: Check file descriptor not being negative.
9920Files: src/os_unix.c
9921
9922Patch 7.4.1596
9923Problem: Memory leak. (Coverity)
9924Solution: Free the pattern.
9925Files: src/ex_cmds2.c
9926
9927Patch 7.4.1597
9928Problem: Memory leak when out of memory. (Coverity)
9929Solution: Free the name.
9930Files: src/eval.c
9931
9932Patch 7.4.1598
9933Problem: When starting the GUI fails a swap file is left behind. (Joerg
9934 Plate)
9935Solution: Preserve files before exiting. (closes #692)
9936Files: src/main.c, src/gui.c
9937
9938Patch 7.4.1599
9939Problem: No link to Coverity.
9940Solution: Add Coverity badge in README.
9941Files: README.md
9942
9943Patch 7.4.1600
9944Problem: libs directory is not useful.
9945Solution: Remove arp.library, it was only for very old Amiga versions.
9946Files: libs/arp.library, Filelist
9947
9948Patch 7.4.1601
9949Problem: README files take a lot of space in the top directory.
9950Solution: Move most of them to "READMEdir".
9951Files: Filelist, Makefile, README.txt.info, README_ami.txt,
9952 README_ami.txt.info, README_amibin.txt, README_amibin.txt.info,
9953 README_amisrc.txt, README_amisrc.txt.info, README_bindos.txt,
9954 README_dos.txt, README_extra.txt, README_mac.txt, README_ole.txt,
9955 README_os2.txt, README_os390.txt, README_src.txt,
9956 README_srcdos.txt, README_unix.txt, README_vms.txt,
9957 README_w32s.txt, READMEdir/README.txt.info,
9958 READMEdir/README_ami.txt, READMEdir/README_ami.txt.info,
9959 READMEdir/README_amibin.txt, READMEdir/README_amibin.txt.info,
9960 READMEdir/README_amisrc.txt, READMEdir/README_amisrc.txt.info,
9961 READMEdir/README_bindos.txt, READMEdir/README_dos.txt,
9962 READMEdir/README_extra.txt, READMEdir/README_mac.txt,
9963 READMEdir/README_ole.txt, READMEdir/README_os2.txt,
9964 READMEdir/README_os390.txt, READMEdir/README_src.txt,
9965 READMEdir/README_srcdos.txt, READMEdir/README_unix.txt,
9966 READMEdir/README_vms.txt, READMEdir/README_w32s.txt,
9967
9968Patch 7.4.1602
9969Problem: Info files take space in the top directory.
9970Solution: Move them to "READMEdir".
9971Files: Filelist, src.info, Contents.info, runtime.info, vimdir.info,
9972 Vim.info, Xxd.info, READMEdir/src.info, READMEdir/Contents.info,
9973 READMEdir/runtime.info, READMEdir/vimdir.info, READMEdir/Vim.info,
9974 READMEdir/Xxd.info
9975
9976Patch 7.4.1603
9977Problem: Timer with an ":echo" command messes up display.
9978Solution: Redraw depending on the mode. (Hirohito Higashi) Avoid the more
9979 prompt being used recursively.
9980Files: src/screen.c, src/message.c
9981
9982Patch 7.4.1604
9983Problem: Although emoji characters are ambiguous width, best is to treat
9984 them as full width.
9985Solution: Update the Unicode character tables. Add the 'emoji' options.
9986 (Yasuhiro Matsumoto)
9987Files: runtime/doc/options.txt, runtime/optwin.vim,
9988 runtime/tools/unicode.vim, src/mbyte.c, src/option.c, src/option.h
9989
9990Patch 7.4.1605
9991Problem: Catching exception that won't be thrown.
9992Solution: Remove try/catch.
9993Files: src/testdir/test55.in
9994
9995Patch 7.4.1606
9996Problem: Having type() handle a Funcref that is or isn't a partial
9997 differently causes problems for existing scripts.
9998Solution: Make type() return the same value. (Thinca)
9999Files: src/eval.c, src/testdir/test_viml.vim
10000
10001Patch 7.4.1607
10002Problem: Comparing a function that exists on two dicts is not backwards
10003 compatible. (Thinca)
10004Solution: Only compare the function, not what the partial adds.
10005Files: src/eval.c, src/testdir/test_alot.vim, src/testdir/test_expr.vim
10006
10007Patch 7.4.1608
10008Problem: string() doesn't handle a partial.
10009Solution: Make a string from a partial.
10010Files: src/eval.c, src/testdir/test_partial.vim
10011
10012Patch 7.4.1609
10013Problem: Contents file is only for Amiga distro.
10014Solution: Move it to "READMEdir". Update some info.
10015Files: Filelist, Contents, READMEdir/Contents
10016
10017Patch 7.4.1610
10018Problem: Compiler warnings for non-virtual destructor.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020010019Solution: Mark the classes final. (Ken Takata)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020010020Files: src/Make_cyg_ming.mak, src/gui_dwrite.cpp, src/if_ole.cpp
10021
10022Patch 7.4.1611
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020010023Problem: The versplit feature makes the code unnecessary complicated.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020010024Solution: Remove FEAT_VERTSPLIT, always support vertical splits when
10025 FEAT_WINDOWS is defined.
10026Files: src/buffer.c, src/charset.c, src/eval.c, src/ex_cmds.c,
10027 src/ex_docmd.c, src/ex_getln.c, src/gui.c, src/if_lua.c,
10028 src/if_mzsch.c, src/if_ruby.c, src/main.c, src/misc1.c,
10029 src/misc2.c, src/move.c, src/normal.c, src/option.c,
10030 src/quickfix.c, src/screen.c, src/syntax.c, src/term.c, src/ui.c,
10031 src/window.c, src/globals.h, src/gui.h, src/if_py_both.h,
10032 src/option.h, src/structs.h, src/term.h
10033 src/feature.h, src/vim.h, src/version.c
10034
10035Patch 7.4.1612 (after 7.4.1611)
10036Problem: Can't build with small features.
10037Solution: Move code and #ifdefs.
10038Files: src/ex_getln.c
10039
10040Patch 7.4.1613 (after 7.4.1612)
10041Problem: Still can't build with small features.
10042Solution: Adjust #ifdefs.
10043Files: src/ex_getln.c
10044
10045Patch 7.4.1614
10046Problem: Still quickfix test in old style.
10047Solution: Turn test 10 into a new style test.
10048Files: src/testdir/Make_all.mak, src/testdir/Make_vms.mms,
10049 src/testdir/main.aap, src/testdir/test10.in,
10050 src/testdir/test10.ok, src/testdir/test_quickfix.vim,
10051 src/testdir/test10a.in, src/testdir/test10a.ok
10052
10053Patch 7.4.1615
10054Problem: Build fails with tiny features.
10055Solution: Adjust #ifdefs.
10056Files: src/normal.c, src/window.c
10057
10058Patch 7.4.1616
10059Problem: Malformed channel request causes a hang.
10060Solution: Drop malformed message. (Damien)
10061Files: src/channel.c, src/testdir/test_channel.vim,
10062 src/testdir/test_channel.py
10063
10064Patch 7.4.1617
10065Problem: When a JSON message is split it isn't decoded.
10066Solution: Wait a short time for the rest of the message to arrive.
10067Files: src/channel.c, src/json.c, src/structs.h,
10068 src/testdir/test_channel.vim, src/testdir/test_channel.py
10069
10070Patch 7.4.1618
10071Problem: Starting job with output to buffer changes options in the current
10072 buffer.
10073Solution: Set "curbuf" earlier. (Yasuhiro Matsumoto)
10074Files: src/channel.c
10075
10076Patch 7.4.1619
10077Problem: When 'fileformats' is set in the vimrc it applies to new buffers
10078 but not the initial buffer.
10079Solution: Set 'fileformat' when starting up. (Mike Williams)
10080Files: src/option.c
10081
10082Patch 7.4.1620
10083Problem: Emoji characters are not considered as a kind of word character.
10084Solution: Give emoji characters a word class number. (Yasuhiro Matsumoto)
10085Files: src/mbyte.c
10086
10087Patch 7.4.1621
10088Problem: Channel test doesn't work with Python 2.6.
10089Solution: Add number in formatting placeholder. (Wiredool)
10090Files: src/testdir/test_channel.py
10091
10092Patch 7.4.1622
10093Problem: Channel demo doesn't work with Python 2.6.
10094Solution: Add number in formatting placeholder
10095Files: runtime/tools/demoserver.py
10096
10097Patch 7.4.1623
10098Problem: All Channels share the message ID, it keeps getting bigger.
10099Solution: Use a message ID per channel.
10100Files: src/channel.c, src/proto/channel.pro, src/structs.h
10101
10102Patch 7.4.1624
10103Problem: Can't get info about a channel.
10104Solution: Add ch_info().
10105Files: src/eval.c, src/channel.c, src/proto/channel.pro,
10106 src/testdir/test_channel.vim, runtime/doc/eval.txt
10107
10108Patch 7.4.1625
10109Problem: Trying to close file descriptor that isn't open.
10110Solution: Check for negative number.
10111Files: src/os_unix.c
10112
10113Patch 7.4.1626 (after 7.4.1624)
10114Problem: Missing changes to structs.
10115Solution: Include the changes.
10116Files: src/structs.h
10117
10118Patch 7.4.1627
10119Problem: Channel out_cb and err_cb are not tested.
10120Solution: Add a test.
10121Files: src/testdir/test_channel.vim
10122
10123Patch 7.4.1628
10124Problem: 64-bit Compiler warning.
10125Solution: Change type of variable. (Mike Williams)
10126Files: src/channel.c
10127
10128Patch 7.4.1629
10129Problem: Handling emoji characters as full width has problems with
10130 backwards compatibility.
10131Solution: Remove ambiguous and double width characters from the emoji table.
10132 Use a separate table for the character class.
10133 (partly by Yasuhiro Matsumoto)
10134Files: runtime/tools/unicode.vim, src/mbyte.c
10135
10136Patch 7.4.1630
10137Problem: Unicode table for double width is outdated.
10138Solution: Update to the latest Unicode standard.
10139Files: src/mbyte.c
10140
10141Patch 7.4.1631
10142Problem: Compiler doesn't understand switch on all enum values. (Tony
10143 Mechelynck)
10144Solution: Initialize variable.
10145Files: src/channel.c
10146
10147Patch 7.4.1632
10148Problem: List of test targets is outdated.
10149Solution: Update to current list of test targets.
10150Files: src/Makefile
10151
10152Patch 7.4.1633
10153Problem: If the help tags file was removed "make install" fails. (Tony
10154 Mechelynck)
10155Solution: Only try moving the file if it exists.
10156Files: src/Makefile
10157
10158Patch 7.4.1634
10159Problem: Vertical movement after CTRL-A ends up in the wrong column.
10160 (Urtica Dioica)
10161Solution: Set curswant when appropriate. (Hirohito Higashi)
10162Files: src/ops.c, src/testdir/test_increment.vim
10163
10164Patch 7.4.1635
10165Problem: Channel test is a bit flaky.
10166Solution: Remove 'DETACH' if it's there.
10167Files: src/test_channel.vim
10168
10169Patch 7.4.1636
10170Problem: When 'F' is in 'shortmess' the prompt for the encryption key isn't
10171 displayed. (Toothpik)
10172Solution: Reset msg_silent.
10173Files: src/ex_getln.c
10174
10175Patch 7.4.1637
10176Problem: Can't build with older MinGW compiler.
10177Solution: Change option from c++11 to gnu++11. (Ken Takata)
10178Files: src/Make_cyg_ming.mak
10179
10180Patch 7.4.1638
10181Problem: When binding a function to a dict the reference count is wrong.
10182Solution: Decrement dict reference count, only reference the function when
10183 actually making a copy. (Ken Takata)
10184Files: src/eval.c, src/testdir/test_partial.vim
10185
10186Patch 7.4.1639
10187Problem: Invoking garbage collection may cause a double free.
10188Solution: Don't free the dict in a partial when recursive is FALSE.
10189Files: src/eval.c
10190
10191Patch 7.4.1640
10192Problem: Crash when an autocommand changes a quickfix list. (Dominique)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020010193Solution: Check whether an entry is still valid. (Yegappan Lakshmanan,
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020010194 Hirohito Higashi)
10195Files: src/quickfix.c, src/testdir/test_quickfix.vim
10196
10197Patch 7.4.1641
10198Problem: Using unterminated string.
10199Solution: Add NUL before calling vim_strsave_shellescape(). (James McCoy)
10200Files: src/eval.c, src/testdir/test105.in, src/testdir/test105.ok
10201
10202Patch 7.4.1642
10203Problem: Handling emoji characters as full width has problems with
10204 backwards compatibility.
10205Solution: Only put characters in the 1f000 range in the emoji table.
10206Files: runtime/tools/unicode.vim, src/mbyte.c
10207
10208Patch 7.4.1643 (after 7.4.1641)
10209Problem: Terminating file name has side effects.
10210Solution: Restore the character. (mostly by James McCoy, closes #713)
10211Files: src/eval.c, src/testdir/test105.in, src/testdir/test105.ok
10212
10213Patch 7.4.1644
10214Problem: Using string() on a partial that exists in the dictionary it binds
10215 results in an error. (Nikolai Pavlov)
10216Solution: Make string() not fail on a recursively nested structure. (Ken
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020010217 Takata)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020010218Files: src/eval.c, src/testdir/test_partial.vim
10219
10220Patch 7.4.1645
10221Problem: When a dict contains a partial it can't be redefined as a
10222 function. (Nikolai Pavlov)
10223Solution: Remove the partial when overwriting with a function.
10224Files: src/eval.c, src/testdir/test_partial.vim
10225
10226Patch 7.4.1646
10227Problem: Using Python vim.bindeval() on a partial doesn't work. (Nikolai
10228 Pavlov)
10229Solution: Add VAR_PARTIAL support in Python.
10230Files: src/if_py_both.h, src/testdir/test_partial.vim
10231
10232Patch 7.4.1647
10233Problem: Using freed memory after setqflist() and ":caddbuffer". (Dominique)
10234Solution: Set qf_ptr when adding the first item to the quickfix list.
10235Files: src/quickfix.c, src/testdir/test_quickfix.vim
10236
10237Patch 7.4.1648
10238Problem: Compiler has a problem copying a string into di_key[]. (Yegappan
10239 Lakshmanan)
10240Solution: Add dictitem16_T.
10241Files: src/structs.h, src/eval.c
10242
10243Patch 7.4.1649
10244Problem: The matchit plugin needs to be copied to be used.
10245Solution: Put the matchit plugin in an optional package.
10246Files: Filelist, runtime/macros/matchit.vim, runtime/macros/matchit.txt,
10247 runtime/macros/README.txt, src/Makefile,
10248 runtime/pack/dist/opt/matchit/plugin/matchit.vim,
10249 runtime/pack/dist/opt/matchit/doc/matchit.txt,
10250 runtime/pack/dist/opt/matchit/doc/tags,
10251 runtime/doc/usr_05.txt, runtime/doc/usr_toc.txt
10252
10253Patch 7.4.1650
10254Problem: Quickfix test fails.
10255Solution: Accept any number of matches.
10256Files: src/testdir/test_quickfix.vim
10257
10258Patch 7.4.1651
10259Problem: Some dead (MSDOS) code remains.
10260Solution: Remove the unused lines. (Ken Takata)
10261Files: src/misc1.c
10262
10263Patch 7.4.1652
10264Problem: Old style test for fnamemodify().
10265Solution: Turn it into a new style test.
10266Files: src/testdir/test105.in, src/testdir/test105.ok,
10267 src/testdir/test_fnamemodify.vim, src/testdir/test_alot.vim,
10268 src/testdir/Make_all.mak
10269
10270Patch 7.4.1653 (after 7.4.1649)
10271Problem: Users who loaded matchit.vim manually have to change their
10272 startup. (Gary Johnson)
10273Solution: Add a file in the old location that loads the package.
10274Files: runtime/macros/matchit.vim, Filelist
10275
10276Patch 7.4.1654
10277Problem: Crash when using expand('%:S') in a buffer without a name.
10278Solution: Don't set a NUL. (James McCoy, closes #714)
10279Files: src/eval.c, src/testdir/test_fnamemodify.vim
10280
10281Patch 7.4.1655
10282Problem: remote_expr() hangs. (Ramel)
10283Solution: Check for messages in the waiting loop.
10284Files: src/if_xcmdsrv.c
10285
10286Patch 7.4.1656
10287Problem: Crash when using partial with a timer.
10288Solution: Increment partial reference count. (Hirohito Higashi)
10289Files: src/eval.c, src/testdir/test_timers.vim
10290
10291Patch 7.4.1657
10292Problem: On Unix in a terminal: channel messages are not handled right away.
10293 (Jackson Alves de Aquino)
10294Solution: Break the loop for timers when something was received.
10295Files: src/os_unix.c
10296
10297Patch 7.4.1658
10298Problem: A plugin does not know when VimEnter autocommands were already
10299 triggered.
10300Solution: Add the v:vim_did_enter variable.
10301Files: src/eval.c, src/main.c, src/vim.h, src/testdir/test_autocmd.vim,
10302 src/testdir/test_alot.vim, runtime/doc/autocmd.txt,
10303 runtime/doc/eval.txt
10304
10305Patch 7.4.1659 (after 7.4.1657)
10306Problem: Compiler warning for argument type. (Manuel Ortega)
10307Solution: Remove "&".
10308Files: src/os_unix.c
10309
10310Patch 7.4.1660
10311Problem: has('patch-7.4.1') doesn't work.
10312Solution: Fix off-by-one error. (Thinca)
10313Files: src/eval.c, src/testdir/test_expr.vim, src/testdir/test60.in,
10314 src/testdir/test60.ok
10315
10316Patch 7.4.1661
10317Problem: No test for special characters in channel eval command.
10318Solution: Testing sending and receiving text with special characters.
10319Files: src/testdir/test_channel.vim, src/testdir/test_channel.py
10320
10321Patch 7.4.1662
10322Problem: No test for an invalid Ex command on a channel.
10323Solution: Test handling an invalid command gracefully. Avoid getting an
10324 error message, do write it to the channel log.
10325Files: src/channel.c, src/testdir/test_channel.vim,
10326 src/testdir/test_channel.py
10327
10328Patch 7.4.1663
10329Problem: In tests it's often useful to check if a pattern matches.
10330Solution: Add assert_match().
10331Files: src/eval.c, src/testdir/test_assert.vim,
10332 src/testdir/test_channel.vim, runtime/doc/eval.txt
10333
10334Patch 7.4.1664
10335Problem: Crash in :cgetexpr.
10336Solution: Check for NULL pointer. (Dominique) Add a test.
10337Files: src/quickfix.c, src/testdir/test_quickfix.vim
10338
10339Patch 7.4.1665
10340Problem: Crash when calling job_start() with a NULL string. (Dominique)
10341Solution: Check for an invalid argument.
10342Files: src/channel.c, src/testdir/test_channel.vim
10343
10344Patch 7.4.1666
10345Problem: When reading JSON from a channel all readahead is used.
10346Solution: Use the fill function to reduce overhead.
10347Files: src/channel.c, src/json.c, src/structs.h
10348
10349Patch 7.4.1667
10350Problem: Win32: waiting on a pipe with fixed sleep time.
10351Solution: Start with a short delay and increase it when looping.
10352Files: src/channel.c
10353
10354Patch 7.4.1668
10355Problem: channel_get_all() does multiple allocations.
10356Solution: Compute the size and allocate once.
10357Files: src/channel.c
10358
10359Patch 7.4.1669
10360Problem: When writing buffer lines to a pipe Vim may block.
10361Solution: Avoid blocking, write more lines later.
10362Files: src/channel.c, src/misc2.c, src/os_unix.c, src/structs.h,
10363 src/vim.h, src/proto/channel.pro, src/testdir/test_channel.vim
10364
10365Patch 7.4.1670
10366Problem: Completion doesn't work well for a variable containing "#".
10367Solution: Recognize the "#". (Watiko)
10368Files: src/eval.c
10369
10370Patch 7.4.1671
10371Problem: When help exists in multiple languages, adding @ab while "ab" is
10372 the default help language is unnecessary.
10373Solution: Leave out "@ab" when not needed. (Ken Takata)
10374Files: src/ex_getln.c
10375
10376Patch 7.4.1672
10377Problem: The Dvorak support is a bit difficult to install.
10378Solution: Turn it into an optional package.
10379Files: runtime/macros/dvorak, runtime/macros/README.txt,
10380 runtime/pack/dist/opt/dvorak/plugin/dvorak.vim,
10381 runtime/pack/dist/opt/dvorak/dvorak/enable.vim,
10382 runtime/pack/dist/opt/dvorak/dvorak/disable.vim
10383
10384Patch 7.4.1673
10385Problem: The justify plugin has to be copied or sourced to be used.
10386Solution: Turn it into a package.
10387Files: runtime/macros/justify.vim, runtime/macros/README.txt,
10388 runtime/pack/dist/opt/justify/plugin/justify.vim, Filelist
10389
10390Patch 7.4.1674
10391Problem: The editexisting plugin has to be copied or sourced to be used.
10392Solution: Turn it into a package.
10393Files: runtime/macros/editexisting.vim, runtime/macros/README.txt,
10394 runtime/pack/dist/opt/editexisting/plugin/editexisting.vim,
10395 Filelist
10396
10397Patch 7.4.1675
10398Problem: The swapmous plugin has to be copied or sourced to be used.
10399Solution: Turn it into the swapmouse package.
10400Files: runtime/macros/swapmous.vim, runtime/macros/README.txt,
10401 runtime/pack/dist/opt/swapmouse/plugin/swapmouse.vim, Filelist
10402
10403Patch 7.4.1676
10404Problem: The shellmenu plugin has to be copied or sourced to be used.
10405Solution: Turn it into a package.
10406Files: runtime/macros/shellmenu.vim, runtime/macros/README.txt,
10407 runtime/pack/dist/opt/shellmenu/plugin/shellmenu.vim, Filelist
10408
10409Patch 7.4.1677
10410Problem: A reference to the removed file_select plugin remains.
10411Solution: Remove it.
10412Files: runtime/macros/README.txt
10413
10414Patch 7.4.1678
10415Problem: Warning for unused argument.
10416Solution: Add UNUSED. (Dominique Pelle)
10417Files: src/if_mzsch.c
10418
10419Patch 7.4.1679
10420Problem: Coverity: copying value of v_lock without initializing it.
10421Solution: Init v_lock in rettv_list_alloc() and rettv_dict_alloc().
10422Files: src/eval.c
10423
10424Patch 7.4.1680
10425Problem: Coverity warns for not checking name length (false positive).
10426Solution: Only copy the characters we know are there.
10427Files: src/channel.c
10428
10429Patch 7.4.1681
10430Problem: Coverity warns for fixed size buffer length (false positive).
10431Solution: Add a check for the name length.
10432Files: src/eval.c
10433
10434Patch 7.4.1682
10435Problem: Coverity: no check for NULL.
10436Solution: Add check for invalid argument to assert_match().
10437Files: src/eval.c
10438
10439Patch 7.4.1683
10440Problem: Generated .bat files do not support --nofork.
10441Solution: Add check for --nofork. Also add "setlocal". (Kevin Cantú,
10442 closes #659)
10443Files: src/dosinst.c
10444
10445Patch 7.4.1684
10446Problem: README text is slightly outdated.
10447Solution: Mention the READMEdir directory.
10448Files: README.md, README.txt
10449
10450Patch 7.4.1685
10451Problem: There is no easy way to get all the information about a match.
10452Solution: Add matchstrpos(). (Ozaki Kiichi)
10453Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/eval.c,
10454 src/testdir/test_alot.vim, src/testdir/test_matchstrpos.vim
10455
10456Patch 7.4.1686
10457Problem: When running tests $HOME/.viminfo is written. (James McCoy)
10458Solution: Add 'nviminfo' to the 'viminfo' option. (closes #722)
10459Files: src/testdir/test_backspace_opt.vim, src/testdir/test_viminfo.vim,
10460 src/testdir/runtest.vim.
10461
10462Patch 7.4.1687
10463Problem: The channel close_cb option does not work.
10464Solution: Use jo_close_partial instead of jo_err_partial. (Damien)
10465Files: src/channel.c, src/testdir/test_channel.vim
10466
10467Patch 7.4.1688
10468Problem: MzScheme does not support partial.
10469Solution: Add minimal partial support. (Ken Takata)
10470Files: src/if_mzsch.c
10471
10472Patch 7.4.1689
10473Problem: Ruby interface has inconsistent coding style.
10474Solution: Fix the coding style. (Ken Takata)
10475Files: src/if_ruby.c
10476
10477Patch 7.4.1690
10478Problem: Can't compile with the conceal feature but without multi-byte.
10479Solution: Adjust #ifdef. (Owen Leibman)
10480Files: src/eval.c, src/window.c
10481
10482Patch 7.4.1691
10483Problem: When switching to a new buffer and an autocommand applies syntax
10484 highlighting an ml_get error may occur.
10485Solution: Check "syn_buf" against the buffer in the window. (Alexander von
10486 Buddenbrock, closes #676)
10487Files: src/syntax.c
10488
10489Patch 7.4.1692
10490Problem: feedkeys('i', 'x') gets stuck, waits for a character to be typed.
10491Solution: Behave like ":normal". (Yasuhiro Matsumoto)
10492Files: src/eval.c, src/testdir/test_feedkeys.vim
10493
10494Patch 7.4.1693
10495Problem: Building the Perl interface gives compiler warnings.
10496Solution: Remove a pragma. Add noreturn attributes. (Damien)
10497Files: src/if_perl.xs
10498
10499Patch 7.4.1694
10500Problem: Win32 gvim doesn't work with "dvorakj" input method.
10501Solution: Wait for QS_ALLINPUT instead of QS_ALLEVENTS. (Yukihiro Nakadaira)
10502Files: src/gui_w32.c
10503
10504Patch 7.4.1695
10505Problem: ":syn reset" clears the effect ":syn iskeyword". (James McCoy)
10506Solution: Remove clearing the syntax keywords.
10507Files: src/syntax.c
10508
10509Patch 7.4.1696
10510Problem: When using :stopinsert in a silent mapping the "INSERT" message
10511 isn't cleared. (Coacher)
10512Solution: Always clear the message. (Christian Brabandt, closes #718)
10513Files: src/ex_docmd.c, src/proto/screen.pro, src/screen.c
10514
10515Patch 7.4.1697
10516Problem: Display problems when the 'ambiwidth' and 'emoji' options are not
10517 set properly or the terminal doesn't behave as expected.
10518Solution: After drawing an ambiguous width character always position the
10519 cursor.
10520Files: src/mbyte.c, src/screen.c, src/proto/mbyte.pro
10521
10522Patch 7.4.1698
10523Problem: Two tests fail when running tests with MinGW. (Michael Soyka)
10524Solution: Convert test_getcwd.ok test_wordcount.ok to unix fileformat.
10525Files: src/testdir/Make_ming.mak
10526
10527Patch 7.4.1699
10528Problem: :packadd does not work the same when used early or late.
10529Solution: Always load plugins matching "plugin/**/*.vim".
10530Files: src/ex_cmds2.c, src/testdir/test_packadd.vim
10531
10532Patch 7.4.1700
10533Problem: Equivalence classes are not properly tested.
10534Solution: Add tests for multi-byte and latin1. Fix an error. (Owen Leibman)
10535Files: src/regexp.c, src/testdir/Make_all.mak,
10536 src/testdir/test_alot_latin.vim, src/testdir/test_alot_utf8.vim,
10537 src/testdir/test_regexp_latin.vim,
10538 src/testdir/test_regexp_utf8.vim
10539
10540Patch 7.4.1701
10541Problem: Equivalence classes still tested in old style tests.
10542Solution: Remove the duplicate.
10543Files: src/testdir/test44.in, src/testdir/test44.ok,
10544 src/testdir/test99.in, src/testdir/test99.ok
10545
10546Patch 7.4.1702
10547Problem: Using freed memory when parsing 'printoptions' fails.
10548Solution: Save the old options and restore them in case of an error.
10549 (Dominique)
10550Files: src/hardcopy.c, src/testdir/test_hardcopy.vim
10551
10552Patch 7.4.1703
10553Problem: Can't assert for not equal and not matching.
10554Solution: Add assert_notmatch() and assert_notequal().
10555Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_assert.vim
10556
10557Patch 7.4.1704
10558Problem: Using freed memory with "wincmd p". (Dominique Pelle)
10559Solution: Also clear "prevwin" in other tab pages.
10560Files: src/window.c
10561
10562Patch 7.4.1705
10563Problem: The 'guifont' option does not allow for a quality setting.
10564Solution: Add the "q" item, supported on MS-Windows. (Yasuhiro Matsumoto)
10565Files: runtime/doc/options.txt, src/gui_w32.c, src/os_mswin.c,
10566 src/proto/os_mswin.pro
10567
10568Patch 7.4.1706
10569Problem: Old style function declaration breaks build.
10570Solution: Remove __ARGS().
10571Files: src/proto/os_mswin.pro
10572
10573Patch 7.4.1707
10574Problem: Cannot use empty dictionary key, even though it can be useful.
10575Solution: Allow using an empty dictionary key.
10576Files: src/hashtab.c, src/eval.c, src/testdir/test_expr.vim
10577
10578Patch 7.4.1708
10579Problem: New regexp engine does not work properly with EBCDIC.
10580Solution: Define equivalence class characters. (Owen Leibman)
10581Files: src/regexp_nfa.c
10582
10583Patch 7.4.1709
10584Problem: Mistake in #ifdef.
10585Solution: Change PROOF_QUALITY to DRAFT_QUALITY. (Ken Takata)
10586Files: src/os_mswin.c
10587
10588Patch 7.4.1710
10589Problem: Not all output of an external command is read.
10590Solution: Avoid timing out when the process has exited. (closes #681)
10591Files: src/os_unix.c
10592
10593Patch 7.4.1711
10594Problem: When using try/catch in 'statusline' it is still considered an
10595 error and the status line will be disabled.
10596Solution: Check did_emsg instead of called_emsg. (haya14busa, closes #729)
10597Files: src/screen.c, src/testdir/test_statusline.vim,
10598 src/testdir/test_alot.vim
10599
10600Patch 7.4.1712
10601Problem: For plugins in packages, plugin authors need to take care of all
10602 dependencies.
10603Solution: When loading "start" packages and for :packloadall, first add all
10604 directories to 'runtimepath' before sourcing plugins.
10605Files: src/ex_cmds2.c, src/testdir/test_packadd.vim
10606
10607Patch 7.4.1713
10608Problem: GTK GUI doesn't work on Wayland.
10609Solution: Specify that only the X11 backend is allowed. (Simon McVittie)
10610Files: src/gui_gtk_x11.c
10611
10612Patch 7.4.1714
10613Problem: Non-GUI specific settings in the gvimrc_example file.
10614Solution: Move some settings to the vimrc_example file. Remove setting
10615 'hlsearch' again. (suggested by Hirohito Higashi)
10616Files: runtime/vimrc_example.vim, runtime/gvimrc_example.vim
10617
10618Patch 7.4.1715
10619Problem: Double free when a partial is in a cycle with a list or dict.
10620 (Nikolai Pavlov)
10621Solution: Do not free a nested list or dict used by the partial.
10622Files: src/eval.c, src/testdir/test_partial.vim
10623
10624Patch 7.4.1716
10625Problem: 'autochdir' doesn't work for the first file. (Rob Hoelz)
10626Solution: Call DO_AUTOCHDIR after startup. (Christian Brabandt, closes #704)
10627Files: src/main.c
10628
10629Patch 7.4.1717
10630Problem: Leaking memory when opening a channel fails.
10631Solution: Unreference partials in job options.
10632Files: src/eval.c, src/channel.c, src/proto/channel.pro,
10633 src/testdir/test_channel.vim
10634
10635Patch 7.4.1718
10636Problem: Coverity: not using return value of set_ref_in_item().
10637Solution: Use the return value.
10638Files: src/eval.c
10639
10640Patch 7.4.1719
10641Problem: Leaking memory when there is a cycle involving a job and a
10642 partial.
10643Solution: Add a copyID to job and channel. Set references in items referred
10644 by them. Go through all jobs and channels to find unreferenced
10645 items. Also, decrement reference counts when garbage collecting.
10646Files: src/eval.c, src/channel.c, src/netbeans.c, src/globals.h,
10647 src/ops.c, src/regexp.c, src/tag.c, src/proto/channel.pro,
10648 src/proto/eval.pro, src/testdir/test_partial.vim, src/structs.h
10649
10650Patch 7.4.1720
10651Problem: Tests fail without the job feature.
10652Solution: Skip tests when the job feature is not present.
10653Files: src/testdir/test_partial.vim
10654
10655Patch 7.4.1721
10656Problem: The vimtbar files are unused.
10657Solution: Remove them. (Ken Takata)
10658Files: src/vimtbar.dll, src/vimtbar.h, src/vimtbar.lib, Filelist
10659
10660Patch 7.4.1722
10661Problem: Crash when calling garbagecollect() after starting a job.
10662Solution: Set the copyID on job and channel. (Hirohito Higashi, Ozaki
10663 Kiichi)
10664Files: src/eval.c
10665
10666Patch 7.4.1723
10667Problem: When using try/catch in 'tabline' it is still considered an
10668 error and the tabline will be disabled.
10669Solution: Check did_emsg instead of called_emsg. (haya14busa, closes #746)
10670Files: src/screen.c, src/testdir/test_tabline.vim,
10671 src/testdir/test_alot.vim
10672
10673Patch 7.4.1724 (after 7.4.1723)
10674Problem: Tabline test fails in GUI.
10675Solution: Remove 'e' from 'guioptions'.
10676Files: src/testdir/test_tabline.vim
10677
10678Patch 7.4.1725
10679Problem: Compiler errors for non-ANSI compilers.
10680Solution: Remove // comment. Remove comma at end of enum. (Michael Jarvis)
10681Files: src/eval.c
10682
10683Patch 7.4.1726
10684Problem: ANSI compiler complains about string length.
10685Solution: Split long string in two parts. (Michael Jarvis)
10686Files: src/ex_cmds.c
10687
10688Patch 7.4.1727
10689Problem: Cannot detect a crash in tests when caused by garbagecollect().
10690Solution: Add garbagecollect_for_testing(). Do not free a job if is still
10691 useful.
10692Files: src/channel.c, src/eval.c, src/getchar.c, src/main.c, src/vim.h,
10693 src/proto/eval.pro, src/testdir/runtest.vim,
10694 src/testdir/test_channel.vim, runtime/doc/eval.txt
10695
10696Patch 7.4.1728
10697Problem: The help for functions require a space after the "(".
10698Solution: Make CTRL-] on a function name ignore the arguments. (Hirohito
10699 Higashi)
10700Files: src/ex_cmds.c, src/testdir/test_help_tagjump.vim,
10701 runtime/doc/eval.txt
10702
10703Patch 7.4.1729
10704Problem: The Perl interface cannot use 'print' operator for writing
10705 directly in standard IO.
10706Solution: Add a minimal implementation of PerlIO Layer feature and try to
10707 use it for STDOUT/STDERR. (Damien)
10708Files: src/if_perl.xs, src/testdir/test_perl.vim
10709
10710Patch 7.4.1730
10711Problem: It is not easy to get a character out of a string.
10712Solution: Add strgetchar() and strcharpart().
10713Files: src/eval.c, src/testdir/test_expr.vim
10714
10715Patch 7.4.1731
10716Problem: Python: turns partial into simple funcref.
10717Solution: Use partials like partials. (Nikolai Pavlov, closes #734)
10718Files: runtime/doc/if_pyth.txt, src/eval.c, src/if_py_both.h,
10719 src/if_python.c, src/if_python3.c, src/proto/eval.pro,
10720 src/testdir/test86.in, src/testdir/test86.ok,
10721 src/testdir/test87.in, src/testdir/test87.ok
10722
10723Patch 7.4.1732
10724Problem: Folds may close when using autocomplete. (Anmol Sethi)
10725Solution: Increment/decrement disable_fold. (Christian Brabandt, closes
10726 #643)
10727Files: src/edit.c, src/fold.c, src/globals.h
10728
10729Patch 7.4.1733
10730Problem: "make install" doesn't know about cross-compiling. (Christian
10731 Neukirchen)
10732Solution: Add CROSS_COMPILING. (closes #740)
10733Files: src/configure.in, src/auto/configure, src/config.mk.in,
10734 src/Makefile
10735
10736Patch 7.4.1734 (after 7.4.1730)
10737Problem: Test fails when not using utf-8.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020010738Solution: Split test in regular and utf-8 part.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020010739Files: src/testdir/test_expr.vim, src/testdir/test_expr_utf8.vim,
10740 src/testdir/test_alot_utf8.vim
10741
10742Patch 7.4.1735
10743Problem: It is not possible to only see part of the message history. It is
10744 not possible to clear messages.
10745Solution: Add a count to ":messages" and a clear argument. (Yasuhiro
10746 Matsumoto)
10747Files: runtime/doc/message.txt, src/ex_cmds.h, src/message.c,
10748 src/testdir/test_messages.vim, src/testdir/test_alot.vim
10749
10750Patch 7.4.1736 (after 7.4.1731)
10751Problem: Unused variable.
10752Solution: Remove it. (Yasuhiro Matsumoto)
10753Files: src/if_py_both.h
10754
10755Patch 7.4.1737
10756Problem: Argument marked as unused is used.
10757Solution: Remove UNUSED.
10758Files: src/message.c
10759
10760Patch 7.4.1738
10761Problem: Count for ":messages" depends on number of lines.
10762Solution: Add ADDR_OTHER address type.
10763Files: src/ex_cmds.h
10764
10765Patch 7.4.1739
10766Problem: Messages test fails on MS-Windows.
10767Solution: Adjust the asserts. Skip the "messages maintainer" line if not
10768 showing all messages.
10769Files: src/message.c, src/testdir/test_messages.vim
10770
10771Patch 7.4.1740
10772Problem: syn-cchar defined with matchadd() does not appear if there are no
10773 other syntax definitions which matches buffer text.
10774Solution: Check for startcol. (Ozaki Kiichi, haya14busa, closes #757)
10775Files: src/screen.c, src/testdir/Make_all.mak,
10776 src/testdir/test_alot_utf8.vim, src/testdir/test_match_conceal.in,
10777 src/testdir/test_match_conceal.ok,
10778 src/testdir/test_matchadd_conceal.vim,
10779 src/testdir/test_matchadd_conceal_utf8.vim,
10780 src/testdir/test_undolevels.vim
10781
10782Patch 7.4.1741
10783Problem: Not testing utf-8 characters.
10784Solution: Move the right asserts to the test_expr_utf8 test.
10785Files: src/testdir/test_expr.vim, src/testdir/test_expr_utf8.vim
10786
10787Patch 7.4.1742
10788Problem: strgetchar() does not work correctly.
10789Solution: use mb_cptr2len(). Add a test. (Naruhiko Nishino)
10790Files: src/eval.c, src/testdir/test_expr_utf8.vim
10791
10792Patch 7.4.1743
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020010793Problem: Clang warns for uninitialized variable. (Michael Jarvis)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020010794Solution: Initialize it.
10795Files: src/if_py_both.h
10796
10797Patch 7.4.1744
10798Problem: Python: Converting a sequence may leak memory.
10799Solution: Decrement a reference. (Nikolay Pavlov)
10800Files: src/if_py_both.h
10801
10802Patch 7.4.1745
10803Problem: README file is not clear about where to get Vim.
10804Solution: Add links to github, releases and the Windows installer.
10805 (Suggested by Christian Brabandt)
10806Files: README.md, README.txt
10807
10808Patch 7.4.1746
10809Problem: Memory leak in Perl.
10810Solution: Decrement the reference count. Add a test. (Damien)
10811Files: src/if_perl.xs, src/testdir/test_perl.vim
10812
10813Patch 7.4.1747
10814Problem: Coverity: missing check for NULL pointer.
10815Solution: Check for out of memory.
10816Files: src/if_py_both.h
10817
10818Patch 7.4.1748
10819Problem: "gD" does not find match in first column of first line. (Gary
10820 Johnson)
10821Solution: Accept match at the cursor.
10822Files: src/normal.c, src/testdir/test_goto.vim, src/testdir/test_alot.vim
10823
10824Patch 7.4.1749
10825Problem: When using GTK 3.20 there are a few warnings.
10826Solution: Use new functions when available. (Kazunobu Kuriyama)
10827Files: src/gui_beval,c src/gui_gtk_x11.c
10828
10829Patch 7.4.1750
10830Problem: When a buffer gets updated while in command line mode, the screen
10831 may be messed up.
10832Solution: Postpone the redraw when the screen is scrolled.
10833Files: src/channel.c
10834
10835Patch 7.4.1751
10836Problem: Crash when 'tagstack' is off. (Dominique Pelle)
10837Solution: Fix it. (Hirohito Higashi)
10838Files: src/tag.c, src/testdir/test_alot.vim, src/testdir/test_tagjump.vim
10839
10840Patch 7.4.1752
10841Problem: When adding to the quickfix list the current position is reset.
10842Solution: Do not reset the position when not needed. (Yegappan Lakshmanan)
10843Files: src/quickfix.c, src/testdir/test_quickfix.vim
10844
10845Patch 7.4.1753
10846Problem: "noinsert" in 'completeopt' is sometimes ignored.
10847Solution: Set the variables when the 'completeopt' was set. (Ozaki Kiichi)
10848Files: src/edit.c, src/option.c, src/proto/edit.pro
10849
10850Patch 7.4.1754
10851Problem: When 'filetype' was set and reloading a buffer which does not
10852 cause it to be set, the syntax isn't loaded. (KillTheMule)
10853Solution: Remember whether the FileType event was fired and fire it if not.
10854 (Anton Lindqvist, closes #747)
10855Files: src/fileio.c, src/testdir/test_syntax.vim
10856
10857Patch 7.4.1755
10858Problem: When using getreg() on a non-existing register a NULL list is
10859 returned. (Bjorn Linse)
10860Solution: Allocate an empty list. Add a test.
10861Files: src/eval.c, src/testdir/test_expr.vim
10862
10863Patch 7.4.1756
10864Problem: "dll" options are not expanded.
10865Solution: Expand environment variables. (Ozaki Kiichi)
10866Files: src/option.c, src/testdir/test_alot.vim,
10867 src/testdir/test_expand_dllpath.vim
10868
10869Patch 7.4.1757
10870Problem: When using complete() it may set 'modified' even though nothing
10871 was inserted.
10872Solution: Use Down/Up instead of Next/Previous match. (Shougo, closes #745)
10873Files: src/edit.c
10874
10875Patch 7.4.1758
10876Problem: Triggering CursorHoldI when in CTRL-X mode causes problems.
10877Solution: Do not trigger CursorHoldI in CTRL-X mode. Add "!" flag to
10878 feedkeys() (test with that didn't work though).
10879Files: src/edit.c, src/eval.c
10880
10881Patch 7.4.1759
10882Problem: When using feedkeys() in a timer the inserted characters are not
10883 used right away.
10884Solution: Break the wait loop when characters have been added to typebuf.
10885 use this for testing CursorHoldI.
10886Files: src/gui.c, src/os_win32.c, src/os_unix.c,
10887 src/testdir/test_autocmd.vim
10888
10889Patch 7.4.1760 (after 7.4.1759)
10890Problem: Compiler warning for unused variable.
10891Solution: Add #ifdef. (John Marriott)
10892Files: src/os_win32.c
10893
10894Patch 7.4.1761
10895Problem: Coverity complains about ignoring return value.
10896Solution: Add "(void)" to get rid of the warning.
10897Files: src/eval.c
10898
10899Patch 7.4.1762
10900Problem: Coverity: useless assignments.
10901Solution: Remove them.
10902Files: src/search.c
10903
10904Patch 7.4.1763
10905Problem: Coverity: useless assignment.
10906Solution: Add #if 0.
10907Files: src/spell.c
10908
10909Patch 7.4.1764
10910Problem: C++ style comment. (Ken Takata)
10911Solution: Finish the work started here: don't call perror() when stderr
10912 isn't working.
10913Files: src/os_unix.c
10914
10915Patch 7.4.1765
10916Problem: Undo options are not together in the options window.
10917Solution: Put them together. (Gary Johnson)
10918Files: runtime/optwin.vim
10919
10920Patch 7.4.1766
10921Problem: Building instructions for MS-Windows are outdated.
10922Solution: Mention setting SDK_INCLUDE_DIR. (Ben Franklin, closes #771) Move
10923 outdated instructions further down.
10924Files: src/INSTALLpc.txt
10925
10926Patch 7.4.1767
10927Problem: When installing Vim on a GTK system the icon cache is not updated.
10928Solution: Update the GTK icon cache when possible. (Kazunobu Kuriyama)
10929Files: src/Makefile, src/configure.in, src/config.mk.in,
10930 src/auto/configure
10931
10932Patch 7.4.1768
10933Problem: Arguments of setqflist() are not checked properly.
10934Solution: Add better checks, add a test. (Nikolai Pavlov, Hirohito Higashi,
10935 closes #661)
10936Files: src/eval.c, src/testdir/test_quickfix.vim
10937
10938Patch 7.4.1769
10939Problem: No "closed", "errors" and "encoding" attribute on Python output.
10940Solution: Add attributes and more tests. (Roland Puntaier, closes #622)
10941Files: src/if_py_both.h, src/if_python.c, src/if_python3.c,
10942 src/testdir/test86.in, src/testdir/test86.ok,
10943 src/testdir/test87.in, src/testdir/test87.ok
10944
10945Patch 7.4.1770
10946Problem: Cannot use true color in the terminal.
10947Solution: Add the 'guicolors' option. (Nikolai Pavlov)
10948Files: runtime/doc/options.txt, runtime/doc/term.txt,
10949 runtime/doc/various.txt, src/auto/configure, src/config.h.in,
10950 src/configure.in, src/eval.c, src/globals.h, src/hardcopy.c,
10951 src/option.c, src/option.h, src/proto/term.pro, src/screen.c,
10952 src/structs.h, src/syntax.c, src/term.c, src/term.h,
10953 src/version.c, src/vim.h
10954
10955Patch 7.4.1771 (after 7.4.1768)
10956Problem: Warning for unused variable.
10957Solution: Add #ifdef. (John Marriott)
10958Files: src/eval.c
10959
10960Patch 7.4.1772 (after 7.4.1767)
10961Problem: Installation fails when $GTK_UPDATE_ICON_CACHE is empty.
10962Solution: Add quotes. (Kazunobu Kuriyama)
10963Files: src/Makefile
10964
10965Patch 7.4.1773 (after 7.4.1770)
10966Problem: Compiler warnings. (Dominique Pelle)
10967Solution: Add UNUSED. Add type cast. Avoid a buffer overflow.
10968Files: src/syntax.c, src/term.c
10969
10970Patch 7.4.1774 (after 7.4.1770)
10971Problem: Cterm true color feature has warnings.
10972Solution: Add type casts.
10973Files: src/screen.c, src/syntax.c, src/term.c
10974
10975Patch 7.4.1775
10976Problem: The rgb.txt file is not installed.
10977Solution: Install the file. (Christian Brabandt)
10978Files: src/Makefile
10979
10980Patch 7.4.1776
10981Problem: Using wrong buffer length.
10982Solution: use the right name. (Kazunobu Kuriyama)
10983Files: src/term.c
10984
10985Patch 7.4.1777
10986Problem: Newly added features can escape the sandbox.
10987Solution: Add checks for restricted and secure. (Yasuhiro Matsumoto)
10988Files: src/eval.c
10989
10990Patch 7.4.1778
10991Problem: When using the term truecolor feature, the t_8f and t_8b termcap
10992 options are not set by default.
10993Solution: Move the values to before BT_EXTRA_KEYS. (Christian Brabandt)
10994Files: src/term.c
10995
10996Patch 7.4.1779
10997Problem: Using negative index in strcharpart(). (Yegappan Lakshmanan)
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020010998Solution: Assume single byte when using a negative index.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020010999Files: src/eval.c
11000
11001Patch 7.4.1780
11002Problem: Warnings reported by cppcheck.
11003Solution: Fix the warnings. (Dominique Pelle)
11004Files: src/ex_cmds2.c, src/json.c, src/misc1.c, src/ops.c,
11005 src/regexp_nfa.c
11006
11007Patch 7.4.1781
11008Problem: synIDattr() does not respect 'guicolors'.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020011009Solution: Change the condition for the mode. (Christian Brabandt)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011010Files: src/eval.c
11011
11012Patch 7.4.1782
11013Problem: strcharpart() does not work properly with some multi-byte
11014 characters.
11015Solution: Use mb_cptr2len() instead of mb_char2len(). (Hirohito Higashi)
11016Files: src/eval.c, src/testdir/test_expr_utf8.vim
11017
11018Patch 7.4.1783
11019Problem: The old regexp engine doesn't handle character classes correctly.
11020 (Manuel Ortega)
11021Solution: Use regmbc() instead of regc(). Add a test.
11022Files: src/regexp.c, src/testdir/test_regexp_utf8.vim
11023
11024Patch 7.4.1784
11025Problem: The termtruecolor feature is enabled differently from many other
11026 features.
11027Solution: Enable the termtruecolor feature for the big build, not through
11028 configure.
11029Files: src/configure.in, src/config.h.in, src/auto/configure,
11030 src/feature.h
11031
11032Patch 7.4.1785 (after 7.4.1783)
11033Problem: Regexp test fails on windows.
11034Solution: set 'isprint' to the right value for testing.
11035Files: src/testdir/test_regexp_utf8.vim
11036
11037Patch 7.4.1786
11038Problem: Compiled-in colors do not match rgb.txt.
11039Solution: Use the rgb.txt colors. (Kazunobu Kuriyama)
11040Files: src/term.c
11041
11042Patch 7.4.1787
11043Problem: When a job ends the close callback is invoked before other
11044 callbacks. On Windows the close callback is not called.
11045Solution: First invoke out/err callbacks before the close callback.
11046 Make the close callback work on Windows.
11047Files: src/channel.c, src/proto/channel.pro,
11048 src/testdir/test_channel.vim, src/testdir/test_channel_pipe.py
11049
11050Patch 7.4.1788
11051Problem: NSIS script is missing packages.
11052Solution: Add the missing directories. (Ken Takata)
11053Files: nsis/gvim.nsi
11054
11055Patch 7.4.1789
11056Problem: Cannot use ch_read() in the close callback.
11057Solution: Do not discard the channel if there is readahead. Do not discard
11058 readahead if there is a close callback.
11059Files: src/eval.c, src/channel.c, src/proto/channel.pro,
11060 src/testdir/test_channel.vim
11061
11062Patch 7.4.1790
11063Problem: Leading white space in a job command matters. (Andrew Stewart)
11064Solution: Skip leading white space.
11065Files: src/os_unix.c
11066
11067Patch 7.4.1791
11068Problem: Channel could be garbage collected too early.
11069Solution: Don't free a channel or remove it from a job when it is still
11070 useful.
11071Files: src/channel.c
11072
11073Patch 7.4.1792
11074Problem: Color name decoding is implemented several times.
11075Solution: Move it to term.c. (Christian Brabandt)
11076Files: src/gui_mac.c, src/gui_photon.c, src/gui_w32.c,
11077 src/proto/term.pro, src/term.c
11078
11079Patch 7.4.1793
11080Problem: Some character classes may differ between systems. On OS/X the
11081 regexp test fails.
11082Solution: Make this less dependent on the system. (idea by Kazunobu Kuriyama)
11083Files: src/regexp.c, src/regexp_nfa.c
11084
11085Patch 7.4.1794 (after 7.4.1792)
11086Problem: Can't build on MS-Windows.
11087Solution: Add missing declaration.
11088Files: src/gui_w32.c
11089
11090Patch 7.4.1795
11091Problem: Compiler warning for redefining RGB. (John Marriott)
11092Solution: Rename it to TORGB.
11093Files: src/term.c
11094
11095Patch 7.4.1796 (after 7.4.1795)
11096Problem: Colors are wrong on MS-Windows. (Christian Robinson)
11097Solution: Use existing RGB macro if it exists. (Ken Takata)
11098Files: src/term.c
11099
11100Patch 7.4.1797
11101Problem: Warning from Windows 64 bit compiler.
11102Solution: Change int to size_t. (Mike Williams)
11103Files: src/term.c
11104
11105Patch 7.4.1798
11106Problem: Still compiler warning for unused return value. (Charles Campbell)
11107Solution: Assign to ignoredp.
11108Files: src/term.c
11109
11110Patch 7.4.1799
11111Problem: 'guicolors' is a confusing option name.
11112Solution: Use 'termguicolors' instead. (Hirohito Higashi, Ken Takata)
11113Files: runtime/doc/options.txt, runtime/doc/term.txt,
11114 runtime/doc/various.txt, runtime/syntax/dircolors.vim, src/eval.c,
11115 src/feature.h, src/globals.h, src/hardcopy.c, src/option.c,
11116 src/option.h, src/proto/term.pro, src/screen.c, src/structs.h,
11117 src/syntax.c, src/term.c, src/version.c, src/vim.h
11118
11119Patch 7.4.1800 (after 7.4.1799)
11120Problem: Unnecessary #ifdef.
11121Solution: Just use USE_24BIT. (Ken Takata)
11122Files: src/syntax.c
11123
11124Patch 7.4.1801
11125Problem: Make uninstall leaves file behind.
11126Solution: Delete rgb.txt. (Kazunobu Kuriyama)
11127Files: src/Makefile
11128
11129Patch 7.4.1802
11130Problem: Quickfix doesn't handle long lines well, they are split.
11131Solution: Drop characters after a limit. (Anton Lindqvist)
11132Files: src/quickfix.c, src/testdir/test_quickfix.vim,
11133 src/testdir/samples/quickfix.txt
11134
11135Patch 7.4.1803
11136Problem: GTK3 doesn't handle menu separators properly.
11137Solution: Use gtk_separator_menu_item_new(). (Kazunobu Kuriyama)
11138Files: src/gui_gtk.c
11139
11140Patch 7.4.1804
11141Problem: Can't use Vim as MANPAGER.
11142Solution: Add manpager.vim. (Enno Nagel, closes #491)
11143Files: runtime/doc/filetype.txt, runtime/plugin/manpager.vim
11144
11145Patch 7.4.1805
11146Problem: Running tests in shadow dir fails.
11147Solution: Link the samples directory
11148Files: src/Makefile
11149
11150Patch 7.4.1806
11151Problem: 'termguicolors' option missing from the options window.
11152Solution: Add the entry.
11153Files: runtime/optwin.vim
11154
11155Patch 7.4.1807
11156Problem: Test_out_close_cb sometimes fails.
11157Solution: Always write DETACH to out, not err.
11158Files: src/channel.c, src/testdir/test_channel.vim
11159
11160Patch 7.4.1808 (after 7.4.1806)
11161Problem: Using wrong feature name to check for 'termguicolors'.
11162Solution: Use the right feature name. (Ken Takata)
11163Files: runtime/optwin.vim
11164
11165Patch 7.4.1809 (after 7.4.1808)
11166Problem: Using wrong short option name for 'termguicolors'.
11167Solution: Use the option name.
11168Files: runtime/optwin.vim
11169
11170Patch 7.4.1810
11171Problem: Sending DETACH after a channel was closed isn't useful.
11172Solution: Only add DETACH for a netbeans channel.
11173Files: src/channel.c, src/testdir/test_channel.vim
11174
11175Patch 7.4.1811
11176Problem: Netbeans channel gets garbage collected.
11177Solution: Set reference in nb_channel.
11178Files: src/eval.c, src/netbeans.c, src/proto/netbeans.pro
11179
11180Patch 7.4.1812
11181Problem: Failure on startup with Athena and Motif.
11182Solution: Check for INVALCOLOR. (Kazunobu Kuriyama)
11183Files: src/syntax.c, src/vim.h
11184
11185Patch 7.4.1813
11186Problem: Memory access error when running test_quickfix.
11187Solution: Allocate one more byte. (Yegappan Lakshmanan)
11188Files: src/quickfix.c
11189
11190Patch 7.4.1814
11191Problem: A channel may be garbage collected while it's still being used by
11192 a job. (James McCoy)
11193Solution: Mark the channel as used if the job is still used. Do the same
11194 for channels that are still used.
11195Files: src/eval.c, src/channel.c, src/proto/channel.pro
11196
11197Patch 7.4.1815
11198Problem: Compiler warnings for unused variables. (Ajit Thakkar)
11199Solution: Add a dummy initialization. (Yasuhiro Matsumoto)
11200Files: src/quickfix.c
11201
11202Patch 7.4.1816
11203Problem: Looping over a null list throws an error.
11204Solution: Skip over the for loop.
11205Files: src/eval.c, src/testdir/test_expr.vim
11206
11207Patch 7.4.1817
11208Problem: The screen is not updated if a callback is invoked when closing a
11209 channel.
11210Solution: Invoke redraw_after_callback().
11211Files: src/channel.c
11212
11213Patch 7.4.1818
11214Problem: Help completion adds @en to all matches except the first one.
11215Solution: Remove "break", go over all items.
11216Files: src/ex_getln.c
11217
11218Patch 7.4.1819
11219Problem: Compiler warnings when sprintf() is a macro.
11220Solution: Don't interrupt sprintf() with an #ifdef. (Michael Jarvis,
11221 closes #788)
11222Files: src/fileio.c, src/tag.c, src/term.c
11223
11224Patch 7.4.1820
11225Problem: Removing language from help tags too often.
11226Solution: Only remove @en when not needed. (Hirohito Higashi)
11227Files: src/ex_getln.c, src/testdir/test_help_tagjump.vim
11228
11229Patch 7.4.1821 (after 7.4.1820)
11230Problem: Test fails on MS-Windows.
11231Solution: Sort the completion results.
11232Files: src/testdir/test_help_tagjump.vim
11233
11234Patch 7.4.1822
11235Problem: Redirecting stdout of a channel to "null" doesn't work. (Nicola)
11236Solution: Correct the file descriptor number.
11237Files: src/os_unix.c
11238
11239Patch 7.4.1823
11240Problem: Warning from 64 bit compiler.
11241Solution: Add type cast. (Mike Williams)
11242Files: src/quickfix.c
11243
11244Patch 7.4.1824
11245Problem: When a job is no longer referenced and does not have an exit
Bram Moolenaar09521312016-08-12 22:54:35 +020011246 callback the process may hang around in defunct state. (Nicola)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011247Solution: Call job_status() if the job is running and won't get freed
11248 because it might still be useful.
11249Files: src/channel.c
11250
11251Patch 7.4.1825
11252Problem: When job writes to buffer nothing is written. (Nicola)
11253Solution: Do not discard a channel before writing is done.
11254Files: src/channel.c
11255
11256Patch 7.4.1826
11257Problem: Callbacks are invoked when it's not safe. (Andrew Stewart)
11258Solution: When a channel is to be closed don't invoke callbacks right away,
11259 wait for a safe moment.
11260Files: src/structs.h, src/channel.c
11261
11262Patch 7.4.1827
11263Problem: No error when invoking a callback when it's not safe.
11264Solution: Add an error message. Avoid the error when freeing a channel.
11265Files: src/structs.h, src/channel.c
11266
11267Patch 7.4.1828
11268Problem: May try to access buffer that's already freed.
11269Solution: When freeing a buffer remove it from any channel.
11270Files: src/buffer.c, src/channel.c, src/proto/channel.pro
11271
11272Patch 7.4.1829 (after 7.4.1828)
11273Problem: No message on channel log when buffer was freed.
11274Solution: Log a message.
11275Files: src/channel.c
11276
11277Patch 7.4.1830
11278Problem: non-antialiased misnamed.
11279Solution: Use NONANTIALIASED and NONANTIALIASED_QUALITY. (Kim Brouer,
11280 closes #793)
11281Files: src/os_mswin.c, runtime/doc/options.txt
11282
11283Patch 7.4.1831
11284Problem: When timer_stop() is called with a string there is no proper error
11285 message.
11286Solution: Require getting a number. (Bjorn Linse)
11287Files: src/eval.c
11288
11289Patch 7.4.1832
11290Problem: Memory leak in debug commands.
11291Solution: Free memory before overwriting the pointer. (hint by Justin Keyes)
11292Files: src/ex_cmds2.c
11293
11294Patch 7.4.1833
11295Problem: Cannot use an Ex command for 'keywordprg'.
11296Solution: Accept an Ex command. (Nelo-Thara Wallus)
11297Files: src/normal.c, runtime/doc/options.txt
11298
11299Patch 7.4.1834
11300Problem: Possible crash when conceal is active.
11301Solution: Check for the screen to be valid when redrawing a line.
11302Files: src/screen.c
11303
11304Patch 7.4.1835
11305Problem: When splitting and closing a window the status height changes.
11306Solution: Compute the frame height correctly. (Hirohito Higashi)
11307Files: src/window.c, src/testdir/test_alot.vim,
11308 src/testdir/test_window_cmd.vim
11309
11310Patch 7.4.1836
11311Problem: When using a partial on a dictionary it always gets bound to that
11312 dictionary.
11313Solution: Make a difference between binding a function to a dictionary
11314 explicitly or automatically.
11315Files: src/structs.h, src/eval.c, src/testdir/test_partial.vim,
11316 runtime/doc/eval.txt
11317
11318Patch 7.4.1837
11319Problem: The BufUnload event is triggered twice, when :bunload is used with
11320 `bufhidden` set to `unload` or `delete`.
11321Solution: Do not trigger the event when ml_mfp is NULL. (Hirohito Higashi)
11322Files: src/buffer.c, src/testdir/test_autocmd.vim
11323
11324Patch 7.4.1838
11325Problem: Functions specifically for testing do not sort together.
11326Solution: Rename garbagecollect_for_testing() to test_garbagecollect_now().
11327 Add test_null_list(), test_null_dict(), etc.
11328Files: src/eval.c, src/testdir/test_expr.vim,
11329 src/testdir/test_channel.vim, runtime/doc/eval.txt
11330
11331Patch 7.4.1839
11332Problem: Cannot get the items stored in a partial.
11333Solution: Support using get() on a partial.
11334Files: src/eval.c, src/testdir/test_partial.vim, runtime/doc/eval.txt
11335
11336Patch 7.4.1840
11337Problem: When using packages an "after" directory cannot be used.
11338Solution: Add the "after" directory of the package to 'runtimepath' if it
11339 exists.
11340Files: src/ex_cmds2.c, src/testdir/test_packadd.vim
11341
11342Patch 7.4.1841
11343Problem: The code to reallocate the buffer used for quickfix is repeated.
11344Solution: Move the code to a function. (Yegappan Lakshmanan, closes #831)
11345Files: src/quickfix.c, src/testdir/test_quickfix.vim
11346
11347Patch 7.4.1842 (after 7.4.1839)
11348Problem: get() works for Partial but not for Funcref.
11349Solution: Accept Funcref. Also return the function itself. (Nikolai Pavlov)
11350Files: src/eval.c, src/testdir/test_partial.vim, runtime/doc/eval.txt
11351
11352Patch 7.4.1843
11353Problem: Tests involving Python are flaky.
11354Solution: Set the pt_auto field. Add tests. (Nikolai Pavlov)
11355Files: runtime/doc/if_pyth.txt, src/if_py_both.h, src/testdir/test86.in,
11356 src/testdir/test86.ok, src/testdir/test87.in,
11357 src/testdir/test87.ok
11358
11359Patch 7.4.1844
11360Problem: Using old function name in comment. More functions should start
11361 with test_.
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020011362Solution: Rename function in comment. (Hirohito Higashi) Rename
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011363 disable_char_avail_for_testing() to test_disable_char_avail().
11364 And alloc_fail() to test_alloc_fail().
11365Files: src/eval.c, src/getchar.c, src/testdir/runtest.vim,
11366 src/testdir/test_cursor_func.vim, src/testdir/test_quickfix.vim,
11367 runtime/doc/eval.txt
11368
11369Patch 7.4.1845
11370Problem: Mentioning NetBeans when reading from channel. (Ramel Eshed)
11371Solution: Make the text more generic.
11372Files: src/channel.c
11373
11374Patch 7.4.1846
11375Problem: Ubsan detects a multiplication overflow.
11376Solution: Don't use orig_mouse_time when it's zero. (Dominique Pelle)
11377Files: src/term.c
11378
11379Patch 7.4.1847
11380Problem: Getting an item from a NULL dict crashes. Setting a register to a
11381 NULL list crashes. (Nikolai Pavlov, issue #768) Comparing a NULL
11382 dict with a NULL dict fails.
11383Solution: Properly check for NULL.
11384Files: src/eval.c, src/testdir/test_expr.vim
11385
11386Patch 7.4.1848
11387Problem: Can't build with Strawberry Perl 5.24.
11388Solution: Define S_SvREFCNT_dec() if needed. (Damien, Ken Takata)
11389Files: src/if_perl.xs
11390
11391Patch 7.4.1849
11392Problem: Still trying to read from channel that is going to be closed.
11393 (Ramel Eshed)
11394Solution: Check if ch_to_be_closed is set.
11395Files: src/channel.c
11396
11397Patch 7.4.1850
11398Problem: GUI freezes when using a job. (Shougo)
11399Solution: Unregister the channel when there is an input error.
11400Files: src/channel.c
11401
11402Patch 7.4.1851
Bram Moolenaar09521312016-08-12 22:54:35 +020011403Problem: test_syn_attr fails when using the GUI. (Dominique Pelle)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011404Solution: Escape the font name properly.
11405Files: src/testdir/test_syn_attr.vim
11406
11407Patch 7.4.1852
11408Problem: Unix: Cannot run all tests with the GUI.
11409Solution: Add the "testgui" target.
11410Files: src/Makefile, src/testdir/Makefile
11411
11412Patch 7.4.1853
11413Problem: Crash when job and channel are in the same dict while using
11414 partials. (Luc Hermitte)
11415Solution: Do not decrement the channel reference count too early.
11416Files: src/channel.c
11417
11418Patch 7.4.1854
11419Problem: When setting 'termguicolors' the Ignore highlighting doesn't work.
11420 (Charles Campbell)
11421Solution: Handle the color names "fg" and "bg" when the GUI isn't running
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020011422 and no colors are specified, fall back to black and white.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011423Files: src/syntax.c
11424
11425Patch 7.4.1855
11426Problem: Valgrind reports memory leak for job that is not freed.
11427Solution: Free all jobs on exit. Add test for failing job.
11428Files: src/channel.c, src/misc2.c, src/proto/channel.pro,
11429 src/testdir/test_partial.vim
11430
11431Patch 7.4.1856 (after 7.4.1855)
11432Problem: failing job test fails on MS-Windows.
11433Solution: Expect "fail" status instead of "dead".
11434Files: src/testdir/test_partial.vim
11435
11436Patch 7.4.1857
11437Problem: When a channel appends to a buffer that is 'nomodifiable' there is
11438 an error but appending is done anyway.
11439Solution: Add the 'modifiable' option. Refuse to write to a 'nomodifiable'
11440 when the value is 1.
11441Files: src/structs.h, src/channel.c, src/testdir/test_channel.vim,
11442 runtime/doc/channel.txt
11443
11444Patch 7.4.1858
11445Problem: When a channel writes to a buffer it doesn't find a buffer by the
11446 short name but re-uses it anyway.
11447Solution: Find buffer also by the short name.
11448Files: src/channel.c, src/buffer.c, src/vim.h
11449
11450Patch 7.4.1859
11451Problem: Cannot use a function reference for "exit_cb".
11452Solution: Use get_callback(). (Yegappan Lakshmanan)
11453Files: src/channel.c, src/structs.h
11454
11455Patch 7.4.1860
11456Problem: Using a partial for timer_start() may cause a crash.
11457Solution: Set the copyID in timer objects. (Ozaki Kiichi)
11458Files: src/testdir/test_timers.vim, src/eval.c, src/ex_cmds2.c,
11459 src/proto/ex_cmds2.pro
11460
11461Patch 7.4.1861
11462Problem: Compiler warnings with 64 bit compiler.
Bram Moolenaar09521312016-08-12 22:54:35 +020011463Solution: Change int to size_t. (Mike Williams)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011464Files: src/ex_cmds2.c
11465
11466Patch 7.4.1862
11467Problem: string() with repeated argument does not give a result usable by
11468 eval().
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020011469Solution: Refactor echo_string and tv2string(), moving the common part to
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011470 echo_string_core(). (Ken Takata)
11471Files: src/eval.c, src/testdir/test_viml.vim, src/testdir/test86.ok,
11472 src/testdir/test87.ok
11473
11474Patch 7.4.1863
11475Problem: Compiler warnings on Win64.
11476Solution: Adjust types, add type casts. (Ken Takata)
11477Files: src/if_mzsch.c, src/if_perl.xs, src/if_ruby.c, src/version.c
11478
11479Patch 7.4.1864
11480Problem: Python: encoding error with Python 2.
11481Solution: Use "getcwdu" instead of "getcwd". (Ken Takata)
11482Files: src/if_py_both.h
11483
11484Patch 7.4.1865
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020011485Problem: Memory leaks in test49. (Dominique Pelle)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011486Solution: Use NULL instead of an empty string.
11487Files: src/eval.c
11488
11489Patch 7.4.1866
11490Problem: Invalid memory access when exiting with EXITFREE defined.
11491 (Dominique Pelle)
11492Solution: Set "really_exiting" and skip error messages.
11493Files: src/misc2.c, src/eval.c
11494
11495Patch 7.4.1867
11496Problem: Memory leak in test_matchstrpos.
11497Solution: Free the string before overwriting. (Yegappan Lakshmanan)
11498Files: src/eval.c
11499
11500Patch 7.4.1868
11501Problem: Setting really_exiting causes memory leaks to be reported.
11502Solution: Add the in_free_all_mem flag.
11503Files: src/globals.h, src/misc2.c, src/eval.c
11504
11505Patch 7.4.1869
11506Problem: Can't build with old version of Perl.
11507Solution: Define PERLIO_FUNCS_DECL. (Tom G. Christensen)
11508Files: src/if_perl.xs
11509
11510Patch 7.4.1870 (after 7.4.1863)
11511Problem: One more Win64 compiler warning.
11512Solution: Change declared argument type. (Ken Takata)
11513Files: src/if_mzsch.c
11514
11515Patch 7.4.1871
11516Problem: Appending to the quickfix list while the quickfix window is open
11517 is very slow.
11518Solution: Do not delete all the lines, only append the new ones. Avoid
11519 using a window while updating the list. (closes #841)
11520Files: src/quickfix.c
11521
11522Patch 7.4.1872
11523Problem: Still build problem with old version of Perl.
11524Solution: Also define SvREFCNT_inc_void_NN if needed. (Tom G. Christensen)
11525Files: src/if_perl.xs
11526
11527Patch 7.4.1873
11528Problem: When a callback adds a timer the GUI doesn't use it until later.
11529 (Ramel Eshed)
11530Solution: Return early if a callback adds a timer.
11531Files: src/ex_cmds2.c, src/gui_gtk_x11.c, src/gui_w32.c, src/gui_x11.c,
11532 src/globals.h
11533
11534Patch 7.4.1874
11535Problem: Unused variable in Win32 code.
11536Solution: Remove it. (Mike Williams)
11537Files: src/gui_w32.c
11538
11539Patch 7.4.1875
11540Problem: Comparing functions and partials doesn't work well.
11541Solution: Add tests. (Nikolai Pavlov) Compare the dict and arguments in the
11542 partial. (closes #813)
11543Files: src/eval.c, src/testdir/test_partial.vim
11544
11545Patch 7.4.1876
11546Problem: Typing "k" at the hit-enter prompt has no effect.
11547Solution: Don't assume recursive use of the prompt if a character was typed.
11548 (Hirohito Higashi)
11549Files: src/message.c
11550
11551Patch 7.4.1877
11552Problem: No test for invoking "close_cb" when writing to a buffer.
11553Solution: Add using close_cb to a test case.
11554Files: src/testdir/test_channel.vim
11555
11556Patch 7.4.1878
11557Problem: Whether a job has exited isn't detected until a character is
11558 typed. After calling exit_cb the cursor is in the wrong place.
11559Solution: Don't wait forever for a character to be typed when there is a
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020011560 pending job. Update the screen if needed after calling exit_cb.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011561Files: src/os_unix.c, src/channel.c, src/proto/channel.pro
11562
11563Patch 7.4.1879 (after 7.4.1877)
11564Problem: Channel test is flaky.
11565Solution: Wait for close_cb to be invoked.
11566Files: src/testdir/test_channel.vim
11567
11568Patch 7.4.1880
11569Problem: MS-Windows console build defaults to not having +channel.
11570Solution: Include the channel feature if building with huge features.
11571Files: src/Make_mvc.mak
11572
11573Patch 7.4.1881
11574Problem: Appending to a long quickfix list is slow.
11575Solution: Add qf_last.
11576Files: src/quickfix.c
11577
11578Patch 7.4.1882
11579Problem: Check for line break at end of line wrong. (Dominique Pelle)
11580Solution: Correct the logic.
11581Files: src/quickfix.c
11582
11583Patch 7.4.1883
11584Problem: Cppcheck found 2 incorrect printf formats.
11585Solution: Use %ld and %lx. (Dominique Pelle)
11586Files: src/VisVim/Commands.cpp, src/gui_mac.c
11587
11588Patch 7.4.1884
11589Problem: Updating marks in a quickfix list is very slow when the list is
11590 long.
11591Solution: Only update marks if the buffer has a quickfix entry.
11592Files: src/structs.h, src/quickfix.c
11593
11594Patch 7.4.1885
11595Problem: MinGW console build defaults to not having +channel.
11596Solution: Include the channel feature if building with huge features. (Ken
11597 Takata)
11598Files: src/Make_cyg_ming.mak
11599
11600Patch 7.4.1886
11601Problem: When waiting for a character is interrupted by receiving channel
11602 data and the first character of a mapping was typed, the mapping
11603 times out. (Ramel Eshed)
11604Solution: When dealing with channel data don't return from mch_inchar().
11605Files: src/getchar.c, src/proto/getchar.pro, src/os_unix.c
11606
11607Patch 7.4.1887
11608Problem: When receiving channel data 'updatetime' is not respected.
11609Solution: Recompute the waiting time after being interrupted.
11610Files: src/os_unix.c
11611
11612Patch 7.4.1888
11613Problem: Wrong computation of remaining wait time in RealWaitForChar()
11614Solution: Remember the original waiting time.
11615Files: src/os_unix.c
11616
11617Patch 7.4.1889
11618Problem: When umask is set to 0177 Vim can't create temp files. (Lcd)
11619Solution: Also correct umask when using mkdtemp().
11620Files: src/fileio.c
11621
11622Patch 7.4.1890
11623Problem: GUI: When channel data is received the cursor blinking is
11624 interrupted. (Ramel Eshed)
11625Solution: Don't update the cursor when it is blinking.
11626Files: src/screen.c, src/gui_gtk_x11.c, src/proto/gui_gtk_x11.pro,
11627 src/gui_mac.c, src/proto/gui_mac.pro, src/gui_photon.c,
11628 src/proto/gui_photon.pro, src/gui_w32.c, src/proto/gui_w32.pro,
11629 src/gui_x11.c, src/proto/gui_x11.pro
11630
11631Patch 7.4.1891
11632Problem: Channel reading very long lines is slow.
11633Solution: Collapse multiple buffers until a NL is found.
11634Files: src/channel.c, src/netbeans.c, src/proto/channel.pro,
11635 src/structs.h
11636
11637Patch 7.4.1892
11638Problem: balloon eval only gets the window number, not the ID.
11639Solution: Add v:beval_winid.
11640Files: src/eval.c, src/gui_beval.c, src/vim.h
11641
11642Patch 7.4.1893
11643Problem: Cannot easily get the window ID for a buffer.
11644Solution: Add bufwinid().
11645Files: src/eval.c, runtime/doc/eval.txt
11646
11647Patch 7.4.1894
11648Problem: Cannot get the window ID for a mouse click.
11649Solution: Add v:mouse_winid.
11650Files: src/eval.c, src/vim.h, runtime/doc/eval.txt
11651
11652Patch 7.4.1895
11653Problem: Cannot use a window ID where a window number is expected.
11654Solution: Add LOWEST_WIN_ID, so that the window ID can be used where a
11655 number is expected.
11656Files: src/window.c, src/eval.c, src/vim.h, runtime/doc/eval.txt,
11657 src/testdir/test_window_id.vim
11658
11659Patch 7.4.1896
11660Problem: Invoking mark_adjust() when adding a new line below the last line
11661 is pointless.
11662Solution: Skip calling mark_adjust() when appending below the last line.
11663Files: src/misc1.c, src/ops.c
11664
11665Patch 7.4.1897
11666Problem: Various typos, long lines and style mistakes.
11667Solution: Fix the typos, wrap lines, improve style.
11668Files: src/buffer.c, src/ex_docmd.c, src/getchar.c, src/option.c,
11669 src/main.aap, src/testdir/README.txt,
11670 src/testdir/test_reltime.vim, src/testdir/test_tagjump.vim,
11671 src/INSTALL, src/config.aap.in, src/if_mzsch.c
11672
11673Patch 7.4.1898
11674Problem: User commands don't support modifiers.
11675Solution: Add the <mods> item. (Yegappan Lakshmanan, closes #829)
11676Files: runtime/doc/map.txt, src/ex_docmd.c, src/testdir/Make_all.mak,
11677 src/testdir/test_usercommands.vim
11678
11679Patch 7.4.1899
11680Problem: GTK 3: cursor blinking doesn't work well.
11681Solution: Instead of gui_gtk_window_clear() use gui_mch_clear_block().
11682 (Kazunobu Kuriyama)
11683Files: src/gui_gtk_x11.c
11684
11685Patch 7.4.1900
11686Problem: Using CTRL-] in the help on "{address}." doesn't work.
11687Solution: Recognize an item in {}. (Hirohito Higashi, closes #814)
11688Files: src/ex_cmds.c, src/testdir/test_help_tagjump.vim
11689
11690Patch 7.4.1901
11691Problem: Win32: the "Disabled" menu items would appear enabled.
11692Solution: Use submenu_id if there is a parent. (Shane Harper, closes #834)
11693Files: src/gui_w32.c
11694
11695Patch 7.4.1902
11696Problem: No test for collapsing buffers for a channel. Some text is lost.
11697Solution: Add a simple test. Set rq_buflen correctly.
11698Files: src/channel.c, src/testdir/test_channel.vim,
11699 src/testdir/test_channel_pipe.py
11700
11701Patch 7.4.1903
11702Problem: When writing viminfo merging current history with history in
11703 viminfo may drop recent history entries.
11704Solution: Add new format for viminfo lines, use it for history entries. Use
11705 a timestamp for ordering the entries. Add test_settime().
11706 Add the viminfo version. Does not do merging on timestamp yet.
11707Files: src/eval.c, src/ex_getln.c, src/ex_cmds.c, src/structs.h,
11708 src/globals.h, src/proto/ex_cmds.pro, src/proto/ex_getln.pro,
11709 src/testdir/test_viminfo.vim
11710
11711Patch 7.4.1904 (after 7.4.1903)
11712Problem: Build fails.
11713Solution: Add missing changes.
11714Files: src/vim.h
11715
11716Patch 7.4.1905 (after 7.4.1903)
11717Problem: Some compilers can't handle a double semicolon.
11718Solution: Remove one semicolon.
11719Files: src/ex_cmds.c
11720
11721Patch 7.4.1906
11722Problem: Collapsing channel buffers and searching for NL does not work
Bram Moolenaar09521312016-08-12 22:54:35 +020011723 properly. (Xavier de Gaye, Ramel Eshed)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011724Solution: Do not assume the buffer contains a NUL or not. Change NUL bytes
11725 to NL to avoid the string is truncated.
11726Files: src/channel.c, src/netbeans.c, src/proto/channel.pro
11727
11728Patch 7.4.1907
11729Problem: Warnings from 64 bit compiler.
11730Solution: Change type to size_t. (Mike Williams)
11731Files: src/ex_cmds.c
11732
11733Patch 7.4.1908
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020011734Problem: Netbeans uses uninitialized pointer and freed memory.
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011735Solution: Set "buffer" at the right place (hint by Ken Takata)
11736Files: src/netbeans.c
11737
11738Patch 7.4.1909
11739Problem: Doubled semicolons.
11740Solution: Reduce to one. (Dominique Pelle)
11741Files: src/dosinst.c, src/fold.c, src/gui_gtk_x11.c, src/gui_w32.c,
11742 src/main.c, src/misc2.c
11743
11744Patch 7.4.1910
11745Problem: Tests using external command to delete directory.
11746Solution: Use delete().
11747Files: src/testdir/test17.in, src/testdir/test73.in,
11748 src/testdir/test_getcwd.in
11749
11750Patch 7.4.1911
11751Problem: Recent history lines may be lost when exiting Vim.
11752Solution: Merge history using the timestamp.
11753Files: src/ex_getln.c, src/ex_cmds.c, src/vim.h, src/proto/ex_getln.pro,
11754 src/testdir/test_viminfo.vim
11755
11756Patch 7.4.1912
11757Problem: No test for using setqflist() on an older quickfix list.
11758Solution: Add a couple of tests.
11759Files: src/testdir/test_quickfix.vim
11760
11761Patch 7.4.1913
11762Problem: When ":doautocmd" is used modelines are used even when no
11763 autocommands were executed. (Daniel Hahler)
11764Solution: Skip processing modelines. (closes #854)
11765Files: src/fileio.c, src/ex_cmds.c, src/ex_docmd.c, src/proto/fileio.pro
11766
11767Patch 7.4.1914
11768Problem: Executing autocommands while using the signal stack has a high
11769 chance of crashing Vim.
11770Solution: Don't invoke autocommands when on the signal stack.
11771Files: src/os_unix.c
11772
11773Patch 7.4.1915
11774Problem: The effect of the PopupMenu autocommand isn't directly visible.
11775Solution: Call gui_update_menus() before displaying the popup menu. (Shane
11776 Harper, closs #855)
11777Files: src/menu.c
11778
11779Patch 7.4.1916 (after 7.4.1906)
11780Problem: No proper test for what 7.4.1906 fixes.
11781Solution: Add a test for reading many lines.
11782Files: src/testdir/test_channel.vim
11783
11784Patch 7.4.1917
11785Problem: History lines read from viminfo in different encoding than when
11786 writing are not converted.
11787Solution: Convert the history lines.
11788Files: src/ex_cmds.c, src/testdir/test_viminfo.vim
11789
11790Patch 7.4.1918
11791Problem: Not enough testing for parsing viminfo lines.
11792Solution: Add test with viminfo lines in bad syntax. Fix memory leak.
11793Files: src/ex_cmds.c, src/ex_getln.c, src/testdir/test_viminfo.vim
11794
11795Patch 7.4.1919
11796Problem: Register contents is not merged when writing viminfo.
11797Solution: Use timestamps for register contents.
11798Files: src/ops.c, src/ex_getln.c, src/ex_cmds.c, src/proto/ex_cmds.pro,
11799 src/proto/ex_getln.pro, src/proto/ops.pro, src/vim.h
11800
11801Patch 7.4.1920 (after 7.4.1919)
11802Problem: Missing test changes.
11803Solution: Update viminfo test.
11804Files: src/testdir/test_viminfo.vim
11805
11806Patch 7.4.1921 (after 7.4.1919)
11807Problem: vim_time() not included when needed.
11808Solution: Adjust #ifdef.
11809Files: src/ex_cmds.c
11810
11811Patch 7.4.1922
11812Problem: Ruby 2.4.0 unifies Fixnum and Bignum into Integer.
Bram Moolenaar09521312016-08-12 22:54:35 +020011813Solution: Use rb_cInteger. (Weiyong Mao)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011814Files: src/if_ruby.c
11815
11816Patch 7.4.1923
11817Problem: Command line editing is not tested much.
11818Solution: Add tests for expanding the file name and 'wildmenu'.
11819Files: src/testdir/test_cmdline.vim, src/testdir/Make_all.mak
11820
11821Patch 7.4.1924
11822Problem: Missing "void" for functions without argument.
11823Solution: Add "void". (Hirohito Higashi)
11824Files: src/channel.c, src/edit.c, src/ex_cmds2.c, src/ops.c, src/screen.c
11825
11826Patch 7.4.1925
11827Problem: Viminfo does not merge file marks properly.
11828Solution: Use a timestamp. Add the :clearjumps command.
11829Files: src/mark.c, src/ex_cmds.c, src/ex_docmd.c, src/proto/mark.pro,
11830 src/structs.h, src/vim.h, src/ex_cmds.h,
11831 src/testdir/test_viminfo.vim
11832
11833Patch 7.4.1926
11834Problem: Possible crash with many history items.
11835Solution: Avoid the index going past the last item.
11836Files: src/ex_getln.c
11837
11838Patch 7.4.1927
11839Problem: Compiler warning for signed/unsigned.
11840Solution: Add type cast.
11841Files: src/if_mzsch.c
11842
11843Patch 7.4.1928
11844Problem: Overwriting pointer argument.
11845Solution: Assign to what it points to. (Dominique Pelle)
11846Files: src/fileio.c
11847
11848Patch 7.4.1929
11849Problem: Inconsistent indenting and weird name.
11850Solution: Fix indent, make name all upper case. (Ken Takata)
11851Files: src/if_ruby.c
11852
11853Patch 7.4.1930
11854Problem: Can't build without +spell but with +quickfix. (Charles)
11855Solution: Add better #ifdef around ml_append_buf(). (closes #864)
11856Files: src/memline.c
11857
11858Patch 7.4.1931
11859Problem: Using both old and new style file mark lines from viminfo.
11860Solution: Skip the old style lines if the viminfo file was written with a
11861 Vim version that supports the new style.
11862Files: src/ex_cmds.c
11863
11864Patch 7.4.1932
11865Problem: When writing viminfo the jumplist is not merged with the one in
11866 the viminfo file.
11867Solution: Merge based on timestamp.
11868Files: src/mark.c, src/testdir/test_viminfo.vim
11869
11870Patch 7.4.1933
Bram Moolenaarbc8801c2016-08-02 21:04:33 +020011871Problem: Compiler warning about uninitialized variable. (Yegappan)
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +020011872Solution: Give it a dummy value.
11873Files: src/ex_getln.c
11874
11875Patch 7.4.1934
11876Problem: New style tests not executed with MinGW compiler.
11877Solution: Add new style test support. (Yegappan Lakshmanan)
11878Files: src/testdir/Make_ming.mak
11879
11880Patch 7.4.1935
11881Problem: When using the GUI search/replace a second match right after the
11882 replacement is skipped.
11883Solution: Add the SEARCH_START flag. (Mleddy)
11884Files: src/gui.c
11885
11886Patch 7.4.1936
11887Problem: Off-by-one error in bounds check. (Coverity)
11888Solution: Check register number properly.
11889Files: src/ops.c
11890
11891Patch 7.4.1937
11892Problem: No test for directory stack in quickfix.
11893Solution: Add a test. (Yegappan Lakshmanan)
11894Files: src/testdir/test_quickfix.vim
11895
11896Patch 7.4.1938
11897Problem: When writing viminfo numbered marks were duplicated.
11898Solution: Check for duplicates between current numbered marks and the ones
11899 read from viminfo.
11900Files: src/mark.c
11901
11902Patch 7.4.1939
11903Problem: Memory access error when reading viminfo. (Dominique Pelle)
11904Solution: Correct index in jumplist when at the end.
11905Files: src/mark.c, src/testdir/test_viminfo.vim
11906
11907Patch 7.4.1940
11908Problem: "gd" hangs in some situations. (Eric Biggers)
11909Solution: Remove the SEARCH_START flag when looping. Add a test.
11910Files: src/normal.c, src/testdir/test_goto.vim
11911
11912Patch 7.4.1941
11913Problem: Not all quickfix tests are also done with the location lists.
11914Solution: Test more quickfix code. Use user commands instead of "exe".
11915 (Yegappan Lakshmanan)
11916Files: src/testdir/test_quickfix.vim
11917
11918Patch 7.4.1942
11919Problem: Background is not drawn properly when 'termguicolors' is set.
11920Solution: Check cterm_normal_bg_color. (Jacob Niehus, closes #805)
11921Files: src/screen.c
11922
11923Patch 7.4.1943
11924Problem: Coverity warns for unreachable code.
11925Solution: Remove the code that won't do anything.
11926Files: src/mark.c
11927
11928Patch 7.4.1944
11929Problem: Win32: Cannot compile with XPM feature using VC2015
11930Solution: Add XPM libraries compiled with VC2015, and enable to build
11931 gvim.exe which supports XPM using VC2015. (Ken Takata)
11932Files: src/Make_mvc.mak, src/xpm/x64/lib-vc14/libXpm.lib,
11933 src/xpm/x86/lib-vc14/libXpm.lib
11934
11935Patch 7.4.1945
11936Problem: The Man plugin doesn't work that well.
11937Solution: Use "g:ft_man_open_mode" to be able open man pages in vert split
11938 or separate tab. Set nomodifiable for buffer with man content. Add
11939 a test. (Andrey Starodubtsev, closes #873)
11940Files: runtime/ftplugin/man.vim, src/testdir/test_man.vim,
11941 src/testdir/Make_all.mak
11942
11943Patch 7.4.1946 (after 7.4.1944)
11944Problem: File list does not include new XPM libraries.
11945Solution: Add the file list entries.
11946Files: Filelist
11947
11948Patch 7.4.1947
11949Problem: Viminfo continuation line with wrong length isn't skipped. (Marius
11950 Gedminas)
11951Solution: Skip a line when encountering an error, but not two lines.
11952Files: src/ex_cmds.c
11953
11954Patch 7.4.1948
11955Problem: Using Ctrl-A with double-byte encoding may result in garbled text.
11956Solution: Skip to the start of a character. (Hirohito Higashi)
11957Files: src/ops.c
11958
11959Patch 7.4.1949
11960Problem: Minor problems with the quickfix code.
11961Solution: Fix the problems. (Yegappan Lakshmanan)
11962Files: src/quickfix.c, src/testdir/test_quickfix.vim
11963
11964Patch 7.4.1950
11965Problem: Quickfix long lines test not executed for buffer.
11966Solution: Call the function to test long lines. (Yegappan Lakshmanan)
11967Files: src/testdir/test_quickfix.vim
11968
11969Patch 7.4.1951
11970Problem: Ruby test is old style.
11971Solution: Convert to a new style test. (Ken Takata)
11972Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_ruby.in,
11973 src/testdir/test_ruby.ok, src/testdir/test_ruby.vim
11974
11975Patch 7.4.1952
11976Problem: Cscope interface does not support finding assignments.
11977Solution: Add the "a" command. (ppettina, closes #882)
11978Files: runtime/doc/if_cscop.txt, src/if_cscope.c
11979
11980Patch 7.4.1953
11981Problem: Not all parts of the quickfix code are tested.
11982Solution: Add more tests. (Yegappan Lakshmanan)
11983Files: src/testdir/samples/quickfix.txt,
11984 src/testdir/test_quickfix.vim
11985
11986Patch 7.4.1954 (after 7.4.1948)
11987Problem: No test for what 7.4.1948 fixes.
11988Solution: Add a test. (Hirohito Higashi, closes #880)
11989Files: src/Makefile, src/testdir/Make_all.mak,
11990 src/testdir/test_increment_dbcs.vim
11991
11992Patch 7.4.1955
11993Problem: Using 32-bit Perl with 64-bit time_t causes memory corruption.
11994 (Christian Brabandt)
11995Solution: Use time_T instead of time_t for global variables. (Ken Takata)
11996Files: src/ex_cmds.c, src/globals.h, src/misc2.c, src/proto/ex_cmds.pro,
11997 src/proto/misc2.pro, src/structs.h, src/vim.h
11998
11999Patch 7.4.1956
12000Problem: When using CTRL-W f and pressing "q" at the ATTENTION dialog the
12001 newly opened window is not closed.
12002Solution: Close the window and go back to the original one. (Norio Takagi,
12003 Hirohito Higashi)
12004Files: src/window.c, src/testdir/test_window_cmd.vim
12005
12006Patch 7.4.1957
12007Problem: Perl interface has obsolete workaround.
12008Solution: Remove the workaround added by 7.3.623. (Ken Takata)
12009Files: src/if_perl.xs
12010
12011Patch 7.4.1958
12012Problem: Perl interface preprocessor statements not nicely indented.
12013Solution: Improve the indenting. (Ken Takata)
12014Files: src/if_perl.xs
12015
12016Patch 7.4.1959
12017Problem: Crash when running test_channel.vim on Windows.
12018Solution: Check for NULL pointer result from FormatMessage(). (Christian
12019 Brabandt)
12020Files: src/channel.c
12021
12022Patch 7.4.1960
12023Problem: Unicode standard 9 was released.
12024Solution: Update the character property tables. (Christian Brabandt)
12025Files: src/mbyte.c
12026
12027Patch 7.4.1961
12028Problem: When 'insertmode' is reset while doing completion the popup menu
12029 remains even though Vim is in Normal mode.
12030Solution: Ignore stop_insert_mode when the popup menu is visible. Don't set
12031 stop_insert_mode when 'insertmode' was already off. (Christian
12032 Brabandt)
12033Files: src/edit.c, src/option.c, src/Makefile, src/testdir/test_alot.vim,
12034 src/testdir/test_popup.vim
12035
12036Patch 7.4.1962
12037Problem: Two test files for increment/decrement.
12038Solution: Move the old style test into the new style test. (Hirohito
12039 Higashi, closes #881)
12040Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/main.aap,
12041 src/testdir/test35.in, src/testdir/test35.ok,
12042 src/testdir/test_increment.vim
12043
12044Patch 7.4.1963
12045Problem: Running Win32 Vim in mintty does not work.
12046Solution: Detect mintty and give a helpful error message. (Ken Takata)
12047Files: src/Make_cyg_ming.mak, src/Make_mvc.mak, src/iscygpty.c,
12048 src/iscygpty.h, src/main.c, Filelist
12049
12050Patch 7.4.1964
12051Problem: The quickfix init function is too big.
12052Solution: Factor out parsing 'errorformat' to a separate function. (Yegappan
12053 Lakshmanan)
12054Files: src/quickfix.c
12055
12056Patch 7.4.1965
12057Problem: When using a job in raw mode to append to a buffer garbage
12058 characters are added.
12059Solution: Do not replace the trailing NUL with a NL. (Ozaki Kiichi)
12060Files: src/channel.c, src/testdir/test_channel.vim
12061
12062Patch 7.4.1966
12063Problem: Coverity reports a resource leak.
12064Solution: Close "fd" also when bailing out.
12065Files: src/quickfix.c
12066
12067Patch 7.4.1967
12068Problem: Falling back from NFA to old regexp engine does not work properly.
12069 (fritzophrenic)
12070Solution: Do not restore nfa_match. (Christian Brabandt, closes #867)
12071Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
12072
12073Patch 7.4.1968
12074Problem: Invalid memory access with "\<C-">.
12075Solution: Do not recognize this as a special character. (Dominique Pelle)
12076Files: src/misc2.c, src/testdir/test_expr.vim
12077
12078Patch 7.4.1969
12079Problem: When the netbeans channel is closed consuming the buffer may cause
12080 a crash.
12081Solution: Check for nb_channel not to be NULL. (Xavier de Gaye)
12082Files: src/netbeans.c
12083
12084Patch 7.4.1970
12085Problem: Using ":insert" in an empty buffer sets the jump mark. (Ingo
12086 Karkat)
12087Solution: Don't adjust marks when replacing the empty line in an empty
12088 buffer. (closes #892)
12089Files: src/ex_cmds.c, src/testdir/test_jumps.vim,
12090 src/testdir/test_alot.vim
12091
12092Patch 7.4.1971
12093Problem: It is not easy to see unrecognized error lines below the current
12094 error position.
12095Solution: Add ":clist +count".
12096Files: src/quickfix.c, runtime/doc/quickfix.txt
12097
12098Patch 7.4.1972
12099Problem: On Solaris select() does not work as expected when there is
12100 typeahead.
12101Solution: Add ICANON when sleeping. (Ozaki Kiichi)
12102Files: src/os_unix.c
12103
12104Patch 7.4.1973
12105Problem: On MS-Windows the package directory may be added at the end
12106 because of forward/backward slash differences. (Matthew
12107 Desjardins)
12108Solution: Ignore slash differences.
12109Files: src/ex_cmds2.c
12110
12111Patch 7.4.1974
12112Problem: GUI has a problem with some termcodes.
12113Solution: Handle negative numbers. (Kazunobu Kuriyama)
12114Files: src/gui.c
12115
12116Patch 7.4.1975
12117Problem: On MS-Windows large files (> 2Gbyte) cause problems.
12118Solution: Use "off_T" instead of "off_t". Use "stat_T" instead of "struct
12119 stat". Use 64 bit system functions if available. (Ken Takata)
12120Files: src/Makefile, src/buffer.c, src/diff.c, src/eval.c, src/ex_cmds.c,
12121 src/ex_cmds2.c, src/fileio.c, src/gui.c, src/gui_at_fs.c,
12122 src/if_cscope.c, src/main.c, src/memfile.c, src/memline.c,
12123 src/misc1.c, src/misc2.c, src/netbeans.c, src/os_mswin.c,
12124 src/os_win32.c, src/proto/fileio.pro, src/proto/memline.pro,
12125 src/proto/os_mswin.pro, src/pty.c, src/quickfix.c, src/spell.c,
12126 src/structs.h, src/tag.c, src/testdir/Make_all.mak,
12127 src/testdir/test_largefile.vim, src/testdir/test_stat.vim,
12128 src/undo.c, src/vim.h
12129
12130Patch 7.4.1976
12131Problem: Number variables are not 64 bits while they could be.
12132Solution: Add the num64 feature. (Ken Takata, Yasuhiro Matsumoto)
12133Files: runtime/doc/eval.txt, runtime/doc/various.txt,
12134 src/Make_cyg_ming.mak, src/Make_mvc.mak, src/charset.c,
12135 src/eval.c, src/ex_cmds.c, src/ex_getln.c, src/feature.h,
12136 src/fileio.c, src/fold.c, src/json.c, src/message.c, src/misc1.c,
12137 src/misc2.c, src/ops.c, src/option.c, src/proto/charset.pro,
12138 src/proto/eval.pro, src/quickfix.c, src/structs.h,
12139 src/testdir/test_viml.vim, src/version.c
12140
12141Patch 7.4.1977
12142Problem: With 64 bit changes don't need three calls to sprintf().
12143Solution: Simplify the code, use vim_snprintf(). (Ken Takata)
12144Files: src/fileio.c
12145
12146Patch 7.4.1978 (after 7.4.1975)
12147Problem: Large file test does not delete its output.
12148Solution: Delete the output. Check size properly when possible. (Ken Takata)
12149Files: src/testdir/test_largefile.vim
12150
12151Patch 7.4.1979 (after 7.4.1976)
12152Problem: Getting value of binary option is wrong. (Kent Sibilev)
12153Solution: Fix type cast. Add a test.
12154Files: src/option.c, src/testdir/test_expr.vim
12155
12156Patch 7.4.1980
12157Problem: 'errorformat' is parsed for every call to ":caddexpr". Can't add
12158 to two location lists asynchronously.
12159Solution: Keep the previously parsed data when appropriate. (mostly by
12160 Yegappan Lakshmanan)
12161Files: src/quickfix.c, src/testdir/test_quickfix.vim
12162
12163Patch 7.4.1981
12164Problem: No testing for Farsi code.
12165Solution: Add a minimal test. Clean up Farsi code.
12166Files: src/farsi.c, src/Makefile, src/charset.c, src/normal.c,
12167 src/proto/main.pro, src/testdir/Make_all.mak,
12168 src/testdir/test_farsi.vim
12169
12170Patch 7.4.1982
12171Problem: Viminfo file contains duplicate change marks.
12172Solution: Drop duplicate marks.
12173Files: src/mark.c
12174
12175Patch 7.4.1983
12176Problem: farsi.c and arabic.c are included in a strange way.
12177Solution: Build them like other files.
12178Files: src/main.c, src/farsi.c, src/arabic.c, src/proto.h,
12179 src/proto/main.pro, src/proto/farsi.pro, src/proto/arabic.pro,
12180 src/Makefile, src/Make_bc5.mak, src/Make_cyg_ming.mak,
12181 src/Make_dice.mak, src/Make_ivc.mak, src/Make_manx.mak,
12182 src/Make_morph.mak, src/Make_mvc.mak, src/Make_sas.mak,
12183 Filelist
12184
12185Patch 7.4.1984
12186Problem: Not all quickfix features are tested.
12187Solution: Add a few more tests. (Yegappan Lakshmanan)
12188Files: src/testdir/test_quickfix.vim
12189
12190Patch 7.4.1985 (after 7.4.1983)
12191Problem: Missing changes in VMS build file.
12192Solution: Use the right file name.
12193Files: src/Make_vms.mms
12194
12195Patch 7.4.1986
12196Problem: Compiler warns for loss of data.
12197Solution: Use size_t instead of int. (Christian Brabandt)
12198Files: src/ex_cmds2.c
12199
12200Patch 7.4.1987
12201Problem: When copying unrecognized lines for viminfo, end up with useless
12202 continuation lines.
12203Solution: Skip continuation lines.
12204Files: src/ex_cmds.c
12205
12206Patch 7.4.1988
12207Problem: When updating viminfo with file marks there is no time order.
12208Solution: Remember the time when a buffer was last used, store marks for
12209 the most recently used buffers.
12210Files: src/buffer.c, src/structs.h, src/mark.c, src/main.c,
12211 src/ex_cmds.c, src/proto/mark.pro, src/testdir/test_viminfo.vim
12212
12213Patch 7.4.1989
12214Problem: filter() and map() only accept a string argument.
12215Solution: Implement using a Funcref argument (Yasuhiro Matsumoto, Ken
12216 Takata)
12217Files: runtime/doc/eval.txt, src/Makefile, src/eval.c,
12218 src/testdir/test_alot.vim, src/testdir/test_filter_map.vim,
12219 src/testdir/test_partial.vim
12220
12221Patch 7.4.1990 (after 7.4.1952)
12222Problem: Cscope items are not sorted.
12223Solution: Put the new "a" command first. (Ken Takata)
12224Files: src/if_cscope.c
12225
12226Patch 7.4.1991
12227Problem: glob() does not add a symbolic link when there are no wildcards.
12228Solution: Remove the call to mch_getperm().
12229Files: src/misc1.c
12230
12231Patch 7.4.1992
12232Problem: Values for true and false can be confusing.
12233Solution: Update the documentation. Add a test. Make v:true evaluate to
12234 TRUE for a non-zero-arg.
12235Files: runtime/doc/eval.txt, src/eval.c, src/Makefile,
12236 src/testdir/test_true_false.vim, src/testdir/test_alot.vim
12237
12238Patch 7.4.1993
12239Problem: Not all TRUE and FALSE arguments are tested.
12240Solution: Add a few more tests.
12241Files: src/testdir/test_true_false.vim
12242
12243Patch 7.4.1994 (after 7.4.1993)
12244Problem: True-false test fails.
12245Solution: Filter the dict to only keep the value that matters.
12246Files: src/testdir/test_true_false.vim
12247
12248Patch 7.4.1995
12249Problem: GUI: cursor drawn in wrong place if a timer callback causes a
12250 screen update. (David Samvelyan)
12251Solution: Also redraw the cursor when it's blinking and on.
12252Files: src/gui_gtk_x11.c, src/gui_mac.c, src/gui_photon.c, src/gui_w32.c,
12253 src/gui_x11.c, src/screen.c, src/proto/gui_gtk_x11.pro,
12254 src/proto/gui_mac.pro, src/proto/gui_photon.pro,
12255 src/proto/gui_w32.pro, src/proto/gui_x11.pro
12256
12257Patch 7.4.1996
12258Problem: Capturing the output of a command takes a few commands.
12259Solution: Add evalcmd().
12260Files: src/eval.c, runtime/doc/eval.txt, src/testdir/test_alot.vim,
12261 src/Makefile, src/testdir/test_evalcmd.vim
12262
12263Patch 7.4.1997
12264Problem: Cannot easily scroll the quickfix window.
12265Solution: Add ":cbottom".
12266Files: src/ex_cmds.h, src/quickfix.c, src/proto/quickfix.pro,
12267 src/ex_docmd.c, src/testdir/test_quickfix.vim,
12268 runtime/doc/quickfix.txt
12269
12270Patch 7.4.1998
12271Problem: When writing buffer lines to a job there is no NL to NUL
12272 conversion.
12273Solution: Make it work symmetrical with writing lines from a job into a
12274 buffer.
12275Files: src/channel.c, src/proto/channel.pro, src/netbeans.c
12276
12277Patch 7.4.1999
12278Problem: evalcmd() doesn't work recursively.
12279Solution: Use redir_evalcmd instead of redir_vname.
12280Files: src/message.c, src/eval.c, src/globals.h, src/proto/eval.pro,
12281 src/testdir/test_evalcmd.vim
12282
12283Patch 7.4.2000 (after 7.4.1999)
12284Problem: Evalcmd test fails.
12285Solution: Add missing piece.
12286Files: src/ex_docmd.c
12287
12288Patch 7.4.2001 (after 7.4.2000)
12289Problem: Tiny build fails. (Tony Mechelynck)
12290Solution: Add #ifdef.
12291Files: src/ex_docmd.c
12292
12293Patch 7.4.2002
12294Problem: Crash when passing number to filter() or map().
12295Solution: Convert to a string. (Ozaki Kiichi)
12296Files: src/eval.c, src/testdir/test_filter_map.vim
12297
12298Patch 7.4.2003
12299Problem: Still cursor flickering when a callback updates the screen. (David
12300 Samvelyan)
12301Solution: Put the cursor in the right position after updating the screen.
12302Files: src/screen.c
12303
12304Patch 7.4.2004
12305Problem: GUI: cursor displayed in the wrong position.
12306Solution: Correct screen_cur_col and screen_cur_row.
12307Files: src/screen.c
12308
12309Patch 7.4.2005
12310Problem: After using evalcmd() message output is in the wrong position.
12311 (Christian Brabandt)
12312Solution: Reset msg_col.
12313Files: src/eval.c
12314
12315Patch 7.4.2006
12316Problem: Crash when using tabnext in BufUnload autocmd. (Norio Takagi)
12317Solution: First check that the current buffer is the right one. (Hirohito
12318 Higashi)
12319Files: src/buffer.c, src/testdir/test_autocmd.vim
12320
12321Patch 7.4.2007
12322Problem: Running the tests leaves a viminfo file behind.
12323Solution: Make the viminfo option empty.
12324Files: src/testdir/runtest.vim
12325
12326Patch 7.4.2008
12327Problem: evalcmd() has a confusing name.
12328Solution: Rename to execute(). Make silent optional. Support a list of
12329 commands.
12330Files: src/eval.c, src/ex_docmd.c, src/message.c, src/globals.h,
12331 src/proto/eval.pro, src/Makefile, src/testdir/test_evalcmd.vim,
12332 src/testdir/test_execute_func.vim, src/testdir/test_alot.vim,
12333 runtime/doc/eval.txt
12334
12335Patch 7.4.2009 (after 7.4.2008)
12336Problem: Messages test fails.
12337Solution: Don't set redir_execute before returning. Add missing version
12338 number.
12339Files: src/eval.c
12340
12341Patch 7.4.2010
12342Problem: There is a :cbottom command but no :lbottom command.
12343Solution: Add :lbottom. (Yegappan Lakshmanan)
12344Files: runtime/doc/index.txt, runtime/doc/quickfix.txt, src/ex_cmds.h,
12345 src/quickfix.c, src/testdir/test_quickfix.vim
12346
12347Patch 7.4.2011
12348Problem: It is not easy to get a list of command arguments.
12349Solution: Add getcompletion(). (Yegappan Lakshmanan)
12350Files: runtime/doc/eval.txt, src/eval.c, src/ex_docmd.c,
12351 src/proto/ex_docmd.pro, src/testdir/test_cmdline.vim
12352
12353Patch 7.4.2012 (after 7.4.2011)
12354Problem: Test for getcompletion() does not pass on all systems.
12355Solution: Only test what is supported.
12356Files: src/testdir/test_cmdline.vim
12357
12358Patch 7.4.2013
12359Problem: Using "noinsert" in 'completeopt' breaks redo.
12360Solution: Set compl_curr_match. (Shougo, closes #874)
12361Files: src/edit.c, src/testdir/test_popup.vim
12362
12363Patch 7.4.2014
12364Problem: Using "noinsert" in 'completeopt' does not insert match.
12365Solution: Set compl_enter_selects. (Shougo, closes #875)
12366Files: src/edit.c, src/testdir/test_popup.vim
12367
12368Patch 7.4.2015
12369Problem: When a file gets a name when writing it 'acd' is not effective.
12370 (Dan Church)
12371Solution: Invoke DO_AUTOCHDIR after writing the file. (Allen Haim, closes
12372 #777, closes #803) Add test_autochdir() to enable 'acd' before
12373 "starting" is reset.
12374Files: src/ex_cmds.c, src/buffer.c, src/eval.c, src/globals.h,
12375 src/Makefile, src/testdir/test_autochdir.vim,
12376 src/testdir/Make_all.mak
12377
12378Patch 7.4.2016
12379Problem: Warning from MinGW about _WIN32_WINNT redefined. (John Marriott)
12380Solution: First undefine it. (Ken Takata)
12381Files: src/Make_cyg_ming.mak
12382
12383Patch 7.4.2017
12384Problem: When there are many errors adding them to the quickfix list takes
12385 a long time.
12386Solution: Add BLN_NOOPT. Don't call buf_valid() in buf_copy_options().
12387 Remember the last file name used. When going through the buffer
12388 list start from the end of the list. Only call buf_valid() when
12389 autocommands were executed.
12390Files: src/buffer.c, src/option.c, src/quickfix.c, src/vim.h
12391
12392Patch 7.4.2018
12393Problem: buf_valid() can be slow when there are many buffers.
12394Solution: Add bufref_valid(), only go through the buffer list when a buffer
12395 was freed.
12396Files: src/structs.h, src/buffer.c, src/quickfix.c, src/proto/buffer.pro
12397
12398Patch 7.4.2019
12399Problem: When ignoring case utf_fold() may consume a lot of time.
12400Solution: Optimize for ASCII.
12401Files: src/mbyte.c
12402
12403Patch 7.4.2020
12404Problem: Can't build without +autocmd feature.
12405Solution: Adjust #ifdefs.
12406Files: src/buffer.c
12407
12408Patch 7.4.2021
12409Problem: Still too many buf_valid() calls.
12410Solution: Make au_new_curbuf a bufref. Use bufref_valid() in more places.
12411Files: src/ex_cmds.c, src/buffer.c, src/globals.h
12412
12413Patch 7.4.2022
12414Problem: Warnings from 64 bit compiler.
12415Solution: Add type casts. (Mike Williams)
12416Files: src/eval.c
12417
12418Patch 7.4.2023
12419Problem: buflist_findname_stat() may find a dummy buffer.
12420Solution: Set the BF_DUMMY flag after loading a dummy buffer. Start
12421 finding buffers from the end of the list.
12422Files: src/quickfix.c, src/buffer.c
12423
12424Patch 7.4.2024
12425Problem: More buf_valid() calls can be optimized.
12426Solution: Use bufref_valid() instead.
12427Files: src/buffer.c, src/ex_cmds.c, src/structs.h, src/channel.c,
12428 src/diff.c, src/eval.c, src/ex_cmds2.c, src/ex_docmd.c,
12429 src/ex_getln.c, src/fileio.c, src/main.c, src/misc2.c,
12430 src/netbeans.c, src/quickfix.c, src/spell.c, src/term.c,
12431 src/if_py_both.h, src/window.c, src/proto/buffer.pro,
12432 src/proto/window.pro
12433
12434Patch 7.4.2025
12435Problem: The cursor blinking stops or is irregular when receiving date over
12436 a channel and writing it in a buffer, and when updating the status
12437 line. (Ramel Eshed)
12438Solution: Make it a bit better by flushing GUI output. Don't redraw the
12439 cursor after updating the screen if the blink state is off.
12440Files: src/gui_gtk_x11.c, src/screen.c
12441
12442Patch 7.4.2026
12443Problem: Reference counting for callbacks isn't right.
12444Solution: Add free_callback(). (Ken Takata) Fix reference count.
12445Files: src/channel.c, src/eval.c, src/ex_cmds2.c, src/proto/eval.pro
12446
12447Patch 7.4.2027
12448Problem: Can't build with +eval but without +menu.
12449Solution: Add #ifdef. (John Marriott)
12450Files: src/eval.c
12451
12452Patch 7.4.2028
12453Problem: cppcheck warns for using index before limits check.
12454Solution: Swap the expressions. (Dominique Pelle)
12455Files: src/mbyte.c
12456
12457Patch 7.4.2029
12458Problem: printf() does not work with 64 bit numbers.
12459Solution: use the "L" length modifier. (Ken Takata)
12460Files: src/message.c, src/testdir/test_expr.vim
12461
12462Patch 7.4.2030
12463Problem: ARCH must be set properly when using MinGW.
12464Solution: Detect the default value of ARCH from the current compiler. (Ken
12465 Takata)
12466Files: src/Make_cyg_ming.mak
12467
12468Patch 7.4.2031
12469Problem: The list_lbr_utf8 test fails if ~/.vim/syntax/c.vim sets
12470 'textwidth' to a non-zero value. (Oyvind A. Holm)
12471Solution: Add a setup.vim file that sets 'runtimepath' and $HOME to a safe
12472 value. (partly by Christian Brabandt, closes #912)
12473Files: src/testdir/setup.vim, src/testdir/amiga.vim, src/testdir/dos.vim,
12474 src/testdir/unix.vim, src/testdir/vms.vim, src/testdir/runtest.vim
12475
12476Patch 7.4.2032 (after 7.4.2030)
12477Problem: Build fails with 64 bit MinGW. (Axel Bender)
12478Solution: Handle dash vs. underscore. (Ken Takata, Hirohito Higashi)
12479Files: src/Make_cyg_ming.mak
12480
12481Patch 7.4.2033
12482Problem: 'cscopequickfix' option does not accept new value "a".
12483Solution: Adjust list of command characters. (Ken Takata)
12484Files: src/option.h, src/Makefile, src/testdir/test_cscope.vim,
12485 src/testdir/Make_all.mak
12486
12487Patch 7.4.2034 (after 7.4.2032)
12488Problem: Build fails with some version of MinGW. (illusorypan)
12489Solution: Recognize mingw32. (Ken Takata, closes #921)
12490Files: src/Make_cyg_ming.mak
12491
12492Patch 7.4.2035
12493Problem: On Solaris with ZFS the ACL may get removed.
12494Solution: Always restore the ACL for Solaris ZFS. (Danek Duvall)
12495Files: src/fileio.c
12496
12497Patch 7.4.2036
12498Problem: Looking up a buffer by number is slow if there are many.
12499Solution: Use a hashtab.
12500Files: src/structs.h, src/buffer.c
12501
12502Patch 7.4.2037 (after 7.4.2036)
12503Problem: Small build fails.
12504Solution: Adjust #ifdefs.
12505Files: src/hashtab.c
12506
12507Patch 7.4.2038 (after 7.4.2036)
12508Problem: Small build still fails.
12509Solution: Adjust more #ifdefs.
12510Files: src/globals.h, src/buffer.c
12511
12512Patch 7.4.2039
12513Problem: The Netbeans integration is not tested.
12514Solution: Add a first Netbeans test.
12515Files: src/testdir/test_netbeans.vim, src/testdir/test_netbeans.py,
12516 src/testdir/Make_all.mak, src/Makefile,
12517 src/testdir/test_channel.vim, src/testdir/shared.vim
12518
12519Patch 7.4.2040
12520Problem: New files missing from distribution.
12521Solution: Add new test scripts.
12522Files: Filelist
12523
12524Patch 7.4.2041
12525Problem: Netbeans file authentication not tested.
12526Solution: Add a test.
12527Files: src/testdir/test_netbeans.vim
12528
12529Patch 7.4.2042
12530Problem: GTK: display updating is not done properly and can be slow.
12531Solution: Use gdk_display_flush() instead of gdk_display_sync(). Don't call
12532 gdk_window_process_updates(). (Kazunobu Kuriyama)
12533Files: src/gui_gtk_x11.c
12534
12535Patch 7.4.2043
12536Problem: setbuvfar() causes a screen redraw.
12537Solution: Only use aucmd_prepbuf() for options.
12538Files: src/eval.c
12539
12540Patch 7.4.2044
12541Problem: filter() and map() either require a string or defining a function.
12542Solution: Support lambda, a short way to define a function that evaluates an
12543 expression. (Yasuhiro Matsumoto, Ken Takata)
12544Files: runtime/doc/eval.txt, src/eval.c, src/testdir/test_alot.vim,
12545 src/Makefile, src/testdir/test_channel.vim,
12546 src/testdir/test_lambda.vim
12547
12548Patch 7.4.2045
12549Problem: Memory leak when using a function callback.
12550Solution: Don't save the function name when it's in the partial.
12551Files: src/channel.c
12552
12553Patch 7.4.2046
12554Problem: The qf_init_ext() function is too big.
12555Solution: Refactor it. (Yegappan Lakshmanan)
12556Files: src/quickfix.c
12557
12558Patch 7.4.2047
12559Problem: Compiler warning for initializing a struct.
12560Solution: Initialize in another way. (Anton Lindqvist)
12561Files: src/quickfix.c
12562
12563Patch 7.4.2048
12564Problem: There is still code and help for unsupported systems.
12565Solution: Remove the code and text. (Hirohito Higashi)
12566Files: runtime/doc/eval.txt, runtime/lang/menu_sk_sk.vim,
12567 runtime/menu.vim, runtime/optwin.vim, src/Make_bc5.mak,
12568 src/ex_docmd.c, src/feature.h, src/fileio.c, src/globals.h,
12569 src/main.c, src/memfile.c, src/memline.c, src/misc1.c,
12570 src/misc2.c, src/option.c, src/option.h, src/os_unix.c,
12571 src/os_unix.h, src/proto.h, src/term.c, src/undo.c, src/version.c,
12572 src/vim.h, src/xxd/xxd.c
12573
12574Patch 7.4.2049
12575Problem: There is no way to get a list of the error lists.
12576Solution: Add ":chistory" and ":lhistory".
12577Files: src/ex_cmds.h, src/quickfix.c, src/ex_docmd.c, src/message.c,
12578 src/proto/quickfix.pro, src/testdir/test_quickfix.vim
12579
12580Patch 7.4.2050
12581Problem: When using ":vimgrep" may end up with duplicate buffers.
12582Solution: When adding an error list entry pass the buffer number if possible.
12583Files: src/quickfix.c, src/testdir/test_quickfix.vim
12584
12585Patch 7.4.2051
12586Problem: No proper testing of trunc_string().
12587Solution: Add a unittest for message.c.
12588Files: src/Makefile, src/message.c, src/message_test.c, src/main.c,
12589 src/proto/main.pro, src/structs.h
12590
12591Patch 7.4.2052
12592Problem: Coverage report is messed up by the unittests.
12593Solution: Add a separate test target for script tests. Use that when
12594 collecting coverage information.
12595Files: src/Makefile
12596
12597Patch 7.4.2053
12598Problem: Can't run scripttests in the top directory.
12599Solution: Add targets to the top Makefile.
12600Files: Makefile
12601
12602Patch 7.4.2054 (after 7.4.2048)
12603Problem: Wrong part of #ifdef removed.
12604Solution: Use the right part. (Hirohito Higashi)
12605Files: src/os_unix.c
12606
12607Patch 7.4.2055
12608Problem: eval.c is too big
12609Solution: Move Dictionary functions to dict.c
12610Files: src/eval.c, src/dict.c, src/vim.h, src/globals.h,
12611 src/proto/eval.pro, src/proto/dict.pro, src/Makefile, Filelist
12612
Bram Moolenaar09521312016-08-12 22:54:35 +020012613Patch 7.4.2056 (after 7.4.2055)
12614Problem: Build fails.
12615Solution: Add missing changes.
12616Files: src/proto.h
12617
12618Patch 7.4.2057
12619Problem: eval.c is too big.
12620Solution: Move List functions to list.c
12621Files: src/eval.c, src/dict.c, src/list.c, src/proto.h, src/Makefile,
12622 src/globals.h, src/proto/eval.pro, src/proto/list.pro, Filelist
12623
12624Patch 7.4.2058
12625Problem: eval.c is too big.
12626Solution: Move user functions to userfunc.c
12627Files: src/userfunc.c, src/eval.c, src/vim.h, src/globals.h,
12628 src/structs.h, src/proto.h, src/Makefile, src/proto/eval.pro,
12629 src/proto/userfunc.pro, Filelist
12630
12631Patch 7.4.2059
12632Problem: Non-Unix builds fail.
12633Solution: Update Makefiles for new files.
12634Files: src/Make_bc5.mak, src/Make_cyg_ming.mak, src/Make_dice.mak,
12635 src/Make_ivc.mak, src/Make_manx.mak, src/Make_morph.mak,
12636 src/Make_mvc.mak, src/Make_sas.mak
12637
12638Patch 7.4.2060 (after 7.4.2059)
12639Problem: Wrong file name.
12640Solution: Fix typo.
12641Files: src/Make_mvc.mak
12642
12643Patch 7.4.2061
12644Problem: qf_init_ext() is too big.
12645Solution: Move code to qf_parse_line() (Yegappan Lakshmanan)
12646Files: src/quickfix.c, src/testdir/test_quickfix.vim
12647
12648Patch 7.4.2062
12649Problem: Using dummy variable to compute struct member offset.
12650Solution: Use offsetof().
12651Files: src/globals.h, src/macros.h, src/vim.h, src/spell.c
12652
12653Patch 7.4.2063
12654Problem: eval.c is still too big.
12655Solution: Split off internal functions to evalfunc.c.
12656Files: src/eval.c, src/evalfunc.c, src/list.c, src/proto.h,
12657 src/globals.h, src/vim.h, src/proto/eval.pro,
12658 src/proto/evalfunc.pro, src/proto/list.pro, src/Makefile, Filelist,
12659 src/Make_bc5.mak, src/Make_cyg_ming.mak, src/Make_dice.mak,
12660 src/Make_ivc.mak, src/Make_manx.mak, src/Make_morph.mak,
12661 src/Make_mvc.mak, src/Make_sas.mak
12662
12663Patch 7.4.2064
12664Problem: Coverity warns for possible buffer overflow.
12665Solution: Use vim_strcat() instead of strcat().
12666Files: src/quickfix.c
12667
12668Patch 7.4.2065
Bram Moolenaar7571d552016-08-18 22:54:46 +020012669Problem: Compiler warns for uninitialized variable. (John Marriott)
Bram Moolenaardc1f1642016-08-16 18:33:43 +020012670Solution: Set lnum to the right value.
12671Files: src/evalfunc.c
12672
12673Patch 7.4.2066
12674Problem: getcompletion() not well tested.
12675Solution: Add more testing.
12676Files: src/testdir/test_cmdline.vim
12677
12678Patch 7.4.2067
12679Problem: Compiler warning for char/char_u conversion. (Tony Mechelynck)
12680 Inefficient code.
12681Solution: Use more lines to fill with spaces. (Nikolai Pavlov) Add type cast.
12682Files: src/quickfix.c
12683
12684Patch 7.4.2068
12685Problem: Not all arguments of trunc_string() are tested. Memory access
12686 error when running the message tests.
12687Solution: Add another test case. (Yegappan Lakshmanan) Make it easy to run
12688 unittests with valgrind. Fix the access error.
12689Files: src/message.c, src/message_test.c, src/Makefile
12690
12691Patch 7.4.2069
12692Problem: spell.c is too big.
12693Solution: Split it in spell file handling and spell checking.
12694Files: src/spell.c, src/spellfile.c, src/spell.h, src/Makefile,
12695 src/proto/spell.pro, src/proto/spellfile.pro, src/proto.h
12696 Filelist, src/Make_bc5.mak, src/Make_cyg_ming.mak,
12697 src/Make_dice.mak, src/Make_ivc.mak, src/Make_manx.mak,
12698 src/Make_morph.mak, src/Make_mvc.mak, src/Make_sas.mak
12699
12700Patch 7.4.2070 (after 7.4.2069)
12701Problem: Missing change to include file.
12702Solution: Include the spell header file.
12703Files: src/vim.h
12704
12705Patch 7.4.2071
12706Problem: The return value of type() is difficult to use.
12707Solution: Define v:t_ constants. (Ken Takata)
12708Files: runtime/doc/eval.txt, src/eval.c, src/evalfunc.c,
12709 src/testdir/test_channel.vim, src/testdir/test_viml.vim, src/vim.h
12710
12711Patch 7.4.2072
12712Problem: substitute() does not support a Funcref argument.
12713Solution: Support a Funcref like it supports a string starting with "\=".
12714Files: src/evalfunc.c, src/regexp.c, src/eval.c, src/proto/eval.pro,
12715 src/proto/regexp.pro, src/testdir/test_expr.vim
12716
12717Patch 7.4.2073
12718Problem: rgb.txt is read for every color name.
12719Solution: Load rgb.txt once. (Christian Brabandt) Add a test.
12720Files: runtime/rgb.txt, src/term.c, src/testdir/test_syn_attr.vim
12721
12722Patch 7.4.2074
12723Problem: One more place using a dummy variable.
12724Solution: Use offsetof(). (Ken Takata)
12725Files: src/userfunc.c
12726
12727Patch 7.4.2075
12728Problem: No autocommand event to initialize a window or tab page.
12729Solution: Add WinNew and TabNew events. (partly by Felipe Morales)
12730Files: src/fileio.c, src/window.c, src/vim.h,
12731 src/testdir/test_autocmd.vim, runtime/doc/autocmd.txt
12732
12733Patch 7.4.2076
12734Problem: Syntax error when dict has '>' key.
12735Solution: Check for endchar. (Ken Takata)
12736Files: src/userfunc.c, src/testdir/test_lambda.vim
12737
12738Patch 7.4.2077
12739Problem: Cannot update 'tabline' when a tab was closed.
12740Solution: Add the TabClosed autocmd event. (partly by Felipe Morales)
12741Files: src/fileio.c, src/window.c, src/vim.h,
12742 src/testdir/test_autocmd.vim, runtime/doc/autocmd.txt
12743
12744Patch 7.4.2078
Bram Moolenaar09521312016-08-12 22:54:35 +020012745Problem: Running checks in po diretory fails.
12746Solution: Add colors used in syntax.c to the builtiin color table.
12747Files: src/term.c
12748
12749Patch 7.4.2079
12750Problem: Netbeans test fails on non-Unix systems.
12751Solution: Only do the permission check on Unix systems.
12752Files: src/testdir/test_netbeans.vim
12753
12754Patch 7.4.2080
12755Problem: When using PERROR() on some systems assert_fails() does not see
12756 the error.
12757Solution: Make PERROR() always report the error.
12758Files: src/vim.h, src/message.c, src/proto/message.pro
12759
12760Patch 7.4.2081
12761Problem: Line numbers in the error list are not always adjusted.
12762Solution: Set b_has_qf_entry properly. (Yegappan Lakshmanan)
12763Files: src/quickfix.c, src/structs.h, src/testdir/test_quickfix.vim
12764
12765Patch 7.4.2082
12766Problem: Not much test coverage for digraphs.
12767Solution: Add a new style digraph test. (Christian Brabandt)
12768Files: src/Makefile, src/testdir/test_alot.vim,
12769 src/testdir/test_digraph.vim
12770
12771Patch 7.4.2083
12772Problem: Coverity complains about not restoring a value.
12773Solution: Restore the value, although it's not really needed. Change return
12774 to jump to cleanup, might leak memory.
12775Files: src/userfunc.c
12776
12777Patch 7.4.2084
12778Problem: New digraph test makes testing hang.
12779Solution: Don't set "nocp".
12780Files: src/testdir/test_digraph.vim
12781
12782Patch 7.4.2085
12783Problem: Digraph tests fails on some systems.
12784Solution: Run it separately and set 'encoding' early.
12785Files: src/testdir/Make_all.mak, src/testdir/test_alot.vim,
12786 src/testdir/test_digraph.vim
12787
12788Patch 7.4.2086
12789Problem: Using the system default encoding makes tests unpredictable.
12790Solution: Always use utf-8 or latin1 in the new style tests. Remove setting
12791 encoding and scriptencoding where it is not needed.
12792Files: src/testdir/runtest.vim, src/testdir/test_channel.vim,
12793 src/testdir/test_digraph.vim, src/testdir/test_expand_dllpath.vim,
12794 src/testdir/test_expr_utf8.vim, src/testdir/test_json.vim,
12795 src/testdir/test_matchadd_conceal_utf8.vim,
12796 src/testdir/test_regexp_utf8.vim, src/testdir/test_visual.vim,
12797 src/testdir/test_alot_utf8.vim,
12798
12799Patch 7.4.2087
12800Problem: Digraph code test coverage is still low.
12801Solution: Add more tests. (Christian Brabandt)
12802Files: src/testdir/test_digraph.vim
12803
12804Patch 7.4.2088 (after 7.4.2087)
12805Problem: Keymap test fails with normal features.
12806Solution: Bail out if the keymap feature is not supported.
12807Files: src/testdir/test_digraph.vim
12808
12809Patch 7.4.2089
12810Problem: Color handling of X11 GUIs is too complicated.
12811Solution: Simplify the code. Use RGBA where appropriate. (Kazunobu
12812 Kuriyama)
12813Files: src/gui.h, src/gui_beval.c, src/gui_gtk_x11.c, src/netbeans.c
12814
12815Patch 7.4.2090
12816Problem: Using submatch() in a lambda passed to substitute() is verbose.
12817Solution: Use a static list and pass it as an optional argument to the
12818 function. Fix memory leak.
12819Files: src/structs.h, src/list.c, src/userfunc.c, src/channel.c,
12820 src/eval.c, src/evalfunc.c, src/ex_cmds2.c, src/regexp.c,
12821 src/proto/list.pro, src/proto/userfunc.pro,
12822 src/testdir/test_expr.vim, runtime/doc/eval.txt
12823
12824Patch 7.4.2091
12825Problem: Coverity reports a resource leak when out of memory.
12826Solution: Close the file before returning.
12827Files: src/term.c
12828
12829Patch 7.4.2092
12830Problem: GTK 3 build fails with older GTK version.
12831Solution: Check the pango version. (Kazunobu Kuriyama)
12832Files: src/gui_beval.c
12833
12834Patch 7.4.2093
12835Problem: Netbeans test fails once in a while. Leaving log file behind.
12836Solution: Add it to the list of flaky tests. Disable logfile.
12837Files: src/testdir/runtest.vim, src/testdir/test_channel.vim
12838
12839Patch 7.4.2094
12840Problem: The color allocation in X11 is overly complicated.
12841Solution: Remove find_closest_color(), XAllocColor() already does this.
12842 (Kazunobu Kuriyama)
12843Files: src/gui_x11.c
12844
12845Patch 7.4.2095
12846Problem: Man test fails when run with the GUI.
12847Solution: Adjust for different behavior of GUI. Add assert_inrange().
12848Files: src/eval.c, src/evalfunc.c, src/proto/eval.pro,
12849 src/testdir/test_assert.vim, src/testdir/test_man.vim,
12850 runtime/doc/eval.txt
12851
12852Patch 7.4.2096
12853Problem: Lambda functions show up with completion.
12854Solution: Don't show lambda functions. (Ken Takata)
12855Files: src/userfunc.c, src/testdir/test_cmdline.vim
12856
12857Patch 7.4.2097
12858Problem: Warning from 64 bit compiler.
12859Solution: use size_t instead of int. (Mike Williams)
12860Files: src/message.c
12861
12862Patch 7.4.2098
12863Problem: Text object tests are old style.
12864Solution: Turn them into new style tests. (James McCoy, closes #941)
12865Files: src/testdir/Make_all.mak, src/testdir/test_textobjects.in,
12866 src/testdir/test_textobjects.ok, src/testdir/test_textobjects.vim,
12867 src/Makefile
12868
12869Patch 7.4.2099
12870Problem: When a keymap is active only "(lang)" is displayed. (Ilya
12871 Dogolazky)
12872Solution: Show the keymap name. (Dmitri Vereshchagin, closes #933)
12873Files: src/buffer.c, src/proto/screen.pro, src/screen.c
12874
12875Patch 7.4.2100
12876Problem: "cgn" and "dgn" do not work correctly with a single character
12877 match and the replacement includes the searched pattern. (John
12878 Beckett)
12879Solution: If the match is found in the wrong column try in the next column.
12880 Turn the test into new style. (Christian Brabandt)
12881Files: src/search.c, src/testdir/Make_all.mak, src/Makefile,
12882 src/testdir/test53.in, src/testdir/test53.ok,
12883 src/testdir/test_gn.vim
12884
12885Patch 7.4.2101
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +020012886Problem: Looping over windows, buffers and tab pages is inconsistent.
Bram Moolenaar09521312016-08-12 22:54:35 +020012887Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)
12888Files: src/buffer.c, src/diff.c, src/edit.c, src/eval.c, src/evalfunc.c,
12889 src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/fileio.c,
12890 src/globals.h, src/gui.c, src/gui_mac.c, src/if_lua.c,
12891 src/if_mzsch.c, src/if_perl.xs, src/if_ruby.c, src/if_tcl.c,
12892 src/main.c, src/mark.c, src/memfile.c, src/memline.c, src/misc1.c,
12893 src/move.c, src/netbeans.c, src/normal.c, src/option.c,
12894 src/quickfix.c, src/screen.c, src/spell.c, src/term.c,
12895 src/window.c, src/workshop.c
12896
12897Patch 7.4.2102 (after 7.4.2101)
12898Problem: Tiny build with GUI fails.
12899Solution: Revert one FOR_ALL_ change.
12900Files: src/gui.c
12901
12902Patch 7.4.2103
12903Problem: Can't have "augroup END" right after ":au!".
12904Solution: Check for the bar character before the command argument.
12905Files: src/fileio.c, src/testdir/test_autocmd.vim,
12906 runtime/doc/autocmd.txt
12907
12908Patch 7.4.2104
12909Problem: Code duplication when unreferencing a function.
12910Solution: De-duplicate.
12911Files: src/userfunc.c
12912
12913Patch 7.4.2105
12914Problem: Configure reports default features to be "normal" while it is
12915 "huge".
12916Solution: Change the default text. Build with newer autoconf.
12917Files: src/configure.in, src/auto/configure
12918
12919Patch 7.4.2106
12920Problem: Clang warns about missing field in initializer.
12921Solution: Define COMMA and use it. (Kazunobu Kuriyama)
12922Files: src/ex_cmds.c, src/globals.h, src/vim.h
12923
12924Patch 7.4.2107 (after 7.4.2106)
12925Problem: Misplaced equal sign.
12926Solution: Remove it.
12927Files: src/globals.h
12928
12929Patch 7.4.2108
12930Problem: Netbeans test is flaky.
12931Solution: Wait for the cursor to be positioned.
12932Files: src/testdir/test_netbeans.vim
12933
12934Patch 7.4.2109
12935Problem: Setting 'display' to "lastline" is a drastic change, while
12936 omitting it results in lots of "@" lines.
12937Solution: Add "truncate" to show "@@@" for a truncated line.
12938Files: src/option.h, src/screen.c, runtime/doc/options.txt
12939
12940Patch 7.4.2110
12941Problem: When there is an CmdUndefined autocmd then the error for a missing
12942 command is E464 instead of E492. (Manuel Ortega)
12943Solution: Don't let the pointer be NULL.
12944Files: src/ex_docmd.c, src/testdir/test_usercommands.vim
12945
12946Patch 7.4.2111
12947Problem: Defaults are very conservative.
12948Solution: Move settings from vimrc_example.vim to defaults.vim. Load
12949 defaults.vim if no .vimrc was found.
12950Files: src/main.c, src/version.c, src/os_amiga.h, src/os_dos.h,
12951 src/os_mac.h, src/os_unix.h, src/feature.h, src/Makefile,
12952 runtime/vimrc_example.vim, runtime/defaults.vim,
12953 runtime/evim.vim, Filelist, runtime/doc/starting.txt
12954
12955Patch 7.4.2112
12956Problem: getcompletion(.., 'dir') returns a match with trailing "*" when
12957 there are no matches. (Chdiza)
12958Solution: Return an empty list when there are no matches. Add a trailing
12959 slash to directories. (Yegappan Lakshmanan) Add tests for no
12960 matches. (closes #947)
12961Files: src/evalfunc.c, src/testdir/test_cmdline.vim
12962
12963Patch 7.4.2113
12964Problem: Test for undo is flaky.
12965Solution: Turn it into a new style test. Use test_settime() to avoid
12966 flakyness.
12967Files: src/Makefile, src/undo.c, src/testdir/test61.in,
12968 src/testdir/test61.ok, src/testdir/test_undo.vim,
12969 src/testdir/test_undolevels.vim, src/testdir/Make_all.mak,
12970 src/testdir/test_alot.vim
12971
12972Patch 7.4.2114
12973Problem: Tiny build fails.
12974Solution: Always include vim_time().
12975Files: src/ex_cmds.c
12976
12977Patch 7.4.2115
12978Problem: Loading defaults.vim with -C argument.
12979Solution: Don't load the defaults script with -C argument. Test sourcing
12980 the defaults script. Set 'display' to "truncate".
12981Files: src/main.c, src/Makefile, runtime/defaults.vim,
12982 src/testdir/test_startup.vim, src/testdir/Make_all.mak
12983
12984Patch 7.4.2116
12985Problem: The default vimrc for Windows is very conservative.
12986Solution: Use the defaults.vim in the Windows installer.
12987Files: src/dosinst.c
12988
12989Patch 7.4.2117
12990Problem: Deleting an augroup that still has autocmds does not give a
12991 warning. The next defined augroup takes its place.
12992Solution: Give a warning and prevent the index being used for another group
12993 name.
12994Files: src/fileio.c, src/testdir/test_autocmd.vim
12995
12996Patch 7.4.2118
12997Problem: Mac: can't build with tiny features.
12998Solution: Don't define FEAT_CLIPBOARD unconditionally. (Kazunobu Kuriyama)
12999Files: src/vim.h
13000
13001Patch 7.4.2119
13002Problem: Closures are not supported.
13003Solution: Capture variables in lambdas from the outer scope. (Yasuhiro
13004 Matsumoto, Ken Takata)
13005Files: runtime/doc/eval.txt, src/eval.c, src/ex_cmds2.c, src/globals.h,
13006 src/proto/eval.pro, src/proto/userfunc.pro,
13007 src/testdir/test_lambda.vim, src/userfunc.c
13008
13009Patch 7.4.2120
13010Problem: User defined functions can't be a closure.
13011Solution: Add the "closure" argument. Allow using :unlet on a bound
13012 variable. (Yasuhiro Matsumoto, Ken Takata)
13013Files: runtime/doc/eval.txt, src/testdir/test_lambda.vim, src/userfunc.c,
13014 src/eval.c src/proto/userfunc.pro
13015
13016Patch 7.4.2121
13017Problem: No easy way to check if lambda and closure are supported.
13018Solution: Add the +lambda feature.
13019Files: src/evalfunc.c, src/version.c, src/testdir/test_lambda.vim
13020
13021Patch 7.4.2122 (after 7.4.2118)
13022Problem: Mac: don't get +clipboard in huge build.
13023Solution: Move #define down below including featureh.h
13024Files: src/vim.h
13025
13026Patch 7.4.2123
13027Problem: No new style test for diff mode.
13028Solution: Add a test. Check that folds are in sync.
13029Files: src/Makefile, src/testdir/test_diffmode.vim,
13030 src/testdir/Make_all.mak, src/testdir/test47.in,
13031 src/testdir/test47.ok
13032
13033Patch 7.4.2124
13034Problem: diffmode test leaves files behind, breaking another test.
13035Solution: Delete the files.
13036Files: src/testdir/test_diffmode.vim
13037
13038Patch 7.4.2125
13039Problem: Compiler warning for loss of data.
13040Solution: Add a type cast. (Christian Brabandt)
13041Files: src/message.c
13042
13043Patch 7.4.2126
13044Problem: No tests for :diffget and :diffput
13045Solution: Add tests.
13046Files: src/testdir/test_diffmode.vim
13047
13048Patch 7.4.2127
13049Problem: The short form of ":noswapfile" is ":noswap" instead of ":nos".
13050 (Kent Sibilev)
13051Solution: Only require three characters. Add a test for the short forms.
13052Files: src/ex_docmd.c, src/testdir/test_usercommands.vim
13053
13054Patch 7.4.2128
13055Problem: Memory leak when saving for undo fails.
13056Solution: Free allocated memory. (Hirohito Higashi)
13057Files: src/ex_cmds.c
13058
13059Patch 7.4.2129
13060Problem: Memory leak when using timer_start(). (Dominique Pelle)
13061Solution: Don't copy the callback when using a partial.
13062Files: src/evalfunc.c
13063
13064Patch 7.4.2130
13065Problem: Pending timers cause false memory leak reports.
13066Solution: Free all timers on exit.
13067Files: src/ex_cmds2.c, src/proto/ex_cmds2.pro, src/misc2.c
13068
13069Patch 7.4.2131
13070Problem: More memory leaks when using partial, e.g. for "exit-cb".
13071Solution: Don't copy the callback when using a partial.
13072Files: src/channel.c
13073
13074Patch 7.4.2132
13075Problem: test_partial has memory leaks reported.
13076Solution: Add a note about why this happens.
13077Files: src/testdir/test_partial.vim
13078
13079Patch 7.4.2133 (after 7.4.2128)
13080Problem: Can't build with tiny features.
13081Solution: Add #ifdef.
13082Files: src/ex_cmds.c
13083
13084Patch 7.4.2134
13085Problem: No error for using function() badly.
13086Solution: Check for passing wrong function name. (Ken Takata)
13087Files: src/eval.c, src/evalfunc.c, src/proto/userfunc.pro,
13088 src/testdir/test_expr.vim, src/userfunc.c, src/vim.h
13089
13090Patch 7.4.2135
13091Problem: Various tiny issues.
13092Solution: Update comments, white space, etc.
13093Files: src/diff.c, src/digraph.c, src/testdir/test80.in,
13094 src/testdir/test_channel.vim, src/testdir/Makefile,
13095 runtime/menu.vim, src/INSTALLpc.txt, src/xpm/README.txt
13096
13097Patch 7.4.2136
13098Problem: Closure function fails.
13099Solution: Don't reset uf_scoped when it points to another funccal.
13100Files: src/userfunc.c, src/testdir/test_lambda.vim
13101
13102Patch 7.4.2137
13103Problem: Using function() with a name will find another function when it is
13104 redefined.
13105Solution: Add funcref(). Refer to lambda using a partial. Fix several
13106 reference counting issues.
13107Files: src/vim.h, src/structs.h, src/userfunc.c, src/eval.c,
13108 src/evalfunc.c, src/channel.c, src/proto/eval.pro,
13109 src/proto/userfunc.pro, src/if_mzsch.c, src/regexp.c, src/misc2.c,
13110 src/if_py_both.h, src/testdir/test_expr.vim, runtime/doc/eval.txt
13111
13112Patch 7.4.2138
13113Problem: Test 86 and 87 fail.
13114Solution: Call func_ref() also for regular functions.
13115Files: src/if_py_both.h
13116
13117Patch 7.4.2139
13118Problem: :delfunction causes illegal memory access.
13119Solution: Correct logic when deciding to free a function.
13120Files: src/userfunc.c, src/testdir/test_lambda.vim
13121
13122Patch 7.4.2140
13123Problem: Tiny build fails.
13124Solution: Add dummy typedefs.
13125Files: src/structs.h
13126
13127Patch 7.4.2141
13128Problem: Coverity reports bogus NULL check.
13129Solution: When checking for a variable in the funccal scope don't pass the
13130 varname.
13131Files: src/userfunc.c, src/proto/userfunc.pro, src/eval.c
13132
13133Patch 7.4.2142
13134Problem: Leaking memory when redefining a function.
13135Solution: Don't increment the function reference count when it's found by
13136 name. Don't remove the wrong function from the hashtab. More
13137 reference counting fixes.
13138Files: src/structs.h, src/userfunc.c
13139
13140Patch 7.4.2143
13141Problem: A funccal is garbage collected while it can still be used.
13142Solution: Set copyID in all referenced functions. Do not list lambda
13143 functions with ":function".
13144Files: src/userfunc.c, src/proto/userfunc.pro, src/eval.c,
13145 src/testdir/test_lambda.vim
13146
13147Patch 7.4.2144
13148Problem: On MS-Windows quickix does not handle a line with 1023 bytes
13149 ending in CR-LF properly.
13150Solution: Don't consider CR a line break. (Ken Takata)
13151Files: src/quickfix.c
13152
13153Patch 7.4.2145
13154Problem: Win32: Using CreateThread/ExitThread is not safe.
13155Solution: Use _beginthreadex and return from the thread. (Ken Takata)
13156Files: src/os_win32.c
13157
13158Patch 7.4.2146
13159Problem: Not enough testing for popup menu. CTRL-E does not always work
13160 properly.
13161Solution: Add more tests. When using CTRL-E check if the popup menu is
13162 visible. (Christian Brabandt)
13163Files: src/edit.c, src/testdir/test_popup.vim
13164
13165Patch 7.4.2147 (after 7.4.2146)
13166Problem: test_alot fails.
13167Solution: Close window.
13168Files: src/testdir/test_popup.vim
13169
13170Patch 7.4.2148
13171Problem: Not much testing for cscope.
13172Solution: Add a test that uses the cscope program. (Christian Brabandt)
13173Files: src/testdir/test_cscope.vim
13174
13175Patch 7.4.2149
13176Problem: If a test leaves a window open a following test may fail.
13177Solution: Always close extra windows after running a test.
13178Files: src/testdir/runtest.vim, src/testdir/test_popup.vim
13179
13180Patch 7.4.2150
13181Problem: Warning with MinGW 64. (John Marriott)
13182Solution: Change return type. (Ken Takata)
13183Files: src/os_win32.c
13184
13185Patch 7.4.2151
13186Problem: Quickfix test fails on MS-Windows.
13187Solution: Close the help window. (Christian Brabandt)
13188Files: src/testdir/test_quickfix.vim
13189
13190Patch 7.4.2152
13191Problem: No proper translation of messages with a count.
13192Solution: Use ngettext(). (Sergey Alyoshin)
13193Files: src/evalfunc.c, src/fold.c, src/os_win32.c, src/screen.c, src/vim.h
13194
13195Patch 7.4.2153
13196Problem: GUI test isn't testing much.
13197Solution: Turn into a new style test. Execute a shell command.
13198Files: src/testdir/test_gui.vim, src/testdir/test16.in,
13199 src/testdir/test16.ok, src/testdir/Make_all.mak, src/Makefile,
13200 src/testdir/Make_vms.mms
13201
13202Patch 7.4.2154
13203Problem: Test_communicate() fails sometimes.
13204Solution: Add it to the flaky tests.
13205Files: src/testdir/runtest.vim
13206
13207Patch 7.4.2155
13208Problem: Quotes make GUI test fail on MS-Windows.
13209Solution: Remove quotes, strip white space.
13210Files: src/testdir/test_gui.vim
13211
13212Patch 7.4.2156
13213Problem: Compiler warning.
13214Solution: Add type cast. (Ken Takata, Mike Williams)
13215Files: src/os_win32.c
13216
13217Patch 7.4.2157
13218Problem: Test_job_start_fails() is expected to report memory leaks, making
13219 it hard to see other leaks in test_partial.
13220Solution: Move Test_job_start_fails() to a separate test file.
13221Files: src/testdir/test_partial.vim, src/testdir/test_job_fails.vim,
13222 src/Makefile, src/testdir/Make_all.mak
13223
13224Patch 7.4.2158
13225Problem: Result of getcompletion('', 'cscope') depends on previous
13226 completion. (Christian Brabandt)
13227Solution: Call set_context_in_cscope_cmd().
13228Files: src/evalfunc.c, src/testdir/test_cmdline.vim
13229
13230Patch 7.4.2159
13231Problem: Insufficient testing for cscope.
13232Solution: Add more tests. (Dominique Pelle)
13233Files: src/testdir/test_cscope.vim
13234
13235Patch 7.4.2160
13236Problem: setmatches() mixes up values. (Nikolai Pavlov)
13237Solution: Save the string instead of reusing a shared buffer.
13238Files: src/dict.c, src/evalfunc.c, src/testdir/test_expr.vim,
13239
13240Patch 7.4.2161 (after 7.4.2160)
13241Problem: Expression test fails without conceal feature.
13242Solution: Only check "conceal" with the conceal feature.
13243Files: src/testdir/test_expr.vim
13244
13245Patch 7.4.2162
13246Problem: Result of getcompletion('', 'sign') depends on previous
13247 completion.
13248Solution: Call set_context_in_sign_cmd(). (Dominique Pelle)
13249Files: src/evalfunc.c, src/testdir/test_cmdline.vim
13250
Bram Moolenaardc1f1642016-08-16 18:33:43 +020013251Patch 7.4.2163
13252Problem: match() and related functions tested with old style test.
13253Solution: Convert to new style test. (Hirohito Higashi)
13254Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test63.in,
13255 src/testdir/test63.ok, src/testdir/test_alot.vim,
13256 src/testdir/test_match.vim, src/testdir/test_matchstrpos.vim
13257
13258Patch 7.4.2164
13259Problem: It is not possible to use plugins in an "after" directory to tune
13260 the behavior of a package.
13261Solution: First load plugins from non-after directories, then packages and
13262 finally plugins in after directories.
13263 Reset 'loadplugins' before executing --cmd arguments.
13264Files: src/main.c, src/vim.h, src/ex_cmds2.c, src/testdir/Makefile,
13265 src/testdir/shared.vim, src/testdir/test_startup.vim,
13266 src/testdir/setup.vim, runtime/doc/starting.txt
13267
13268Patch 7.4.2165 (after 7.4.2164)
13269Problem: Startup test fails on MS-Windows.
13270Solution: Don't check output if RunVim() returns zero.
13271Files: src/testdir/test_startup.vim
13272
13273Patch 7.4.2166 (after 7.4.2164)
13274Problem: Small build can't run startup test.
13275Solution: Skip the test.
13276Files: src/testdir/test_startup.vim
13277
13278Patch 7.4.2167 (after 7.4.2164)
13279Problem: Small build can't run tests.
13280Solution: Don't try setting 'packpath'.
13281Files: src/testdir/setup.vim
13282
13283Patch 7.4.2168
13284Problem: Not running the startup test on MS-Windows.
13285Solution: Write vimcmd.
13286Files: src/testdir/Make_ming.mak, src/testdir/Make_dos.mak
13287
13288Patch 7.4.2169 (after 7.4.2168)
13289Problem: Startup test gets stuck on MS-Windows.
13290Solution: Use double quotes.
13291Files: src/testdir/shared.vim, src/testdir/test_startup.vim
13292
13293Patch 7.4.2170
13294Problem: Cannot get information about timers.
13295Solution: Add timer_info().
13296Files: src/evalfunc.c, src/ex_cmds2.c, src/proto/ex_cmds2.pro,
13297 runtime/doc/eval.txt
13298
13299Patch 7.4.2171 (after 7.4.2170)
13300Problem: MS-Windows build fails.
13301Solution: Add QueryPerformanceCounter().
13302Files: src/ex_cmds2.c
13303
13304Patch 7.4.2172
13305Problem: No test for "vim --help".
13306Solution: Add a test.
13307Files: src/testdir/test_startup.vim, src/testdir/shared.vim
13308
13309Patch 7.4.2173 (after 7.4.2172)
13310Problem: Can't test help on MS-Windows.
13311Solution: Skip the test.
13312Files: src/testdir/test_startup.vim
13313
13314Patch 7.4.2174
13315Problem: Adding duplicate flags to 'whichwrap' leaves commas behind.
13316Solution: Also remove the commas. (Naruhiko Nishino)
13317Files: src/Makefile, src/option.c, src/testdir/Make_all.mak,
13318 src/testdir/test_alot.vim, src/testdir/test_options.in,
13319 src/testdir/test_options.ok, src/testdir/test_options.vim
13320
13321Patch 7.4.2175
13322Problem: Insufficient testing of cscope.
13323Solution: Add more tests. (Dominique Pelle)
13324Files: src/testdir/test_cscope.vim
13325
13326Patch 7.4.2176
13327Problem: #ifdefs in main() are complicated.
13328Solution: Always define vim_main2(). Move params to the file level.
13329 (suggested by Ken Takata)
13330Files: src/main.c, src/structs.h, src/vim.h, src/if_mzsch.c,
13331 src/proto/if_mzsch.pro
13332
13333Patch 7.4.2177
13334Problem: No testing for -C and -N command line flags, file arguments,
13335 startuptime.
13336Solution: Add tests.
13337Files: src/testdir/test_startup.vim, src/testdir/shared.vim
13338
13339Patch 7.4.2178
13340Problem: No test for reading from stdin.
13341Solution: Add a test.
13342Files: src/testdir/test_startup.vim, src/testdir/shared.vim
13343
13344Patch 7.4.2179 (after 7.4.2178)
13345Problem: Reading from stdin test fails on MS-Windows.
13346Solution: Strip the extra space.
13347Files: src/testdir/test_startup.vim
13348
13349Patch 7.4.2180
13350Problem: There is no easy way to stop all timers. There is no way to
13351 temporary pause a timer.
13352Solution: Add timer_stopall() and timer_pause().
13353Files: src/evalfunc.c, src/ex_cmds2.c, src/proto/ex_cmds2.pro,
13354 src/structs.h, src/testdir/test_timers.vim,
13355 src/testdir/shared.vim, runtime/doc/eval.txt
13356
13357Patch 7.4.2181
13358Problem: Compiler warning for unused variable.
13359Solution: Remove it. (Dominique Pelle)
13360Files: src/ex_cmds2.c
13361
13362Patch 7.4.2182
13363Problem: Color Grey40 used in startup but not in the short list.
13364Solution: Add Grey40 to the builtin colors.
13365Files: src/term.c
13366
13367Patch 7.4.2183
13368Problem: Sign tests are old style.
13369Solution: Turn them into new style tests. (Dominique Pelle)
13370Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test_signs.in,
13371 src/testdir/test_signs.ok, src/testdir/test_signs.vim,
13372
13373Patch 7.4.2184
13374Problem: Tests that use RunVim() do not actually perform the test.
13375Solution: Use "return" instead of "call". (Ken Takata)
13376Files: src/testdir/shared.vim
13377
13378Patch 7.4.2185
13379Problem: Test glob2regpat does not test much.
13380Solution: Add a few more test cases. (Dominique Pelle)
13381Files: src/testdir/test_glob2regpat.vim
13382
13383Patch 7.4.2186
13384Problem: Timers test is flaky.
13385Solution: Relax the sleep time check.
13386Files: src/testdir/test_timers.vim
13387
13388Patch 7.4.2187 (after 7.4.2185)
13389Problem: glob2regpat test fails on Windows.
13390Solution: Remove the checks that use backslashes.
13391Files: src/testdir/test_glob2regpat.vim
13392
13393Patch 7.4.2188 (after 7.4.2146)
13394Problem: Completion does not work properly with some plugins.
13395Solution: Revert the part related to typing CTRL-E. (closes #972)
13396Files: src/edit.c, src/testdir/test_popup.vim
13397
13398Patch 7.4.2189
13399Problem: Cannot detect encoding in a fifo.
13400Solution: Extend the stdin way of detecting encoding to fifo. Add a test
13401 for detecting encoding on stdin and fifo. (Ken Takata)
13402Files: src/buffer.c, src/fileio.c, src/Makefile,
13403 src/testdir/Make_all.mak, src/testdir/test_startup_utf8.vim,
13404 src/vim.h
13405
13406Patch 7.4.2190
13407Problem: When startup test fails it's not easy to find out why.
13408 GUI test fails with Gnome.
13409Solution: Add the help entry matches to a list an assert that.
13410 Set $HOME for Gnome to create .gnome2 directory.
13411Files: src/testdir/test_startup.vim, src/testdir/test_gui.vim
13412
13413Patch 7.4.2191
13414Problem: No automatic prototype for vim_main2().
13415Solution: Move the #endif. (Ken Takata)
13416Files: src/main.c, src/vim.h, src/proto/main.pro
13417
13418Patch 7.4.2192
13419Problem: Generating prototypes with Cygwin doesn't work well.
13420Solution: Change #ifdefs. (Ken Takata)
13421Files: src/gui.h, src/gui_w32.c, src/ops.c, src/proto/fileio.pro,
13422 src/proto/message.pro, src/proto/normal.pro, src/proto/ops.pro,
13423 src/vim.h
13424
13425Patch 7.4.2193
13426Problem: With Gnome when the GUI can't start test_startup hangs.
13427Solution: Call gui_mch_early_init_check(). (Hirohito Higashi)
13428Files: src/gui.c, src/gui_gtk_x11.c, src/proto/gui_gtk_x11.pro
13429
13430Patch 7.4.2194
13431Problem: Sign tests don't cover enough.
13432Solution: Add more test cases. (Dominique Pelle)
13433Files: src/testdir/test_signs.vim
13434
13435Patch 7.4.2195
13436Problem: MS-Windows: The vimrun program does not support Unicode.
13437Solution: Use GetCommandLineW(). Cleanup old #ifdefs. (Ken Takata)
13438Files: src/vimrun.c
13439
13440Patch 7.4.2196
13441Problem: glob2regpat test doesn't test everything on MS-Windows.
13442Solution: Add patterns with backslash handling.
13443Files: src/testdir/test_glob2regpat.vim
13444
13445Patch 7.4.2197
13446Problem: All functions are freed on exit, which may hide leaks.
13447Solution: Only free named functions, not reference counted ones.
13448Files: src/userfunc.c
13449
13450Patch 7.4.2198
13451Problem: Test alot sometimes fails under valgrind. (Dominique Pelle)
13452Solution: Avoid passing a callback with the wrong number of arguments.
13453Files: src/testdir/test_partial.vim
13454
13455Patch 7.4.2199
13456Problem: In the GUI the cursor is hidden when redrawing any window,
13457 causing flicker.
13458Solution: Only undraw the cursor when updating the window it's in.
13459Files: src/screen.c, src/gui.c, src/proto/gui.pro, src/gui_gtk_x11.c
13460
13461Patch 7.4.2200
13462Problem: Cannot get all information about a quickfix list.
13463Solution: Add an optional argument to get/set loc/qf list(). (Yegappan
13464 Lakshmanan)
13465Files: runtime/doc/eval.txt, src/evalfunc.c, src/proto/quickfix.pro,
13466 src/quickfix.c, src/tag.c, src/testdir/test_quickfix.vim
13467
13468Patch 7.4.2201
13469Problem: The sign column disappears when the last sign is deleted.
13470Solution: Add the 'signcolumn' option. (Christian Brabandt)
13471Files: runtime/doc/options.txt, runtime/optwin.vim, src/edit.c,
13472 src/move.c, src/option.c, src/option.h, src/proto/option.pro,
13473 src/screen.c, src/structs.h, src/testdir/test_options.vim
13474
13475Patch 7.4.2202
13476Problem: Build fails with small features.
13477Solution: Correct option initialization.
13478Files: src/option.c
13479
13480Patch 7.4.2203
13481Problem: Test fails with normal features.
13482Solution: Check is signs are supported.
13483Files: src/testdir/test_options.vim
13484
13485Patch 7.4.2204
13486Problem: It is not easy to get information about buffers, windows and
13487 tabpages.
13488Solution: Add getbufinfo(), getwininfo() and gettabinfo(). (Yegappan
13489 Lakshmanan)
13490Files: runtime/doc/eval.txt, runtime/doc/usr_41.txt, src/dict.c,
13491 src/evalfunc.c, src/option.c, src/proto/dict.pro,
13492 src/proto/option.pro, src/proto/window.pro,
13493 src/testdir/Make_all.mak, src/testdir/test_bufwintabinfo.vim,
13494 src/window.c, src/Makefile
13495
13496Patch 7.4.2205
13497Problem: 'wildignore' always applies to getcompletion().
13498Solution: Add an option to use 'wildignore' or not. (Yegappan Lakshmanan)
13499Files: runtime/doc/eval.txt, src/evalfunc.c, src/testdir/test_cmdline.vim
13500
13501Patch 7.4.2206
13502Problem: Warning for unused function.
13503Solution: Put the function inside #ifdef. (John Marriott)
13504Files: src/evalfunc.c
13505
13506Patch 7.4.2207
13507Problem: The +xpm feature is not sorted properly in :version output.
13508Solution: Move it up. (Tony Mechelynck)
13509Files: src/version.c
13510
13511Patch 7.4.2208
13512Problem: Test for mappings is old style.
13513Solution: Convert the test to new style.
13514Files: src/testdir/test_mapping.vim, src/testdir/test_mapping.in,
13515 src/testdir/test_mapping.ok, src/Makefile,
13516 src/testdir/test_alot.vim, src/testdir/Make_all.mak
13517
13518Patch 7.4.2209
13519Problem: Cannot map <M-">. (Stephen Riehm)
13520Solution: Solve the memory access problem in another way. (Dominique Pelle)
13521 Allow for using <M-\"> in a string.
13522Files: src/eval.c, src/gui_mac.c, src/misc2.c, src/option.c,
13523 src/proto/misc2.pro, src/syntax.c, src/term.c,
13524 src/testdir/test_mapping.vim
13525
13526Patch 7.4.2210
13527Problem: On OSX configure mixes up a Python framework and the Unix layout.
13528Solution: Make configure check properly. (Tim D. Smith, closes #980)
13529Files: src/configure.in, src/auto/configure
13530
13531Patch 7.4.2211
13532Problem: Mouse support is not automatically enabled with simple term.
13533Solution: Recognize "st" and other names. (Manuel Schiller, closes #963)
13534Files: src/os_unix.c
13535
13536Patch 7.4.2212
13537Problem: Mark " is not set when closing a window in another tab. (Guraga)
13538Solution: Check all tabs for the window to be valid. (based on patch by
13539 Hirohito Higashi, closes #974)
13540Files: src/window.c, src/proto/window.pro, src/buffer.c,
13541 src/testdir/test_viminfo.vim
13542
13543Patch 7.4.2213
13544Problem: Cannot highlight the "~" lines at the end of a window differently.
13545Solution: Add the EndOfBuffer highlighting. (Marco Hinz, James McCoy)
13546Files: runtime/doc/options.txt, runtime/doc/syntax.txt, src/option.c,
13547 src/screen.c, src/syntax.c, src/vim.h
13548
13549Patch 7.4.2214
13550Problem: A font that uses ligatures messes up the screen display.
13551Solution: Put spaces between characters when building the glyph table.
13552 (based on a patch from Manuel Schiller)
13553Files: src/gui_gtk_x11.c
13554
13555Patch 7.4.2215
13556Problem: It's not easy to find out if a window is a quickfix or location
13557 list window.
Bram Moolenaar7571d552016-08-18 22:54:46 +020013558Solution: Add "loclist" and "quickfix" entries to the dict returned by
Bram Moolenaardc1f1642016-08-16 18:33:43 +020013559 getwininfo(). (Yegappan Lakshmanan)
13560Files: runtime/doc/eval.txt, src/evalfunc.c,
13561 src/testdir/test_bufwintabinfo.vim
13562
13563Patch 7.4.2216 (after 7.4.2215)
13564Problem: Test fails without the +sign feature.
13565Solution: Only check for signcolumn with the +sign feature.
13566Files: src/testdir/test_bufwintabinfo.vim
13567
13568Patch 7.4.2217
13569Problem: When using matchaddpos() a character after the end of the line can
13570 be highlighted.
13571Solution: Only highlight existing characters. (Hirohito Higashi)
13572Files: src/screen.c, src/structs.h, src/testdir/test_match.vim
13573
Bram Moolenaar36f44c22016-08-28 18:17:20 +020013574Patch 7.4.2218
13575Problem: Can't build with +timers when +digraph is not included.
13576Solution: Change #ifdef for e_number_exp. (Damien)
13577Files: src/globals.h
13578
13579Patch 7.4.2219
13580Problem: Recursive call to substitute gets stuck in sandbox. (Nikolai
13581 Pavlov)
13582Solution: Handle the recursive call. (Christian Brabandt, closes #950)
13583 Add a test.
13584Files: src/ex_cmds.c, src/testdir/test_regexp_latin.vim
13585
13586Patch 7.4.2220
13587Problem: printf() gives an error when the argument for %s is not a string.
13588 (Ozaki Kiichi)
13589Solution: Behave like invoking string() on the argument. (Ken Takata)
13590Files: runtime/doc/eval.txt, src/message.c, src/testdir/test_expr.vim
13591
13592Patch 7.4.2221
13593Problem: printf() does not support binary format.
13594Solution: Add %b and %B. (Ozaki Kiichi)
13595Files: runtime/doc/eval.txt, src/message.c, src/testdir/test_expr.vim
13596
13597Patch 7.4.2222
13598Problem: Sourcing a script where a character has 0x80 as a second byte does
13599 not work. (Filipe L B Correia)
13600Solution: Turn 0x80 into K_SPECIAL KS_SPECIAL KE_FILLER. (Christian
13601 Brabandt, closes #728) Add a test case.
13602Files: src/getchar.c, src/proto/getchar.pro, src/misc1.c,
13603 src/testdir/test_regexp_utf8.vim
13604
13605Patch 7.4.2223
13606Problem: Buffer overflow when using latin1 character with feedkeys().
13607Solution: Check for an illegal character. Add a test.
13608Files: src/testdir/test_regexp_utf8.vim, src/testdir/test_source.vim,
13609 src/testdir/test_alot_utf8.vim, src/Makefile, src/getchar.c,
13610 src/macros.h, src/evalfunc.c, src/os_unix.c, src/os_win32.c,
13611 src/spell.c,
13612
13613Patch 7.4.2224
13614Problem: Compiler warnings with older compiler and 64 bit numbers.
13615Solution: Add "LL" to large values. (Mike Williams)
13616Files: src/eval.c, src/evalfunc.c
13617
13618Patch 7.4.2225
13619Problem: Crash when placing a sign in a deleted buffer.
13620Solution: Check for missing buffer name. (Dominique Pelle). Add a test.
13621Files: src/ex_cmds.c, src/testdir/test_signs.vim
13622
13623Patch 7.4.2226
13624Problem: The field names used by getbufinfo(), gettabinfo() and
13625 getwininfo() are not consistent.
13626Solution: Use bufnr, winnr and tabnr. (Yegappan Lakshmanan)
13627Files: runtime/doc/eval.txt, src/evalfunc.c,
13628 src/testdir/test_bufwintabinfo.vim
13629
13630Patch 7.4.2227
13631Problem: Tab page tests are old style.
13632Solution: Change into new style tests. (Hirohito Higashi)
13633Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/test62.in,
13634 src/testdir/test62.ok, src/testdir/test_alot.vim,
13635 src/testdir/test_tabpage.vim
13636
13637Patch 7.4.2228
13638Problem: Test files have inconsistent modelines.
13639Solution: Don't set 'tabstop' to 2, use 'sts' and 'sw'.
13640Files: src/testdir/README.txt, src/testdir/test_backspace_opt.vim,
13641 src/testdir/test_digraph.vim, src/testdir/test_gn.vim
13642 src/testdir/test_help_tagjump.vim,
13643 src/testdir/test_increment_dbcs.vim,
13644 src/testdir/test_increment.vim, src/testdir/test_match.vim,
13645 src/testdir/test_tagjump.vim, src/testdir/test_window_cmd.vim,
13646 src/testdir/test_regexp_latin.vim, src/testdir/test_timers.vim
13647
13648Patch 7.4.2229
13649Problem: Startup test fails on Solaris.
13650Solution: Recognize a character device. (Danek Duvall)
13651Files: src/buffer.c, src/fileio.c, src/proto/fileio.pro, src/vim.h
13652
13653Patch 7.4.2230
13654Problem: There is no equivalent of 'smartcase' for a tag search.
13655Solution: Add value "followscs" and "smart" to 'tagcase'. (Christian
13656 Brabandt, closes #712) Turn tagcase test into new style.
13657Files: runtime/doc/options.txt, runtime/doc/tagsrch.txt, src/option.h,
13658 src/tag.c, src/search.c, src/proto/search.pro,
13659 src/testdir/test_tagcase.in, src/testdir/test_tagcase.ok,
13660 src/testdir/test_tagcase.vim, src/Makefile,
13661 src/testdir/Make_all.mak, src/testdir/test_alot.vim
13662
13663Patch 7.4.2231
13664Problem: ":oldfiles" output is a very long list.
13665Solution: Add a pattern argument. (Coot, closes #575)
13666Files: runtime/doc/starting.txt, src/ex_cmds.h, src/eval.c,
13667 src/ex_cmds.c, src/proto/eval.pro, src/proto/ex_cmds.pro,
13668 src/testdir/test_viminfo.vim
13669
13670Patch 7.4.2232
13671Problem: The default ttimeoutlen is very long.
13672Solution: Use "100". (Hirohito Higashi)
13673Files: runtime/defaults.vim
13674
13675Patch 7.4.2233
13676Problem: Crash when using funcref() with invalid name. (Dominique Pelle)
13677Solution: Check for NULL translated name.
13678Files: src/evalfunc.c, src/testdir/test_expr.vim
13679
13680Patch 7.4.2234
13681Problem: Can't build with +eval but without +quickfix. (John Marriott)
13682Solution: Move skip_vimgrep_pat() to separate #ifdef block.
13683Files: src/quickfix.c
13684
13685Patch 7.4.2235
13686Problem: submatch() does not check for a valid argument.
13687Solution: Give an error if the argument is out of range. (Dominique Pelle)
13688Files: src/evalfunc.c, src/testdir/test_expr.vim
13689
13690Patch 7.4.2236
13691Problem: The 'langnoremap' option leads to double negatives. And it does
13692 not work for the last character of a mapping.
13693Solution: Add 'langremap' with the opposite value. Keep 'langnoremap' for
13694 backwards compatibility. Make it work for the last character of a
13695 mapping. Make the test work.
13696Files: runtime/doc/options.txt, runtime/defaults.vim, src/option.c,
13697 src/option.h, src/macros.h, src/testdir/test_mapping.vim
13698
13699Patch 7.4.2237
13700Problem: Can't use "." and "$" with ":tab".
13701Solution: Support a range for ":tab". (Hirohito Higashi)
13702Files: runtime/doc/tabpage.txt, src/ex_docmd.c,
13703 src/testdir/test_tabpage.vim
13704
13705Patch 7.4.2238
13706Problem: With SGR mouse reporting (suckless terminal) the mouse release and
13707 scroll up/down is confused.
13708Solution: Don't see a release as a scroll up/down. (Ralph Eastwood)
13709Files: src/term.c
13710
13711Patch 7.4.2239
13712Problem: Warning for missing declaration of skip_vimgrep_pat(). (John
13713 Marriott)
13714Solution: Move it to another file.
13715Files: src/quickfix.c, src/proto/quickfix.pro, src/ex_cmds.c,
13716 src/proto/ex_cmds.pro
13717
13718Patch 7.4.2240
13719Problem: Tests using the sleep time can be flaky.
13720Solution: Use reltime() if available. (Partly by Shane Harper)
13721Files: src/testdir/shared.vim, src/testdir/test_timers.vim
13722
13723Patch 7.4.2241 (after 7.4.2240)
13724Problem: Timer test sometimes fails.
13725Solution: Increase the maximum time for repeating timer.
13726Files: src/testdir/test_timers.vim
13727
13728Patch 7.4.2242 (after 7.4.2240)
13729Problem: Timer test sometimes fails.
13730Solution: Increase the maximum time for callback timer test.
13731Files: src/testdir/test_timers.vim
13732
13733Patch 7.4.2243
13734Problem: Warning for assigning negative value to unsigned. (Danek Duvall)
13735Solution: Make cterm_normal_fg_gui_color and _bg_ guicolor_T, cast to long_u
13736 only when an unsigned is needed.
13737Files: src/structs.h, src/globals.h, src/screen.c, src/term.c,
13738 src/syntax.c, src/gui_gtk_x11.c, src/gui.c, src/gui_mac.c,
13739 src/gui_photon.c, src/gui_w32.c, src/gui_x11.c,
13740 src/proto/term.pro, src/proto/gui_gtk_x11.pro,
13741 src/proto/gui_mac.pro, src/proto/gui_photon.pro,
13742 src/proto/gui_w32.pro, src/proto/gui_x11.pro
13743
13744Patch 7.4.2244
13745Problem: Adding pattern to ":oldfiles" is not a generic solution.
13746Solution: Add the ":filter /pat/ cmd" command modifier. Only works for some
13747 commands right now.
13748Files: src/structs.h, src/ex_docmd.c, src/ex_cmds.h, src/message.c,
13749 src/proto/message.pro, runtime/doc/starting.txt,
13750 runtime/doc/various.txt, src/testdir/test_viminfo.vim,
13751 src/testdir/test_alot.vim, src/testdir/test_filter_cmd.vim,
13752 src/Makefile
13753
13754Patch 7.4.2245 (after 7.4.2244)
13755Problem: Filter test fails.
13756Solution: Include missing changes.
13757Files: src/buffer.c
13758
13759Patch 7.4.2246 (after 7.4.2244)
13760Problem: Oldfiles test fails.
13761Solution: Include missing changes.
13762Files: src/ex_cmds.c
13763
13764Patch 7.4.2247 (after 7.4.2244)
13765Problem: Tiny build fails. (Tony Mechelynck)
13766Solution: Remove #ifdef.
13767Files: src/ex_cmds.c
13768
13769Patch 7.4.2248
13770Problem: When cancelling the :ptjump prompt a preview window is opened for
13771 a following command.
13772Solution: Reset g_do_tagpreview. (Hirohito Higashi) Add a test. Avoid that
13773 the test runner gets stuck in trying to close a window.
13774Files: src/tag.c, src/testdir/test_tagjump.vim, src/testdir/runtest.vim
13775
13776Patch 7.4.2249
13777Problem: Missing colon in error message.
13778Solution: Add the colon. (Dominique Pelle)
13779Files: src/userfunc.c
13780
13781Patch 7.4.2250
13782Problem: Some error messages cannot be translated.
13783Solution: Enclose them in _() and N_(). (Dominique Pelle)
13784Files: src/channel.c, src/evalfunc.c, src/ex_cmds.c, src/spell.c,
13785 src/window.c
13786
13787Patch 7.4.2251
13788Problem: In rare cases diffing 4 buffers is not enough.
13789Solution: Raise the limit to 8. (closes #1000)
13790Files: src/structs.h, runtime/doc/diff.txt
13791
13792Patch 7.4.2252
13793Problem: Compiler warnings for signed/unsigned in expression.
13794Solution: Remove type cast. (Dominique Pelle)
13795Files: src/vim.h
13796
13797Patch 7.4.2253
13798Problem: Check for Windows 3.1 will always return false. (Christian
13799 Brabandt)
13800Solution: Remove the dead code.
13801Files: src/gui_w32.c, src/evalfunc.c, src/ex_cmds.c, src/option.c,
13802 src/os_win32.c, src/version.c, src/proto/gui_w32.pro
13803
13804Patch 7.4.2254
13805Problem: Compiler warnings in MzScheme code.
13806Solution: Add UNUSED. Remove unreachable code.
13807Files: src/if_mzsch.c
13808
13809Patch 7.4.2255
13810Problem: The script that checks translations can't handle plurals.
13811Solution: Check for plural msgid and msgstr entries. Leave the cursor on
13812 the first error.
13813Files: src/po/check.vim
13814
13815Patch 7.4.2256
13816Problem: Coverity complains about null pointer check.
13817Solution: Remove wrong and superfluous error check.
13818Files: src/eval.c
13819
13820Patch 7.4.2257
13821Problem: Coverity complains about not checking for NULL.
13822Solution: Check for out of memory.
13823Files: src/if_py_both.h
13824
13825Patch 7.4.2258
13826Problem: Two JSON messages are sent without a separator.
13827Solution: Separate messages with a NL. (closes #1001)
13828Files: src/json.c, src/channel.c, src/vim.h, src/testdir/test_channel.py,
13829 src/testdir/test_channel.vim, runtime/doc/channel.txt
13830
13831Patch 7.4.2259
13832Problem: With 'incsearch' can only see the next match.
13833Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian
13834 Brabandt)
13835Files: runtime/doc/cmdline.txt, src/ex_getln.c, src/testdir/Make_all.mak,
13836 src/testdir/test_search.vim, src/Makefile
13837
13838Patch 7.4.2260 (after 7.4.2258)
13839Problem: Channel test is flaky.
13840Solution: Add a newline to separate JSON messages.
13841Files: src/testdir/test_channel.vim
13842
13843Patch 7.4.2261 (after 7.4.2259)
13844Problem: Build fails with small features.
13845Solution: Move "else" inside the #ifdef.
13846Files: src/ex_getln.c
13847
13848Patch 7.4.2262
13849Problem: Fail to read register content from viminfo if it is 438 characters
13850 long. (John Chen)
13851Solution: Adjust the check for line wrapping. (closes #1010)
13852Files: src/testdir/test_viminfo.vim, src/ex_cmds.c
13853
13854Patch 7.4.2263
13855Problem: :filter does not work for many commands. Can only get matching
13856 messages.
13857Solution: Make :filter work for :command, :map, :list, :number and :print.
13858 Make ":filter!" show non-matching lines.
13859Files: src/getchar.c, src/ex_cmds.c, src/ex_cmds.h, src/ex_docmd.c,
13860 src/message.c, src/structs.h, src/testdir/test_filter_cmd.vim
13861
13862Patch 7.4.2264
13863Problem: When adding entries to an empty quickfix list the title is reset.
13864Solution: Improve handling of the title. (Yegappan Lakshmanan)
13865Files: src/testdir/test_quickfix.vim, src/quickfix.c
13866
13867Patch 7.4.2265
13868Problem: printf() isn't tested much.
13869Solution: Add more tests for printf(). (Dominique Pelle)
13870Files: src/testdir/test_expr.vim
13871
13872Patch 7.4.2266 (after 7.4.2265)
13873Problem: printf() test fails on Windows. "-inf" is not used.
13874Solution: Check for Windows-specific values for "nan". Add sign to "inf"
13875 when appropriate.
13876Files: src/message.c, src/testdir/test_expr.vim
13877
13878Patch 7.4.2267 (after 7.4.2266)
13879Problem: Build fails on MS-Windows.
13880Solution: Add define to get isinf().
13881Files: src/message.c
13882
13883Patch 7.4.2268 (after 7.4.2259)
13884Problem: Using CTRL-N and CTRL-P for incsearch shadows completion keys.
13885Solution: Use CTRL-T and CTRL-G instead.
13886Files: runtime/doc/cmdline.txt, src/ex_getln.c,
13887 src/testdir/test_search.vim
13888
13889Patch 7.4.2269
13890Problem: Using 'hlsearch' highlighting instead of matchpos if there is no
13891 search match.
13892Solution: Pass NULL as last item to next_search_hl() when searching for
13893 'hlsearch' match. (Shane Harper, closes #1013)
13894Files: src/screen.c, src/testdir/test_match.vim.
13895
13896Patch 7.4.2270
13897Problem: Insufficient testing for NUL bytes on a raw channel.
13898Solution: Add a test for writing and reading.
13899Files: src/testdir/test_channel.vim
13900
13901Patch 7.4.2271
13902Problem: Netbeans test doesn't read settings from file.
13903Solution: Use "-Xnbauth".
13904Files: src/testdir/test_netbeans.vim
13905
13906Patch 7.4.2272
13907Problem: getbufinfo(), getwininfo() and gettabinfo() are inefficient.
13908Solution: Instead of making a copy of the variables dictionary, use a
13909 reference.
13910Files: src/evalfunc.c
13911
13912Patch 7.4.2273
13913Problem: getwininfo() and getbufinfo() are inefficient.
13914Solution: Do not make a copy of all window/buffer-local options. Make it
13915 possible to get them with gettabwinvar() or getbufvar().
13916Files: src/evalfunc.c, src/eval.c, src/testdir/test_bufwintabinfo.vim,
13917 runtime/doc/eval.txt
13918
13919Patch 7.4.2274
13920Problem: Command line completion on "find **/filename" drops sub-directory.
13921Solution: Handle this case separately. (Harm te Hennepe, closes #932, closes
13922 #939)
13923Files: src/misc1.c, src/testdir/test_cmdline.vim
13924
13925Patch 7.4.2275
13926Problem: ":diffoff!" does not remove filler lines.
13927Solution: Force a redraw and invalidate the cursor. (closes #1014)
13928Files: src/diff.c, src/testdir/test_diffmode.vim
13929
13930Patch 7.4.2276
13931Problem: Command line test fails on Windows when run twice.
13932Solution: Wipe the buffer so that the directory can be deleted.
13933Files: src/testdir/test_cmdline.vim
13934
13935Patch 7.4.2277
13936Problem: Memory leak in getbufinfo() when there is a sign. (Dominique
13937 Pelle)
13938Solution: Remove extra vim_strsave().
13939Files: src/evalfunc.c
13940
13941Patch 7.4.2278
13942Problem: New users have no idea of the 'scrolloff' option.
13943Solution: Set 'scrolloff' in defaults.vim.
13944Files: runtime/defaults.vim
13945
13946Patch 7.4.2279
13947Problem: Starting diff mode with the cursor in the last line might end up
13948 only showing one closed fold. (John Beckett)
13949Solution: Scroll the window to show the same relative cursor position.
13950Files: src/diff.c, src/window.c, src/proto/window.pro
13951
13952Patch 7.4.2280
13953Problem: printf() doesn't handle infinity float values correctly.
13954Solution: Add a table with possible infinity values. (Dominique Pelle)
13955Files: src/message.c, src/testdir/test_expr.vim
13956
13957Patch 7.4.2281
13958Problem: Timer test fails sometimes.
13959Solution: Reduce minimum time by 1 msec.
13960Files: src/testdir/test_timers.vim
13961
13962Patch 7.4.2282
13963Problem: When a child process is very fast waiting 10 msec for it is
13964 noticeable. (Ramel Eshed)
13965Solution: Start waiting for 1 msec and gradually increase.
13966Files: src/os_unix.c
13967
13968Patch 7.4.2283
13969Problem: Part of ":oldfiles" command isn't cleared. (Lifepillar)
13970Solution: Clear the rest of the line. (closes 1018)
13971Files: src/ex_cmds.c
13972
13973Patch 7.4.2284
13974Problem: Comment in scope header file is outdated. (KillTheMule)
13975Solution: Point to the help instead. (closes #1017)
13976Files: src/if_cscope.h
13977
13978Patch 7.4.2285
13979Problem: Generated files are outdated.
13980Solution: Generate the files. Avoid errors when generating prototypes.
13981Files: src/if_mzsch.h, src/Makefile, src/option.h, src/os_mac_conv.c,
13982 src/os_amiga.c, src/vim.h, src/structs.h, src/os_win32.c,
13983 src/if_lua.c, src/proto/mbyte.pro
13984
Bram Moolenaardc1f1642016-08-16 18:33:43 +020013985[STILL MORE COMING!]
Bram Moolenaar03413f42016-04-12 21:07:15 +020013986
13987 vim:tw=78:ts=8:ft=help:norl: