GNU bug report logs -
#34387
26.1; Gnus: handle empty message parts
Previous Next
Full log
View this message in rfc822 format
On Thu, 14 Feb 2019 13:30:34 +0100, Christophe Troestler wrote:
> The point is to delete all trailing whitespace coming from the
> conversion of HTML to text. Without this, some emails (such as the
> one attached) are hard to read because the lines end with so many
> whitespaces that they take several lines on the screen (filled with
> spaces). The following does what I want (and does not trigger the
> bug, thanks to the narrowing).
> (define-advice mm-shr (:around (oldfn &rest handle) delete-trailing-whitespace)
> "Delete leading and trailing whitespace in Gnus article buffer."
> (when (derived-mode-p 'gnus-article-mode)
> (save-restriction
> (narrow-to-region (point) (point))
> (apply oldfn handle)
> (delete-trailing-whitespace))))
I see. But, sorry, I meant to do first was:
(define-advice mm-shr (:around (oldfn &rest handle) delete-trailing-whitespace)
"Delete leading and trailing whitespace in Gnus article buffer."
(if (derived-mode-p 'gnus-article-mode)
(save-restriction
(narrow-to-region (point) (point))
(apply oldfn handle)
(delete-trailing-whitespace))
(apply oldfn handle)))
That is, not to do the whitespace deletion when mm-shr is used
in other than Gnus as it might require whitespace. Anyway the
(when ...) way makes mm-shr work only in the Gnus article buffer.
:-p
Regards,
This bug report was last modified 6 years and 98 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.