Variable: erc-send-completed-hook

erc-send-completed-hook is a customizable variable defined in erc.el.gz.

Value

nil

Documentation

Hook called after a message has been parsed by ERC.

The single argument to the functions is the unmodified string which the local user typed.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-send-completed-hook
  (when (fboundp 'emacspeak-auditory-icon)
    (list (byte-compile
           (lambda (_str)
             (emacspeak-auditory-icon 'select-object)))))
  "Hook called after a message has been parsed by ERC.

The single argument to the functions is the unmodified string
which the local user typed."
  :group 'erc-hooks
  :type 'hook)