summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1089v7.4.1089Bram Moolenaar2016-01-123-0/+10
| | | | | Problem: Repeating CTRL-A doesn't work. Solution: Call prep_redo_cmd(). (Hirohito Higashi)
* patch 7.4.1088v7.4.1088Bram Moolenaar2016-01-122-29/+29
| | | | | | Problem: Coverity warns for uninitialized variables. Only one is an actual problem. Solution: Move the conditions. Don't use endpos if handling an error.
* patch 7.4.1087v7.4.1087Bram Moolenaar2016-01-106-381/+487
| | | | | | Problem: CTRL-A and CTRL-X do not work properly with blockwise visual selection if there is a mix of Tab and spaces. Solution: Add OP_NR_ADD and OP_NR_SUB. (Hirohito Higashi)
* patch 7.4.1086v7.4.1086Bram Moolenaar2016-01-102-0/+4
| | | | | Problem: Crash with an extremely long buffer name. Solution: Limit the return value of vim_snprintf(). (Dominique Pelle)
* patch 7.4.1085v7.4.1085Bram Moolenaar2016-01-104-1/+45
| | | | | Problem: The CTRL-A and CTRL-X commands do not update the '[ and '] marks. Solution: (Yukihiro Nakadaira)
* patch 7.4.1084v7.4.1084Bram Moolenaar2016-01-103-1/+25
| | | | | | Problem: Using "." to repeat CTRL-A in Visual mode increments the wrong numbers. Solution: Append right size to the redo buffer. (Ozaki Kiichi)
* patch 7.4.1083v7.4.1083Bram Moolenaar2016-01-102-8/+26
| | | | | Problem: Building GvimExt with VS2015 may fail. Solution: Adjust the makefile. (Mike Williams)
* patch 7.4.1082v7.4.1082Bram Moolenaar2016-01-102-0/+4
| | | | | Problem: The Tcl interface is always skipping memory free on exit. Solution: Only skip for dynamically loaded Tcl.
* patch 7.4.1081v7.4.1081Bram Moolenaar2016-01-102-0/+8
| | | | | Problem: No test for what previously caused a crash. Solution: Add test for unletting errmsg.
* patch 7.4.1080v7.4.1080Bram Moolenaar2016-01-102-3/+7
| | | | | | | Problem: VS2015 has a function HandleToLong() that is shadowed by the macro that Vim defines. Solution: Do not define HandleToLong() for MSVC version 1400 and later. (Mike Williams)
* patch 7.4.1079v7.4.1079Bram Moolenaar2016-01-103-5/+8
| | | | | | | Problem: New include file missing from distribution. Missing changes to quickfix code. Solution: Add alloc.h to the list of distributed files. Use the enum in quickfix code.
* Updated runtime files.Bram Moolenaar2016-01-1011-66/+117
|
* patch 7.4.1078v7.4.1078Bram Moolenaar2016-01-102-0/+5
| | | | | Problem: MSVC: "make clean" doesn't cleanup in the tee directory. Solution: Add the commands to cleanup tee. (Erich Ritz)
* patch 7.4.1077v7.4.1077Bram Moolenaar2016-01-102-29/+251
| | | | | | Problem: The build instructions for MS-Windows are incomplete. Solution: Add explanations for how to build with various interfaces. (Ken Takata)
* patch 7.4.1076v7.4.1076Bram Moolenaar2016-01-103-32/+19
| | | | | Problem: CTRL-A does not work well in right-left mode. Solution: Remove reversing the line, add a test. (Hirohito Higashi)
* patch 7.4.1075v7.4.1075Bram Moolenaar2016-01-102-1/+6
| | | | | Problem: Crash when using an invalid command. Solution: Fix generating the error message. (Dominique Pelle)
* patch 7.4.1074v7.4.1074Bram Moolenaar2016-01-102-1/+3
| | | | | Problem: Warning from VX2015 compiler. Solution: Add a type cast. (Mike Williams)
* patch 7.4.1073v7.4.1073Bram Moolenaar2016-01-098-12/+50
| | | | | | | Problem: Alloc_id depends on numbers, may use the same one twice. It's not clear from the number what it's for. Solution: Use an enum. Add a function to lookup the enum value from the name.
* add missing test fileBram Moolenaar2016-01-091-0/+561
|
* patch 7.4.1072v7.4.1072Bram Moolenaar2016-01-095-1076/+5
| | | | | Problem: Increment test is old style. Solution: Make the increment test a new style test. (Hirohito Higashi)
* patch 7.4.1071v7.4.1071Bram Moolenaar2016-01-093-2/+9
| | | | | | Problem: New style tests are executed in arbitrary order. Solution: Sort the test function names. (Hirohito Higashi) Fix the quickfix test that depended on the order.
* patch 7.4.1070v7.4.1070Bram Moolenaar2016-01-0912-22/+104
| | | | | Problem: The Tcl interface can't be loaded dynamically on Unix. Solution: Make it possible to load it dynamically. (Ken Takata)
* patch 7.4.1069v7.4.1069Bram Moolenaar2016-01-092-2/+4
| | | | | Problem: Compiler warning for unused argument. Solution: Add UNUSED.
* patch 7.4.1068v7.4.1068Bram Moolenaar2016-01-092-14/+21
| | | | | Problem: Wrong way to check for unletting internal variables. Solution: Use a better way. (Olaf Dabrunz)
* patch 7.4.1067v7.4.1067Bram Moolenaar2016-01-092-4/+6
| | | | | Problem: Can't build with MingW and Python on MS-Windows. Solution: Move the build flags to CFLAGS.
* patch 7.4.1066v7.4.1066Bram Moolenaar2016-01-092-5/+7
| | | | | Problem: Build fails on MS-Windows. Solution: Adjust the #ifdefs for "dll" options.
* patch 7.4.1065v7.4.1065Bram Moolenaar2016-01-099-63/+48
| | | | | | Problem: Cannot use the "dll" options on MS-Windows. Solution: Support the options on all platforms. Use the built-in name as the default, so that it's clear what Vim is looking for.
* patch 7.4.1064v7.4.1064Bram Moolenaar2016-01-093-10/+50
| | | | | | Problem: When a spell file has single letter compounding creating suggestions takes an awful long time. Solution: Add th eNOCOMPOUNDSUGS flag.
* Update to newer English spell files,Bram Moolenaar2016-01-0912-3751/+12894
| | | | but without the COMPOUND rules that make suggestions very slow.
* patch 7.4.1063v7.4.1063Bram Moolenaar2016-01-072-1/+8
| | | | | | Problem: TCL_VER_LONG and DYNAMIC_TCL_VER are not set when building with Cygwin and MingW. Solution: Add TCL_VER_LONG and DYNAMIC_TCL_VER to the makefile.
* patch 7.4.1062v7.4.1062Bram Moolenaar2016-01-073-6/+48
| | | | | Problem: Building with Ruby on MS-Windows requires a lot of arguments. Solution: Make it simpler. (Ken Takata)
* patch 7.4.1061v7.4.1061Bram Moolenaar2016-01-073-3/+6
| | | | | Problem: Compiler warning for ignoring return value of fwrite(). Solution: Do use the return value. (idea: Charles Campbell)
* patch 7.4.1060v7.4.1060Bram Moolenaar2016-01-072-12/+35
| | | | | Problem: Instructions for writing tests are outdated. Solution: Mention Make_all.mak. Add steps for new style tests.
* patch 7.4.1059v7.4.1059Bram Moolenaar2016-01-072-3/+2
| | | | | Problem: Code will never be executed. Solution: Remove the code.
* patch 7.4.1058v7.4.1058Bram Moolenaar2016-01-078-5/+138
| | | | | | Problem: It is not possible to test code that is only reached when memory allocation fails. Solution: Add the alloc_fail() function. Try it out with :vimgrep.
* patch 7.4.1057v7.4.1057Bram Moolenaar2016-01-072-2/+4
| | | | | Problem: Typos in the :options window. Solution: Fix the typos. (Dominique Pelle)
* patch 7.4.1056v7.4.1056Bram Moolenaar2016-01-072-0/+108
| | | | | Problem: Don't know why finding spell suggestions is slow. Solution: Add some code to gather profiling information.
* Revert English spell file updateBram Moolenaar2016-01-0711-12456/+3537
|
* patch 7.4.1055v7.4.1055Bram Moolenaar2016-01-063-2/+13
| | | | | | Problem: Running "make newtests" in src/testdir has no output. Solution: List the messages file when a test fails. (Christian Brabandt) Update the list of tests.
* patch 7.4.1054v7.4.1054Bram Moolenaar2016-01-052-0/+7
| | | | | Problem: Illegal memory access. Solution: Check for missing pattern. (Dominique Pelle)
* patch 7.4.1053v7.4.1053Bram Moolenaar2016-01-053-0/+278
| | | | | Problem: Insufficient testing for quickfix commands. Solution: Add a new style quickfix test. (Yegappan Lakshmanan)
* patch 7.4.1052v7.4.1052Bram Moolenaar2016-01-052-2/+7
| | | | | Problem: Illegal memory access with weird syntax command. (Dominique Pelle) Solution: Check for column past end of line.
* patch 7.4.1051v7.4.1051Bram Moolenaar2016-01-044-12/+44
| | | | | | Problem: Segfault when unletting "count". Solution: Check for readonly and locked first. (Dominique Pelle) Add a test.
* patch 7.4.1050v7.4.1050Bram Moolenaar2016-01-042-16/+18
| | | | | Problem: Warning for unused var with tiny features. (Tony Mechelynck) Solution: Add #ifdef. Use vim_snprintf(). Reduce number of statemements.
* patch 7.4.1049v7.4.1049Bram Moolenaar2016-01-042-1/+3
| | | | | Problem: Wordcount test still still fails on MS-Windows. Solution: Set 'fileformats' to "unix".
* patch 7.4.1048v7.4.1048Bram Moolenaar2016-01-042-1/+3
| | | | | Problem: Wordcount test still fail on MS-Windows. Solution: Set 'fileformat' to "unix".
* patch 7.4.1047v7.4.1047Bram Moolenaar2016-01-042-0/+3
| | | | | Problem: Tests fail on MS-Windows. Solution: Set 'selection' to inclusive.
* patch 7.4.1046v7.4.1046Bram Moolenaar2016-01-033-0/+12
| | | | | Problem: No test coverage for menus. Solution: Load the standard menus and check there is no error.
* patch 7.4.1045v7.4.1045Bram Moolenaar2016-01-032-2/+4
| | | | | | Problem: Having shadow and coverage on the same build results in the source files not being available in the coverage view. Solution: Move using shadow to the normal build.
* patch 7.4.1044v7.4.1044Bram Moolenaar2016-01-032-0/+4
| | | | | Problem: Can't build without the +eval feature. Solution: Add #ifdef.