summaryrefslogtreecommitdiff
path: root/src/version.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.1708: Coverity warns for using uninitialized variablev8.1.1708Bram Moolenaar2019-07-171-0/+2
| | | | | Problem: Coverity warns for using uninitialized variable. Solution: Set the start col when col is set.
* patch 8.1.1707: Coverity warns for possibly using a NULL pointerv8.1.1707Bram Moolenaar2019-07-171-0/+2
| | | | | Problem: Coverity warns for possibly using a NULL pointer. Solution: Change the logic to make sure no NULL pointer is used.
* patch 8.1.1706: typo in #ifdefv8.1.1706Bram Moolenaar2019-07-171-0/+2
| | | | | Problem: Typo in #ifdef. Solution: Change PROT to PROTO.
* patch 8.1.1705: using ~{} for a literal dict is not nicev8.1.1705Bram Moolenaar2019-07-161-0/+2
| | | | | Problem: Using ~{} for a literal dict is not nice. Solution: Use #{} instead.
* patch 8.1.1704: C-R C-W does not work after C-G when using 'incsearch'v8.1.1704Bram Moolenaar2019-07-161-0/+2
| | | | | Problem: C-R C-W does not work after C-G when using 'incsearch'. Solution: Put cursor at end of the match. (Yasuhiro Matsumoto, closes #4664)
* patch 8.1.1703: breaking out of loop by checking window pointer insufficientv8.1.1703Bram Moolenaar2019-07-161-0/+2
| | | | | Problem: Breaking out of loop by checking window pointer is insufficient. Solution: Check the window ID and the buffer number. (closes #4683)
* patch 8.1.1702: compiler warning for uninitialized variablev8.1.1702Bram Moolenaar2019-07-161-0/+2
| | | | | Problem: Compiler warning for uninitialized variable. Solution: Initialize it. (Christian Brabandt)
* patch 8.1.1701: Appveyor build with MSVC fails puts progress bar in logv8.1.1701Bram Moolenaar2019-07-161-0/+2
| | | | | Problem: Appveyor build with MSVC fails puts progress bar in log. Solution: Adjust the sed command. (Ken Takata)
* patch 8.1.1700: listener callback called for the wrong bufferv8.1.1700Bram Moolenaar2019-07-151-0/+2
| | | | | Problem: Listener callback called for the wrong buffer. Solution: Invoke listeners before calling ml_append_int().
* patch 8.1.1699: highlight_ga can be local instead of globalv8.1.1699Bram Moolenaar2019-07-151-0/+2
| | | | | | Problem: Highlight_ga can be local instead of global. Solution: Move highlight_ga into highlight.c. (Yegappan Lakshmanan, closes #4675)
* patch 8.1.1698: Appveyor build with MSVC failsv8.1.1698Bram Moolenaar2019-07-151-0/+2
| | | | | Problem: Appveyor build with MSVC fails. Solution: Remove the sed command
* patch 8.1.1697: cannot build with MSVCv8.1.1697Bram Moolenaar2019-07-151-0/+2
| | | | | Problem: Cannto build with MSVC. Solution: Remove the backslashes after the @<< mechanism.
* patch 8.1.1696: MSVC: link command line is too longv8.1.1696Bram Moolenaar2019-07-151-0/+2
| | | | | | Problem: MSVC: link command line is too long. Solution: Use the @<< mechanism to pass the arguments via a file. (Christian Brabandt)
* patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminalv8.1.1695Bram Moolenaar2019-07-151-0/+2
| | | | | | Problem: Windows 10: crash when cursor is at bottom of terminal. Solution: Position the cursor before resizing. (Yasuhiro Matsumoto, closes #4679)
* patch 8.1.1694: the RUN_VIM variable is longer than neededv8.1.1694Bram Moolenaar2019-07-141-0/+2
| | | | | Problem: The RUN_VIM variable is longer than needed. Solution: Shorten RUN_VIM. (Daniel Hahler, closes #4643)
* patch 8.1.1693: syntax coloring and highlighting is in one big filev8.1.1693Bram Moolenaar2019-07-141-0/+2
| | | | | | Problem: Syntax coloring and highlighting is in one big file. Solution: Move the highlighting to a separate file. (Yegappan Lakshmanan, closes #4674)
* patch 8.1.1692: using *{} for literal dict is not backwards compatiblev8.1.1692Bram Moolenaar2019-07-141-0/+2
| | | | | | Problem: Using *{} for literal dict is not backwards compatible. (Yasuhiro Matsumoto) Solution: Use ~{} instead.
* patch 8.1.1691: diff test fails on some systemsv8.1.1691Bram Moolenaar2019-07-141-0/+2
| | | | | Problem: Diff test fails on some systems. (Elimar Riesebieter) Solution: Add a term_wait() call.
* patch 8.1.1690: default padding for popup window menu is too muchv8.1.1690Bram Moolenaar2019-07-141-0/+2
| | | | | Problem: Default padding for popup window menu is too much. Solution: Only add padding left and right.
* patch 8.1.1689: profiling code is spread outv8.1.1689Bram Moolenaar2019-07-141-0/+2
| | | | | | Problem: Profiling code is spread out. Solution: Move more profiling code to profiler.c. (Yegappan Lakshmanan, closes #4668)
* patch 8.1.1688: old makefiles are no longer usefulv8.1.1688Bram Moolenaar2019-07-141-0/+2
| | | | | Problem: Old makefiles are no longer useful. Solution: Delete the makefiles, they most likely don't work anyway.
* patch 8.1.1687: the evalfunc.c file is too bigv8.1.1687Bram Moolenaar2019-07-141-0/+2
| | | | | Problem: The evalfunc.c file is too big. Solution: Move testing support to a separate file.
* patch 8.1.1686: "*" of "*{" is recognized as multipy operatorv8.1.1686Bram Moolenaar2019-07-141-0/+2
| | | | | Problem: "*" of "*{" is recognized as multipy operator. (Yasuhiro Matsumoto) Solution: Check for the "{".
* patch 8.1.1685: missing file in distributed file listv8.1.1685Bram Moolenaar2019-07-131-0/+2
| | | | | Problem: Missing file in distributed file list. Solution: Add profiling.pro
* patch 8.1.1684: profiling functionality is spread outv8.1.1684Bram Moolenaar2019-07-131-0/+2
| | | | | | Problem: Profiling functionality is spread out. Solution: Put profiling functionality in profiling.c. (Yegappan Lakshmanan, closes #4666)
* patch 8.1.1683: dictionary with string keys is longer than neededv8.1.1683Bram Moolenaar2019-07-131-0/+2
| | | | | Problem: Dictionary with string keys is longer than needed. Solution: Use *{key: val} for literaly keys.
* patch 8.1.1682: placing a larger number of signs is slowv8.1.1682Bram Moolenaar2019-07-131-0/+2
| | | | | | Problem: Placing a larger number of signs is slow. Solution: Add functions for dealing with a list of signs. (Yegappan Lakshmanan, closes #4636)
* patch 8.1.1681: insert stray "{" when listener gets buffer linev8.1.1681Bram Moolenaar2019-07-131-0/+2
| | | | | Problem: Insert stray "{" when listener gets buffer line. (Paul Jolly) Solution: Flush the cached line after invoking listeners. (closes #4455)
* patch 8.1.1680: the command table is not well alignedv8.1.1680Bram Moolenaar2019-07-131-0/+2
| | | | | Problem: The command table is not well aligned. Solution: Adjust indent.
* patch 8.1.1679: test using SwapExists autocommand file may failv8.1.1679Bram Moolenaar2019-07-131-0/+2
| | | | | Problem: Test using SwapExists autocommand file may fail. Solution: Remove the SwapExists autocommand.
* patch 8.1.1678: using popup_menu() does not scroll to show the selected linev8.1.1678Bram Moolenaar2019-07-131-0/+2
| | | | | Problem: When using popup_menu() does not scroll to show the selected line. Solution: Scroll the text. (Naruhiko Nishino, closes #4651)
* patch 8.1.1677: tests get stuck when running into an existing swapfilev8.1.1677Bram Moolenaar2019-07-131-0/+2
| | | | | | Problem: Tests get stuck when running into an existing swapfile. Solution: Set v:swapchoice to "q" and report an error. (Daniel Hahler, closes #4644)
* patch 8.1.1676: "maxwidth" of popup window does not always work properlyv8.1.1676Bram Moolenaar2019-07-131-0/+2
| | | | | Problem: "maxwidth" of popup window does not always work properly. Solution: Adjust the computation. (Naruhiko Nishino, closes #4653)
* patch 8.1.1675: listener list not correctly updated on listener_remove()v8.1.1675Bram Moolenaar2019-07-131-0/+2
| | | | | | Problem: Listener list not correctly updated on listener_remove(). Solution: Only set "prev" when not removing a listener. Return one if the listener was found and removed.
* patch 8.1.1674: script to check a colorscheme can be improvedv8.1.1674Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: Script to check a colorscheme can be improved. Solution: Match the whole group name. Don't warn for what is usually omitted.
* patch 8.1.1673: cannot easily find the popup window at a certain positionv8.1.1673Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: Cannot easily find the popup window at a certain position. Solution: Add popup_locate().
* patch 8.1.1672: "make cmdidxs" doesn't workv8.1.1672Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: "make cmdidxs" doesn't work. Solution: Update macro names. (Naruhiko Nishino, closes #4660)
* patch 8.1.1671: copying a blob may result in it being lockedv8.1.1671Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: Copying a blob may result in it being locked. Solution: Reset v_lock. (Ken Takata, closes #4648)
* patch 8.1.1670: sign column not always properly alignedv8.1.1670Bram Moolenaar2019-07-121-0/+2
| | | | | | Problem: Sign column not always properly aligned. Solution: Use "col" only after it was calculated. (Yee Cheng Chin, closes #4649)
* patch 8.1.1669: Travis: test results section is closed even when failedv8.1.1669Bram Moolenaar2019-07-121-0/+2
| | | | | | Problem: Travis: test results section is closed even when some tests failed. Solution: Only close the section on success. (Daniel Hahler, closes #4659)
* patch 8.1.1668: popup window test is a bit flaky on some systemsv8.1.1668Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: Popup window test is a bit flaky on some systems. Solution: Clear the command line. (Naruhiko Nishino, closes #4656)
* patch 8.1.1667: flags for Ex commands may clash with other symbolsv8.1.1667Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: Flags for Ex commands may clash with other symbols. Solution: Prepend with EX_.
* patch 8.1.1666: click in popup window scrollbar with border doesn't scrollv8.1.1666Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: Click in popup window scrollbar with border doesn't scroll. Solution: Correct column for the border. (Naruhiko Nishino, closes #4650)
* patch 8.1.1665: crash when popup window with mask is below the screenv8.1.1665Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: Crash when popup window with mask is below the screen. Solution: Correct boundary check.
* patch 8.1.1664: GUI resize may cause changing Rows at a bad timev8.1.1664Bram Moolenaar2019-07-121-0/+2
| | | | | | Problem: GUI resize may cause changing Rows at a bad time. (Dominique Pelle) Solution: Postpone resizing while updating the screen.
* patch 8.1.1663: compiler warning for using size_tv8.1.1663Bram Moolenaar2019-07-121-0/+2
| | | | | Problem: Compiler warning for using size_t. Solution: Add type cast. (Mike Williams)
* patch 8.1.1662: cannot build uninstal.exe with some version of MinGWv8.1.1662Bram Moolenaar2019-07-111-0/+2
| | | | | Problem: Cannot build uninstal.exe with some version of MinGW. Solution: Add -lole32. (Rene Nyffenegger, closes #4646)
* patch 8.1.1661: cannot build with +textprop but without +balloon_evalv8.1.1661Bram Moolenaar2019-07-101-0/+2
| | | | | Problem: Cannot build with +textprop but without +balloon_eval. Solution: Adjust #ifdefs. (closes #4645)
* patch 8.1.1660: assert_fails() does not fail inside try/catchv8.1.1660Bram Moolenaar2019-07-101-0/+2
| | | | | Problem: Assert_fails() does not fail inside try/catch. Solution: Set trylevel to zero. (Ozaki Kiichi, closes #4639)
* patch 8.1.1659: popup window "mousemoved" values not correctv8.1.1659Bram Moolenaar2019-07-101-0/+2
| | | | | Problem: Popup window "mousemoved" values not correct. Solution: Convert text column to mouse column.