mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
notmuch-emacs-mua: set EMACS{,CLIENT} variables to defaults when empty
... in addition to doing this when these variables are unset. It is more useful to use defaults (emacs or emacsclient) than empty string as a command name.
This commit is contained in:
parent
36ad271704
commit
e870d73dc8
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ escape ()
|
|||
printf -v $2 '%s' "${__escape_arg__//\"/\\\"}"
|
||||
}
|
||||
|
||||
EMACS=${EMACS-emacs}
|
||||
EMACSCLIENT=${EMACSCLIENT-emacsclient}
|
||||
EMACS=${EMACS:-emacs}
|
||||
EMACSCLIENT=${EMACSCLIENT:-emacsclient}
|
||||
|
||||
PRINT_ONLY=
|
||||
NO_WINDOW=
|
||||
|
|
Loading…
Reference in a new issue