diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-03-29 16:27:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 22:27:57 +0800 |
commit | 524f6294a3a9d93241d3b7f3034033f96dd32d7f (patch) | |
tree | 71706691c10eb82041925578d2fbaddcae4d8574 /src/clint.py | |
parent | ba257d74b187e38cd591b2f4eb2a4f0f6483b358 (diff) | |
download | rneovim-524f6294a3a9d93241d3b7f3034033f96dd32d7f.tar.gz rneovim-524f6294a3a9d93241d3b7f3034033f96dd32d7f.tar.bz2 rneovim-524f6294a3a9d93241d3b7f3034033f96dd32d7f.zip |
build(clint): link to wiki when accessing list_T internals directly (#17876)
Diffstat (limited to 'src/clint.py')
-rwxr-xr-x | src/clint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clint.py b/src/clint.py index 10f33d22e2..75aaba176d 100755 --- a/src/clint.py +++ b/src/clint.py @@ -3187,8 +3187,8 @@ def CheckLanguage(filename, clean_lines, linenum, file_extension, r'|li_(?:next|prev|tv))\b', line) if match: error(filename, linenum, 'runtime/deprecated', 4, - 'Accessing list_T internals directly is prohibited ' - '(hint: see commit d46e37cb4c71)') + 'Accessing list_T internals directly is prohibited; ' + 'see https://github.com/neovim/neovim/wiki/List-management-in-Neovim') # Check for suspicious usage of "if" like # } if (a == b) { |