Re: First lines of examples/startup-files/bashrc

2020-04-08 Thread Eduardo Bustamante
On Wed, Apr 8, 2020 at 2:42 PM Martin Schulte wrote: (...) > But, as far as I understand, a non-interactive bash doesn't read > ~/.bashrc at all - so shouldn't we just omit them? There are exceptions. One of them being SSH, see: https://git.savannah.gnu.org/cgit/bash.git/tree/shell.c?h=ea31c00845

First lines of examples/startup-files/bashrc

2020-04-08 Thread Martin Schulte
Hello bash developers, my apologies in advance if I'm overlooking something trivial but I'm really wondering about the first lines in examples/startup-files/bashrc (which are copied to Debian's skeleton ~/.bashrc): case $- in *i*);; *) return ;; esac Well, bash terminates sourcing the f

Re: [PATCH] Add active mark, face support; activate mark on paste

2020-04-08 Thread Chet Ramey
On 3/25/20 4:18 PM, Daniel Colascione wrote: >> I haven't touched the face code in display.c. I'd like to find a simpler >> way to do it: the patch seems to have a lot of overhead and adds more >> complexity than I'd like at a time when I'm trying to make the redisplay >> code simpler. I don't kno