summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--Doc/Zsh/builtins.yo4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ed8e919d..e3762340a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
-2024-02-19 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
+2024-02-19 Peter Stephenson <p.w.stephenson@ntlworld.com>
+
+ * 52549: Doc/Zsh/builtins.yo: document that return already works
+ in a script.
+
+x2024-02-19 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 52544: Completion/Unix/Type/_diff_options: support macOS Ventura
or newer
diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo
index 1aa807633..7a8654f27 100644
--- a/Doc/Zsh/builtins.yo
+++ b/Doc/Zsh/builtins.yo
@@ -1649,7 +1649,9 @@ cindex(functions, returning from)
item(tt(return) [ var(n) ])(
Causes a shell function or `tt(.)' script to return to
the invoking script with the return status specified by
-an arithmetic expression var(n).
+an arithmetic expression var(n). Also causes a non-interctive
+shell to exit, allowing files containing shell code to be used
+both as scripts and as autoloadable shell functions.
For example, the following prints `tt(42)':
example(() { integer foo=40; return "foo + 2" }