summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.773v7.3.773Bram Moolenaar2013-01-192-0/+4
| | | | | Problem: Crash when OriginalFirstThunk is zero. Solution: Skip items with OriginalFirstThunk not set. (Ken Takata)
* updated for version 7.3.772v7.3.772Bram Moolenaar2013-01-172-0/+8
| | | | | | | Problem: Cursor is at the wrong location and below the end of the file after doing substitutions with confirm flag: %s/x/y/c (Dominique Pelle) Solution: Update the cursor position. (Christian Brabandt & Dominique)
* updated for version 7.3.771v7.3.771Bram Moolenaar2013-01-172-3/+5
| | | | | Problem: Uninitialized variable. (Yasuhiro Matsumoto) Solution: Set x2 to -1.
* updated for version 7.3.770v7.3.770Bram Moolenaar2013-01-172-15/+17
| | | | | Problem: Vim.h indentation is inconsistent. Solution: Adjust the indentation. (Elias Diem)
* updated for version 7.3.769v7.3.769Bram Moolenaar2013-01-177-65/+176
| | | | | Problem: 'matchpairs' does not work with multi-byte characters. Solution: Make it work. (Christian Brabandt)
* updated for version 7.3.768v7.3.768Bram Moolenaar2013-01-172-0/+17
| | | | | | Problem: settabvar() and setwinvar() may move the cursor. Solution: Save and restore the cursor position when appropriate. (idea by Yasuhiro Matsumoto)
* updated for version 7.3.767v7.3.767Bram Moolenaar2013-01-172-2/+44
| | | | | Problem: (Win32) The _errno used for iconv may be the wrong one. Solution: Use the _errno from iconv.dll. (Ken Takata)
* updated for version 7.3.766v7.3.766Bram Moolenaar2013-01-172-2/+4
| | | | | Problem: ":help cpo-*" jumps to the wrong place. Solution: Make it equivalent to ":help cpo-star".
* updated for version 7.3.765v7.3.765Bram Moolenaar2013-01-173-2/+14
| | | | | | Problem: Segfault when doing "cclose" on BufUnload in a python function. (Sean Reifschneider) Solution: Skip window with NULL buffer. (Christian Brabandt)
* updated for version 7.3.764v7.3.764Bram Moolenaar2013-01-172-7/+19
| | | | | Problem: Not all message translation files are installed. Solution: Also install the converted files.
* updated for version 7.3.763v7.3.763Bram Moolenaar2013-01-172-2/+4
| | | | | | Problem: Jumping to a mark does not open a fold if it is in the same line. (Wiktor Ruben) Solution: Also compare the column after the jump. (Christian Brabandt)
* updated for version 7.3.762v7.3.762Bram Moolenaar2012-12-162-1/+5
| | | | | Problem: On some systems the tabline is not redrawn. Solution: Call RedrawWindow(). (Charles Peacech)
* updated for version 7.3.761v7.3.761Bram Moolenaar2012-12-124-2/+10
| | | | | Problem: In Visual mode a "-p does not work. (Marcin Szamotulski) Solution: Avoid writing to "- before putting it. (Christian Brabandt)
* updated for version 7.3.760v7.3.760Bram Moolenaar2012-12-124-2/+11
| | | | | Problem: dv_ deletes the white space before the line. Solution: Move the cursor to the first non-white. (Christian Brabandt)
* updated for version 7.3.759v7.3.759Bram Moolenaar2012-12-122-3/+10
| | | | | Problem: MS-Windows: Updating the tabline is slow when there are many tabs. Solution: Disable redrawing while performing the update. (Arseny Kapoulkine)
* updated for version 7.3.758v7.3.758Bram Moolenaar2012-12-122-2/+4
| | | | | Problem: Matchit plugin does not handle space in #ifdef. Solution: Change matching pattern to allow spaces. (Mike Morearty)
* updated for version 7.3.757v7.3.757Bram Moolenaar2012-12-122-0/+8
| | | | | | Problem: Issue 96: May access freed memory when a put command triggers autocommands. (Dominique Pelle) Solution: Call u_save() before getting y_array.
* updated for version 7.3.756v7.3.756Bram Moolenaar2012-12-122-0/+36
| | | | | | Problem: A location list can get a wrong count in :lvimgrep. Solution: Check if the list was changed by autocommands. (mostly by Christian Brabandt)
* updated for version 7.3.755v7.3.755Bram Moolenaar2012-12-123-6/+18
| | | | | Problem: Autoconf doesn't find Python 3 if it's called "python". Solution: Search for "python2" and "python3" first, then "python".
* updated for version 7.3.754v7.3.754Bram Moolenaar2012-12-062-0/+5
| | | | | Problem: Latest nmake is not recognized. Solution: Add nmake version 11.00.51106.1. (Raymond Ko)
* updated for version 7.3.753v7.3.753Bram Moolenaar2012-12-054-3/+7
| | | | | | Problem: When there is a QuitPre autocommand using ":q" twice does not work for exiting when there are more files to edit. Solution: Do not decrement quitmore in an autocommand. (Techlive Zheng)
* Update runtime files.Bram Moolenaar2012-12-0515-547/+1236
|
* updated for version 7.3.752v7.3.752Bram Moolenaar2012-12-052-2/+4
| | | | | Problem: Test 49 script file doesn't fold properly. Solution: Add a colon.
* updated for version 7.3.751v7.3.751Bram Moolenaar2012-12-052-5/+22
| | | | | Problem: Test 61 is flaky, it fails once in a while. Solution: When it fails retry once.
* updated for version 7.3.750v7.3.750Bram Moolenaar2012-12-052-5/+6
| | | | | Problem: The justify macro does not always work correctly. Solution: Fix off-by-one error (James McCoy)
* updated for version 7.3.749v7.3.749Bram Moolenaar2012-12-052-1/+9
| | | | | Problem: Python interface doesn't build without the multi-byte feature. Solution: Add #ifdef. (Ken Takata)
* updated for version 7.3.748v7.3.748Bram Moolenaar2012-12-0513-8/+171
| | | | | | Problem: Cannot properly test conceal mode. Solution: Add the screencol() and screenrow() functions. Use them in test88. (Simon Ruderich)
* updated for version 7.3.747v7.3.747Bram Moolenaar2012-12-052-1/+16
| | | | | | | Problem: When characters are concealed text aligned with tabs are no longer aligned, e.g. at ":help :index". Solution: Compensate space for tabs for concealed characters. (Dominique Pelle)
* updated for version 7.3.746v7.3.746Bram Moolenaar2012-12-053-2/+12
| | | | | Problem: Memory leaks when using location lists. Solution: Set qf_title to something. (Christian Brabandt)
* updated for version 7.3.745v7.3.745Bram Moolenaar2012-12-054-0/+21
| | | | | Problem: Automatically setting 'ttymouse' doesn't work. Solution: Reset the "option was set" flag when using the default.
* updated for version 7.3.744v7.3.744Bram Moolenaar2012-11-292-1/+3
| | | | | Problem: 64 bit compiler warning. Solution: Add type cast. (Mike Williams)
* updated for version 7.3.743v7.3.743Bram Moolenaar2012-11-282-3/+5
| | | | | Problem: Tiny build still fails. Solution: Add #else in the right place.
* updated for version 7.3.742v7.3.742Bram Moolenaar2012-11-282-0/+3
| | | | | Problem: Leaking memory when :vimgrep restores the directory. Solution: Free the allocated memory. (Christian Brabandt)
* updated for version 7.3.741v7.3.741Bram Moolenaar2012-11-282-1/+3
| | | | | Problem: Tiny build fails. Solution: Move #ifdef. (Ike Devolder)
* updated for version 7.3.740v7.3.740Bram Moolenaar2012-11-283-8/+10
| | | | | Problem: IOC tool complains about undefined behavior for int. Solution: Change to unsigned int. (Dominique Pelle)
* updated for version 7.3.739v7.3.739Bram Moolenaar2012-11-282-3/+5
| | | | | Problem: Computing number of lines may have an integer overflow. Solution: Check for MAXCOL explicitly. (Dominique Pelle)
* Updated runtime files.Bram Moolenaar2012-11-2812-133/+211
|
* updated for version 7.3.738v7.3.738Bram Moolenaar2012-11-282-7/+8
| | | | | Problem: Unused function argument. Solution: Remove it. (Christian Brabandt)
* updated for version 7.3.737v7.3.737Bram Moolenaar2012-11-282-0/+4
| | | | | | Problem: When using do_cmdline() recursively did_endif is not reset, causing messages to be overwritten. Solution: Reset did_endif. (Christian Brabandt)
* updated for version 7.3.736v7.3.736Bram Moolenaar2012-11-282-17/+29
| | | | | | Problem: File name completion in input() escapes white space. (Frederic Hardy) Solution: Do not escape white space. (Christian Brabandt)
* updated for version 7.3.735v7.3.735Bram Moolenaar2012-11-283-2/+22
| | | | | Problem: Cannot build Ruby 1.9 with MingW or Cygwin. Solution: Add another include directory. (Ken Takata)
* updated for version 7.3.734v7.3.734Bram Moolenaar2012-11-282-7/+10
| | | | | Problem: Cannot put help files in a sub-directory. Solution: Make :helptags work for sub-directories. (Charles Campbell)
* updated for version 7.3.733v7.3.733Bram Moolenaar2012-11-282-3/+17
| | | | | Problem: Tests fail when including MzScheme. Solution: Change #ifdefs for vim_main2().
* updated for version 7.3.732v7.3.732Bram Moolenaar2012-11-282-6/+9
| | | | | Problem: Compiler warnings for function arguments. Solution: Use inteptr_t instead of long.
* updated for version 7.3.731v7.3.731Bram Moolenaar2012-11-282-4/+5
| | | | | Problem: Py3Init_vim() is exported uneccessarily. Solution: Make it static. (Ken Takata)
* updated for version 7.3.730v7.3.730Bram Moolenaar2012-11-282-9/+8
| | | | | Problem: Crash in PHP file when using syntastic. (Ike Devolder) Solution: Avoid using NULL pointer. (Christian Brabandt)
* updated for version 7.3.729v7.3.729Bram Moolenaar2012-11-242-3/+5
| | | | | Problem: Building with Ruby fails on some systems. Solution: Remove "static" and add #ifndef PROTO. (Ken Takata)
* updated for version 7.3.728v7.3.728Bram Moolenaar2012-11-233-10/+52
| | | | | Problem: Cannot compile with MzScheme interface on Ubuntu 12.10. Solution: Find the collects directory under /usr/share.
* updated for version 7.3.727v7.3.727Bram Moolenaar2012-11-232-1/+7
| | | | | Problem: Can't always find Win32.mak when building GvimExt. Solution: Use same mechanism as in Make_mvc.mak. (Cade Foster)
* updated for version 7.3.726v7.3.726Bram Moolenaar2012-11-232-4/+4
| | | | | Problem: Typos and duplicate info in README. Solution: Fix the text.