summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-10-21updated for version 7.3.697Bram Moolenaar
Problem: Leaking resources when setting GUI font. Solution: Free the font. (Ken Takata)
2012-10-21updated for version 7.3.696Bram Moolenaar
Problem: Message about added spell language can be wrong. Solution: Give correct message. Add g:menutrans_set_lang_to to allow for translation. (Jiri Sedlak)
2012-10-21updated for version 7.3.695Bram Moolenaar
Problem: Balloon cannot show multi-byte text. Solution: Properly deal with multi-byte characters. (Dominique Pelle)
2012-10-21updated for version 7.3.694Bram Moolenaar
Problem: Now that 'shiftwidth' may use the value of 'tabstop' it is not so easy to use in indent files. Solution: Add the shiftwidth() function. (so8res)
2012-10-21updated for version 7.3.693Bram Moolenaar
Problem: Can't make 'softtabstop' follow 'shiftwidth'. Solution: When 'softtabstop' is negative use the value of 'shiftwidth'. (so8res)
2012-10-18updated for version 7.3.692Bram Moolenaar
Problem: Can't build GTK version with GTK 2.0. Solution: Put GtkFileFilter declaration in the right place. (Yegappan Lakshmanan)
2012-10-14updated for version 7.3.691Bram Moolenaar
Problem: State specific to the Python thread is discarded. Solution: Keep state between threads. (Paul)
2012-10-14updated for version 7.3.690Bram Moolenaar
Problem: When the current directory name is exactly the maximum path length Vim may crash. Solution: Only add "/" when there is room. (Danek Duvall)
2012-10-14updated for version 7.3.689Bram Moolenaar
Problem: MzScheme and Lua may use a NULL string. Solution: Use an empty string instead of NULL. (Yukihiro Nakadaira)
2012-10-14updated for version 7.3.688Bram Moolenaar
Problem: Python 3.3 is not supported. Solution: Add Python 3.3 support (Ken Takata)
2012-10-11updated for version 7.3.687Bram Moolenaar
Problem: Test 16 fails when $DISPLAY is not set. Solution: Skip the test when $DISPLAY is not set.
2012-10-11updated for version 7.3.686Bram Moolenaar
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.
2012-10-11updated for version 7.3.685Bram Moolenaar
Problem: No test for what patch 7.3.673 fixes. Solution: Add a test. (Christian Brabandt)
2012-10-06updated for version 7.3.684Bram Moolenaar
Problem: "make test" does not delete lua.vim. Solution: Add lua.vim to the clean target. (Simon Ruderich)
2012-10-05updated for version 7.3.683Bram Moolenaar
Problem: ":python" may crash when vimbindeval() returns None. Solution: Check for v_string to be NULL. (Yukihiro Nakadaira)
2012-10-04updated for version 7.3.682Bram Moolenaar
Problem: Compiler complains about incompatible types. Solution: Remove type casts. (hint by Danek Duvall)
2012-10-03updated for version 7.3.681Bram Moolenaar
Problem: List of distributed files picks up backup files. Solution: Make tutor patterns more specific.
2012-10-03Update runtime files.Bram Moolenaar
2012-10-03updated for version 7.3.680Bram Moolenaar
Problem: Some files missing in the list of distributed files. Solution: Add lines for new files.
2012-10-03updated for version 7.3.679Bram Moolenaar
Problem: Ruby detection uses Config, newer Ruby versions use RbConfig. Solution: Detect the need to use RbConfig. (Vit Ondruch)
2012-10-03updated for version 7.3.678Bram Moolenaar
Problem: Ruby .so name may not be correct. Solution: Use the LIBRUBY_SO entry from the config. (Vit Ondruch)
2012-10-03updated for version 7.3.677Bram Moolenaar
Problem: buf_spname() is used inconsistently. Solution: Make the return type a char_u pointer. Check the size of the returned string.
2012-10-03updated for version 7.3.676Bram Moolenaar
Problem: Ruby compilation on Windows 32 bit doesn't work. Solution: Only use some functions for 64 bit. (Ken Takata)
2012-10-03updated for version 7.3.675Bram Moolenaar
Problem: Using uninitialized memory with very long file name. Solution: Put NUL after text when it is truncated. (ZyX)
2012-10-03updated for version 7.3.674Bram Moolenaar
Problem: Can't compile with Lua/dyn on Cygwin. Solution: Adjust configure to use the right library name. (Ken Takata)
2012-10-03updated for version 7.3.673Bram Moolenaar
Problem: Using "gN" while 'selection' is "exclusive" misses one character. (Ben Fritz) Solution: Check the direction when compensating for exclusive selection. (Christian Brabandt)
2012-09-21updated for version 7.3.672Bram Moolenaar
Problem: Not possible to lock/unlock lists in Python interface. Solution: Add .locked and .scope attributes. (ZyX)
2012-09-21updated for version 7.3.671Bram Moolenaar
Problem: More Python code can be shared between Python 2 and 3. Solution: Move code to if_py_both.h. (ZyX)
2012-09-21updated for version 7.3.670Bram Moolenaar
Problem: Python: memory leaks when there are exceptions. Solution: Add DICTKEY_UNREF in the right places. (ZyX)
2012-09-21updated for version 7.3.669Bram Moolenaar
Problem: When building with Cygwin loading Python dynamically fails. Solution: Use DLLLIBRARY instead of INSTSONAME. (Ken Takata)
2012-09-21updated for version 7.3.668Bram Moolenaar
Problem: Building with Perl loaded dynamically still uses static library. Solution: Adjust use of PL_thr_key. (Ken Takata)
2012-09-21updated for version 7.3.667Bram Moolenaar
Problem: Unused variables in Perl interface. Solution: Adjust #ifdefs.
2012-09-18updated for version 7.3.666Bram Moolenaar
Problem: With MSVC 11 Win32.mak is not found. Solution: Add the SDK_INCLUDE_DIR variable. (Raymond Ko)
2012-09-18updated for version 7.3.665Bram Moolenaar
Problem: MSVC 11 is not supported. Solution: Recognize MSVC 11. (Raymond Ko)
2012-09-18updated for version 7.3.664Bram Moolenaar
Problem: Buffer overflow in unescaping text. (Raymond Ko) Solution: Limit check for multi-byte character to 4 bytes.
2012-09-18updated for version 7.3.663Bram Moolenaar
Problem: End of color scheme name not clear in E185. (Aaron Lewis) Solution: Put the name in single quotes.
2012-09-18updated for version 7.3.662Bram Moolenaar
Problem: Can't build Ruby interface with Ruby 1.9.3. Solution: Add missing functions. (V. Ondruch)
2012-09-12updated for version 7.3.661Bram Moolenaar
Problem: SEGV in Python code. Solution: Initialize len to zero. Use the right function depending on version. (Maxim Philippov)
2012-09-12updated for version 7.3.660Bram Moolenaar
Problem: ":help !" jumps to help for ":!". Solution: Adjust check for tag header line. (Andy Wokula)
2012-09-05updated for version 7.3.659Bram Moolenaar
Problem: Recent Python changes are not tested. Solution: Add tests for Python bindings. (ZyX)
2012-09-05updated for version 7.3.658Bram Moolenaar
Problem: NUL bytes truncate strings when converted from Python. Solution: Handle truncation as an error. (ZyX)
2012-09-05updated for version 7.3.657Bram Moolenaar
Problem: Python bindings silently truncate string values containing NUL. Solution: Fail when a string contains NUL. (ZyX)
2012-09-05updated for version 7.3.656Bram Moolenaar
Problem: Internal error in :pyeval. Solution: Handle failed object conversion. (ZyX)
2012-09-05updated for version 7.3.655Bram Moolenaar
Problem: 64 bit MingW xpm .a file is missing. Solution: Add the file. (Sergey Khorev)
2012-09-05updated for version 7.3.654Bram Moolenaar
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)
2012-09-05updated for version 7.3.653Bram Moolenaar
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)
2012-09-05updated for version 7.3.652Bram Moolenaar
Problem: Workaround for Python crash isn't perfect. Solution: Change the type of the length argument. (Sean Estabrooks)
2012-09-05updated for version 7.3.651Bram Moolenaar
Problem: Completion after ":help \{-" gives an error message. Solution: Prepend a backslash.
2012-09-05updated for version 7.3.650Bram Moolenaar
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)
2012-09-05updated for version 7.3.649Bram Moolenaar
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)