Re: [PATCH v2 9/9] completion: remove __git_index_file_list_filter()

2013-04-27 Thread Felipe Contreras
On Sat, Apr 27, 2013 at 8:41 PM, Eric Sunshine  wrote:
> On Sat, Apr 27, 2013 at 4:10 PM, Felipe Contreras
>  wrote:
>> Refactor the code into the only caller; __git_index_files().
>>
>> Also, Somehow messing up with the 'path' variable messes up the 'PATH'
>
> s/Somehow/somehow/
> s/messing up/messing/

More important than that is the fact that the problem is only on zsh.

-- 
Felipe Contreras
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 9/9] completion: remove __git_index_file_list_filter()

2013-04-27 Thread Eric Sunshine
On Sat, Apr 27, 2013 at 4:10 PM, Felipe Contreras
 wrote:
> Refactor the code into the only caller; __git_index_files().
>
> Also, Somehow messing up with the 'path' variable messes up the 'PATH'

s/Somehow/somehow/
s/messing up/messing/

> variable. So let's not do that.
>
> Signed-off-by: Felipe Contreras 
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 9/9] completion: remove __git_index_file_list_filter()

2013-04-27 Thread Felipe Contreras
Refactor the code into the only caller; __git_index_files().

Also, Somehow messing up with the 'path' variable messes up the 'PATH'
variable. So let's not do that.

Signed-off-by: Felipe Contreras 
---
 contrib/completion/git-completion.bash | 28 
 1 file changed, 8 insertions(+), 20 deletions(-)

diff --git a/contrib/completion/git-completion.bash 
b/contrib/completion/git-completion.bash
index 20c9718..edb7428 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -259,23 +259,6 @@ __gitcomp_file ()
compgen -f /non-existing-dir/ > /dev/null
 }
 
-# Process path list returned by "ls-files" and "diff-index --name-only"
-# commands, in order to list only file names relative to a specified
-# directory, and append a slash to directory names.
-__git_index_file_list_filter ()
-{
-   local path
-
-   while read -r path; do
-   case "$path" in
-   ?*/*)
-   echo "${path%%/*}" ;;
-   *)
-   echo "$path" ;;
-   esac
-   done
-}
-
 # Execute 'git ls-files', unless the --committable option is specified, in
 # which case it runs 'git diff-index' to find out the files that can be
 # committed.  It return paths relative to the directory specified in the first
@@ -303,11 +286,16 @@ __git_ls_files_helper ()
 #slash.
 __git_index_files ()
 {
-   local dir="$(__gitdir)" root="${2-.}"
+   local dir="$(__gitdir)" root="${2-.}" file
 
if [ -d "$dir" ]; then
-   __git_ls_files_helper "$root" "$1" | 
__git_index_file_list_filter |
-   sort | uniq
+   __git_ls_files_helper "$root" "$1" |
+   while read -r file; do
+   case "$file" in
+   ?*/*) echo "${file%%/*}" ;;
+   *) echo "$file" ;;
+   esac
+   done | sort | uniq
fi
 }
 
-- 
1.8.2.1.1031.g2ee5873

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html