From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1674 invoked from network); 8 Mar 1999 13:01:55 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 8 Mar 1999 13:01:55 -0000 Received: (qmail 12032 invoked by alias); 8 Mar 1999 13:01:30 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 5682 Received: (qmail 12023 invoked from network); 8 Mar 1999 13:01:29 -0000 Date: Mon, 8 Mar 1999 14:00:45 +0100 (MET) Message-Id: <199903081300.OAA11862@beta.informatik.hu-berlin.de> From: Sven Wischnowsky To: zsh-workers@sunsite.auc.dk Subject: PATCH: small fix in _bindkey There was a missing quote... Bye Sven diff -u oc/Builtins/_bindkey Completion/Builtins/_bindkey --- oc/Builtins/_bindkey Mon Mar 8 11:05:11 1999 +++ Completion/Builtins/_bindkey Mon Mar 8 14:00:16 1999 @@ -1,6 +1,6 @@ #defcomp bindkey -if [[ "$words[2]" = -*[DAN]* || "$words[CURRENT-1] = -*M ]]; then +if [[ "$words[2]" = -*[DAN]* || "$words[CURRENT-1]" = -*M ]]; then compgen -s '$(bindkey -l)' else compgen -b -- Sven Wischnowsky wischnow@informatik.hu-berlin.de