* lisp/erc/erc-log.el (erc-truncate-buffer-on-save): Use
`make-obsolete-variable' because `erc-truncate-buffer-on-save' is an
option, not a function. Already mentioned in etc/ERC-NEWS.
(erc-logging-enabled): Return nil if `log' appears in the `erc--skip'
msg prop.
* lisp/erc/erc-stamp.el (erc-stamp--defer-date-insertion-on-post-modify):
Add `log' to `erc--skip' msg prop. This tells the log module to defer
advancing the `erc-last-saved-position' marker until after stamps have
been inserted, thus ensuring they're included in logs when
`erc-log-write-after-insert' is non-nil.
* test/lisp/erc/erc-scenarios-log.el
(erc-scenarios-log--save-buffer-in-logs/truncate-on-save): Suppress
warning for `erc-truncate-buffer-on-save'.
(erc-scenarios-log--write-after-insert): New test. (Bug#76875)
(cherry picked from commit
3db65ff5cb3d6f58b83052760b4ce04eb77db1bc)
(defcustom erc-truncate-buffer-on-save nil
"Erase the contents of any ERC (channel, query, server) buffer when it is saved."
:type 'boolean)
-(make-obsolete 'erc-truncate-buffer-on-save 'erc-cmd-CLEAR "30.1")
+(make-obsolete-variable 'erc-truncate-buffer-on-save
+ "maybe see command `erc-cmd-CLEAR'" "30.1")
(defcustom erc-enable-logging t
"If non-nil, ERC will log IRC conversations.
(or buffer (setq buffer (current-buffer)))
(and erc-log-channels-directory
(not erc-log--save-in-progress-p)
+ (not (erc--memq-msg-prop 'erc--skip 'log))
(or (functionp erc-log-channels-directory)
(erc-directory-writable-p erc-log-channels-directory))
(if (functionp erc-enable-logging)
(symbol (make-symbol "erc-stamp--insert-date"))
(marker (setf (erc-stamp--date-marker data) (point-min-marker))))
(setf (erc-stamp--date-fn data) symbol)
+ ;; Disable logging in case `erc-log-write-after-insert' is in effect.
+ (when erc--msg-props
+ (push 'log (gethash 'erc--skip erc--msg-props)))
(fset symbol
(lambda (&rest _)
(remove-hook hook-var symbol)