GNU bug report logs -
#66457
30.0.50; shr sometimes displays the same image twice
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Hi,
If an alt text, that has an `image-displayer' text property, is
filled by `shr-fill-line' by way of `shr-fill-lines', the image
is displayed for two or more times. It is because the
`image-displayer' text property is divided by the newline(s).
Here is a quick hack:
[Message part 2 (text/x-patch, inline)]
--- lisp/net/shr.el~ 2023-09-04 23:25:12.472173300 +0000
+++ lisp/net/shr.el 2023-10-11 00:23:43.577152000 +0000
@@ -799,13 +799,17 @@
(when (= (preceding-char) ?\s)
(delete-char -1))
(let ((gap-start (point))
- (face (get-text-property (point) 'face)))
- ;; Extend the background to the end of the line.
+ (face (get-text-property (point) 'face))
+ (displayer (get-text-property (point) 'image-displayer)))
+ ;; Extend the background and the image displayer to the end
+ ;; of the line.
(insert ?\n)
(shr-indent)
(when face
(put-text-property gap-start (point)
'face (shr-face-background face)))
+ (when displayer
+ (put-text-property gap-start (point) 'image-displayer displayer))
(when (and (> (1- gap-start) (point-min))
(get-text-property (point) 'shr-url)
;; The link on both sides of the newline are the
This bug report was last modified 1 year and 233 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.