diff --git a/mu4e/mu4e-mark.el b/mu4e/mu4e-mark.el index 6131838b..7e2b6c1d 100644 --- a/mu4e/mu4e-mark.el +++ b/mu4e/mu4e-mark.el @@ -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)))))))