bashrc: do not print emacs process id

This commit is contained in:
Protesilaos Stavrou 2019-11-10 08:57:48 +02:00
parent 2f3b537718
commit fc23fed166
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA

View file

@ -38,7 +38,7 @@ export PAGER="less --quit-at-eof"
export MANPAGER="$PAGER"
# Default editor.
if pgrep -x emacs; then
if pgrep -x emacs > /dev/null; then
export VISUAL="emacsclient -c"
export EDITOR="emacsclient -t"
elif _checkexec gvim; then