Variable: rcirc-log-filename-function
rcirc-log-filename-function is a customizable variable defined in
rcirc.el.gz.
Value
rcirc-generate-log-filename
Documentation
A function to generate the filename used by rcirc's logging facility.
It is called with two arguments, PROCESS and TARGET (see
rcirc-generate-new-buffer-name for their meaning), and should
return the filename, or nil if no logging is desired for this
session.
If the returned filename is absolute (file-name-absolute-p
returns t), then it is used as-is, otherwise the resulting file
is put into rcirc-log-directory.
The filename is then cleaned using convert-standard-filename to
guarantee valid filenames for the current OS.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defcustom rcirc-log-filename-function 'rcirc-generate-log-filename
"A function to generate the filename used by rcirc's logging facility.
It is called with two arguments, PROCESS and TARGET (see
`rcirc-generate-new-buffer-name' for their meaning), and should
return the filename, or nil if no logging is desired for this
session.
If the returned filename is absolute (`file-name-absolute-p'
returns t), then it is used as-is, otherwise the resulting file
is put into `rcirc-log-directory'.
The filename is then cleaned using `convert-standard-filename' to
guarantee valid filenames for the current OS."
:type 'function)