Bram Moolenaar
205f9f5e2d
updated for version 7.3.692
...
Problem: Can't build GTK version with GTK 2.0.
Solution: Put GtkFileFilter declaration in the right place. (Yegappan
Lakshmanan)
v7.3.692
2012-10-18 05:18:32 +02:00
Bram Moolenaar
b88adbf844
updated for version 7.3.691
...
Problem: State specific to the Python thread is discarded.
Solution: Keep state between threads. (Paul)
v7.3.691
2012-10-14 05:20:12 +02:00
Bram Moolenaar
dac7569612
updated for version 7.3.690
...
Problem: When the current directory name is exactly the maximum path length
Vim may crash.
Solution: Only add "/" when there is room. (Danek Duvall)
v7.3.690
2012-10-14 04:35:45 +02:00
Bram Moolenaar
d04da7cb4a
updated for version 7.3.689
...
Problem: MzScheme and Lua may use a NULL string.
Solution: Use an empty string instead of NULL. (Yukihiro Nakadaira)
v7.3.689
2012-10-14 03:41:59 +02:00
Bram Moolenaar
7bc4f93c07
updated for version 7.3.688
...
Problem: Python 3.3 is not supported.
Solution: Add Python 3.3 support (Ken Takata)
v7.3.688
2012-10-14 03:22:56 +02:00
Bram Moolenaar
172ddb60c2
updated for version 7.3.687
...
Problem: Test 16 fails when $DISPLAY is not set.
Solution: Skip the test when $DISPLAY is not set.
v7.3.687
2012-10-11 04:44:33 +02:00
Bram Moolenaar
b73568149f
updated for version 7.3.686
...
Problem: Using CTRL-\ e mappings is useful also when entering an
expression, but it doesn't work. (Marcin Szamotulski)
Solution: Allow using CTRL-\ e when entering an expression if it was not
typed.
v7.3.686
2012-10-11 04:04:37 +02:00
Bram Moolenaar
0c17875ef3
updated for version 7.3.685
...
Problem: No test for what patch 7.3.673 fixes.
Solution: Add a test. (Christian Brabandt)
v7.3.685
2012-10-11 03:35:45 +02:00
Bram Moolenaar
b35c338f96
updated for version 7.3.684
...
Problem: "make test" does not delete lua.vim.
Solution: Add lua.vim to the clean target. (Simon Ruderich)
v7.3.684
2012-10-06 19:10:35 +02:00
Bram Moolenaar
0c5fa7d740
Updated runtime files.
2012-10-05 22:26:30 +02:00
Bram Moolenaar
d1f13fd597
updated for version 7.3.683
...
Problem: ":python" may crash when vimbindeval() returns None.
Solution: Check for v_string to be NULL. (Yukihiro Nakadaira)
v7.3.683
2012-10-05 21:30:07 +02:00
Bram Moolenaar
4ccb265bd4
updated for version 7.3.682
...
Problem: Compiler complains about incompatible types.
Solution: Remove type casts. (hint by Danek Duvall)
v7.3.682
2012-10-04 22:38:37 +02:00
Bram Moolenaar
7d11244c99
updated for version 7.3.681
...
Problem: List of distributed files picks up backup files.
Solution: Make tutor patterns more specific.
v7.3.681
2012-10-03 21:48:43 +02:00
Bram Moolenaar
97cc2384c0
Update runtime files.
2012-10-03 21:46:54 +02:00
Bram Moolenaar
14f5827940
updated for version 7.3.680
...
Problem: Some files missing in the list of distributed files.
Solution: Add lines for new files.
v7.3.680
2012-10-03 21:33:41 +02:00
Bram Moolenaar
8139889a5f
updated for version 7.3.679
...
Problem: Ruby detection uses Config, newer Ruby versions use RbConfig.
Solution: Detect the need to use RbConfig. (Vit Ondruch)
v7.3.679
2012-10-03 21:09:35 +02:00
Bram Moolenaar
6f3d6b48a6
updated for version 7.3.678
...
Problem: Ruby .so name may not be correct.
Solution: Use the LIBRUBY_SO entry from the config. (Vit Ondruch)
v7.3.678
2012-10-03 18:50:00 +02:00
Bram Moolenaar
e1704bada4
updated for version 7.3.677
...
Problem: buf_spname() is used inconsistently.
Solution: Make the return type a char_u pointer. Check the size of the
returned string.
v7.3.677
2012-10-03 18:25:00 +02:00
Bram Moolenaar
b213da0b57
updated for version 7.3.676
...
Problem: Ruby compilation on Windows 32 bit doesn't work.
Solution: Only use some functions for 64 bit. (Ken Takata)
v7.3.676
2012-10-03 18:06:59 +02:00
Bram Moolenaar
ec3cfeb199
updated for version 7.3.675
...
Problem: Using uninitialized memory with very long file name.
Solution: Put NUL after text when it is truncated. (ZyX)
v7.3.675
2012-10-03 17:12:47 +02:00
Bram Moolenaar
1e91f2606b
updated for version 7.3.674
...
Problem: Can't compile with Lua/dyn on Cygwin.
Solution: Adjust configure to use the right library name. (Ken Takata)
v7.3.674
2012-10-03 14:48:08 +02:00
Bram Moolenaar
718f007499
updated for version 7.3.673
...
Problem: Using "gN" while 'selection' is "exclusive" misses one character.
(Ben Fritz)
Solution: Check the direction when compensating for exclusive selection.
(Christian Brabandt)
v7.3.673
2012-10-03 13:35:51 +02:00
Bram Moolenaar
d09acef44b
Updated runtime files.
2012-09-21 14:54:30 +02:00
Bram Moolenaar
66b7985ec9
updated for version 7.3.672
...
Problem: Not possible to lock/unlock lists in Python interface.
Solution: Add .locked and .scope attributes. (ZyX)
v7.3.672
2012-09-21 14:00:35 +02:00
Bram Moolenaar
770456589e
updated for version 7.3.671
...
Problem: More Python code can be shared between Python 2 and 3.
Solution: Move code to if_py_both.h. (ZyX)
v7.3.671
2012-09-21 13:46:06 +02:00
Bram Moolenaar
696c2116dc
updated for version 7.3.670
...
Problem: Python: memory leaks when there are exceptions.
Solution: Add DICTKEY_UNREF in the right places. (ZyX)
v7.3.670
2012-09-21 13:43:14 +02:00
Bram Moolenaar
f94a13c286
updated for version 7.3.669
...
Problem: When building with Cygwin loading Python dynamically fails.
Solution: Use DLLLIBRARY instead of INSTSONAME. (Ken Takata)
v7.3.669
2012-09-21 13:26:49 +02:00
Bram Moolenaar
01c10524d2
updated for version 7.3.668
...
Problem: Building with Perl loaded dynamically still uses static library.
Solution: Adjust use of PL_thr_key. (Ken Takata)
v7.3.668
2012-09-21 12:50:51 +02:00
Bram Moolenaar
f5fe79a5f3
updated for version 7.3.667
...
Problem: Unused variables in Perl interface.
Solution: Adjust #ifdefs.
v7.3.667
2012-09-21 12:42:44 +02:00
Bram Moolenaar
6f586de755
updated for version 7.3.666
...
Problem: With MSVC 11 Win32.mak is not found.
Solution: Add the SDK_INCLUDE_DIR variable. (Raymond Ko)
v7.3.666
2012-09-18 22:00:08 +02:00
Bram Moolenaar
2b017fae8f
updated for version 7.3.665
...
Problem: MSVC 11 is not supported.
Solution: Recognize MSVC 11. (Raymond Ko)
v7.3.665
2012-09-18 18:27:12 +02:00
Bram Moolenaar
4fabd7dd4a
updated for version 7.3.664
...
Problem: Buffer overflow in unescaping text. (Raymond Ko)
Solution: Limit check for multi-byte character to 4 bytes.
v7.3.664
2012-09-18 18:03:37 +02:00
Bram Moolenaar
be1e9e9fc1
updated for version 7.3.663
...
Problem: End of color scheme name not clear in E185. (Aaron Lewis)
Solution: Put the name in single quotes.
v7.3.663
2012-09-18 16:47:07 +02:00
Bram Moolenaar
2623b4f412
updated for version 7.3.662
...
Problem: Can't build Ruby interface with Ruby 1.9.3.
Solution: Add missing functions. (V. Ondruch)
v7.3.662
2012-09-18 16:36:32 +02:00
Bram Moolenaar
e8cdcef875
updated for version 7.3.661
...
Problem: SEGV in Python code.
Solution: Initialize len to zero. Use the right function depending on
version. (Maxim Philippov)
v7.3.661
2012-09-12 20:21:43 +02:00
Bram Moolenaar
fca93c093e
updated for version 7.3.660
...
Problem: ":help !" jumps to help for ":!".
Solution: Adjust check for tag header line. (Andy Wokula)
v7.3.660
2012-09-12 18:19:46 +02:00
Bram Moolenaar
c11073c9aa
updated for version 7.3.659
...
Problem: Recent Python changes are not tested.
Solution: Add tests for Python bindings. (ZyX)
v7.3.659
2012-09-05 19:17:42 +02:00
Bram Moolenaar
afa6b9af86
updated for version 7.3.658
...
Problem: NUL bytes truncate strings when converted from Python.
Solution: Handle truncation as an error. (ZyX)
v7.3.658
2012-09-05 19:09:11 +02:00
Bram Moolenaar
cdab905136
updated for version 7.3.657
...
Problem: Python bindings silently truncate string values containing NUL.
Solution: Fail when a string contains NUL. (ZyX)
v7.3.657
2012-09-05 19:03:56 +02:00
Bram Moolenaar
77fceb8908
updated for version 7.3.656
...
Problem: Internal error in :pyeval.
Solution: Handle failed object conversion. (ZyX)
v7.3.656
2012-09-05 18:54:48 +02:00
Bram Moolenaar
e48a2dd3af
updated for version 7.3.655
...
Problem: 64 bit MingW xpm .a file is missing.
Solution: Add the file. (Sergey Khorev)
v7.3.655
2012-09-05 18:49:24 +02:00
Bram Moolenaar
231e1a1723
updated for version 7.3.654
...
Problem: When creating a Vim dictionary from Python objects an empty key
might be used.
Solution: Do not use empty keys, throw an IndexError. (ZyX)
v7.3.654
2012-09-05 18:45:28 +02:00
Bram Moolenaar
e2db4361d2
updated for version 7.3.653
...
Problem: MingW needs build rule for included XPM files. Object directory
for 32 and 64 builds is the same, also for MSVC.
Solution: Add MingW build rule to use included XPM files. Add the CPU or
architecture to the object directory name. (Sergey Khorev)
v7.3.653
2012-09-05 17:57:39 +02:00
Bram Moolenaar
ac0ddc15e9
updated for version 7.3.652
...
Problem: Workaround for Python crash isn't perfect.
Solution: Change the type of the length argument. (Sean Estabrooks)
v7.3.652
2012-09-05 17:28:21 +02:00
Bram Moolenaar
7c0a86b1e8
updated for version 7.3.651
...
Problem: Completion after ":help \{-" gives an error message.
Solution: Prepend a backslash.
v7.3.651
2012-09-05 15:15:07 +02:00
Bram Moolenaar
b4a80cdd91
updated for version 7.3.650
...
Problem: Completion after ":help \{-" gives an error message and messes up
the command line.
Solution: Cancel the tag search if the pattern can't be compiled. (Yasuhiro
Matsumoto)
v7.3.650
2012-09-05 15:03:30 +02:00
Bram Moolenaar
7c82130a76
updated for version 7.3.649
...
Problem: When 'clipboard' is set to "unnamed" small deletes end up in the
numbered registers. (Ingo Karkat)
Solution: Use the original register name to decide whether to put a delete
in a numbered register. (Christian Brabandt)
v7.3.649
2012-09-05 14:18:45 +02:00
Bram Moolenaar
2c66669c33
updated for version 7.3.648
...
Problem: Crash when using a very long file name. (ZyX)
Solution: Properly check length of buffer space.
v7.3.648
2012-09-05 13:30:40 +02:00
Bram Moolenaar
57c0ea8692
updated for version 7.3.647
...
Problem: "gnd" doesn't work correctly in Visual mode.
Solution: Handle Visual mode differently in "gn". (Christian Brabandt)
v7.3.647
2012-09-05 12:16:45 +02:00
Bram Moolenaar
465748e411
updated for version 7.3.646
...
Problem: When reloading a buffer the undo file becomes unusable unless ":w"
is executed. (Dmitri Frank)
Solution: After reloading the buffer write the undo file. (Christian
Brabandt)
v7.3.646
2012-08-29 18:50:54 +02:00