Function: gnus-capitalize-newsgroup
gnus-capitalize-newsgroup is a byte-compiled function defined in
gnus-art.el.gz.
Signature
(gnus-capitalize-newsgroup NEWSGROUP)
Documentation
Capitalize NEWSGROUP name.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
;;; Article file names when saving.
(defun gnus-capitalize-newsgroup (newsgroup)
"Capitalize NEWSGROUP name."
(when (not (zerop (length newsgroup)))
(concat (char-to-string (upcase (aref newsgroup 0)))
(substring newsgroup 1))))