diff options
author | Clint Adams <clint@users.sourceforge.net> | 2000-05-24 05:58:20 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2000-05-24 05:58:20 +0000 |
commit | fae0b54f1cb44b8df41dcb6f459936134d0e7b37 (patch) | |
tree | ea147bfdef49d8beb0a471260e8b9dc8150b9c02 | |
parent | 72639fca30258c34b72baa0eb92572db9b63fd16 (diff) | |
download | zsh-fae0b54f1cb44b8df41dcb6f459936134d0e7b37.tar.gz zsh-fae0b54f1cb44b8df41dcb6f459936134d0e7b37.tar.xz zsh-fae0b54f1cb44b8df41dcb6f459936134d0e7b37.zip |
11548: -h flag for ispell
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/User/_ispell | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index b8c6ab7da..8cffd7d7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-05-24 Clint Adams <schizo@debian.org> + + * 11548: Completion/User/_ispell: add -h switch to + designate input file as HTML. + 2000-05-23 Peter Stephenson <pws@pwstephenson.fsnet.co.uk> * 11542: Doc/Zsh/compsys.yo: more wording `improvements'. diff --git a/Completion/User/_ispell b/Completion/User/_ispell index 13b203584..7d81952dc 100644 --- a/Completion/User/_ispell +++ b/Completion/User/_ispell @@ -3,8 +3,9 @@ case "${words[1]:t}" in ispell) _arguments -s \ - '(-n)-t[input file is in TeX/LaTeX format]' \ - '(-t)-n[input file is in nroff/troff format]' \ + '(-n -h)-t[input file is in TeX/LaTeX format]' \ + '(-t -h)-n[input file is in nroff/troff format]' \ + '(-n -t)-h[input file is in HTML format]' \ '(-x)-b[create backup file]' \ '(-b)-x[don'"'"'t create backup file]' \ '(-C)-B[report run-together words as errors]' \ |