Bram Moolenaar
be3dbda871
patch 9.0.0075: some compilers warn for using an uninitialized variable
...
Problem: Some compilers warn for using an uninitialized variable. (Tony
Mechelynck)
Solution: Initialize the variable.
v9.0.0075
2022-07-26 11:42:34 +01:00
Bram Moolenaar
34a1f77979
patch 9.0.0074: Coverity warns for double free
...
Problem: Coverity warns for double free.
Solution: Reset cts_text_prop_count when freeing cts_text_props.
v9.0.0074
2022-07-26 11:20:48 +01:00
Martin Tournoij
1b67f07f76
patch 9.0.0073: too many files recognized as bsdl
...
Problem: Too many files recognized as bsdl.
Solution: Use pattern "*.bsd" instead of "*bsd". (Martin Tournoij,
closes #10783 )
v9.0.0073
2022-07-25 21:40:06 +01:00
Bram Moolenaar
6d023f98df
patch 9.0.0072: compiler warning for uninitialized variable
...
Problem: Compiler warning for uninitialized variable.
Solution: Initialize it. (John Marriott)
v9.0.0072
2022-07-25 21:15:45 +01:00
zeertzjq
ecdc82e74e
patch 9.0.0071: command overlaps with printed text in scrollback
...
Problem: Command overlaps with printed text in scrollback.
Solution: Clear until end-of-line and use correct message chunk.
(closes #10765 , closes #10764 )
v9.0.0071
2022-07-25 19:50:57 +01:00
zeertzjq
4dc513a22c
patch 9.0.0070: using utfc_ptr2char_len() when length is negative
...
Problem: Using utfc_ptr2char_len() when length is negative.
Solution: Check value of length. (closes #10760 )
v9.0.0070
2022-07-25 19:42:02 +01:00
Bram Moolenaar
0c740e745a
patch 9.0.0069: leaking memory when using text prop with inserted text
...
Problem: Leaking memory when using text prop with inserted text.
Solution: Clear the growarray with text.
v9.0.0069
2022-07-25 19:07:04 +01:00
Bram Moolenaar
fe3fb6e1e6
patch 9.0.0068: build fails with tiny features
...
Problem: Build fails with tiny features.
Solution: Add #ifdef.
v9.0.0068
2022-07-25 18:35:15 +01:00
Bram Moolenaar
7f9969c559
patch 9.0.0067: cannot show virtual text
...
Problem: Cannot show virtual text.
Solution: Initial changes for virtual text support, using text properties.
v9.0.0067
2022-07-25 18:13:54 +01:00
Bram Moolenaar
b529cfbd04
Update runtime files
2022-07-25 15:42:07 +01:00
zeertzjq
cd6ad6439d
patch 9.0.0066: switching window uneccarily when getting buffer options
...
Problem: Switching window uneccarily when getting buffer options.
Solution: Do not switch window when getting buffer options. (closes #10767 )
v9.0.0066
2022-07-25 12:28:09 +01:00
Richard Purdie
509695c1c3
patch 9.0.0065: cross-compiling doesn't work because of timer_create check
...
Problem: Cross-compiling doesn't work because of timer_create check.
Solution: Use AC_CACHE_CHECK(). (Richard Purdie, closes #10777 )
v9.0.0065
2022-07-24 20:48:00 +01:00
Bram Moolenaar
c963ec31a0
patch 9.0.0064: confusing error when using "q:" in command line window
...
Problem: Confusing error when using "q:" in command line window.
Solution: Check for the situation and give a better error message.
(closes #10756 )
v9.0.0064
2022-07-24 20:08:01 +01:00
Bram Moolenaar
d61efa50f8
patch 9.0.0063: too many type casts for dict_get functions
...
Problem: Too many type casts for dict_get functions.
Solution: Change the key argument from "char_u *" to "char *".
v9.0.0063
2022-07-23 09:52:04 +01:00
Bram Moolenaar
5ac50de83f
patch 9.0.0062: compiler warnings for signed/unsigned char
...
Problem: Compiler warnings for signed/unsigned char.
Solution: Add type casts. (John Marriott)
v9.0.0062
2022-07-23 09:22:47 +01:00
Bram Moolenaar
5fa9f23a63
patch 9.0.0061: ml_get error with nested autocommand
...
Problem: ml_get error with nested autocommand.
Solution: Also check line numbers for a nested autocommand. (closes #10761 )
v9.0.0061
2022-07-23 09:06:48 +01:00
Bram Moolenaar
b9e717367c
patch 9.0.0060: accessing uninitialized memory when completing long line
...
Problem: Accessing uninitialized memory when completing long line.
Solution: Terminate string with NUL.
v9.0.0060
2022-07-23 06:53:08 +01:00
zeertzjq
bb404f5ad5
patch 9.0.0059: test file has wrong name
...
Problem: Test file has wrong name.
Solution: Rename the file. Various small fixes. (closes #10674 )
v9.0.0059
2022-07-23 06:25:29 +01:00
Yegappan Lakshmanan
81a3ff97e2
patch 9.0.0058: Win32: cannot test low level events
...
Problem: Win32: cannot test low level events.
Solution: Add "sendevent" to test_gui_event(). (Yegappan Lakshmanan,
closes #10679 )
v9.0.0058
2022-07-23 05:04:16 +01:00
Bram Moolenaar
5154a88800
patch 9.0.0057: has('patch-xxx') returns true
...
Problem: has('patch-xxx') returns true.
Solution: Check for digit. (closes #10751 )
v9.0.0057
2022-07-18 20:48:50 +01:00
Bram Moolenaar
bd683e3a79
patch 9.0.0056: wrong line number reported when :cexpr fails in :def function
...
Problem: Wrong line number reported when :cexpr fails in :def function.
Solution: Set line_number before executing :cexpr. (closes #10735 )
2022-07-18 17:49:03 +01:00
Gregory Anders
fa49eb4827
patch 9.0.0055: bitbake files are not detected
...
Problem: Bitbake files are not detected.
Solution: Add bitbake filetype detection by file name and contents. (Gregory
Anders, closes #10697 )
v9.0.0056
v9.0.0055
2022-07-16 17:46:47 +01:00
Bram Moolenaar
c7bd2f08e5
patch 9.0.0054: compiler warning for size_t to int conversion
...
Problem: Compiler warning for size_t to int conversion.
Solution: Add type cast. (Mike Williams, closes #10741 )
v9.0.0054
2022-07-15 20:45:20 +01:00
Dominique Pelle
3a393790a4
patch 9.0.0053: E1281 not tested with the old regexp engine
...
Problem: E1281 not tested with the old regexp engine.
Solution: Loop over the values of 'regexp'. (Dominique Pellé, closes #10695 )
v9.0.0053
2022-07-14 17:40:49 +01:00
K.Takata
2ebcc35826
patch 9.0.0052: "zG" may throw an error if invalid character follows
...
Problem: "zG" may throw an error if invalid character follows.
Solution: Pass the word length to valid_spell_word(). (Ken Takata,
closes #10737 )
v9.0.0052
2022-07-14 17:25:14 +01:00
zeertzjq
f754fe6a3d
patch 9.0.0051: using CTRL-C wih :append may hang Vim
...
Problem: Using CTRL-C wih :append may hang Vim.
Solution: Reset got_int. (closes #10729 , closes #10728 )
v9.0.0051
2022-07-14 17:06:12 +01:00
Bram Moolenaar
b26592a84c
patch 9.0.0050: split else-of is confusing
...
Problem: Split else-of is confusing.
Solution: Join the lines. (closes #10696 )
v9.0.0050
2022-07-12 17:34:31 +01:00
Leandro Lourenci
99af91e582
patch 9.0.0049: csv and tsv files are not recognized
...
Problem: Csv and tsv files are not recognized.
Solution: Add patterns fo csv and tsv files. (Leandro Lourenci,
closes #10680 )
v9.0.0049
2022-07-09 20:27:07 +01:00
Bram Moolenaar
b90818867c
patch 9.0.0048: cursor in wrong column with mouse click after concealed text
...
Problem: Cursor in wrong column with mouse click after concealed text.
Solution: Store the text column when drawing text.
v9.0.0048
2022-07-09 04:56:24 +01:00
Bram Moolenaar
fee0c4aa99
Runtime files update
2022-07-07 22:31:59 +01:00
Bram Moolenaar
32acf1f1a7
patch 9.0.0047: using freed memory with recursive substitute
...
Problem: Using freed memory with recursive substitute.
Solution: Always make a copy for reg_prev_sub.
v9.0.0047
2022-07-07 22:20:31 +01:00
Bram Moolenaar
baefde1455
patch 9.0.0046: reading past end of completion with duplicate match
...
Problem: Reading past end of completion with duplicate match.
Solution: Check string length
v9.0.0046
2022-07-07 19:59:49 +01:00
Bram Moolenaar
caea66442d
patch 9.0.0045: reading past end of completion with a long line
...
Problem: Reading past end of completion with a long line and 'infercase'
set.
Solution: Allocate the string if needed.
v9.0.0045
2022-07-07 19:42:04 +01:00
Bram Moolenaar
b8329db36a
patch 9.0.0044: typos in comments, wrapping lines
...
Problem: Typos in comments, wrapping lines.
Solution: Adjust comments. Wrap lines.
v9.0.0044
2022-07-06 13:31:28 +01:00
Bram Moolenaar
5ed11535e0
Update runtime files
2022-07-06 13:18:11 +01:00
zeertzjq
cf34434b5e
patch 9.0.0043: insufficient testing for bracket commands
...
Problem: Insufficient testing for bracket commands.
Solution: Add a few more tests. (closes #10668 )
v9.0.0043
2022-07-06 12:57:31 +01:00
Bram Moolenaar
3244780379
patch 9.0.0042: missing change for filetype detection
...
Problem: Missing change for filetype detection.
Solution: Include change to detect guile from shebang line.
v9.0.0042
2022-07-05 21:56:39 +01:00
smjonas
704988f0c3
patch 9.0.0041: a couple of filetype patterns do not have "*" before "/etc"
...
Problem: A couple of filetype patterns do not have "*" before "/etc".
Solution: Add the star. (Jonas Strittmatter, closes #10662 )
v9.0.0041
2022-07-05 18:42:56 +01:00
Bram Moolenaar
b67f0c8e49
patch 9.0.0040: use of set_chars_option() is confusing
...
Problem: Use of set_chars_option() is confusing.
Solution: Add "apply" argument to store the result or not. Merge similar
code.
v9.0.0040
2022-07-04 21:03:36 +01:00
Bram Moolenaar
4c99e622dd
patch 9.0.0039: not all systems have GDK_KEY_dead_circumflex
...
Problem: Not all systems have GDK_KEY_dead_circumflex. (Hisashi T Fujinaka)
Solution: Add an #ifdef.
v9.0.0039
2022-07-04 19:58:17 +01:00
Bram Moolenaar
5ed26faace
patch 9.0.0038: 'listchars' test fails
...
Problem: 'listchars' test fails.
Solution: Use window-local value after setting the global value
v9.0.0038
2022-07-04 18:05:51 +01:00
Bram Moolenaar
510f03738d
patch 9.0.0037: build error
...
Problem: Build error.
Solution: Add missing change.
v9.0.0037
2022-07-04 17:46:22 +01:00
Bram Moolenaar
96ba25ac01
patch 9.0.0036: 'fillchars' cannot have window-local values
...
Problem: 'fillchars' cannot have window-local values.
Solution: Make 'fillchars' global-local. (closes #5206 )
v9.0.0036
2022-07-04 17:34:33 +01:00
Bram Moolenaar
54e5fed6d2
patch 9.0.0035: spell dump may go beyond end of an array
...
Problem: Spell dump may go beyond end of an array.
Solution: Limit the word length.
v9.0.0035
2022-07-04 13:37:07 +01:00
zeertzjq
288ed23e39
patch 9.0.0034: spell tests do not always clear the word list
...
Problem: Spell tests do not always clear the word list.
Solution: Clear the word list in TearDown(). (closes #10659 )
v9.0.0034
2022-07-04 11:03:07 +01:00
Anton Sharonov
4dd9252d6f
patch 9.0.0033: on a Belgian keyboard CTRL-[ does not work
...
Problem: On a Belgian keyboard CTRL-[ does not work.
Solution: Handle GDK_KEY_dead_circumflex. (Anton Sharonov, closes #10658 )
v9.0.0033
2022-07-04 10:47:31 +01:00
Bram Moolenaar
7fe956d176
patch 9.0.0032: in the quickfix window 'cursorline' overrules QuickFixLine
...
Problem: In the quickfix window 'cursorline' overrules QuickFixLine
highlighting.
Solution: Combine the attributes. Add a test. (closes #10654 )
v9.0.0032
2022-07-03 14:21:09 +01:00
zeertzjq
9359e8a6d9
patch 9.0.0031: <cmod> of user command does not have correct verbose value
...
Problem: <cmod> of user command does not have correct verbose value.
Solution: Use the value from the command modifier. (closes #10651 )
v9.0.0031
2022-07-03 13:16:09 +01:00
Bram Moolenaar
22e7e867e2
patch 9.0.0030: matchfuzzy test depends on path of current directory
...
Problem: Matchfuzzy test depends on path of current directory.
Solution: Use fnamemodify() to remove the path. (Robin Becker,
closes #10650 )
v9.0.0030
2022-07-02 20:48:01 +01:00
Bram Moolenaar
daaca8a128
patch 9.0.0029: the bitmaps/vim.ico file is not in the distribution
...
Problem: The bitmaps/vim.ico file is not in the distribution.
Solution: Add it back to the distribution. Adjust the build rules to have
it end up in the right place.
v9.0.0029
2022-07-02 17:58:23 +01:00