X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=emacs%2Fnotmuch-emacs-mua;h=a521497784ec27e91cf9c7ee905641b3d4459012;hp=98103972f400c69af957b51e8bbfa390109c3e21;hb=a5df39c276be5c6f8e67685ff5ef960d30e36e07;hpb=04174cdfadb88237242e0ed2728829c65dc440ec diff --git a/emacs/notmuch-emacs-mua b/emacs/notmuch-emacs-mua index 98103972..a5214977 100755 --- a/emacs/notmuch-emacs-mua +++ b/emacs/notmuch-emacs-mua @@ -40,6 +40,7 @@ AUTO_DAEMON= CREATE_FRAME= ELISP= MAILTO= +HELLO= # Short options compatible with mutt(1). while getopts :s:c:b:i:h opt; do @@ -63,7 +64,7 @@ while getopts :s:c:b:i:h opt; do opt=${opt%%=*} ;; # Long options without arguments. - --help|--print|--no-window-system|--client|--auto-daemon|--create-frame) + --help|--print|--no-window-system|--client|--auto-daemon|--create-frame|--hello) ;; *) echo "$0: unknown long option ${opt}, or argument mismatch." >&2 @@ -112,6 +113,9 @@ while getopts :s:c:b:i:h opt; do --create-frame) CREATE_FRAME="-c" ;; + --hello) + HELLO=1 + ;; *) # We should never end up here. echo "$0: internal error (option ${opt})." >&2 @@ -146,6 +150,8 @@ if [ -n "${MAILTO}" ]; then exit 1 fi ELISP="(browse-url-mail \"${MAILTO}\")" +elif [ -z "${ELISP}" -a -n "${HELLO}" ]; then + ELISP="(notmuch)" else ELISP="(notmuch-mua-new-mail) ${ELISP}" fi