From cec723135ccbfeedb5ee4a30fad181badda8137e Mon Sep 17 00:00:00 2001 From: ianmacd <> Date: Wed, 12 Jun 2002 19:43:00 +0000 Subject: [PATCH] - fix quoting bug in PINE address completion --- bash_completion | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash_completion b/bash_completion index c774680e..190dee50 100644 --- a/bash_completion +++ b/bash_completion @@ -1,6 +1,6 @@ # bash_completion - some programmable completion functions for bash 2.05a # -# $Id: bash_completion,v 1.355 2002/06/11 18:49:57 ianmacd Exp $ +# $Id: bash_completion,v 1.356 2002/06/12 21:43:00 ianmacd Exp $ # # Copyright (C) Ian Macdonald # @@ -3029,7 +3029,7 @@ _pineaddr() COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} - COMPREPLY=( $( compgen -W '$( awk '{print $1}' < ~/.addressbook )' \ + COMPREPLY=( $( compgen -W '$( awk "{print $1}" < ~/.addressbook )' \ -- $cur ) ) } [ "$have" ] && complete -F _pineaddr $default pine