Bram Moolenaar
c6951a76a5
patch 9.0.1108: type error when using "any" type and adding to float
...
Problem: Type error when using "any" type and adding a number to a float.
Solution: Accept both a number and a float. (closes #11753 )
2022-12-29 20:56:24 +00:00
Bram Moolenaar
73ade49c4b
patch 9.0.1107: float constant not recognized as float
...
Problem: Float constant not recognized as float.
Solution: Check the vartype instead of comparing with t_float.
(closes #11754 )
2022-12-27 20:54:41 +00:00
KodeToad
09ce0b8e11
patch 9.0.1106: not all postfix files are recognized
...
Problem: Not all postfix files are recognized.
Solution: Recognize main.cf.proto files. (closes #11732 )
2022-12-27 20:17:19 +00:00
Yegappan Lakshmanan
87c1cbbe98
patch 9.0.1105: code is indented too much
...
Problem: Code is indented too much.
Solution: Use an early return. (Yegappan Lakshmanan, closes #11756 )
2022-12-27 19:54:52 +00:00
Bram Moolenaar
56310d38d8
patch 9.0.1104: invalid memory access when checking function argument types
...
Problem: Invalid memory access when checking function argument types.
Solution: Do not check beyond the number of arguments. (closes #11755 )
2022-12-27 17:25:05 +00:00
David McDonald
b9a1edfc54
patch 9.0.1103: jq files are not recognized
...
Problem: jq files are not recognized.
Solution: Add detection of Jq files. (David McDonald, closes #11743 )
2022-12-26 15:35:18 +00:00
K.Takata
a7fbaa43b7
patch 9.0.1102: complicated use of #ifdef
...
Problem: Complicated use of #ifdef.
Solution: Simplify #ifdef use. (Ken Takata, closes #11745 )
2022-12-26 14:46:51 +00:00
Bram Moolenaar
b536540ab3
patch 9.0.1101: unused global variable
...
Problem: Unused global variable.
Solution: Remove the variable. (closes #11752 )
2022-12-26 14:37:44 +00:00
Bram Moolenaar
d0883faac6
patch 9.0.1100: a hashtab with many removed items is not cleaned up
...
Problem: A hashtab with many removed items is not cleaned up.
Solution: Re-hash a hashtab even when the size didn't change if too many
items were removed.
2022-12-26 13:51:26 +00:00
Bram Moolenaar
81b7ecc5cb
patch 9.0.1099: trying to resize a hashtab may cause a problem
...
Problem: Trying to resize a hashtab may cause a problem.
Solution: Do not try to resize a hashtab before adding an item.
2022-12-26 13:08:06 +00:00
Yegappan Lakshmanan
465de3a57b
patch 9.0.1098: code uses too much indent
...
Problem: Code uses too much indent.
Solution: Use an early return. (Yegappan Lakshmanan, closes #11747 )
2022-12-26 12:50:04 +00:00
Bram Moolenaar
b3d614369f
patch 9.0.1097: tests are failing
...
Problem: Tests are failing.
Solution: Do clean up a hashtab when at the initial size.
2022-12-25 21:32:09 +00:00
Bram Moolenaar
71d53e7c57
patch 9.0.1096: reallocating hashtab when the size didn't change
...
Problem: Reallocating hashtab when the size didn't change.
Solution: Bail out when the hashtab is already the desired size.
2022-12-25 20:46:13 +00:00
Bram Moolenaar
6ef5471afa
patch 9.0.1095: using freed memory when declaration fails
...
Problem: Using freed memory when declaration fails. (Yegappan Lakshmanan)
Solution: After unreferencing an object set the reference to NULL.
2022-12-25 19:31:36 +00:00
Bram Moolenaar
9b99411b93
patch 9.0.1094: compiler warning when HAS_MESSAGE_WINDOW is not defined
...
Problem: Compiler warning when HAS_MESSAGE_WINDOW is not defined.
Solution: Add UNUSED.
2022-12-25 15:59:25 +00:00
Bram Moolenaar
590162cae0
patch 9.0.1093: using freed memory of object member
...
Problem: Using freed memory of object member. (Yegappan Lakshmanan)
Solution: Make a copy of the object member when getting it.
2022-12-24 21:24:06 +00:00
Rob Pilling
e86190e7c1
patch 9.0.1092: search error message doesn't show used pattern
...
Problem: Search error message doesn't show used pattern.
Solution: Pass the actually used pattern to where the error message is
given. (Rob Pilling, closes #11742 )
2022-12-23 19:06:04 +00:00
Bram Moolenaar
f54cedd676
patch 9.0.1091: assignment to non-existing member causes a crash
...
Problem: Assignment to non-existing member causes a crash. (Yegappan
Lakshmanan)
Solution: Give an error message and bail out when a member cannot be found.
2022-12-23 17:56:27 +00:00
mgramigna
c9207d5d79
patch 9.0.1090: FHIR Shorthand files are not recognized
...
Problem: FHIR Shorthand files are not recognized.
Solution: Add a pattern to detect FSH files. (Matthew Gramigna,
closes #11738 )
2022-12-23 13:18:44 +00:00
Luuk van Baal
c53e7904b9
patch 9.0.1089: unnessary assignment
...
Problem: unnessary assignment
Solution: Remove the assignment. (Luuk van Baal, closes #1136 )
2022-12-23 12:17:33 +00:00
Bram Moolenaar
9fca133eb7
patch 9.0.1088: clang warns for unused variable
...
Problem: Clang warns for unused variable.
Solution: Adjust #ifdef. (John Marriott)
2022-12-22 21:06:41 +00:00
James McCoy
ff3d537704
patch 9.0.1087: autocommand test sometimes fails
...
Problem: Autocommand test sometimes fails.
Solution: Add a short delay. (James McCoy, closes #11737 )
2022-12-22 18:30:24 +00:00
Christopher Plewright
c8b126d70d
patch 9.0.1086: display wrong in Windows terminal after exiting Vim
...
Problem: Display wrong in Windows terminal after exiting Vim.
Solution: Apply screen restore fix for Windows 11 also to Windows 10 builds.
(Christopher Plewright, closes #11713 , closes #11706 )
2022-12-22 13:45:23 +00:00
Bram Moolenaar
9b8a365d01
patch 9.0.1085: compiler warns for uninitialized variable
...
Problem: Compiler warns for uninitialized variable.
Solution: Initialize the variable. Remove unused function. (John Marriott)
2022-12-20 20:47:28 +00:00
Christopher Plewright
20b795e0eb
patch 9.0.1084: code handling low level MS-Windows events cannot be tested
...
Problem: Code handling low level MS-Windows events cannot be tested.
Solution: Add test_mswin_event() and tests using it. (Christopher Plewright,
closes #11622 )
2022-12-20 20:01:58 +00:00
Bram Moolenaar
418b547881
patch 9.0.1083: empty and comment lines in a class cause an error
...
Problem: Empty and comment lines in a class cause an error.
Solution: Skip empty and comment lines. (closes #11734 )
2022-12-20 13:38:22 +00:00
kylo252
104b2ff4d0
patch 9.0.1082: some jsonc files are not recognized
...
Problem: Some jsonc files are not recognized.
Solution: Add patterns for jsonc and move some from json to jsonc.
(closes #11711 )
2022-12-19 20:42:49 +00:00
Bram Moolenaar
34820944ed
patch 9.0.1081: using "->" with split lines does not always work
...
Problem: Using "->" with split lines does not always work.
Solution: Avoid trying to get another line. (closes #11723 )
2022-12-19 20:28:38 +00:00
Bram Moolenaar
afa3f1cc72
patch 9.0.1080: the "kitty" terminfo entry is not widespread
...
Problem: The "kitty" terminfo entry is not widespread, resulting in the
kitty terminal not working properly.
Solution: Go back to using "xterm-kitty" and avoid the problems it causes in
another way.
2022-12-19 18:56:48 +00:00
zeertzjq
33e543038b
patch 9.0.1079: leaking memory when defining a user command fails
...
Problem: Leaking memory when defining a user command fails.
Solution: Free "compl_arg" when needed. (closes #11726 )
2022-12-19 16:49:27 +00:00
zeertzjq
07146ad1d3
patch 9.0.1078: with the +vartabs feature indent folding may use wrong 'ts'
...
Problem: With the +vartabs feature indent folding may use wrong 'tabstop'.
Solution: Use the "buf" argument instead of "curbuf".
2022-12-19 15:51:44 +00:00
Bram Moolenaar
4ce1f99a2d
patch 9.0.1077: can add text property with negative ID before virtual text
...
Problem: Can add text property with negative ID before virtual text
property.
Solution: Remember that a text property with a negative ID was used and give
an appropriate error message. (closes #11725 )
Fix index computation.
2022-12-19 13:31:06 +00:00
Bram Moolenaar
8efdcee02e
patch 9.0.1076: ASAN complains about NULL argument
...
Problem: ASAN complains about NULL argument.
Solution: Skip memmove() when there is nothing to move.
2022-12-19 12:18:09 +00:00
Bram Moolenaar
c336ae3ce6
patch 9.0.1075: build fails if compiler doesn't allow declaration after case
...
Problem: build fails if the compiler doesn't allow for a declaration right
after "case".
Solution: Add a block.
2022-12-18 22:01:42 +00:00
Bram Moolenaar
d505d17885
patch 9.0.1074: class members are not supported yet
...
Problem: Class members are not supported yet.
Solution: Add initial support for class members.
2022-12-18 21:42:55 +00:00
Bram Moolenaar
731d00770d
patch 9.0.1073: using "xterm-kitty" for 'term' causes problems
...
Problem: Using "xterm-kitty" for 'term' causes problems.
Solution: Remove the "xterm-" part when 'term' is set from $TERM. Detect a
few kitty-specific properties based on the version response
instead of the terminal name.
2022-12-18 17:47:18 +00:00
zeertzjq
ba2d191932
patch 9.0.1072: screenpos() column result in fold may be too small
...
Problem: screenpos() column result in fold may be too small.
Solution: Add space of 'number', sign column, etc. (closes #11715 )
2022-12-18 12:28:59 +00:00
dundargoc
b5328b46a7
patch 9.0.1071: Codecov action version is too specific
...
Problem: Codecov action version is too specific.
Solution: Only use "v3" to automatically use the latest stable version.
(closes #11720 )
2022-12-17 15:47:45 +00:00
Bram Moolenaar
b26461715b
patch 9.0.1070: reading beyond array size
...
Problem: Reading beyond array size.
Solution: Only use name[0] and name[1], do not use "name" as a string.
2022-12-17 15:35:43 +00:00
Bram Moolenaar
417e88bb75
patch 9.0.1069: diff mode highlight fails for special characters
...
Problem: Diff mode highlight fails for special characters.
Solution: Adjust condition for setting "diff_hlf".
2022-12-17 15:03:02 +00:00
Bram Moolenaar
8d754fada8
patch 9.0.1068: no information about whether request term codes has an effect
...
Problem: No information about whether requesting term codes has an effect.
Solution: Add ch_log() calls to report the effect of term code responses.
Avoid deleting an entry and then adding back the same one.
2022-12-17 13:49:16 +00:00
Bram Moolenaar
d097af7779
patch 9.0.1067: in diff mode virtual text is highlighted incorrectly
...
Problem: In diff mode virtual text is highlighted incorrectly. (Rick Howe)
Solution: Do not use diff attributes for virtual text. (closes #11714 )
2022-12-17 11:33:00 +00:00
zeertzjq
67f3094397
patch 9.0.1066: test function name is wrong
...
Problem: Test function name is wrong.
Solution: Rename to what is actually being tested. (closes #11712 )
2022-12-17 10:40:15 +00:00
Bram Moolenaar
9d1184cd1d
patch 9.0.1065: a shell command switching screens may still have a problem
...
Problem: A shell command switching screens may still have a problem with
the kitty keyboard protocol.
Solution: Disable the kitty keyboard protocol both in the current and the
alternate screen, if there are indications it might be needed.
(issue #11705 ) Also fix naming.
2022-12-16 18:33:20 +00:00
Christian Brabandt
9aee8ec400
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
...
Problem: Code for making 'shortmess' temporarily empty is repeated.
Solution: Add functions for making 'shortmess' empty and restoring it.
(Christian Brabandt, closes #11709 )
2022-12-16 16:41:23 +00:00
Bram Moolenaar
4ab1f4a32f
patch 9.0.1063: when using Kitty a shell command may mess up the key state
...
Problem: When using Kitty a shell command may mess up the key protocol
state.
Solution: Output t_te before t_TE. If t_te switches between the main and
the alternate screen then deactivating the key protocol by t_TE
should happen after switching screen. (issue #11705 )
2022-12-16 13:08:36 +00:00
zeertzjq
4cd45f1408
patch 9.0.1062: some test function names do not match what they are doing
...
Problem: Some test function names do not match what they are doing.
Solution: Leave out user data for the test that is called "NoUserData".
(closes #11703 )
2022-12-15 13:48:30 +00:00
Luuk van Baal
ba936f6f4e
patch 9.0.1061: cannot display 'showcmd' somewhere else
...
Problem: Cannot display 'showcmd' somewhere else.
Solution: Add the 'showcmdloc' option. (Luuk van Baal, closes #11684 )
2022-12-15 13:15:39 +00:00
Bram Moolenaar
3d473ee1a6
patch 9.0.1060: private and public object members are not implemented yet
...
problem: Private and public object members are not implemented yet.
Solution: Implement private and public object members.
2022-12-14 20:59:32 +00:00
Bram Moolenaar
f94178db8d
patch 9.0.1059: build failure with some compilers
...
Problem: Build failure with some compilers that can't handle a
declaration directly after a "case" statement.
Solution: Add a block to put the declarations in.
2022-12-14 17:50:00 +00:00