summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.4.267v7.4.267Bram Moolenaar2014-04-2916-17/+65
| | | | | Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat) Solution: Add the setmark argument to do_join(). (Christian Brabandt)
* updated for version 7.4.266v7.4.266Bram Moolenaar2014-04-292-0/+3
| | | | | Problem: Test 62 fails. Solution: Set the language to C. (Christian Brabandt)
* updated for version 7.4.265v7.4.265Bram Moolenaar2014-04-244-9/+19
| | | | | Problem: Can't call a global function with "g:" in an expression. Solution: Skip the "g:" when looking up the function.
* updated for version 7.4.264v7.4.264Bram Moolenaar2014-04-234-7/+26
| | | | | | | Problem: Can't define a function starting with "g:". Can't assign a funcref to a buffer-local variable. Solution: Skip "g:" at the start of a function name. Don't check for colons when assigning to a variable.
* updated for version 7.4.263v7.4.263Bram Moolenaar2014-04-232-1/+2
| | | | | Problem: GCC 4.8 compiler warning for hiding a declaration (Francois Gannaz) Solution: Remove the second declaration.
* updated for version 7.4.262v7.4.262Bram Moolenaar2014-04-234-79/+16
| | | | | Problem: Duplicate code in regexec(). Solution: Add line_lbr flag to regexec_nl().
* updated for version 7.4.261v7.4.261Bram Moolenaar2014-04-234-0/+4
| | | | | | | Problem: When updating the window involves a regexp pattern, an interactive substitute to replace a "\n" with a line break fails. (Ingo Karkat) Solution: Set reg_line_lbr in vim_regsub() and vim_regsub_multi().
* updated for version 7.4.260v7.4.260Bram Moolenaar2014-04-234-10/+50
| | | | | | | | Problem: It is possible to define a function with a colon in the name. It is possible to define a function with a lower case character if a "#" appears after the name. Solution: Disallow using a colon other than with "s:". Ignore "#" after the name.
* updated for version 7.4.259v7.4.259Bram Moolenaar2014-04-232-1/+3
| | | | | Problem: Warning for misplaced "const". Solution: Move the "const". (Yukihiro Nakadaira)
* updated for version 7.4.258v7.4.258Bram Moolenaar2014-04-123-6/+8
| | | | | Problem: Configure fails if $CC contains options. Solution: Remove quotes around $CC. (Paul Barker)
* updated for version 7.4.257v7.4.257Bram Moolenaar2014-04-122-1/+3
| | | | | Problem: Compiler warning, possibly for mismatch in parameter name. Solution: Rename the parameter in the declaration.
* updated for version 7.4.256v7.4.256Bram Moolenaar2014-04-112-5/+9
| | | | | | | Problem: Using systemlist() may cause a crash and does not handle NUL characters properly. Solution: Increase the reference count, allocate memory by length. (Yasuhiro Matsumoto)
* updated for version 7.4.255v7.4.255Bram Moolenaar2014-04-103-4/+6
| | | | | | Problem: Configure check for smack doesn't work with all shells. (David Larson) Solution: Remove spaces in set command.
* updated for version 7.4.254v7.4.254Bram Moolenaar2014-04-103-13/+52
| | | | | Problem: Smack support detection is incomplete. Solution: Check for attr/xattr.h and specific macro.
* updated for version 7.4.253v7.4.253Bram Moolenaar2014-04-063-3/+8
| | | | | | Problem: Crash when using cpp syntax file with pattern using external match. (Havard Garnes) Solution: Discard match when end column is before start column.
* updated for version 7.4.252v7.4.252Bram Moolenaar2014-04-062-0/+5
| | | | | Problem: Critical error in GTK, removing timer twice. Solution: Clear the timer after removing it. (James McCoy)
* updated for version 7.4.251v7.4.251Bram Moolenaar2014-04-065-2/+39
| | | | | | Problem: Crash when BufAdd autocommand wipes out the buffer. Solution: Check for buffer to still be valid. Postpone freeing the buffer structure. (Hirohito Higashi)
* updated for version 7.4.250v7.4.250Bram Moolenaar2014-04-051-0/+2
| | | | | Problem: Some test files missing from distribution. Solution: Add pattern for newly added tests.
* updated for version 7.4.249v7.4.249Bram Moolenaar2014-04-054-7/+29
| | | | | Problem: Using setreg() with a list of numbers does not work. Solution: Use a separate buffer for numbers. (ZyX)
* updated for version 7.4.248v7.4.248Bram Moolenaar2014-04-055-39/+126
| | | | | Problem: Cannot distinguish between NL and NUL in output of system(). Solution: Add systemlist(). (ZyX)
* updated for version 7.4.247v7.4.247Bram Moolenaar2014-04-052-36/+62
| | | | | | Problem: When passing input to system() there is no way to keep NUL and NL characters separate. Solution: Optionally use a list for the system() input. (ZyX)
* updated for version 7.4.246v7.4.246Bram Moolenaar2014-04-053-8/+10
| | | | | Problem: Configure message for detecting smack are out of sequence. Solution: Put the messages in the right place. (Kazunobu Kuriyama)
* updated for version 7.4.245v7.4.245Bram Moolenaar2014-04-042-1/+3
| | | | | Problem: Crash for "vim -u NONE -N -c '&&'". Solution: Check for the pattern to be NULL. (Dominique Pelle)
* updated for version 7.4.244v7.4.244Bram Moolenaar2014-04-022-8/+4
| | | | | Problem: The smack feature causes stray error messages. Solution: Remove the error messages.
* updated for version 7.4.243v7.4.243Bram Moolenaar2014-04-026-84/+340
| | | | | Problem: Cannot use setreg() to add text that includes a NUL. Solution: Make setreg() accept a list.
* updated for version 7.4.242v7.4.242Bram Moolenaar2014-04-0213-23/+130
| | | | | | Problem: getreg() does not distinguish between a NL used for a line break and a NL used for a NUL character. Solution: Add another argument to return a list. (ZyX)
* updated for version 7.4.241v7.4.241Bram Moolenaar2014-04-028-4/+114
| | | | | | Problem: The string returned by submatch() does not distinguish between a NL from a line break and a NL that stands for a NUL character. Solution: Add a second argument to return a list. (ZyX)
* updated for version 7.4.240v7.4.240Bram Moolenaar2014-04-022-2/+6
| | | | | Problem: ":tjump" shows "\n" as "\\n". Solution: Skip over "\" that escapes a backslash. (Gary Johnson)
* updated for version 7.4.239v7.4.239Bram Moolenaar2014-04-022-1/+3
| | | | | Problem: ":e +" does not position cursor at end of the file. Solution: Check for "+" being the last character (ZyX)
* updated for version 7.4.238v7.4.238Bram Moolenaar2014-04-028-24/+214
| | | | | Problem: Vim does not support the smack library. Solution: Add smack support (Jose Bollo)
* updated for version 7.4.237v7.4.237Bram Moolenaar2014-04-022-2/+3
| | | | | | Problem: When some patches was not included has("patch-7.4.123") may return true falsely. Solution: Check for the specific patch number.
* updated for version 7.4.236v7.4.236Bram Moolenaar2014-04-014-2/+39
| | | | | Problem: It's not that easy to check the Vim patch version. Solution: Make has("patch-7.4.123") work. (partly by Marc Weber)
* updated for version 7.4.235v7.4.235Bram Moolenaar2014-04-0112-20/+68
| | | | | Problem: It is not easy to get the full path of a command. Solution: Add the exepath() function.
* updated for version 7.4.234v7.4.234Bram Moolenaar2014-04-014-1/+6
| | | | | Problem: Can't get the command that was used to start Vim. Solution: Add v:progpath. (Viktor Kojouharov)
* updated for version 7.4.233v7.4.233Bram Moolenaar2014-04-012-12/+4
| | | | | | Problem: Escaping special characters for using "%" with a shell command is inconsistant, parenthesis are escaped but spaces are not. Solution: Only escape "!". (Gary Johnson)
* updated for version 7.4.232v7.4.232Bram Moolenaar2014-04-014-2/+29
| | | | | Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin) Solution: Turn this into a join command. (Christian Brabandt)
* updated for version 7.4.231v7.4.231Bram Moolenaar2014-04-0110-9/+39
| | | | | | Problem: An error in ":options" is not caught by the tests. Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that it uses the current runtime files instead of the installed ones.
* updated for version 7.4.230v7.4.230Bram Moolenaar2014-04-011-0/+2
| | | | | Problem: Error when using ":options". Solution: Fix the entry for 'lispwords'. (Kenichi Ito)
* updated for version 7.4.229v7.4.229Bram Moolenaar2014-03-304-7/+37
| | | | | | Problem: Using ":let" for listing variables and the second one is a curly braces expression may fail. Solution: Check for an "=" in a better way. (ZyX)
* updated for version 7.4.228v7.4.228Bram Moolenaar2014-03-304-7/+21
| | | | | Problem: Compiler warnings when building with Python 3.2. Solution: Make type cast depend on Python version. (Ken Takata)
* updated for version 7.4.227v7.4.227Bram Moolenaar2014-03-282-3/+11
| | | | | Problem: Can't build with Ruby 1.8. Solution: Do include a check for the Ruby version. (Ken Takata)
* updated for version 7.4.226v7.4.226Bram Moolenaar2014-03-282-16/+28
| | | | | | Problem: Cursurline highlighting not redrawn when scrolling. (John Marriott) Solution: Check for required redraw in two places.
* Update runtime files.Bram Moolenaar2014-03-273-289/+331
|
* updated for version 7.4.225v7.4.225Bram Moolenaar2014-03-272-6/+4
| | | | | Problem: Dynamic Ruby doesn't work on Solaris. Solution: Always use the stubs. (Danek Duvall, Yukihiro Nakadaira)
* updated for version 7.4.224v7.4.224Bram Moolenaar2014-03-273-5/+75
| | | | | Problem: /usr/bin/grep on Solaris does not support -F. Solution: Add configure check to find a good grep. (Danek Duvall)
* updated for version 7.4.223v7.4.223Bram Moolenaar2014-03-274-516/+562
| | | | | Problem: Still using an older autoconf version. Solution: Switch to autoconf 2.69.
* updated for version 7.4.222v7.4.222Bram Moolenaar2014-03-273-6/+8
| | | | | Problem: The Ruby directory is constructed from parts. Solution: Use 'rubyarchhdrdir' if it exists. (James McCoy)
* updated for version 7.4.221v7.4.221Bram Moolenaar2014-03-272-0/+17
| | | | | Problem: Quickfix doesn't resize on ":copen 20". (issue 199) Solution: Resize the window when requested. (Christian Brabandt)
* updated for version 7.4.220v7.4.220Bram Moolenaar2014-03-273-5/+7
| | | | | Problem: Test 105 does not work in a shadow dir. (James McCoy) Solution: Omit "src/" from the checked path.
* updated for version 7.4.219v7.4.219Bram Moolenaar2014-03-272-13/+22
| | | | | | Problem: When 'relativenumber' or 'cursorline' are set the window is redrawn much to often. (Patrick Hemmer, Dominique Pelle) Solution: Check the VALID_CROW flag instead of VALID_WROW.