From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13787 invoked from network); 25 Feb 2000 17:10:22 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 25 Feb 2000 17:10:22 -0000 Received: (qmail 7041 invoked by alias); 25 Feb 2000 17:09:49 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9882 Received: (qmail 7032 invoked from network); 25 Feb 2000 17:09:49 -0000 To: zsh-workers@math.gatech.edu Subject: PATCH: _prcs error-message fix X-Attribution: adl From: Alexandre Duret-Lutz Date: 25 Feb 2000 18:07:26 +0100 Message-ID: User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii I'm afraid there is still mistakes in this function... This fix an error message and add a second. Index: Completion/User/_prcs --- Completion/User/_prcs Fri, 11 Feb 2000 21:43:30 +0100 Alexandre +++ Completion/User/_prcs Fri, 25 Feb 2000 18:02:43 +0100 Alexandre @@ -84,6 +84,9 @@ '-i[expand the entire project immediately]' \ ':project name:_prcs_projects' ;; + *) + _message "unknown prcs administrative subfunction: $words[1]" + ;; esac fi ;; @@ -197,7 +200,7 @@ ':project name:_prcs_projects' ;; *) - _message "unknown prcs command: $words[2]" + _message "unknown prcs command: $words[1]" ;; esac fi -- Alexandre Duret-Lutz