From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25974 invoked from network); 24 May 2000 05:55:33 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 24 May 2000 05:55:33 -0000 Received: (qmail 16799 invoked by alias); 24 May 2000 05:55:27 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 11548 Received: (qmail 16792 invoked from network); 24 May 2000 05:55:26 -0000 Date: Wed, 24 May 2000 01:55:22 -0400 From: Clint Adams To: zsh-workers@sunsite.auc.dk Subject: PATCH: _ispell missing HTML switch Message-ID: <20000524015522.B13195@scowler.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0.1i Since the latest version of ispell seems to be from 1995, I don't anticipate any compatibility problems. Index: Completion/User/_ispell =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/User/_ispell,v retrieving revision 1.2 diff -u -r1.2 _ispell --- Completion/User/_ispell 2000/04/05 11:28:09 1.2 +++ Completion/User/_ispell 2000/05/24 05:48:33 @@ -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]' \