summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2023-03-07patch 9.0.1390: FOR_ALL_ macros are defined in an unexpected filev9.0.1390Yegappan Lakshmanan
Problem: FOR_ALL_ macros are defined in an unexpected file. Solution: Move FOR_ALL_ macros to macros.h. Add FOR_ALL_HASHTAB_ITEMS. (Yegappan Lakshmanan, closes #12109)
2023-03-07patch 9.0.1389: Amiga: a couple of include files are included twicev9.0.1389=?UTF-8?q?Ola=20S=C3=B6der?=
Problem: Amiga: a couple of include files are included twice. Solution: Remove duplicate includes. (Ola Söder, closes #12106)
2023-03-06patch 9.0.1388: Amiga: not all builds use gethostname()v9.0.1388=?UTF-8?q?Ola=20S=C3=B6der?=
Problem: Amiga: not all builds use gethostname(). Solution: Use gethostname() for all builds except AROS. (Ola Söder, closes #12107)
2023-03-06patch 9.0.1387: scrollbar test sporadically failsv9.0.1387Christian Brabandt
Problem: Scrollbar test sporadically fails. Solution: Mark the scrollbar test as flaky. (Christian Brabandt, closes #12113)
2023-03-06patch 9.0.1386: options test fails with some window widthv9.0.1386zeertzjq
Problem: Options test fails with some window width. Solution: Adjust what text the test checks with. (closes #12111)
2023-03-05patch 9.0.1385: g'Esc is considered an errorv9.0.1385zeertzjq
Problem: g'Esc is considered an error. Solution: Make g'Esc silently abandon the command. (closes #12110)
2023-03-05patch 9.0.1384: setting HOMEBREW_NO_AUTO_UPDATE is not needed with version 4v9.0.1384Philip H
Problem: Setting HOMEBREW_NO_AUTO_UPDATE is not needed with Homebew version 4. Solution: Remove setting HOMEBREW_NO_AUTO_UPDATE. (closes #12008)
2023-03-05patch 9.0.1383: xxd: combination of little endian and cols failsv9.0.1383Bram Moolenaar
Problem: xxd: combination of little endian and cols fails. (Aapo Rantalainen) Solution: Round up the space taken by the hex output. (closes #12097)
2023-03-05patch 9.0.1382: failing test for strptime() doesn't show returned valuev9.0.1382Bram Moolenaar
Problem: Failing test for strptime() doesn't show returned value. Solution: Use assert_equal() instead of assert_true().
2023-03-05patch 9.0.1381: ACCESS_ names have a conflict with on some systemsv9.0.1381=?UTF-8?q?Ola=20S=C3=B6der?=
Problem: ACCESS_ names have a conflict with on some systems. Solution: Rename by prepending VIM_. (Ola Söder, closes #12105)
2023-03-04patch 9.0.1380: CTRL-X on 2**64 subtracts twov9.0.1380Bram Moolenaar
Problem: CTRL-X on 2**64 subtracts two. (James McCoy) Solution: Correct computation for large number. (closes #12103)
2023-03-04patch 9.0.1379: functions for handling options are not orderedv9.0.1379Yegappan Lakshmanan
Problem: Functions for handling options are not ordered. Solution: Put functions in alphabetical order. (Yegappan Lakshmanan, closes #12101)
2023-03-04patch 9.0.1378: illegal memory access when using virtual editingv9.0.1378Bram Moolenaar
Problem: Illegal memory access when using virtual editing. Solution: Make sure "startspaces" is not negative.
2023-03-04patch 9.0.1377: job_status() may return "dead" if the process parent changedv9.0.1377Bram Moolenaar
Problem: job_status() may return "dead" if the process parent changed. Solution: Call mch_process_running() to check if the job is still alive.
2023-03-03patch 9.0.1376: accessing invalid memory with put in Visual block modev9.0.1376Bram Moolenaar
Problem: Accessing invalid memory with put in Visual block mode. Solution: Adjust the cursor column if needed.
2023-03-03patch 9.0.1375: crash when getting member of obj of unknown classv9.0.1375Ernie Rael
Problem: Crash when getting member of obj of unknown class. Solution: Check for NULL class and give an error message. (Ernie Rael, closes #12096)
2023-03-03patch 9.0.1374: function for setting options not used consistentlyv9.0.1374Yegappan Lakshmanan
Problem: Function for setting options not used consistently. Solution: Use a function for 'encoding' and terminal options. (Yegappan Lakshmanan, closes #12099)
2023-03-02patch 9.0.1373: wrong text displayed when using both 'linebreak' and 'list'v9.0.1373h-east
Problem: Wrong text displayed when using both 'linebreak' and 'list'. Solution: Only set "c_extra" to NUL when "p_extra" is not empty. (Hirohito Higashi, closes #12065)
2023-03-02patch 9.0.1372: test for 'toolbariconsize' may failv9.0.1372James McCoy
Problem: Test for 'toolbariconsize' may fail. Solution: Only test 'toolbariconsize' when it is supported. (James McCoy, closes #12095)
2023-03-02patch 9.0.1371: ballooneval interferes with Insert completionv9.0.1371zeertzjq
Problem: Ballooneval interferes with Insert completion. Solution: Ignore mouse-move events when completing. (closes #12094, closes #12092)
2023-03-02patch 9.0.1370: crash when using a NULL objectv9.0.1370Bram Moolenaar
Problem: Crash when using a NULL object. (Ernie Rael) Solution: Check for NULL and give an error message. (closes #12083)
2023-03-02patch 9.0.1369: still some "else if" constructs for setting optionsv9.0.1369Yegappan Lakshmanan
Problem: Still some "else if" constructs for setting options. Solution: Add a few more functions for handling options. (Yegappan Lakshmanan, closes #12090)
2023-03-02patch 9.0.1368: Bass files are not recognizedv9.0.1368Amaan Qureshi
Problem: Bass files are not recognized. Solution: Add patterns for Bass files. (Amaan Qureshi, closes #12088)
2023-03-01patch 9.0.1367: divide by zero in zero-width windowv9.0.1367Bram Moolenaar
Problem: Divide by zero in zero-width window. Solution: Check the width is positive.
2023-03-01patch 9.0.1366: functions for setting options are in random orderv9.0.1366Yegappan Lakshmanan
Problem: Functions for setting options are in random order. Solution: Sort functions alphabetically. (Yegappan Lakshmanan, closes #12082)
2023-02-28patch 9.0.1365: dead test codev9.0.1365zeertzjq
Problem: Dead test code. Solution: Remove code that depends on Farsi, which has been removed. (closes #12084)
2023-02-28patch 9.0.1364: build error with older Mac OSv9.0.1364Yee Cheng Chin
Problem: Build error with older Mac OS. Solution: Adjust #ifdef. (Yee Cheng Chin, closes #12074)
2023-02-27patch 9.0.1363: crash when :def function has :break in skipped blockv9.0.1363Bram Moolenaar
Problem: Crash when :def function has :break in skipped block. (Ernie Rael) Solution: Don't generate a jump for a skipped :break. (closes #12077)
2023-02-27patch 9.0.1362: ml_get error when going to another tabv9.0.1362Bram Moolenaar
Problem: ml_get error when going to another tab. (Daniel J. Perry) Solution: Do not call update_topline() if "curwin" is invalid. (closes #11907)
2023-02-27Update runtime filesBram Moolenaar
2023-02-27patch 9.0.1361: extendnew() not sufficiently testedv9.0.1361zeertzjq
Problem: extendnew() not sufficiently tested. Solution: Add a few more test cases for extendnew(). (closes #12075)
2023-02-27patch 9.0.1360: Cue files are not recognizedv9.0.1360Amaan Qureshi
Problem: Cue files are not recognized. Solution: Add patterns for Cue files. (Amaan Qureshi, closes #12067)
2023-02-27patch 9.0.1359: too many "else if" statements in handling optionsv9.0.1359Yegappan Lakshmanan
Problem: Too many "else if" statements in handling options. Solution: Add more functions for handling option changes. (Yegappan Lakshmanan, closes #12060)
2023-02-27patch 9.0.1358: compilation error with some compilersv9.0.1358Bram Moolenaar
Problem: Compilation error with some compilers. Solution: Avoid using "class" as member name.
2023-02-26patch 9.0.1357: using null_object results in an internal errorv9.0.1357Bram Moolenaar
Problem: Using null_object results in an internal error. (Ernie Rael) Solution: Add instructions for pushing an object and class. (closes #12044)
2023-02-26patch 9.0.1356: cannot cancel "gr" with Escv9.0.1356zeertzjq
Problem: Cannot cancel "gr" with Esc. Solution: Make "gr<Esc>" do nothing. (closes #12064)
2023-02-25patch 9.0.1355: no error when declaring a class twicev9.0.1355Bram Moolenaar
Problem: No error when declaring a class twice. (Ernie Rael) Solution: Pass different flags when declaring the class. (closes #12057)
2023-02-25patch 9.0.1354: "gr CTRL-G" stays in virtual replace modev9.0.1354Bram Moolenaar
Problem: "gr CTRL-G" stays in virtual replace mode. (Pierre Ganty) Solution: Prepend CTRL-V before control characters. (closes #12045)
2023-02-25patch 9.0.1353: too many "else if" statements to handle option valuesv9.0.1353Yegappan Lakshmanan
Problem: Too many "else if" statements to handle option values. Solution: Add more functions to handle option value changes. (Yegappan Lakshmanan, closes #12058)
2023-02-24patch 9.0.1352: "ignore" files are outdatedv9.0.1352K.Takata
Problem: "ignore" files are outdated. Solution: Update "ignore" files. (Ken Takata, closes #12056)
2023-02-24patch 9.0.1351: Dhall files are not recognizedv9.0.1351Amaan Qureshi
Problem: Dhall files are not recognized. Solution: Add patterns for Dhall files. (Amaan Qureshi, closes #12052)
2023-02-24patch 9.0.1350: CPON files are not recognizedv9.0.1350Amaan Qureshi
Problem: CPON files are not recognized. Solution: Add patterns for CPON files. (Amaan Qureshi, closes #12053)
2023-02-23patch 9.0.1349: "gr" with a count failsv9.0.1349Bram Moolenaar
Problem: "gr" with a count fails. Solution: Break out of the loop only after using the count.
2023-02-23patch 9.0.1348: Un-grammar files are not recognizedv9.0.1348Amaan Qureshi
Problem: Un-grammar files are not recognized. Solution: Add patterns for Un-grammar files. (Amaan Qureshi, closes #12034)
2023-02-23patch 9.0.1347: "gr CTRL-O" stays in Insert modev9.0.1347Bram Moolenaar
Problem: "gr CTRL-O" stays in Insert mode. (Pierre Ganty) Solution: Do not set restart_edit when "cmdchar" is 'v'. (closes #12045)
2023-02-23patch 9.0.1346: Starlark files are not recognizedv9.0.1346Amaan Qureshi
Problem: Starlark files are not recognized. Solution: Add patterns for Starlark files. (Amaan Qureshi, closes #12049)
2023-02-23patch 9.0.1345: too many "else if" statements for handling optionsv9.0.1345Yegappan Lakshmanan
Problem: Too many "else if" statements for handling options. Solution: Add more functions to handle options. (Yegappan Lakshmanan, closes #12051)
2023-02-23patch 9.0.1344: check for OSC escape sequence doesn't workv9.0.1344Bram Moolenaar
Problem: Check for OSC escape sequence doesn't work. Solution: Fix typo in index.
2023-02-23patch 9.0.1343: check for OSC escape sequence doesn't workv9.0.1343Johan Mattsson
Problem: Check for OSC escape sequence doesn't work. Solution: Move square bracket to the right place. (Johan Mattsson, closes #12048)
2023-02-23patch 9.0.1342: MS-Windows: linking may fail with space in directory namev9.0.1342zhihaoy
Problem: MS-Windows: linking may fail with space in directory name. Solution: Add quotes. (closes #12050)