about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2001-11-18 20:26:32 +0000
committerClint Adams <clint@users.sourceforge.net>2001-11-18 20:26:32 +0000
commitaf8b430e7bd58fac43fbdf2906bd915dae4ab95a (patch)
treee01e05ddb8f11dbea95d86684ff0323e94a9de4f
parente3b82281201b64225962f86ff68a4151cc41e4e4 (diff)
downloadzsh-af8b430e7bd58fac43fbdf2906bd915dae4ab95a.tar.gz
zsh-af8b430e7bd58fac43fbdf2906bd915dae4ab95a.tar.xz
zsh-af8b430e7bd58fac43fbdf2906bd915dae4ab95a.zip
16264: don't use grep and sed in _dput
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Debian/Command/_dput4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index bd678f42c..0e2882e66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-18  Clint Adams  <clint@zsh.org>
+
+        * 16264: Completion/Debian/Command/_dput:
+        Use parameter expansion instead of grep and sed.
+
 2001-11-15  Clint Adams  <clint@zsh.org>
 
 	* unposted: Functions/Prompts/prompt_clint_setup:
diff --git a/Completion/Debian/Command/_dput b/Completion/Debian/Command/_dput
index 39d2973bc..5fe9847d1 100644
--- a/Completion/Debian/Command/_dput
+++ b/Completion/Debian/Command/_dput
@@ -1,9 +1,7 @@
 #compdef dput
 
 if (( ! $+_dput_sites )); then
-  _dput_sites=(
-$(grep "^\[" /etc/dput.cf | sed -e 's,\[,,g' -e 's,\],,g')
-)
+  _dput_sites=( ${${(M)${(f)"$(</etc/dput.cf)"}:#\[*}//[][]/} )
 fi
 
 _arguments '(-c)--config[config file]:config file:' \