Comment fixes.

This commit is contained in:
Ville Skyttä 2011-05-01 17:29:43 +03:00
parent 0448c765ba
commit ddbd28f638

View File

@ -344,7 +344,7 @@ __reassemble_comp_words_by_ref()
# @param $2 words Name of variable to return words to # @param $2 words Name of variable to return words to
# @param $3 cword Name of variable to return cword to # @param $3 cword Name of variable to return cword to
# @param $4 cur Name of variable to return current word to complete to # @param $4 cur Name of variable to return current word to complete to
# @see ___get_cword_at_cursor_by_ref() # @see __reassemble_comp_words_by_ref()
__get_cword_at_cursor_by_ref() __get_cword_at_cursor_by_ref()
{ {
local cword words=() local cword words=()
@ -366,7 +366,7 @@ __get_cword_at_cursor_by_ref()
((index--)) ((index--))
done done
# Does found word matches cword? # Does found word match cword?
if [[ "$i" -lt "$cword" ]]; then if [[ "$i" -lt "$cword" ]]; then
# No, cword lies further; # No, cword lies further;
local old_size="${#cur}" local old_size="${#cur}"