Function: erc-select-startup-file
erc-select-startup-file is a byte-compiled function defined in
erc.el.gz.
Signature
(erc-select-startup-file)
Documentation
Select an ERC startup file.
See also erc-startup-file-list.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-select-startup-file ()
"Select an ERC startup file.
See also `erc-startup-file-list'."
(catch 'found
(dolist (f erc-startup-file-list)
(setq f (convert-standard-filename f))
(when (file-readable-p f)
(throw 'found f)))))