summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.4.025v7.4.025Bram Moolenaar2013-09-082-3/+7
| | | | | Problem: Reading before start of a string. Solution: Do not call mb_ptr_back() at start of a string. (Dominique Pelle)
* updated for version 7.4.024v7.4.024Bram Moolenaar2013-09-082-2/+5
| | | | | | | Problem: When root edits a file the undo file is owned by root while the edited file may be owned by another user, which is not allowed. (cac2s) Solution: Accept an undo file owned by the current user.
* updated for version 7.4.023v7.4.023Bram Moolenaar2013-09-072-1/+3
| | | | | Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
* Updated runtime files.Bram Moolenaar2013-09-0521-118/+230
|
* updated for version 7.4.022v7.4.022Bram Moolenaar2013-09-053-7/+18
| | | | | Problem: Deadlock while exiting, because of allocating memory. Solution: Do not use gettext() in deathtrap(). (James McCoy)
* updated for version 7.4.021v7.4.021Bram Moolenaar2013-09-054-3/+10
| | | | | | Problem: NFA regexp: Using \ze in one branch which doesn't match may cause end of another branch to be wrong. (William Fugh) Solution: Set end position if it wasn't set yet.
* updated for version 7.4.020v7.4.020Bram Moolenaar2013-09-054-1/+10
| | | | | Problem: NFA engine matches too much with \@>. (John McGowan) Solution: When a whole pattern match is found stop searching.
* updated for version 7.4.019v7.4.019Bram Moolenaar2013-09-052-2/+10
| | | | | | | Problem: MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Take care of multi-byte characters when looking for the start of the file name. (Ken Takata)
* updated for version 7.4.018v7.4.018Bram Moolenaar2013-09-052-1/+2
| | | | | Problem: When completing item becomes unselected. (Shougo Matsu) Solution: Revert patch 7.3.1269.
* updated for version 7.4.017v7.4.017Bram Moolenaar2013-09-052-4/+10
| | | | | | | Problem: ":help !!" does not find the "!!" tag in the help file. (Ben Fritz) Solution: When reading the start of the tags file do parse lines that are not header lines.
* updated for version 7.4.016v7.4.016Bram Moolenaar2013-08-302-1/+152
| | | | | | Problem: MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Add fname_casew(). (Ken Takata)
* updated for version 7.4.015v7.4.015Bram Moolenaar2013-08-302-7/+39
| | | | | | Problem: MS-Windows: Detecting node type does not work for multi-byte characters. Solution: Use wide character function when needed. (Ken Takata)
* updated for version 7.4.014v7.4.014Bram Moolenaar2013-08-302-9/+10
| | | | | Problem: MS-Windows: check for writing to device does not work. Solution: Fix #ifdefs. (Ken Takata)
* updated for version 7.4.013v7.4.013Bram Moolenaar2013-08-302-2/+18
| | | | | Problem: File name buffer too small for utf-8. Solution: Use character count instead of byte count. (Ken Takata)
* updated for version 7.4.012v7.4.012Bram Moolenaar2013-08-302-8/+62
| | | | | | Problem: MS-Windows: resolving shortcut does not work properly with multi-byte characters. Solution: Use wide system functions. (Ken Takata)
* updated for version 7.4.011v7.4.011Bram Moolenaar2013-08-302-1/+22
| | | | | Problem: Cannot find out if "acl" and "xpm" features are supported. Solution: Add "acl" and "xpm" to the list of features. (Ken Takata)
* updated for version 7.4.010v7.4.010Bram Moolenaar2013-08-302-10/+17
| | | | | Problem: Crash with invalid argument to mkdir(). Solution: Check for empty string. (lcd47)
* updated for version 7.4.009v7.4.009Bram Moolenaar2013-08-252-0/+9
| | | | | | | Problem: When a file was not decrypted (yet), writing it may destroy the contents. Solution: Mark the file as readonly until decryption was done. (Christian Brabandt)
* updated for version 7.4.008v7.4.008Bram Moolenaar2013-08-253-2/+10
| | | | | Problem: New regexp engine can't be interrupted. Solution: Check for CTRL-C pressed. (Yasuhiro Matsumoto)
* updated for version 7.4.007v7.4.007Bram Moolenaar2013-08-222-14/+15
| | | | | | Problem: Creating a preview window on startup leaves the screen layout in a messed up state. (Marius Gedminas) Solution: Don't change firstwin. (Christian Brabandt)
* updated for version 7.4.006v7.4.006Bram Moolenaar2013-08-222-1/+7
| | | | | Problem: mkdir("foo/bar/", "p") gives an error message. (David Barnett) Solution: Remove the trailing slash. (lcd)
* updated for version 7.4.005v7.4.005Bram Moolenaar2013-08-142-0/+5
| | | | | | Problem: Using "vaB" while 'virtualedit' is set selects the wrong area. (Dimitar Dimitrov) Solution: Reset coladd when finding a match.
* updated for version 7.4.004v7.4.004Bram Moolenaar2013-08-144-14/+21
| | | | | Problem: When closing a window fails ":bwipe" may hang. Solution: Let win_close() return FAIL and break out of the loop.
* updated for version 7.4.003v7.4.003Bram Moolenaar2013-08-142-2/+18
| | | | | Problem: Memory access error in Ruby syntax highlighting. (Christopher Chow) Solution: Refresh stale pointer. (James McCoy)
* updated for version 7.4.002v7.4.002Bram Moolenaar2013-08-144-0/+11
| | | | | | | Problem: Pattern with two alternative look-behind matches does not match. (Amadeus Demarzi) Solution: When comparing PIMs also compare their state ID to see if they are different.
* updated for version 7.4.001v7.4.001Bram Moolenaar2013-08-144-46/+147
| | | | | | | Problem: Character classes such as [a-z] to not react to 'ignorecase'. Breaks man page highlighting. (Mario Grgic) Solution: Add separate items for classes that react to 'ignorecase'. Clean up logic handling character classes. Add more tests.
* release version 7.4v7.4Bram Moolenaar2013-08-10159-389/+760
|
* updated for version 7.4b.022v7.4b.022Bram Moolenaar2013-08-102-2/+5
| | | | | Problem: Not waiting for a character when the tick count overflows. Solution: Subtract the unsigned numbers and cast to int. (Ken Takata)
* updated for version 7.4b.021v7.4b.021Bram Moolenaar2013-08-092-1/+3
| | | | | | | Problem: Pressing "u" after an external command results in multiple press-enter messages. (glts) Solution: Don't call hit_return_msg() when we have K_IGNORE. (Christian Brabandt)
* updated for version 7.4b.020v7.4b.020Bram Moolenaar2013-08-094-1/+21
| | | | | Problem: "g~ap" changes first character of next paragraph. (Manuel Ortega) Solution: Avoid subtracting (0 - 1) from todo. (Mike Williams)
* updated for version 7.4b.019v7.4b.019Bram Moolenaar2013-08-072-1/+8
| | | | | Problem: Tabline is not updated properly when closing a tab on Win32. Solution: Only reduce flickering when adding a tab. (Ken Takata)
* updated for version 7.4b.018v7.4b.018Bram Moolenaar2013-08-072-15/+20
| | | | | Problem: Win32: Dialog can still be too big. Solution: Move the check for height further down. (Andrei Olsen)
* updated for version 7.4b.017v7.4b.017Bram Moolenaar2013-08-072-2/+4
| | | | | Problem: ":he \^x" gives a strange error message. (glts) Solution: Do not translate \^x to \_CTRL-x.
* updated for version 7.4b.016v7.4b.016Bram Moolenaar2013-08-073-0/+8
| | | | | Problem: Ruby detection fails on Fedora 19. Solution: Use one way to get the Ruby version. (Michael Henry)
* updated for version 7.4b.015v7.4b.015Bram Moolenaar2013-08-052-0/+8
| | | | | Problem: Can't compile without the 'acd' feature. Solution: Add #ifdefs. (Kazunobu Kuriyama)
* Update runtime files.Bram Moolenaar2013-08-0332-641/+675
|
* updated for version 7.4b.014v7.4b.014Bram Moolenaar2013-08-032-2/+4
| | | | | Problem: Stupid mistake. Solution: Changle "len" to "i".
* updated for version 7.4b.013v7.4b.013Bram Moolenaar2013-08-032-1/+3
| | | | | Problem: Install dir for JP man pages is wrong. Solution: Remove ".UTF-8" from the directory name. (Ken Takata)
* updated for version 7.4b.012v7.4b.012Bram Moolenaar2013-08-032-0/+9
| | | | | Problem: Output from a shell command is truncated at a NUL. (lcd 47) Solution: Change every NUL into an SOH.
* updated for version 7.4b.011v7.4b.011Bram Moolenaar2013-08-032-2/+4
| | | | | Problem: ":he \%(\)" does not work. (ZyX) Solution: Add an exception to the list.
* updated for version 7.4b.010v7.4b.010Bram Moolenaar2013-08-023-2/+4
| | | | | Problem: Win32: Tcl library load does not use standard mechanism. Solution: Call vimLoadLib() instead of LoadLibraryEx(). (Ken Takata)
* updated for version 7.4b.009v7.4b.009Bram Moolenaar2013-08-022-7/+10
| | | | | | Problem: When setting the Visual area manually and 'selection' is exclusive, a yank includes one character too much. (Ingo Karkat) Solution: Default the Visual operation to "v". (Christian Brabandt)
* updated for version 7.4b.008v7.4b.008Bram Moolenaar2013-08-022-2/+10
| | | | | | | Problem: 'autochdir' causes setbufvar() to change the current directory. (Ben Fritz) Solution: When disabling autocommands also reset 'acd' temporarily. (Christian Brabandt)
* updated for version 7.4b.007v7.4b.007Bram Moolenaar2013-08-023-4/+16
| | | | | Problem: On 32 bit MS-Windows :perldo does not work. Solution: Make sure time_t uses 32 bits. (Ken Takata)
* updated for version 7.4b.006v7.4b.006Bram Moolenaar2013-08-023-2/+13
| | | | | | Problem: Using \{n,m} in an autocommand pattern no longer works. Specifically, mutt temp files are not recognized. (Gary Johnson) Solution: Make \\\{n,m\} work.
* updated for version 7.4b.005v7.4b.005Bram Moolenaar2013-08-022-2/+8
| | | | | Problem: Finding %s in shellpipe and shellredir does not ignore %%s. Solution: Skip over %%. (lcd 47)
* updated for version 7.4b.004v7.4b.004Bram Moolenaar2013-08-014-4/+30
| | | | | Problem: Regexp crash on pattern "@\%[\w\-]*". (Axel Kielhorn) Solution: Add \%(\) around \%[] internally.
* updated for version 7.4b.003v7.4b.003Bram Moolenaar2013-08-012-21/+23
| | | | | Problem: Regexp code is not nicely aligned. Solution: Adjust white space. (Ken Takata)
* updated for version 7.4b.002v7.4b.002Bram Moolenaar2013-08-014-22/+53
| | | | | | | Problem: Crash searching for \%(\%(\|\d\|-\|\.\)*\|\*\). (Marcin Szamotulski) Also for \(\)*. Solution: Do add a state for opening parenthesis, so that we can check if it was added before at the same position.
* updated for version 7.4b.001v7.4b.001Bram Moolenaar2013-08-012-5/+9
| | | | | Problem: Win32: dialog may extend off-screen. Solution: Reduce the size, use correct borders. (Andrei Olsen)