diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2008-10-10 09:53:22 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2008-10-10 09:53:22 +0000 |
commit | e4ae98949c7a7902d3cc9dff5166f9460a49e77e (patch) | |
tree | c7eda271350d6bbac65a1c64338b3aa5a9bc20c7 /Functions/Misc | |
parent | dc9f8898674aa20b6a1b8dbdf6c37586aaa7ccf3 (diff) | |
download | zsh-e4ae98949c7a7902d3cc9dff5166f9460a49e77e.tar.gz zsh-e4ae98949c7a7902d3cc9dff5166f9460a49e77e.tar.xz zsh-e4ae98949c7a7902d3cc9dff5166f9460a49e77e.zip |
25814: quote arguments to "eval".
Diffstat (limited to 'Functions/Misc')
-rw-r--r-- | Functions/Misc/run-help | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Functions/Misc/run-help b/Functions/Misc/run-help index 85f3912e6..f8aef0d47 100644 --- a/Functions/Misc/run-help +++ b/Functions/Misc/run-help @@ -101,7 +101,7 @@ do do shift cmd_args done - eval "run-help-$1:t ${(@)cmd_args[2,-1]}" + eval "run-help-$1:t ${(q@)cmd_args[2,-1]}" else man $@:t fi |