projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f81045
)
Ensure that Gnus inline preview undisplayer removes added newline
author
F. Moukayed
<smfadi+emacs@gmail.com>
Mon, 22 Apr 2024 14:54:47 +0000
(07:54 -0700)
committer
Eric Abrahamsen
<eric@ericabrahamsen.net>
Mon, 22 Apr 2024 14:56:01 +0000
(07:56 -0700)
* lisp/gnus/mm-view.el (mm-inline-image): Remove two characters ("x\n")
instead of leaving behind a superfluous newline (bug#69920).
lisp/gnus/mm-view.el
patch
|
blob
|
history
diff --git
a/lisp/gnus/mm-view.el
b/lisp/gnus/mm-view.el
index 109b6c17c2c86b8cd8c2d50e569562bc29acfdf6..223da19a16449d8917aa18f9eea026131f0d3ba1 100644
(file)
--- a/
lisp/gnus/mm-view.el
+++ b/
lisp/gnus/mm-view.el
@@
-105,7
+105,7
@@
This is only used if `mm-inline-large-images' is set to
(lambda ()
(let ((inhibit-read-only t))
(remove-images b b)
- (delete-region b (
1+ b
)))))))
+ (delete-region b (
+ b 2
)))))))
(defvar mm-w3m-setup nil
"Whether gnus-article-mode has been setup to use emacs-w3m.")