From 6636282a1607343553c2aab52defc165b0e97838 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Sun, 23 Nov 2008 18:23:28 +0000 Subject: users/13477: call _files instead of _path_files to correctly handle cycling through choices. --- ChangeLog | 5 +++++ Completion/Unix/Command/_rm | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a04f0452a..7f8ce7d9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-11-23 Barton E. Schaefer + + * users/13477: Completion/Unix/Command/_rm: call _files instead + of _path_files to correctly handle cycling through choices. + 2008-11-20 Peter Stephenson * 26075: Functions/Calendar/calendar_parse: update repeated events diff --git a/Completion/Unix/Command/_rm b/Completion/Unix/Command/_rm index 4209134b0..815bbbdf8 100644 --- a/Completion/Unix/Command/_rm +++ b/Completion/Unix/Command/_rm @@ -34,7 +34,7 @@ case $state in (file) declare -a ignored ignored=(${line//(#m)[\[\]()\\*?#<>~\^]/\\$MATCH}) - _path_files -F ignored && ret=0 + _files -F ignored && ret=0 ;; esac -- cgit 1.4.1