GNU bug report logs -
#32730
26.1.50; gnus should font-lock patches coming from git send-email
Previous Next
Reported by: Tom Tromey <tom <at> tromey.com>
Date: Thu, 13 Sep 2018 15:26:01 UTC
Severity: wishlist
Tags: fixed
Found in version 26.1.50
Fixed in version 27.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
From: Lars Ingebrigtsen <larsi <at> gnus.org>
* lisp/gnus/mm-view.el (mm-inline-text): The DelSp parameter is
case-insentitive, so make it work then it's "Yes" (bug#26775).
---
lisp/gnus/mm-view.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lisp/gnus/mm-view.el b/lisp/gnus/mm-view.el
index 849488293a..6ffa1fc168 100644
--- a/lisp/gnus/mm-view.el
+++ b/lisp/gnus/mm-view.el
@@ -22,7 +22,7 @@
;;; Code:
-(eval-when-compile (require 'cl-lib))
+(require 'cl-lib)
(require 'mail-parse)
(require 'mailcap)
(require 'mm-bodies)
@@ -359,8 +359,8 @@ mm-inline-text
(save-restriction
(narrow-to-region b (point))
(goto-char b)
- (fill-flowed nil (equal (cdr (assoc 'delsp (mm-handle-type handle)))
- "yes"))
+ (fill-flowed nil (cl-equalp (cdr (assoc 'delsp (mm-handle-type handle)))
+ "yes"))
(goto-char (point-max))))
(save-restriction
(narrow-to-region b (point))
--
2.17.2
This bug report was last modified 5 years and 268 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.