Function: gnus-setup-posting-charset
gnus-setup-posting-charset is a byte-compiled function defined in
gnus-msg.el.gz.
Signature
(gnus-setup-posting-charset GROUP)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
(defun gnus-setup-posting-charset (group)
(let ((alist gnus-group-posting-charset-alist)
(group (or group ""))
elem)
(when group
(catch 'found
(while (setq elem (pop alist))
(when (or (and (stringp (car elem))
(string-match (car elem) group))
(and (functionp (car elem))
(funcall (car elem) group))
(and (symbolp (car elem))
(symbol-value (car elem))))
(throw 'found (cons (cadr elem) (caddr elem)))))))))