about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2012-01-09 19:48:12 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2012-01-09 19:48:12 +0000
commitcd40e8caf68ff9cba210bda282107adba5a98107 (patch)
tree8c91f10d6ed42544dee6c016b1bade01460bfad5
parent609a9d264d6ff4b2869ee4fdef2d42c9b0527d57 (diff)
downloadzsh-cd40e8caf68ff9cba210bda282107adba5a98107.tar.gz
zsh-cd40e8caf68ff9cba210bda282107adba5a98107.tar.xz
zsh-cd40e8caf68ff9cba210bda282107adba5a98107.zip
Stepan Koltsov: 30105: fix stgit delete completion
-rw-r--r--ChangeLog7
-rw-r--r--Completion/Unix/Command/_stgit2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f8b3f0b3f..f9014820c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-01-09  Peter Stephenson  <p.w.stephenson@ntlworld.com>
+
+	* Stepan Koltsov: 30105: Completion/Unix/Command/_stgit: fix
+	delete completion.
+
 2012-01-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>
 
 	* users/16711: Completion/Unix/Type/_path_commands: try to take
@@ -15851,5 +15856,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5560 $
+* $Revision: 1.5561 $
 *****************************************************
diff --git a/Completion/Unix/Command/_stgit b/Completion/Unix/Command/_stgit
index 129b21a92..b2f2aeafa 100644
--- a/Completion/Unix/Command/_stgit
+++ b/Completion/Unix/Command/_stgit
@@ -29,7 +29,7 @@ else
     ;;
     (edit|files|goto|rename|log|float|delete|sink|mail|sync|show|pick|hide)
       _wanted -V "patches" expl "patch" \
-	compadd $(stg series --noprefix > /dev/null) \
+	compadd $(stg series --noprefix 2> /dev/null) \
 		&& ret=0
     ;;
     (*)