summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_subversion2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 040086a8d..84c88d215 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-27 Clint Adams <clint@zsh.org>
+
+ * Vincent Lefevre: 21767: Completion/Unix/Command/_subversion:
+ add ~ to the default svn status pattern.
+
2005-09-26 Peter Stephenson <pws@csr.com>
* 21764: Src/Zle/zle_hist.c: unmetafication mangled history lines
diff --git a/Completion/Unix/Command/_subversion b/Completion/Unix/Command/_subversion
index 0b0c31245..04509611c 100644
--- a/Completion/Unix/Command/_subversion
+++ b/Completion/Unix/Command/_subversion
@@ -156,7 +156,7 @@ _svn_deletedfiles() {
(( $+functions[_svn_status] )) ||
_svn_status() {
local dir=$REPLY:h
- local pat="${1:-([ADMR]|?M)}"
+ local pat="${1:-([ADMR~]|?M)}"
if (( ! $+_cache_svn_status[$dir] )); then
_cache_svn_status[$dir]="$(_call_program files svn status -N $dir)"