diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Doc/Zsh/builtins.yo | 3 | ||||
-rw-r--r-- | Doc/Zsh/grammar.yo | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index cf03505ca..ed98d61a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-07-24 Bart Schaefer <schaefer@zsh.org> + + * 15472: Doc/Zsh/builtins.yo, Doc/Zsh/grammar.yo: Fix errors + introduced by 15354. + 2001-07-24 Sven Wischnowsky <wischnow@zsh.org> * 15468: Completion/Unix/Command/_ssh: improve user/host diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo index cd79b7cfe..1c33326eb 100644 --- a/Doc/Zsh/builtins.yo +++ b/Doc/Zsh/builtins.yo @@ -130,8 +130,7 @@ is specified, then break var(n) levels instead of just one. ) findex(builtin) item(tt(builtin) var(name) [ var(args) ... ])( -Executes the builtin var(name), with the given var(args), even if that -builtin has been disabled (see tt(disable)). +Executes the builtin var(name), with the given var(args). ) alias(bye)(exit) module(cap)(zsh/cap) diff --git a/Doc/Zsh/grammar.yo b/Doc/Zsh/grammar.yo index 6b3ea6de1..0f717c8c2 100644 --- a/Doc/Zsh/grammar.yo +++ b/Doc/Zsh/grammar.yo @@ -398,7 +398,7 @@ tt(print) builtin, and the resulting string is considered to be entirely quoted. A literal `tt(')' character can be included in the string by using the `tt(\')' escape. -@pindex(RC_QUOTES, use of) +pindex(RC_QUOTES, use of) All characters enclosed between a pair of single quotes (tt('')) that is not preceded by a `tt($)' are quoted. A single quote cannot appear within single quotes unless the option tt(RC_QUOTES) is set, in which case |