summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* patch 7.4.1043v7.4.1043Bram Moolenaar2016-01-032-5/+12
| | | | | Problem: Another small thing. Solution: Now really update the Mac install text.
* patch 7.4.1042v7.4.1042Bram Moolenaar2016-01-0311-59/+293
| | | | | | Problem: g-CTRL-G shows the word count, but there is no way to get the word count in a script. Solution: Add the wordcount() function. (Christian Brabandt)
* patch 7.4.1041v7.4.1041Bram Moolenaar2016-01-034-1/+6
| | | | | Problem: Various small things. Solution: Add file to list of distributed files. Adjust README. Fix typo.
* Updated runtime files.Bram Moolenaar2016-01-0311-156/+112
|
* patch 7.4.1040v7.4.1040Bram Moolenaar2016-01-034-14/+48
| | | | | Problem: The tee command is not available on MS-Windows. Solution: Adjust tee.c for MSVC and add a makefile. (Yasuhiro Matsumoto)
* patch 7.4.1039v7.4.1039Bram Moolenaar2016-01-032-1/+3
| | | | | Problem: Test 31 fails with small build. Solution: Bail out for small build. (Hirohito Higashi)
* patch 7.4.1038v7.4.1038Bram Moolenaar2016-01-023-3/+5
| | | | | | Problem: Still get a warning for a deprecated function with gdk-pixbuf 2.31. Solution: Change minimum minor version from 32 to 31.
* patch 7.4.1037v7.4.1037Bram Moolenaar2016-01-0210-13/+40
| | | | | | | Problem: Using "q!" when there is a modified hidden buffer does not unload the current buffer, resulting in the need to abandon it again. Solution: When using "q!" unload the current buffer when needed. (Yasuhiro Matsumoto, Hirohito Higashi)
* patch 7.4.1036v7.4.1036Bram Moolenaar2016-01-022-14/+13
| | | | | | Problem: Only terminals with up to 256 colors work properly. Solution: Use the 256 color behavior for all terminals with 256 or more colors. (Robert de Bath, closes #504)
* patch 7.4.1035v7.4.1035Bram Moolenaar2016-01-023-4/+8
| | | | | | Problem: An Ex range gets adjusted for folded lines even when the range is not using line numbers. Solution: Only adjust line numbers for folding. (Christian Brabandt)
* Add new file left out from patch 7.4.1034.Bram Moolenaar2016-01-021-0/+58
|
* patch 7.4.1034v7.4.1034Bram Moolenaar2016-01-022-0/+3
| | | | | Problem: There is no test for the 'backspace' option behavior. Solution: Add a test. (Hirohito Higashi)
* patch 7.4.1033v7.4.1033Bram Moolenaar2016-01-024-0/+65
| | | | | | Problem: Memory use on MS-Windows is very conservative. Solution: Use the global memory status to estimate amount of memory. (Mike Williams)
* patch 7.4.1032v7.4.1032Bram Moolenaar2016-01-022-5/+16
| | | | | | Problem: message from assert_false() does not look nice. Solution: Handle missing sourcing_name. Use right number of spaces. (Watiko) Don't use line number if it's zero.
* patch 7.4.1031v7.4.1031Bram Moolenaar2016-01-023-17/+49
| | | | | Problem: Can't build with Python interface using MingW. Solution: Update the Makefile. (Yasuhiro Matsumoto)
* patch 7.4.1030v7.4.1030Bram Moolenaar2016-01-025-512/+521
| | | | | Problem: test49 is still slow. Solution: Move more tests from old to new style.
* patch 7.4.1029v7.4.1029Bram Moolenaar2016-01-023-3/+5
| | | | | Problem: test_increment fails on systems with 32 bit long. Solution: Only test with 32 bits.
* patch 7.4.1028v7.4.1028Bram Moolenaar2016-01-022-0/+3
| | | | | Problem: Nsis version file missing from the distribution. Solution: Add the file to the list.
* Update ignored files. Delete file that should have been deleted by patch ↵Bram Moolenaar2016-01-022-3/+1
| | | | 7.4.1016.