Re: [Bash-completion-devel] [SCM] bash-completion branch, master, updated. 1.90-47-g068a1a1

2011-11-16 Thread Ville Skyttä
On 11/16/2011 10:21 PM, Igor Murzov wrote: The following commit has been merged in the master branch: commit b3fcb55dcf3d5a99d9a705a54dd649a976706d3f Author: Igor Murzov e-m...@date.by Date: Wed Nov 16 23:46:29 2011 +0300 __get_cword_at_cursor_by_ref: Add missing quotes.

Re: [Bash-completion-devel] [SCM] bash-completion branch, master, updated. 1.90-47-g068a1a1

2011-11-16 Thread Igor Murzov
On Wed, 16 Nov 2011 23:58:22 +0200 Ville Skyttä ville.sky...@iki.fi wrote: On 11/16/2011 10:21 PM, Igor Murzov wrote: The following commit has been merged in the master branch: commit b3fcb55dcf3d5a99d9a705a54dd649a976706d3f Author: Igor Murzov e-m...@date.by Date: Wed Nov 16 23:46:29

Re: [Bash-completion-devel] [SCM] bash-completion branch, master, updated. 1.90-47-g068a1a1

2011-11-16 Thread Ville Skyttä
On 11/17/2011 02:30 AM, Igor Murzov wrote: I don't know if quotes are necessary in this particular case. But with quotes and without quotes results are different: $ x=a b c $ y=a $ z=( ${x#$y} ) $ echo ${#z[@]} 2 $ z=( ${x#$y} ) $ echo ${#z[@]} 1 Yes, for array constructs like that