Function: erc-part-reason-zippy
erc-part-reason-zippy is a byte-compiled function defined in
erc.el.gz.
This function is obsolete since 24.4; it will be removed.
Signature
(erc-part-reason-zippy &optional S)
Documentation
Zippy part message.
If S is non-nil, it will be used as the quit reason.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-part-reason-zippy (&optional s)
"Zippy part message.
If S is non-nil, it will be used as the quit reason."
(or s
(if (fboundp 'yow)
(if (>= emacs-major-version 28)
(string-replace "\n" "" (yow))
(replace-regexp-in-string "\n" "" (yow)))
(erc-quit/part-reason-default))))