diff options
author | jao <jao@gnu.org> | 2021-10-18 20:42:37 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-10-18 20:42:37 +0100 |
commit | 60c8db2b21b215881e2e3a3c7affde175eb64511 (patch) | |
tree | c590887927bb6f52e03f854b3087154a187a3740 | |
parent | 091ecbea3f407213115b1f343a86341f6fbeaab0 (diff) | |
download | elibs-60c8db2b21b215881e2e3a3c7affde175eb64511.tar.gz elibs-60c8db2b21b215881e2e3a3c7affde175eb64511.tar.bz2 |
nits
-rw-r--r-- | lib/net/jao-notmuch.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/jao-notmuch.el b/lib/net/jao-notmuch.el index 094b93b..b49fe1c 100644 --- a/lib/net/jao-notmuch.el +++ b/lib/net/jao-notmuch.el @@ -380,9 +380,9 @@ (interactive) (jao-notmuch-tree--tag-and-next '("+deleted" "-new" "-unread") nil t)) -(defun jao-notmuch-tree-read-thread () - (interactive) - (jao-notmuch-tree--tag-and-next '("-unread" "-new") nil t)) +(defun jao-notmuch-tree-read-thread (unread) + (interactive "P") + (jao-notmuch-tree--tag-and-next '("-unread" "-new") unread t)) (defun jao-notmuch-tree-flag (unmark) (interactive "P") |