From 25487b921b9a24eeed0c1a4e9bcc5043845f0f20 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sun, 15 Apr 2018 00:17:28 +0200 Subject: [PATCH] Remove call to string-as-unibyte from nnmail * lisp/gnus/nnmail.el (nnmail-parse-active): Remove call to string-as-unibyte; the alist before and after the change are `equal' to each other, so it should presumably have no impact. --- lisp/gnus/nnmail.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el index aa909cc9797..249bd65a9d7 100644 --- a/lisp/gnus/nnmail.el +++ b/lisp/gnus/nnmail.el @@ -666,7 +666,7 @@ nn*-request-list should have been called before calling this function." (setq group (symbol-name group))) (if (and (numberp (setq max (read buffer))) (numberp (setq min (read buffer)))) - (push (list (string-as-unibyte group) (cons min max)) + (push (list group (cons min max)) group-assoc))) (error nil)) (widen) -- 2.39.5