Bram Moolenaar
2f5463df01
patch 8.0.0368: not all options are tested with a range of values
...
Problem: Not all options are tested with a range of values.
Solution: Generate a test script from the source code.
2017-02-25 20:40:46 +01:00
Bram Moolenaar
f7506cade4
patch 8.0.0367: types in include files may be inconsistent
...
Problem: If configure defines _LARGE_FILES some include files are included
before it is defined.
Solution: Include vim.h first. (Sam Thursfield, closes #1508 )
2017-02-25 16:01:49 +01:00
Bram Moolenaar
92769c3928
patch 8.0.0366: build fails with tiny features
...
Problem: Build fails with tiny features.
Solution: Add #ifdef.
2017-02-25 15:41:37 +01:00
Bram Moolenaar
95c526e1f6
patch 8.0.0365: might free a dict item that wasn't allocated
...
Problem: Might free a dict item that wasn't allocated.
Solution: Call dictitem_free(). (Nikolai Pavlov) Use this for
b:changedtick.
2017-02-25 14:59:34 +01:00
Bram Moolenaar
d3f78dc9eb
patch 8.0.0364: ]s does not move cursor with two spell errors in one line
...
Problem: ]s does not move cursor with two spell errors in one line. (Manuel
Ortega)
Solution: Don't stop search immediately when wrapped, search the line first.
(Ken Takata) Add a test.
2017-02-25 14:21:10 +01:00
Bram Moolenaar
3834e3d039
patch 8.0.0363: Travis is too slow to keep up with patches
...
Problem: Travis is too slow to keep up with patches.
Solution: Increase git depth to 20
2017-02-23 20:20:53 +01:00
Bram Moolenaar
10c6029e28
patch 8.0.0362: tests fail on MS-Windows
...
Problem: Tests fail on MS-Windows.
Solution: Use $*.vim instead of $<.
2017-02-23 20:17:13 +01:00
Bram Moolenaar
8be2fbb670
patch 8.0.0361: GUI initialisation is not sufficiently tested
...
Problem: GUI initialisation is not sufficiently tested.
Solution: Add the gui_init test. (Kazuki Kuriyama)
2017-02-23 19:32:47 +01:00
Bram Moolenaar
b544f3c81f
patch 8.0.0360: sometimes VimL is used instead of "Vim script"
...
Problem: Sometimes VimL is used, which is confusing.
Solution: Consistently use "Vim script". (Hirohito Higashi)
2017-02-23 19:03:28 +01:00
Bram Moolenaar
dc9a081712
patch 8.0.0359: 'number' and 'relativenumber' are not properly tested
...
Problem: 'number' and 'relativenumber' are not properly tested.
Solution: Add tests, change old style to new style tests. (Ozaki Kiichi,
closes #1447 )
2017-02-23 18:46:50 +01:00
Bram Moolenaar
60629d6425
patch 8.0.0358: invalid memory access in C-indent code
...
Problem: Invalid memory access in C-indent code.
Solution: Don't go over end of empty line. (Dominique Pelle, closes #1492 )
2017-02-23 18:08:56 +01:00
Bram Moolenaar
24922ec233
patch 8.0.0357: crash when setting 'guicursor' to weird value
...
Problem: Crash when setting 'guicursor' to weird value.
Solution: Avoid negative size. (Dominique Pelle, closes #1465 )
2017-02-23 17:59:22 +01:00
Bram Moolenaar
354796c19a
patch 8.0.0356: leaking memory when setting 'ttytype'
...
Problem: Leaking memory when setting 'ttytype'.
Solution: Get free_oldval from the right option entry.
2017-02-23 17:18:37 +01:00
Bram Moolenaar
187a4f2814
patch 8.0.0355: using uninitialized memory when 'isfname' is empty
...
Problem: Using uninitialized memory when 'isfname' is empty.
Solution: Don't call getpwnam() without an argument. (Dominique Pelle,
closes #1464 )
2017-02-23 17:07:14 +01:00
Bram Moolenaar
1c410400fa
patch 8.0.0354: test to check that setting termcap key fails sometimes
...
Problem: Test to check that setting termcap key fails sometimes.
Solution: Check for "t_k1" to exist. (Christian Brabandt, closes #1459 )
2017-02-23 15:20:03 +01:00
Bram Moolenaar
3457d295f4
patch 8.0.0353: if [RO] is translated it may be truncated
...
Problem: If [RO] in the status line is translated to a longer string, it is
trunctted to 4 bytes.
Solution: Skip over the resulting string. (Jente Hidskes, closes #1499 )
2017-02-23 14:55:59 +01:00
Bram Moolenaar
f06e5a549f
patch 8.0.0352: not easy to see when a typval needs to be cleared
...
Problem: The condition for when a typval needs to be cleared is too
complicated.
Solution: Init the type to VAR_UNKNOWN and clear it always.
2017-02-23 14:25:17 +01:00
Bram Moolenaar
218426896c
patch 8.0.0351: no test for concatenating an empty string
...
Problem: No test for concatenating an empty string that results from out of
bounds indexing.
Solution: Add a simple test.
2017-02-23 13:50:38 +01:00
Bram Moolenaar
ae177b7166
patch 8.0.0350: not enough test coverage for Perl
...
Problem: Not enough test coverage for Perl.
Solution: Add more Perl tests. (Dominique Perl, closes #1500 )
2017-02-23 13:45:57 +01:00
Bram Moolenaar
fe344a9875
patch 8.0.0349: redrawing errors with GTK 3
...
Problem: Redrawing errors with GTK 3.
Solution: When updating, first clear all rectangles and then draw them.
(Kazunobu Kuriyama, Christian Ludwig, closes #848 )
2017-02-23 12:20:35 +01:00
Bram Moolenaar
b7a59906d7
patch 8.0.0348: using shadow dir on Mac lack +clipboard
...
Problem: When building with a shadow directory on macOS lacks the
+clipboard feature.
Solution: Link *.m files, specifically os_macosx.m. (Kazunobu Kuriyama)
2017-02-22 22:04:04 +01:00
Bram Moolenaar
d099e03370
patch 8.0.0347: when using completion comment leader wont work
...
Problem: When using CTRL-X CTRL-U inside a comment, the use of the comment
leader may not work. (Klement)
Solution: Save and restore did_ai. (Christian Brabandt, closes #1494 )
2017-02-21 23:00:36 +01:00
Bram Moolenaar
bfd30590f6
patch 8.0.0346: Vim relies on limits.h to be included indirectly
...
Problem: Vim relies on limits.h to be included indirectly, but on Solaris 9
it may not be. (Ben Fritz)
Solution: Always include limits.h.
2017-02-21 21:57:06 +01:00
Bram Moolenaar
3a25773772
patch 8.0.0345: islocked('d.changedtick') does not work
...
Problem: islocked('d.changedtick') does not work.
Solution: Make it work.
2017-02-21 20:47:13 +01:00
Bram Moolenaar
49439c4cdf
patch 8.0.0344: unlet command leaks memory
...
Problem: Unlet command leaks memory. (Nikolai Pavlov)
Solution: Free the memory on error. (closes #1497 )
2017-02-20 23:07:05 +01:00
Bram Moolenaar
e7877fe0de
patch 8.0.0343: b:changedtick can be unlocked
...
Problem: b:changedtick can be unlocked, even though it has no effect.
(Nikolai Pavlov)
Solution: Add a check and error E940. (closes #1496 )
2017-02-20 22:35:33 +01:00
Bram Moolenaar
673911457d
patch 8.0.0342: double free with EXITFREE and setting 'ttytype'
...
Problem: Double free when compiled with EXITFREE and setting 'ttytype'.
Solution: Avoid setting P_ALLOCED on 'ttytype'. (Dominique Pelle,
closes #1461 )
2017-02-19 21:07:04 +01:00
Bram Moolenaar
d56a79d339
patch 8.0.0341: undo does not work properly when using completion
...
Problem: When using complete() and typing a character undo is saved after
the character was inserted. (Shougo)
Solution: Save for undo before inserting the character.
2017-02-19 15:26:18 +01:00
Bram Moolenaar
5acff71d3b
patch 8.0.0340: not checking return valud of dict_add()
...
Problem: Not checking return valud of dict_add(). (Coverity)
Solution: Handle a failure.
2017-02-19 13:55:02 +01:00
Bram Moolenaar
46522af724
patch 8.0.0339: illegal memory access with vi'
...
Problem: Illegal memory access with vi'
Solution: For quoted text objects bail out if the Visual area spans more
than one line.
2017-02-18 23:12:01 +01:00
Bram Moolenaar
803452046b
patch 8.0.0338: :recover test fails on MS-Windows
...
Problem: :recover test fails on MS-Windows.
Solution: Use non-existing directory on MS-Windows.
2017-02-18 22:43:19 +01:00
Bram Moolenaar
c525e3a1c2
patch 8.0.0337: invalid memory access in :recover command
...
Problem: Invalid memory access in :recover command.
Solution: Avoid access before directory name. (Dominique Pelle,
closes #1488 )
2017-02-18 16:59:02 +01:00
Bram Moolenaar
8c50d50b6e
patch 8.0.0336: flags of :substitute not sufficiently tested
...
Problem: Flags of :substitute not sufficiently tested.
Solution: Test up to two letter flag combinations. (James McCoy, closes
#1479 )
2017-02-17 18:28:24 +01:00
Bram Moolenaar
507647da31
patch 8.0.0335: functions test fails
...
Problem: Functions test fails.
Solution: Use the right buffer number.
2017-02-17 16:43:49 +01:00
Bram Moolenaar
79518e2ace
patch 8.0.0334: can't access b:changedtick from a dict reference
...
Problem: Can't access b:changedtick from a dict reference.
Solution: Make changedtick a member of the b: dict. (inspired by neovim
#6112 )
2017-02-17 16:31:35 +01:00
Bram Moolenaar
226c534291
patch 8.0.0333: illegal memory access when 'complete' ends in a backslash
...
Problem: Illegal memory access when 'complete' ends in a backslash.
Solution: Check for trailing backslash. (Dominique Pelle, closes #1478 )
2017-02-17 14:53:15 +01:00
Bram Moolenaar
4e9dbc74df
patch 8.0.0332: GUI test fails on some systems
...
Problem: GUI test fails on some systems.
Solution: Try different language settings. (Kazunobu Kuriyama)
2017-02-17 13:44:48 +01:00
Bram Moolenaar
343b8c0429
patch 8.0.0331: restoring help snapshot accesses freed memory
...
Problem: Restoring help snapshot accesses freed memory. (Dominique Pelle)
Solution: Don't restore a snapshot when the window closes.
2017-02-17 12:04:56 +01:00
Bram Moolenaar
84b2a38145
patch 8.0.0330: illegal memory access after "vapo"
...
Problem: Illegal memory access after "vapo". (Dominique Pelle)
Solution: Fix the cursor column.
2017-02-17 11:40:00 +01:00
Bram Moolenaar
1043467482
patch 8.0.0329: xfontset and guifontwide are not tested
...
Problem: Xfontset and guifontwide are not tested.
Solution: Add tests. (Kazunobu Kuriyama)
2017-02-12 19:59:08 +01:00
Bram Moolenaar
23a5558cfd
patch 8.0.0328: the "zero count" error doesn't have a number
...
Problem: The "zero count" error doesn't have a number. (Hirohito Higashi)
Solution: Give it a number and be more specific about the error.
2017-02-12 18:45:25 +01:00
Bram Moolenaar
75c19464ed
patch 8.0.0327: error message in cmdline window is not translated
...
Problem: The E11 error message in the command line window is not
translated.
Solution: use _(). (Hirohito Higashi)
2017-02-12 18:34:05 +01:00
Bram Moolenaar
24f8f543d4
patch 8.0.0326: packadd test uses wrong directory name
...
Problem: Packadd test uses wrong directory name.
Solution: Use the variable name value. (Hirohito Higashi)
2017-02-11 23:00:36 +01:00
Bram Moolenaar
913727e567
patch 8.0.0325: packadd test does not clean up symlink
...
Problem: Packadd test does not clean up symlink.
Solution: Delete the link. (Hirohito Higashi)
2017-02-11 11:34:58 +01:00
Bram Moolenaar
f1f6f3f7df
patch 8.0.0324: illegal memory access with a wrong yank range
...
Problem: Illegal memory access with "1;y".
Solution: Call check_cursor() instead of check_cursor_lnum(). (Dominique
Pelle, closes #1455 )
2017-02-09 22:28:20 +01:00
Bram Moolenaar
31eb139b88
patch 8.0.0323: one second pause when running cmdline test
...
Problem: When running the command line tests there is a one second wait.
Solution: Change an Esc to Ctrl-C. (Yegappan Lakshmanan)
2017-02-09 21:44:03 +01:00
Bram Moolenaar
399c297aa9
patch 8.0.0322: possible overflow with corrupted spell file
...
Problem: Possible overflow with spell file where the tree length is
corrupted.
Solution: Check for an invalid length (suggested by shqking)
2017-02-09 21:07:12 +01:00
Bram Moolenaar
8cc2a9c062
patch 8.0.0321: errors when trying to use scripts in tiny version
...
Problem: When using the tiny version trying to load the matchit plugin
gives an error. On MS-Windows some default mappings fail.
Solution: Add a check if the command used is available. (Christian Brabandt)
2017-02-09 20:22:30 +01:00
Bram Moolenaar
4d8505155e
patch 8.0.0320: warning for unused variable with small build
...
Problem: Warning for unused variable with small build.
Solution: Change #ifdef to exclude FEAT_CMDWIN. (Kazunobu Kuriyama)
2017-02-09 18:25:14 +01:00
Bram Moolenaar
190b04cdd9
patch 8.0.0319: insert mode completion does not respect 'backspace'
...
Problem: Insert mode completion does not respect "start" in 'backspace'.
Solution: Check whether backspace can go before where insert started.
(Hirohito Higashi)
2017-02-09 17:37:03 +01:00