From 07672a06d3d486c66eddaf88dbdd2a3c01c72839 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sun, 15 Apr 2018 00:07:08 +0200 Subject: [PATCH] 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. --- lisp/gnus/gnus-start.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.39.5