Function: nnml-possibly-change-directory
nnml-possibly-change-directory is a byte-compiled function defined in
nnml.el.gz.
Signature
(nnml-possibly-change-directory GROUP &optional SERVER)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnml.el.gz
(defun nnml-possibly-change-directory (group &optional server)
(when (and server
(not (nnml-server-opened server)))
(nnml-open-server server))
(if (not group)
t
(let ((pathname (nnml-group-pathname group nil server))
(file-name-coding-system nnmail-pathname-coding-system))
(when (not (equal pathname nnml-current-directory))
(setq nnml-current-directory pathname
nnml-current-group group
nnml-article-file-alist nil))
(file-exists-p nnml-current-directory))))