about summary refs log tree commit diff
path: root/Etc
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2012-03-07 06:10:42 +0000
committerBart Schaefer <barts@users.sourceforge.net>2012-03-07 06:10:42 +0000
commitfa8a0e241c8ac9eb48ab9fc2d8bb3105088e0db9 (patch)
treee0369814c4201b9dfe4ca087620b574f4fb35059 /Etc
parenta0d24f0bf3bfc7509557089bd6e0336f8da0494f (diff)
downloadzsh-fa8a0e241c8ac9eb48ab9fc2d8bb3105088e0db9.tar.gz
zsh-fa8a0e241c8ac9eb48ab9fc2d8bb3105088e0db9.tar.xz
zsh-fa8a0e241c8ac9eb48ab9fc2d8bb3105088e0db9.zip
30320: "emulate" accepts invocation-time flags; other small doc tweaks.
Diffstat (limited to 'Etc')
-rw-r--r--Etc/FAQ.yo2
1 files changed, 1 insertions, 1 deletions
diff --git a/Etc/FAQ.yo b/Etc/FAQ.yo
index ee79a6ac4..ddbf42885 100644
--- a/Etc/FAQ.yo
+++ b/Etc/FAQ.yo
@@ -722,7 +722,7 @@ label(23)
      appear inside the tt({ }) the way they get appended to an alias.
 
   myeit() If the csh alias references its own name (tt(alias rm "rm -i")),
-     then in a zsh function you need the "command" keyword
+     then in a zsh function you need the "command" or "builtin" keyword
      (function tt(rm() { command rm -i "$@" })), but in a zsh alias
      you don't (tt(alias rm="rm -i")).