Function: erc-quit-reason-zippy

erc-quit-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-quit-reason-zippy &optional S)

Documentation

Zippy quit 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-quit-reason-zippy (&optional s)
  "Zippy quit 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))))