Bram Moolenaar
683fa185a4
patch 7.4.945
...
Problem: New style testing is incomplete.
Solution: Add the runtest script to the list of distributed files.
Add the new functions to the function overview.
Rename the functions to match Vim function style.
Move undolevels testing into a new style test script.
v7.4.945
2015-11-30 21:38:24 +01:00
Bram Moolenaar
43345546ae
patch 7.4.944
...
Problem: Writing tests for Vim script is hard.
Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add
the v:errors variable. Add the runtest script. Add a first new
style test script.
v7.4.944
2015-11-29 17:35:35 +01:00
Bram Moolenaar
48a969b488
patch 7.4.943
...
Problem: Tests are not run.
Solution: Add test_writefile to makefiles. (Ken Takata)
v7.4.943
2015-11-28 14:29:26 +01:00
Bram Moolenaar
60422e68a3
patch 7.4.942
...
Problem: test_tagcase breaks for small builds.
Solution: Bail out of the test early. (Hirohito Higashi)
v7.4.942
2015-11-25 23:53:01 +01:00
Bram Moolenaar
d042dc825c
Update runtime files.
2015-11-24 19:18:36 +01:00
Bram Moolenaar
0f6562e903
patch 7.4.941
...
Problem: There is no way to ignore case only for tag searches.
Solution: Add the 'tagcase' option. (Gary Johnson)
v7.4.941
2015-11-24 18:48:14 +01:00
Bram Moolenaar
2a1b474fd8
patch 7.4.940
...
Problem: vt52 terminal codes are not correct.
Solution: Move entries outside of #if. (Random) Adjustments based on
documented codes.
v7.4.940
2015-11-24 18:15:51 +01:00
Bram Moolenaar
9a7d58e42e
patch 7.4.939
...
Problem: Memory leak when encountering a syntax error.
Solution: Free the memory. (Dominique Pelle)
v7.4.939
2015-11-24 17:23:56 +01:00
Bram Moolenaar
88e484bf1b
patch 7.4.938
...
Problem: X11 and GTK have moure mouse buttons than Vim supports.
Solution: Recognize more mouse buttons. (Benoit Pierre, closes #498 )
v7.4.938
2015-11-24 15:38:44 +01:00
Bram Moolenaar
5ad075c073
patch 7.4.937
...
Problem: Segfault reading unitialized memory.
Solution: Do not read match \z0, it does not exist. (Marius Gedminas, closes
#497 )
v7.4.937
2015-11-24 15:18:32 +01:00
Bram Moolenaar
294a7e55b0
patch 7.4.936
...
Problem: Crash when dragging with the mouse.
Solution: Add safety check for NULL pointer. Check mouse position for valid
value. (Hirohito Higashi)
v7.4.936
2015-11-22 19:39:38 +01:00
Bram Moolenaar
6040256d8b
patch 7.4.935
...
Problem: test_utf8 fails on MS-Windows when executed with gvim.
Solution: Use the insert flag on feedkeys() to put the string before the
":" that was already read when checking for available chars.
v7.4.935
2015-11-22 15:08:59 +01:00
Bram Moolenaar
7487792ab1
patch 7.4.934
...
Problem: Appveyor also builds on a tag push.
Solution: Add a skip_tags line. (Kenichi Ito, closes #489 )
v7.4.934
2015-11-21 17:15:33 +01:00
Bram Moolenaar
e4eda3bc71
patch 7.4.933
...
Problem: Crash when using longest completion match.
Solution: Fix array index.
v7.4.933
2015-11-21 16:28:50 +01:00
Bram Moolenaar
8f08dab18d
patch 7.4.932
...
Problem: test_utf8 has confusing dummy command.
Solution: Use a real command instead of a colon.
v7.4.932
2015-11-21 14:31:33 +01:00
Bram Moolenaar
cfcd1ddd10
patch 7.4.931
...
Problem: Test 94 fails on some systems.
Solution: Set 'encoding' to utf-8.
v7.4.931
2015-11-21 14:24:50 +01:00
Bram Moolenaar
e392eb41f8
Update runtime files.
2015-11-19 20:38:09 +01:00
Bram Moolenaar
97b0b0ec76
patch 7.4.930
...
Problem: MS-Windows: Most users appear not to like the window border.
Solution: Remove WS_EX_CLIENTEDGE. (Ian Halliday)
v7.4.930
2015-11-19 20:23:37 +01:00
Bram Moolenaar
d29c6fea94
patch 7.4.929
...
Problem: "gv" after paste selects one character less if 'selection' is
"exclusive".
Solution: Increment the end position. (Christian Brabandt)
v7.4.929
2015-11-19 20:11:54 +01:00
Bram Moolenaar
5d8afebb5b
patch 7.4.928
...
Problem: A clientserver message interrupts handling keys of a mapping.
Solution: Have mch_inchar() send control back to WaitForChar when it is
interrupted by server message. (James Kolb)
v7.4.928
2015-11-19 19:55:16 +01:00
Bram Moolenaar
9b1067e038
patch 7.4.927
...
Problem: Ruby crashes when there is a runtime error.
Solution: Use ruby_options() instead of ruby_process_options(). (Damien)
v7.4.927
2015-11-19 19:33:15 +01:00
Bram Moolenaar
4f8fa1633c
patch 7.4.926
...
Problem: Completing the longest match doesn't work properly with multi-byte
characters.
Solution: When using multi-byte characters use another way to find the
longest match. (Hirohito Higashi)
v7.4.926
2015-11-19 19:00:05 +01:00
Bram Moolenaar
a0ed84a268
patch 7.4.925
...
Problem: User may yank or put using the register being recorded in.
Solution: Add the recording register in the message. (Christian Brabandt,
closes #470 )
v7.4.925
2015-11-19 17:56:13 +01:00
Bram Moolenaar
32d03b34ac
patch 7.4.924
...
Problem: DEVELOPER_DIR gets reset by configure.
Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir
argument. (Kazuki Sakamoto, closes #482 )
v7.4.924
2015-11-19 13:46:48 +01:00
Bram Moolenaar
6a2697ffd7
patch 7.4.923
...
Problem: Prototypes not always generated.
Solution: Change #if to OR with PROTO.
v7.4.923
2015-11-19 13:14:30 +01:00
Bram Moolenaar
b4ff518d95
Updated runtime files.
2015-11-10 21:15:48 +01:00
Bram Moolenaar
1c2836e268
patch 7.4.922
...
Problem: Leaking memory with ":helpt {dir-not-exists}".
Solution: Free dirname. (Dominique Pelle)
v7.4.922
2015-11-10 21:05:48 +01:00
Bram Moolenaar
cd1c55f706
patch 7.4.921
...
Problem: Missing proto file update. (Randall W. Morris)
Solution: Add the missing line for mch_ishidden.
v7.4.921
2015-11-10 20:52:04 +01:00
Bram Moolenaar
a93f975e8b
patch 7.4.920
...
Problem: The rubydll option is not in the options window.
Solution: Add the rubydll option.
v7.4.920
2015-11-10 20:45:09 +01:00
Bram Moolenaar
d4ece23e2e
patch 7.4.919
...
Problem: The dll options are not in the options window.
Solution: Add the dll options. And other fixes.
v7.4.919
2015-11-10 19:48:14 +01:00
Bram Moolenaar
0796c0625f
patch 7.4.918
...
Problem: A digit in an option name has problems.
Solution: Rename 'python3dll' to 'pythonthreedll'.
v7.4.918
2015-11-10 19:41:37 +01:00
Bram Moolenaar
1be2ed6c11
patch 7.4.917
...
Problem: Compiler warning for comparing signed and unsigned.
Solution: Add a type cast.
v7.4.917
2015-11-10 19:11:58 +01:00
Bram Moolenaar
8648357841
patch 7.4.916
...
Problem: When running out of memory while copying a dict memory may be
freed twice. (ZyX)
Solution: Do not call the garbage collector when running out of memory.
v7.4.916
2015-11-10 19:04:23 +01:00
Bram Moolenaar
174674743d
patch 7.4.915
...
Problem: When removing from 'path' and then adding, a comma may go missing.
(Malcolm Rowe)
Solution: Fix the check for P_ONECOMMA. (closes #471 )
v7.4.915
2015-11-10 17:50:24 +01:00
Bram Moolenaar
98b30a473a
patch 7.4.914
...
Problem: New compiler warning: logical-not-parentheses
Solution: Silence the warning.
v7.4.914
2015-11-10 15:18:02 +01:00
Bram Moolenaar
72f4cc4a98
patch 7.4.913
...
Problem: No utf-8 support for the hangul input feature.
Solution: Add utf-8 support. (Namsh)
v7.4.913
2015-11-10 14:35:18 +01:00
Bram Moolenaar
e01f4f86ce
patch 7.4.912
...
Problem: Wrong indenting for C++ constructor.
Solution: Recognize ::. (Anhong)
v7.4.912
2015-11-10 14:06:53 +01:00
Bram Moolenaar
450ca4335e
patch 7.4.911
...
Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi)
Solution: Define the options.
v7.4.911
2015-11-10 13:30:39 +01:00
Bram Moolenaar
e7427f4b7e
patch 7.4.910
...
Problem: Compiler complains about type punned pointer.
Solution: Use another way to increment the ref count.
v7.4.910
2015-11-10 13:24:20 +01:00
Bram Moolenaar
de59ba33aa
patch 7.4.909
...
Problem: "make install" fails.
Solution: Only try installing desktop files if the destination directory
exists.
v7.4.909
2015-11-03 22:03:16 +01:00
Bram Moolenaar
a16f472edf
patch 7.4.908
...
Problem: Build error with MingW compiler. (Cesar Romani)
Solution: Change #if into #ifdef.
v7.4.908
2015-11-02 17:35:43 +01:00
Bram Moolenaar
d94464ee29
patch 7.4.907
...
Problem: Libraries for dynamically loading interfaces can only be defined
at compile time.
Solution: Add options to specify the dll names. (Kazuki Sakamoto,
closes #452 )
v7.4.907
2015-11-02 15:28:18 +01:00
Bram Moolenaar
8a52ba7918
patch 7.4.906
...
Problem: On MS-Windows the viminfo file is (always) given the hidden
attribute. (raulnac)
Solution: Check the hidden attribute in a different way. (Ken Takata)
v7.4.906
2015-11-02 14:45:56 +01:00
Bram Moolenaar
1d8d9c0bec
Add files in patch 7.4.904 missing from commit.
2015-11-02 13:29:53 +01:00
Bram Moolenaar
d424747d58
patch 7.4.905
...
Problem: Python interface can produce error "vim.message' object has no
attribute 'isatty'".
Solution: Add dummy isatty(), readable(), etc. (closes #464 )
v7.4.905
2015-11-02 13:28:59 +01:00
Bram Moolenaar
6407b3e80d
patch 7.4.904
...
Problem: Vim does not provide .desktop files.
Solution: Include and install .desktop files. (James McCoy, closes #455 )
v7.4.904
2015-11-02 12:50:55 +01:00
Bram Moolenaar
d7464be974
Updated runtime files.
2015-11-01 16:49:04 +01:00
Bram Moolenaar
7314efd87d
patch 7.4.903
...
Problem: MS-Windows: When 'encoding' differs from the current code page,
expandinig wildcards may cause illegal memory access.
Solution: Allocate a longer buffer. (Ken Takata)
v7.4.903
2015-10-31 15:32:52 +01:00
Bram Moolenaar
4c0aac5759
patch 7.4.902
...
Problem: Problems with using the MS-Windows console.
Solution: Revert patches 7.4.851, 7.4.876 and 7.4.886 until we find a better
solution. (suggested by Ken Takata)
v7.4.902
2015-10-30 16:46:55 +01:00
Bram Moolenaar
a0f849ee40
Update runtime files.
2015-10-30 14:37:44 +01:00