citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 7679f1d28c433e123f1391c71ee4e71709266367
parent 635977515ff84ed3e891db3ec2daf0fdb9a4f994
Author: William Casarin <jb55@jb55.com>
Date:   Sat, 19 Sep 2020 05:01:49 -0700

bin: fix mailto handler

Diffstat:
Mbin/emacs-mailto-handler | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/emacs-mailto-handler b/bin/emacs-mailto-handler @@ -16,7 +16,7 @@ mailto="${mailto#mailto:}" mailto=$(printf '%s\n' "$mailto" | sed -e 's/[\"]/\\&/g') #elisp_expr="(compose-mail \"$mailto\")" -elisp_expr="(notmuch-compose-mail \"$mailto\")" +elisp_expr="(compose-mail \"$mailto\")" ## This version re-uses an existing window. #emacsclient -n --eval "$elisp_expr"