]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix compat change in last check-in
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 13 Feb 2016 06:04:00 +0000 (17:04 +1100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 13 Feb 2016 06:04:00 +0000 (17:04 +1100)
* lisp/gnus/gnus-group.el
(gnus-group-name-charset-group-alist): `find-coding-system'
doesn't exist in Emacs.

lisp/gnus/gnus-group.el

index 3b481db9f31ba6ac550d11184eda3c0a71fdab76..1602c475361b72df3108e021db269633f4dc30b4 100644 (file)
@@ -421,8 +421,7 @@ For example:
   :type '(repeat (cons (sexp :tag "Method") (symbol :tag "Charset"))))
 
 (defcustom gnus-group-name-charset-group-alist
-  (if (or (find-coding-system 'utf-8)
-         (mm-coding-system-p 'utf-8))
+  (if (mm-coding-system-p 'utf-8)
       '((".*" . utf-8))
     nil)
   "Alist of group regexp and the charset for group names.