Re: unset does not act as expected on namerefs

2015-05-29 Thread Chet Ramey
On 5/27/15 8:25 AM, Greg Wooledge wrote: > 1) It doesn't cross scopes. It's not like Tcl's upvar at all. It > only refers to a variable in the same scope (which, following the > standard bash rules, means it'll recursively search upward until > it finds a matching variable by name).

vi-insertion-mode is never bound according to bind -p

2015-05-29 Thread isabella parakiss
$ bind -p -m vi | grep vi-insertion # vi-insertion-mode (not bound) This was introduced in bash 4.0 and conflicts with the readline docs. Small patch below... --- xoxo iza lib/readline/funmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/readline/funmap.c b/lib/r