diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-31 09:27:52 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-31 09:27:52 +0000 |
commit | 4629133ad33dacef459ad9fa5ca438836a1be9fb (patch) | |
tree | 5ffa9219098195fbf3a04c7c40eb90d79b87f9a9 /Completion/User/_man | |
parent | fe8490dcf0b1c0e51fe053938711d15c38128f20 (diff) | |
download | zsh-4629133ad33dacef459ad9fa5ca438836a1be9fb.tar.gz zsh-4629133ad33dacef459ad9fa5ca438836a1be9fb.tar.xz zsh-4629133ad33dacef459ad9fa5ca438836a1be9fb.zip |
Andrej: fix for ${..//..} with % in search string (11660)
Diffstat (limited to 'Completion/User/_man')
-rw-r--r-- | Completion/User/_man | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/User/_man b/Completion/User/_man index 0ba1798d1..68ec12679 100644 --- a/Completion/User/_man +++ b/Completion/User/_man @@ -27,7 +27,7 @@ fi # `sman' is the SGML manual directory for Solaris 7. # 1M is system administrator commands on SVR4 -mrd=(${^manpath/\\%L/${LANG:-En_US.ASCII}}/mandb(N)) +mrd=(${^manpath/\%L/${LANG:-En_US.ASCII}}/mandb(N)) if [[ $words[2] = (<->*|1M|l|n) ]]; then rep=( $manpath/(sman|man|cat)${words[2]}/${~approx}$PREFIX${~star}$SUFFIX.<->*(N:t) ) |