runtime(doc): Update help tags references
Commit:
https://github.com/vim/vim/commit/7a9548c400d3e333d35db2cec7f897ba17f93351
Author: Christian Brabandt <
c...@256bit.org>
Date: Sun Mar 15 09:34:54 2026 +0000
runtime(doc): Update help tags references
related:
https://github.com/vim/vim/issues/19691
Signed-off-by: Christian Brabandt <
c...@256bit.org>
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 21dc56c33..a327ba6c5 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -11714,7 +11714,7 @@ system({expr} [, {input}]) *system()* *E677*
cooked mode. This is meant to be used for commands that do
not need the user to type. It avoids stray characters showing
up on the screen which require |CTRL-L| to remove.
- When calling system() from a |statusline| expression, an
+ When calling system() from a 'statusline' expression, an
|autocommand| or a |timer| callback, you should use |:silent|
to avoid terminal responses (e.g. from cursor style queries)
being echoed on the screen. >
@@ -11776,7 +11776,7 @@ systemlist({expr} [, {input}]) *systemlist()*
Returns an empty string on error.
Like |system()|, prepend |:silent| when the command does not
- need user interaction and is called from a |statusline|
+ need user interaction and is called from a 'statusline'
expression, an |autocommand| or a |timer| callback. See
|system()| for details.