From: Lars Ingebrigtsen Date: Sat, 14 Apr 2018 22:17:28 +0000 (+0200) Subject: Remove call to string-as-unibyte from nnmail X-Git-Tag: emacs-27.0.90~5201 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=25487b921b9a24eeed0c1a4e9bcc5043845f0f20;p=emacs.git 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. --- 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)