On Thu, Jul 31, 2014 at 07:54:33AM -0700, Linda Walsh wrote: > Greg Wooledge wrote: > >On Wed, Jul 30, 2014 at 02:46:08PM -0700, Linda Walsh wrote: > >>I just noticed in the 4.2.45 I'm still running that when I > >>reset my local to standard (LC_ALL=C), it turned off > >>"vi mode" in my shell ops and turned on emacs mode. > > > >I cannot reproduce this. > > Try "unsetting LC_ALL"...
imadev:~$ bash-4.2 imadev:~$ set -o | grep -E '^(vi|emacs)' emacs off vi on imadev:~$ unset LC_ALL imadev:~$ set -o | grep -E '^(vi|emacs)' emacs off vi on imadev:~$ LC_ALL=C imadev:~$ set -o | grep -E '^(vi|emacs)' emacs off vi on You'll need to describe what you're doing to trigger the problem.