summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* updated for version 7.3.782v7.3.782Bram Moolenaar2013-01-236-1/+51
| | | | | Problem: Windows: IME composition may use a wrong font. Solution: Use 'guifontwide' for IME when it is set. (Taro Muraoka)
* updated for version 7.3.781v7.3.781Bram Moolenaar2013-01-232-13/+23
| | | | | Problem: Drawing with 'guifontwide' can be slow. Solution: Draw multiple characters at a time. (Taro Muraoka)
* updated for version 7.3.780v7.3.780Bram Moolenaar2013-01-233-12/+37
| | | | | Problem: char2nr() and nr2char() always use 'encoding'. Solution: Add argument to use utf-8 characters. (Yasuhiro Matsumoto)
* updated for version 7.3.779v7.3.779Bram Moolenaar2013-01-234-1/+9
| | | | | | Problem: Backwards search lands in wrong place when started on a multibyte character. Solution: Do not set extra_col for a backwards search. (Sung Pae)
* updated for version 7.3.778v7.3.778Bram Moolenaar2013-01-232-1/+4
| | | | | Problem: Compiler error for adding up two pointers. (Titov Anatoly) Solution: Add a type cast. (Ken Takata)
* updated for version 7.3.777v7.3.777Bram Moolenaar2013-01-232-0/+10
| | | | | Problem: When building with Gnome locale gets reset. Solution: Set locale after gnome_program_init(). (Christian Brabandt)
* updated for version 7.3.776v7.3.776Bram Moolenaar2013-01-238-30/+48
| | | | | Problem: ml_get error when searching, caused by curwin not matching curbuf. Solution: Avoid changing curbuf. (Lech Lorens)
* updated for version 7.3.775v7.3.775Bram Moolenaar2013-01-233-0/+8
| | | | | Problem: Cygwin and Mingw builds miss dependency on gui_w48.c. Solution: Add a build rule. (Ken Takata)
* updated for version 7.3.774v7.3.774Bram Moolenaar2013-01-233-9/+14
| | | | | Problem: Tiny GUI version misses console dialog feature. Solution: Define FEAT_CON_DIALOG when apprpriate. (Christian Brabandt)
* 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)