mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-03-14 03:25:15 +01:00
merge buttonise-links patch to master
This commit is contained in:
commit
5d05523659
1 changed files with 7 additions and 5 deletions
|
@ -1174,13 +1174,15 @@ This also turns id:\"<message id>\"-parts and mid: links into
|
|||
buttons for a corresponding notmuch search."
|
||||
(goto-address-fontify-region start end)
|
||||
(save-excursion
|
||||
(let (links)
|
||||
(goto-char start)
|
||||
(while (re-search-forward notmuch-id-regexp end t)
|
||||
(let (links
|
||||
(beg-line (progn (goto-char start) (line-beginning-position)))
|
||||
(end-line (progn (goto-char end) (line-end-position))))
|
||||
(goto-char beg-line)
|
||||
(while (re-search-forward notmuch-id-regexp end-line t)
|
||||
(push (list (match-beginning 0) (match-end 0)
|
||||
(match-string-no-properties 0)) links))
|
||||
(goto-char start)
|
||||
(while (re-search-forward notmuch-mid-regexp end t)
|
||||
(goto-char beg-line)
|
||||
(while (re-search-forward notmuch-mid-regexp end-line t)
|
||||
(let* ((mid-cid (match-string-no-properties 1))
|
||||
(mid (save-match-data
|
||||
(string-match "^[^/]*" mid-cid)
|
||||
|
|
Loading…
Add table
Reference in a new issue