- Jun 26, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: MS-Windows: confirm() dialog text may still not fit. Solution: Use GetTextWidthEnc() instead of GetTextWidth() in two more places. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: MS-Windows: confirm() dialog text may not fit. Solution: Use GetTextWidthEnc() instead of GetTextWidth(). (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: New regexp engine: back references in look-behind match don't work. (Lech Lorens) Solution: Copy the submatches before a recursive match.
-
- Jun 24, 2013
-
-
Bram Moolenaar authored
Problem: No failure when trying to use a number as a string. Solution: Give an error when StringToLine() is called with an instance of the wrong type. (Jun Takimoto)
-
Bram Moolenaar authored
Problem: Some test files missing from the distribution. Solution: Update the list of files.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Memory leak in findfile(). Solution: Free the memory. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Can't build with Python and MSVC10. Solution: Move #if outside of macro. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: Crash in Python interface on 64 bit machines. Solution: Change argument type of PyString_AsStringAndSize. (Taro Muraoka, Jun Takimoto)
-
- Jun 23, 2013
-
-
Bram Moolenaar authored
Problem: Python: non-import errors not handled correctly. Solution: Let non-ImportError exceptions pass the finder. (ZyX)
-
Bram Moolenaar authored
Problem: Python: WindowSetattr() missing support for NUMBER_UNSIGNED. Solution: Add NUMBER_UNSIGNED, add more tests. Various fixes. (ZyX)
-
Bram Moolenaar authored
Problem: In insert mode CTRL-] is not inserted, on the command-line it is. Solution: Don't insert CTRL-] on the command line. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Python: Strings are not marked for translation. Solution: Add N_() where appropriate. (ZyX)
-
Bram Moolenaar authored
Problem: Various Python problems. Solution: Fix VimTryEnd. Crash with debug build and PYTHONDUMPREFS=1. Memory leaks in StringToLine(), BufferMark() and convert_dl. (ZyX)
-
Bram Moolenaar authored
Problem: Python: inconsistencies in variable names. Solution: Rename variables. (ZyX)
-
Bram Moolenaar authored
Problem: Python: use of numbers not consistent. Solution: Add support for Number protocol. (ZyX)
-
Bram Moolenaar authored
Problem: Python: Exception messages are not clear. Solution: Make exception messages more verbose. (ZyX)
-
Bram Moolenaar authored
Problem: Python: not so easy to delete/restore translating. Solution: Make macros do translation of exception messages. (ZyX) Note: this breaks translations!
-
Bram Moolenaar authored
Problem: Python: various inconsistencies and problems. Solution: StringToLine now supports both bytes() and unicode() objects. Make function names consistant. Fix memory leak fixed in StringToLine. (ZyX)
-
Bram Moolenaar authored
Problem: Inconsistent string conversion. Solution: Use 'encoding' instead of utf-8. Use METH_O in place of METH_VARARGS where appropriate. (ZyX)
-
Bram Moolenaar authored
Problem: Python: duplicate code. Solution: Share code between OutputWrite() and OutputWritelines(). (ZyX)
-
- Jun 22, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warnings when building with Motif. Solution: Change set_label() argument. (Kazunobu Kuriyama)
-
- Jun 21, 2013
-
-
Bram Moolenaar authored
Problem: Clang gives warnings on xxd. Solution: Change how to use part of a string. (Dominique Pelle) Also avoid warning for return not reached.
-
- Jun 19, 2013
-
-
Bram Moolenaar authored
Problem: Tests fail on MS-Windows. Solution: Avoid depending on OS version. Use DOS commands instead of Unix commands. (Taro Muraoka, Ken Takata)
-
Bram Moolenaar authored
Problem: Cannot execute some tests from the src directoly. Solution: Add missing targets.
-
- Jun 18, 2013
-
-
Bram Moolenaar authored
Problem: When build flags change "make distclean" run into a configure error. Solution: When CFLAGS changes delete auto/config.cache. Also avoid adding duplicate text to flags.
-
- Jun 17, 2013
-
-
Bram Moolenaar authored
Problem: MS-Windows: When using wide font italic and bold are not included. Solution: Support wide-bold, wide-italic and wide-bold-italic. (Ken Takata, Taro Muraoka)
-
Bram Moolenaar authored
Problem: No test for using []] inside \%[]. Solution: Add a test.
-
Bram Moolenaar authored
Problem: "make test" on MS-Windows does not clean all temporary files and gives some unneccessary message. Solution: Clean the right files. Create .failed files. (Ken Takata)
-
Bram Moolenaar authored
Problem: New regexp engine: Can't handle \%[[ao]]. (Yukihiro Nakadaira) Solution: Support nested atoms inside \%[].
-
Bram Moolenaar authored
Problem: Configure can't find Motif on Ubuntu. Solution: Search for libXm in /usr/lib/*-linux-gnu.
-
Bram Moolenaar authored
Problem: Compiler warning for function not defined. Solution: Add #ifdef.
-
- Jun 16, 2013
-
-
Bram Moolenaar authored
Problem: Missing declaration for init_users() and realloc_post_list(). (Salman Halim) Solution: Add the declarations.
-
Bram Moolenaar authored
Problem: Can't build with small features and Python. Solution: Adjust #ifdefs.
-
Bram Moolenaar authored
Problem: "make test" on MS-Windows does not report failure like Unix does. Solution: Make it work like on Unix. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: MS-Windows: When 'encoding' differs from the current codepage ":hardcopy" does not work properly. Solution: Use TextOutW() and SetDlgItemTextW(). (Ken Takata)
-
Bram Moolenaar authored
Problem: 'backupcopy' default on MS-Windows is wrong when 'encoding' equals the current codepage. Solution: Change the #else block. (Ken Takata)
-
Bram Moolenaar authored
Problem: No completion for ":tabdo". Solution: Add tabdo to the list of modifiers. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Compiler warnings on MS-Windows. Solution: Add type cast. Move variable declaration. (Mike Williams)
-