X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch.el;h=6c0bc1bcae0ed9e3f423e9ccdb860484b4e18111;hb=5e26d14536398210869a920f8e7bb84fd2ace6aa;hp=64295ac996aaf84ff524bb2dd7aa647a15fbe268;hpb=cab1415a94f09c529ca7323904c5a159c996cbe0;p=notmuch diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 64295ac9..6c0bc1bc 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -827,14 +827,14 @@ See `notmuch-tag' for information on the format of TAG-CHANGES." (let (longest (longest-length 0)) (loop for tuple in notmuch-saved-searches - if (let ((quoted-query (regexp-quote (cdr tuple)))) + if (let ((quoted-query (regexp-quote (notmuch-saved-search-get tuple :query)))) (and (string-match (concat "^" quoted-query) query) (> (length (match-string 0 query)) longest-length))) do (setq longest tuple)) longest)) - (saved-search-name (car saved-search)) - (saved-search-query (cdr saved-search))) + (saved-search-name (notmuch-saved-search-get saved-search :name)) + (saved-search-query (notmuch-saved-search-get saved-search :query))) (cond ((and saved-search (equal saved-search-query query)) ;; Query is the same as saved search (ignoring case) (concat "*notmuch-saved-search-" saved-search-name "*"))