Rename mmark overlay to mu4e-mark

This commit is contained in:
Thierry Volpiatto 2021-06-17 21:11:38 +02:00
parent 89538ef4fc
commit 2f251209e3
No known key found for this signature in database
GPG Key ID: 08FDB07A7433A7F2
1 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ The following marks are available, and the corresponding props:
;; stuff, unless we're unmarking
(remhash docid mu4e~mark-map)
;; remove possible mark overlays
(remove-overlays (line-beginning-position) (line-end-position) 'mmark t)
(remove-overlays (line-beginning-position) (line-end-position) 'mu4e-mark t)
;; now, let's set a mark (unless we were unmarking)
(unless (eql mark 'unmark)
(puthash docid (cons mark target) mu4e~mark-map)
@ -282,7 +282,7 @@ The following marks are available, and the corresponding props:
(mu4e~headers-goto-docid docid t)))
(overlay (make-overlay start (+ start (length targetstr)))))
(overlay-put overlay 'display targetstr)
(overlay-put overlay 'mmark t)
(overlay-put overlay 'mu4e-mark t)
(overlay-put overlay 'evaporate t)
docid)))))))