* lisp/net/shr.el (shr-fill-line):

Preserve text properties in folded lines (bug#24034).
This commit is contained in:
Katsumi Yamaoka 2016-07-21 08:36:17 +00:00
parent 852111f3a6
commit 9eb028f886

View file

@ -662,13 +662,12 @@ size, and full-buffer size."
;; Success; continue.
(when (= (preceding-char) ?\s)
(delete-char -1))
(let ((face (get-text-property (point) 'face))
(background-start (point)))
(let ((props (text-properties-at (point)))
(gap-start (point)))
(insert "\n")
(shr-indent)
(when face
(put-text-property background-start (point) 'face
`,(shr-face-background face))))
(when props
(add-text-properties gap-start (point) props)))
(setq start (point))
(shr-vertical-motion shr-internal-width)
(when (looking-at " $")