]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove call to string-as-unibyte from nnmail
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 14 Apr 2018 22:17:28 +0000 (00:17 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 14 Apr 2018 22:17:28 +0000 (00:17 +0200)
* 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

index aa909cc9797c8b37b636ccbc18bebaac0b550e34..249bd65a9d7521af4193b315e56f4fa6c3bf6b8f 100644 (file)
@@ -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)