From: Lars Ingebrigtsen Date: Sat, 14 Apr 2018 22:07:08 +0000 (+0200) Subject: Remove call to string-as-unibyte from gnus-start.el X-Git-Tag: emacs-27.0.90~5204 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=07672a06d3d486c66eddaf88dbdd2a3c01c72839;p=emacs.git 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. --- 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."