diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2018-04-15 00:07:08 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2018-04-15 00:07:08 +0200 |
commit | 07672a06d3d486c66eddaf88dbdd2a3c01c72839 (patch) | |
tree | b94bcf2a65e8bb955de9c1d0ea267a4e07cd162b | |
parent | 6500684001d4d926ca1267eecf0803bb50ae680b (diff) | |
download | emacs-07672a06d3d486c66eddaf88dbdd2a3c01c72839.tar.gz |
Remove call to string-as-unibyte from gnus-start.el
* lisp/gnus/gnus-start.el (gnus-update-active-hashtb-from-killed):
Remove a string-as-unibyte call here, which appears not to be
necessary: I'm able to complete over non-ASCII names both before
and after.
-rw-r--r-- | lisp/gnus/gnus-start.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el index eb19ff36f68..cce201e1f11 100644 --- a/lisp/gnus/gnus-start.el +++ b/lisp/gnus/gnus-start.el @@ -1992,7 +1992,7 @@ backend check whether the group actually exists." (let ((hashtb (setq gnus-active-hashtb (gnus-make-hashtable 4096)))) (dolist (list (list gnus-killed-list gnus-zombie-list)) (dolist (group list) - (gnus-sethash (string-as-unibyte group) nil hashtb))))) + (gnus-sethash group nil hashtb))))) (defun gnus-get-killed-groups () "Go through the active hashtb and mark all unknown groups as killed." |