mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
* lisp/net/rcirc.el (rcirc-generate-log-filename): Append ".log"
(Bug#54718)
This commit is contained in:
parent
000cd5f9f6
commit
db69681759
1 changed files with 5 additions and 3 deletions
|
|
@ -2176,9 +2176,11 @@ connection."
|
|||
|
||||
(defun rcirc-generate-log-filename (process target)
|
||||
"Return filename for log file based on PROCESS and TARGET."
|
||||
(if target
|
||||
(rcirc-generate-new-buffer-name process target)
|
||||
(process-name process)))
|
||||
(concat
|
||||
(if target
|
||||
(rcirc-generate-new-buffer-name process target)
|
||||
(process-name process))
|
||||
".log"))
|
||||
|
||||
(defcustom rcirc-log-filename-function 'rcirc-generate-log-filename
|
||||
"A function to generate the filename used by rcirc's logging facility.
|
||||
|
|
|
|||
Loading…
Reference in a new issue