mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-28 19:42:02 +00:00
Only encode Gnus group names if they come from symbol-name
* lisp/gnus/gnus-start.el (gnus-active-to-gnus-format): Names that were strings to begin with should already be properly encoded.
This commit is contained in:
parent
6d6c55db2c
commit
a18336a8dc
@ -2146,14 +2146,14 @@ The info element is shared with the same element of
|
||||
(if (and (stringp (progn
|
||||
(setq group (read cur)
|
||||
group
|
||||
(encode-coding-string
|
||||
(cond ((numberp group)
|
||||
(number-to-string group))
|
||||
((symbolp group)
|
||||
(symbol-name group))
|
||||
((stringp group)
|
||||
group))
|
||||
'latin-1))))
|
||||
(cond ((numberp group)
|
||||
(number-to-string group))
|
||||
((symbolp group)
|
||||
(encode-coding-string
|
||||
(symbol-name group)
|
||||
'latin-1))
|
||||
((stringp group)
|
||||
group)))))
|
||||
(numberp (setq max (read cur)))
|
||||
(numberp (setq min (read cur)))
|
||||
(null (progn
|
||||
|
Loading…
Reference in New Issue
Block a user