]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove call to string-as-unibyte from gnus-start.el
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 14 Apr 2018 22:07:08 +0000 (00:07 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 14 Apr 2018 22:07:08 +0000 (00:07 +0200)
* 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

index eb19ff36f689149f966121f65ac505e095e6b841..cce201e1f11af3412b63dcbb63c18e45da2a742b 100644 (file)
@@ -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."