aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/net/shr.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/net/shr.el b/lisp/net/shr.el
index 2c8ff79763f..8718e4ffaea 100644
--- a/lisp/net/shr.el
+++ b/lisp/net/shr.el
@@ -636,13 +636,12 @@ size, and full-buffer size."
636 ;; Success; continue. 636 ;; Success; continue.
637 (when (= (preceding-char) ?\s) 637 (when (= (preceding-char) ?\s)
638 (delete-char -1)) 638 (delete-char -1))
639 (let ((face (get-text-property (point) 'face)) 639 (let ((props (text-properties-at (point)))
640 (background-start (point))) 640 (gap-start (point)))
641 (insert "\n") 641 (insert "\n")
642 (shr-indent) 642 (shr-indent)
643 (when face 643 (when props
644 (put-text-property background-start (point) 'face 644 (add-text-properties gap-start (point) props)))
645 `,(shr-face-background face))))
646 (setq start (point)) 645 (setq start (point))
647 (shr-vertical-motion shr-internal-width) 646 (shr-vertical-motion shr-internal-width)
648 (when (looking-at " $") 647 (when (looking-at " $")