summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2017-03-12patch 8.0.0452: some macros are in lower casev8.0.0452Bram Moolenaar
Problem: Some macros are in lower case. Solution: Make a few more macros upper case.
2017-03-12patch 8.0.0451: some macros are in lower casev8.0.0451Bram Moolenaar
Problem: Some macros are in lower case. Solution: Make a few more macros upper case. Avoid lower case macros use an argument twice.
2017-03-12patch 8.0.0450: v:progpath is not reliably setv8.0.0450Bram Moolenaar
Problem: v:progpath is not reliably set. Solution: Read /proc/self/exe if possible. (idea by Michal Grochmal) Also fixes missing #if.
2017-03-12patch 8.0.0449: part of fold patch accidentally includedv8.0.0449Bram Moolenaar
Problem: Part of fold patch accidentally included. Solution: Revert that part of the patch.
2017-03-12patch 8.0.0448: some macros are in lower casev8.0.0448Bram Moolenaar
Problem: Some macros are in lower case, which can be confusing. Solution: Make a few lower case macros upper case.
2017-03-12patch 8.0.0447: getting font name does not work on X11v8.0.0447Bram Moolenaar
Problem: Getting font name does not work on X11. Solution: Implement gui_mch_get_fontname() for X11. Add more GUI tests. (Kazunobu Kuriyama)
2017-03-12patch 8.0.0446: the ";" command does not work after some charactersv8.0.0446Bram Moolenaar
Problem: The ";" command does not work after characters with a lower byte that is NUL. Solution: Properly check for not having a previous character. (Hirohito Higashi)
2017-03-11patch 8.0.0445: getpgid is not supported on all systemsv8.0.0445Bram Moolenaar
Problem: Getpgid is not supported on all systems. Solution: Add a configure check.
2017-03-11patch 8.0.0444: diffpatch fails when the file name has a quotev8.0.0444Bram Moolenaar
Problem: Diffpatch fails when the file name has a quote. Solution: Escape the name properly. (zetzei)
2017-03-11patch 8.0.0443: terminal width is set to 80 in test3v8.0.0443Bram Moolenaar
Problem: Terminal width is set to 80 in test3. Solution: Instead of setting 'columns' set 'wrapmargin' depending on 'columns.
2017-03-09patch 8.0.0442: patch shell command not well escapedv8.0.0442Bram Moolenaar
Problem: Patch shell command uses double quotes around the argument, which allows for $HOME to be expanded. (Etienne) Solution: Use single quotes on Unix. (closes #1543)
2017-03-09patch 8.0.0441: dead code in #ifdefv8.0.0441Bram Moolenaar
Problem: Dead code in #ifdef. Solution: Remove the #ifdef and #else part.
2017-03-09patch 8.0.0440: not enough test coverage in Insert modev8.0.0440Bram Moolenaar
Problem: Not enough test coverage in Insert mode. Solution: Add lots of tests. Add test_override(). (Christian Brabandt, closes #1521)
2017-03-09patch 8.0.0439: ":%argdel" gives an error for an empty arglistv8.0.0439Bram Moolenaar
Problem: Using ":%argdel" while the argument list is already empty gives an error. (Pavol Juhas) Solution: Don't give an error. (closes #1546)
2017-03-09patch 8.0.0438: the fnamemodify test may cause later tests to failv8.0.0438Bram Moolenaar
Problem: The fnamemodify test changes 'shell' in a way later tests may not be able to use system(). Solution: Save and restore 'shell'.
2017-03-09patch 8.0.0437: packadd test does not fully workv8.0.0437Bram Moolenaar
Problem: The packadd test does not create the symlink correctly and does not test the right thing. Solution: Create the directory and symlink correctly.
2017-03-09patch 8.0.0436: running the options test sometimes resizes the terminalv8.0.0436Bram Moolenaar
Problem: Running the options test sometimes resizes the terminal. Solution: Clear out t_WS.
2017-03-09patch 8.0.0435: some functions are not testedv8.0.0435Bram Moolenaar
Problem: Some functions are not tested. Solution: Add more tests for functions. (Dominique Pelle, closes #1541)
2017-03-09patch 8.0.0434: clang version not correctly detectedv8.0.0434Bram Moolenaar
Problem: Clang version not correctly detected. Solution: Adjust the configure script. (Kazunobu Kuriyama)
2017-03-08patch 8.0.0433: beeps when running testsv8.0.0433Bram Moolenaar
Problem: Quite a few beeps when running tests. Solution: Set 'belloff' for these tests. (Christian Brabandt)
2017-03-08patch 8.0.0432: "make shadow" creates an invalid linkv8.0.0432Bram Moolenaar
Problem: "make shadow" creates an invalid link. Solution: Don't link "*.vim". (Kazunobu Kuriyama)
2017-03-08patch 8.0.0431: 'cinoptions' cannot set indent for extern blockv8.0.0431Bram Moolenaar
Problem: 'cinoptions' cannot set indent for extern block. Solution: Add the "E" flag in 'cinoptions'. (Hirohito Higashi)
2017-03-08patch 8.0.0430: options test fails or hangs on MS-Windowsv8.0.0430Bram Moolenaar
Problem: Options test fails or hangs on MS-Windows. Solution: Run it separately instead of part of test_alot. Use "-S" instead of "-u" to run the script. Fix failures.
2017-03-07patch 8.0.0429: options test does not always test everythingv8.0.0429Bram Moolenaar
Problem: Options test does not always test everything. Solution: Fix dependency for opt_test.vim. Give a message when opt_test.vim was not found.
2017-03-07patch 8.0.0428: git and hg see new files after running testsv8.0.0428Bram Moolenaar
Problem: Git and hg see new files after running tests. (Manuel Ortega) Solution: Add the generated file to .hgignore (or .gitignore). Delete the resulting verbose file. (Christian Brabandt) Improve dependency on opt_test.vim. Reset the 'more' option.
2017-03-06patch 8.0.0427: 'makeencoding' missing from the options windowv8.0.0427Bram Moolenaar
Problem: 'makeencoding' missing from the options window. Solution: Add the entry.
2017-03-06patch 8.0.0426: insufficient testing for statuslinev8.0.0426Bram Moolenaar
Problem: Insufficient testing for statusline. Solution: Add several tests. (Dominique Pelle, closes #1534)
2017-03-05patch 8.0.0425: build errors when building without foldingv8.0.0425Bram Moolenaar
Problem: Build errors when building without folding. Solution: Add #ifdefs. (John Marriott)
2017-03-05patch 8.0.0424: compiler warnings on MS-Windowsv8.0.0424Bram Moolenaar
Problem: Compiler warnings on MS-Windows. (Ajit Thakkar) Solution: Add type casts.
2017-03-05patch 8.0.0423: changing 'cinoptions' does not always workv8.0.0423Bram Moolenaar
Problem: The effect of adding "#" to 'cinoptions' is not always removed. (David Briscoe) Solution: Reset b_ind_hash_comment. (Christian Brabandt, closes #1475)
2017-03-05patch 8.0.0422: Python test fails with Python 3.6v8.0.0422Bram Moolenaar
Problem: Python test fails with Python 3.6. Solution: Convert new exception messages to old ones. (closes #1359)
2017-03-05patch 8.0.0421: diff mode wrong when adding line at end of bufferv8.0.0421Bram Moolenaar
Problem: Diff mode is displayed wrong when adding a line at the end of a buffer. Solution: Adjust marks in diff mode. (James McCoy, closes #1329)
2017-03-05patch 8.0.0420: text garbled when the system encoding differs from 'encoding'v8.0.0420Bram Moolenaar
Problem: When running :make the output may be in the system encoding, different from 'encoding'. Solution: Add the 'makeencoding' option. (Ken Takata)
2017-03-05patch 8.0.0419: test for v:progpath fails on MS-Windowsv8.0.0419Bram Moolenaar
Problem: Test for v:progpath fails on MS-Windows. Solution: Expand to full path. Also add ".exe" when the path is an absolute path.
2017-03-05patch 8.0.0418: ASAN logs are disabledv8.0.0418Bram Moolenaar
Problem: ASAN logs are disabled and don't cause a failure. Solution: Enable ASAN logs and fail if not empty. (James McCoy, closes #1425)
2017-03-05patch 8.0.0417: test for the clipboard fails sometimesv8.0.0417Bram Moolenaar
Problem: Test for the clipboard fails sometimes. Solution: Add it to the flaky tests.
2017-03-05patch 8.0.0416: setting v:progpath is not quite rightv8.0.0416Bram Moolenaar
Problem: Setting v:progpath is not quite right. Solution: On MS-Windows add the extension. On Unix use the full path for a relative directory. (partly by James McCoy, closes #1531)
2017-03-05patch 8.0.0415: balloon test fails on MS-Windowsv8.0.0415Bram Moolenaar
Problem: Balloon test fails on MS-Windows. Solution: Test with 0x7fffffff instead of 0xffffffff.
2017-03-05patch 8.0.0414: balloon eval is not testedv8.0.0414Bram Moolenaar
Problem: Balloon eval is not tested. Solution: Add a few balloon tests. (Kazunobu Kuriyama)
2017-03-04patch 8.0.0413: menu test fails on MS-Windows using gvimv8.0.0413Bram Moolenaar
Problem: Menu test fails on MS-Windows using gvim. Solution: First delete the English menus.
2017-03-04patch 8.0.0412: menu test fails on MS-Windowsv8.0.0412Bram Moolenaar
Problem: Menu test fails on MS-Windows. Solution: Use a menu entry with only ASCII characters.
2017-03-04patch 8.0.0411: menu translations don't match when case is changed.v8.0.0411Bram Moolenaar
Problem: We can't change the case in menu entries, it breaks translations. Solution: Ignore case when looking up a menu translation.
2017-03-04patch 8.0.0410: newer gettext/iconv library has extra dll filev8.0.0410Bram Moolenaar
Problem: Newer gettext/iconv library has extra dll file. Solution: Add the file to the Makefile and nsis script. (Christian Brabandt)
2017-03-04patch 8.0.0409: set_progpath is defined but not always usedv8.0.0409Bram Moolenaar
Problem: set_progpath is defined but not always used Solution: Adjust #ifdef.
2017-03-04patch 8.0.0408: updating folds does not always work properlyv8.0.0408Bram Moolenaar
Problem: Updating folds does not work properly when inserting a file and a few other situations. Solution: Adjust the way folds are updated. (Matthew Malcomson)
2017-03-04patch 8.0.0407: filtering folds with marker method not testedv8.0.0407Bram Moolenaar
Problem: Filtering folds with marker method not tested. Solution: Also set 'foldmethod' to "marker".
2017-03-04patch 8.0.0406: arabic shaping code is verbosev8.0.0406Bram Moolenaar
Problem: The arabic shaping code is verbose. Solution: Shorten the code without changing the functionality.
2017-03-04patch 8.0.0405: v:progpath may become invalid after :cdv8.0.0405Bram Moolenaar
Problem: v:progpath may become invalid after ":cd". Solution: Turn v:progpath into a full path if needed.
2017-03-04patch 8.0.0404: not enough testing for quickfixv8.0.0404Bram Moolenaar
Problem: Not enough testing for quickfix. Solution: Add some more tests. (Yegappan Lakshmanan)
2017-03-04patch 8.0.0403: GUI tests may failv8.0.0403Bram Moolenaar
Problem: GUI tests may fail. Solution: Ignore the E285 error better. (Kazunobu Kuriyama)