mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
; * lisp/net/shr.el (shr-put-image): No more need to test for nil ALT.
This commit is contained in:
parent
745ec75677
commit
75add076ba
1 changed files with 2 additions and 2 deletions
|
|
@ -1148,8 +1148,8 @@ element is the data blob and the second element is the content-type."
|
|||
(insert "\n"))
|
||||
(let ((image-pos (point)))
|
||||
(if (eq size 'original)
|
||||
(insert-sliced-image image (or alt "*") nil 20 1)
|
||||
(insert-image image (or alt "*")))
|
||||
(insert-sliced-image image alt nil 20 1)
|
||||
(insert-image image alt))
|
||||
(put-text-property start (point) 'image-size size)
|
||||
(when (and (not inline) shr-max-inline-image-size)
|
||||
(insert "\n"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue