]> git.eshelyaron.com Git - emacs.git/commitdiff
Account for string names in active file
authorJames Thomas <jimjoe@gmx.net>
Thu, 24 Aug 2023 07:05:51 +0000 (12:35 +0530)
committerEli Zaretskii <eliz@gnu.org>
Thu, 24 Aug 2023 07:42:30 +0000 (10:42 +0300)
Account also for strings when reading in group names from an active
file (bug#62812).
* lisp/gnus/nnmail.el (nnmail-parse-active): Make it similar to
gnus-active-to-gnus-format

lisp/gnus/nnmail.el

index e8f157392d46f0b1955abf2ca36963f887143f49..904b564409a83ce44b3d6dd1733c718e05b6b8b2 100644 (file)
@@ -667,7 +667,9 @@ nn*-request-list should have been called before calling this function."
                  (cond ((symbolp group)
                         (symbol-name group))
                        ((numberp group)
-                        (number-to-string group))))
+                        (number-to-string group))
+                        ((stringp group)
+                        group)))
            (if (and (numberp (setq max (read buffer)))
                     (numberp (setq min (read buffer))))
                (push (list group (cons min max))