mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-18 09:15:56 +01:00
emacs: Use "message-cited-text" instead of "message-cited-text-face"
(describe-face 'message-cited-text-face) > message-cited-text-face is an alias for the face `message-cited-text'. > This face is obsolete since 22.1; use `message-cited-text' instead. Signed-off-by: Pieter Praet <pieter@praet.org> Signed-off-by: Jameson Graef Rollins <jrollins@finestructure.net>
This commit is contained in:
parent
c4e6d3291c
commit
e2afcd2594
1 changed files with 2 additions and 2 deletions
|
@ -156,7 +156,7 @@ insert before the button, probably for indentation."
|
|||
(let* ((cite-start (match-beginning 0))
|
||||
(cite-end (match-end 0))
|
||||
(cite-lines (count-lines cite-start cite-end)))
|
||||
(overlay-put (make-overlay cite-start cite-end) 'face 'message-cited-text-face)
|
||||
(overlay-put (make-overlay cite-start cite-end) 'face 'message-cited-text)
|
||||
(when (> cite-lines (+ notmuch-wash-citation-lines-prefix
|
||||
notmuch-wash-citation-lines-suffix
|
||||
1))
|
||||
|
@ -178,7 +178,7 @@ insert before the button, probably for indentation."
|
|||
(sig-end-marker (make-marker)))
|
||||
(set-marker sig-start-marker sig-start)
|
||||
(set-marker sig-end-marker (point-max))
|
||||
(overlay-put (make-overlay sig-start-marker sig-end-marker) 'face 'message-cited-text-face)
|
||||
(overlay-put (make-overlay sig-start-marker sig-end-marker) 'face 'message-cited-text)
|
||||
(notmuch-wash-region-to-button
|
||||
sig-start-marker sig-end-marker
|
||||
"signature" "\n"))))))
|
||||
|
|
Loading…
Reference in a new issue