summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.741v7.3.741v7-3-741Bram Moolenaar2012-11-282-1/+3
| | | | | Problem: Tiny build fails. Solution: Move #ifdef. (Ike Devolder)
* Added tag v7-3-740 for changeset 2c12cd5c1381Bram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.740v7.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)
* Added tag v7-3-739 for changeset e2d36f345a7fBram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.739v7.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
|
* Added tag v7-3-738 for changeset eccae034465bBram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.738v7.3.738v7-3-738Bram Moolenaar2012-11-282-7/+8
| | | | | Problem: Unused function argument. Solution: Remove it. (Christian Brabandt)
* Added tag v7-3-737 for changeset 1773d5aa6437Bram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.737v7.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)
* Added tag v7-3-736 for changeset b1536bbbda10Bram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.736v7.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)
* Added tag v7-3-735 for changeset d3158bf4dee9Bram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.735v7.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)
* Added tag v7-3-734 for changeset fc8b4a06af9dBram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.734v7.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)
* Added tag v7-3-733 for changeset 509e55bd4a3fBram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.733v7.3.733v7-3-733Bram Moolenaar2012-11-282-3/+17
| | | | | Problem: Tests fail when including MzScheme. Solution: Change #ifdefs for vim_main2().
* Added tag v7-3-732 for changeset fa8bf69d3866Bram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.732v7.3.732v7-3-732Bram Moolenaar2012-11-282-6/+9
| | | | | Problem: Compiler warnings for function arguments. Solution: Use inteptr_t instead of long.
* Added tag v7-3-731 for changeset 778ff2e87806Bram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.731v7.3.731v7-3-731Bram Moolenaar2012-11-282-4/+5
| | | | | Problem: Py3Init_vim() is exported uneccessarily. Solution: Make it static. (Ken Takata)
* Added tag v7-3-730 for changeset 37a4cacd2051Bram Moolenaar2012-11-280-0/+0
|
* updated for version 7.3.730v7.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)
* Added tag v7-3-729 for changeset d08f05285dd1Bram Moolenaar2012-11-240-0/+0
|
* updated for version 7.3.729v7.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)
* Added tag v7-3-728 for changeset 233666f85933Bram Moolenaar2012-11-230-0/+0
|
* updated for version 7.3.728v7.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.
* Added tag v7-3-727 for changeset d3c291efdb0bBram Moolenaar2012-11-230-0/+0
|
* updated for version 7.3.727v7.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)
* Added tag v7-3-726 for changeset 5049eacbff0eBram Moolenaar2012-11-230-0/+0
|
* updated for version 7.3.726v7.3.726v7-3-726Bram Moolenaar2012-11-232-4/+4
| | | | | Problem: Typos and duplicate info in README. Solution: Fix the text.
* Added tag v7-3-725 for changeset f4aa43d952f5Bram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.725v7.3.725v7-3-725Bram Moolenaar2012-11-202-2/+6
| | | | | Problem: :aboveleft and :belowright have no effect on :copen. Solution: Check for cmdmod.split. (Christian Brabandt)
* Added tag v7-3-724 for changeset 6e5acfdf7a5aBram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.724v7.3.724v7-3-724Bram Moolenaar2012-11-202-1/+4
| | | | | Problem: Building with Ruby and Tcl on MS-Windows does not work. Solution: Remove Ruby and Tcl from the big MS-Windows build.
* Added tag v7-3-723 for changeset ee138f29259eBram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.723v7.3.723v7-3-723Bram Moolenaar2012-11-207-12/+20
| | | | | Problem: Various tiny problems. Solution: Various tiny fixes.
* Added tag v7-3-722 for changeset de6968039340Bram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.722v7.3.722v7-3-722Bram Moolenaar2012-11-202-1/+4
| | | | | Problem: Perl flags may contain "-g", which breaks "make proto". Solution: Filter out the "-g" flag for cproto. (Ken Takata)
* Added tag v7-3-721 for changeset b23f583e132eBram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.721v7.3.721v7-3-721Bram Moolenaar2012-11-202-2/+4
| | | | | Problem: Ruby interface defines local functions globally. Solution: Make the functions static.
* Added tag v7-3-720 for changeset 9e119e0ade5dBram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.720v7.3.720v7-3-720Bram Moolenaar2012-11-209-12/+14
| | | | | Problem: Proto files are outdated. Solution: Update the newly generated proto files.
* Added tag v7-3-719 for changeset e6d8b44065bcBram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.719v7.3.719v7-3-719Bram Moolenaar2012-11-2018-63/+178
| | | | | | Problem: Cannot run new version of cproto, it fails on missing include files. Solution: Add lots of #ifndef PROTO
* Added tag v7-3-718 for changeset 18e95db59826Bram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.718v7.3.718v7-3-718Bram Moolenaar2012-11-202-0/+7
| | | | | Problem: When re-using the current buffer the buffer-local options stay. Solution: Re-initialize the buffer-local options. (Christian Brabandt)
* Added tag v7-3-717 for changeset 6a76846b84ebBram Moolenaar2012-11-200-0/+0
|
* updated for version 7.3.717v7.3.717v7-3-717Bram Moolenaar2012-11-202-7/+3
| | | | | | Problem: When changing the font size, only MS-Windows limits the window size. Solution: Also limit the window size on other systems. (Roland Puntaier)