Function: erc-echo-notice-in-target-buffer

erc-echo-notice-in-target-buffer is a byte-compiled function defined in erc.el.gz.

Signature

(erc-echo-notice-in-target-buffer S PARSED BUFFER SENDER)

Documentation

Echo a private notice in BUFFER, if BUFFER is non-nil.

This function is designed to be added to either erc-echo-notice-hook or erc-echo-notice-always-hook, and returns non-nil if BUFFER is non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-echo-notice-in-target-buffer (s parsed buffer _sender)
  "Echo a private notice in BUFFER, if BUFFER is non-nil.
This function is designed to be added to either
`erc-echo-notice-hook' or `erc-echo-notice-always-hook', and
returns non-nil if BUFFER is non-nil."
  (if buffer
      (progn (erc-display-message parsed nil buffer s) t)
    nil))