Account for string names in active file
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
This commit is contained in:
parent
4860456584
commit
1aaeaf22ce
1 changed files with 3 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue