Variable: erc-send-post-hook

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

Value

nil

Documentation

This hook is called just after erc-send-modify-hook.

At this point, all modifications from prior hook functions are done. NOTE: The functions on this hook are called _before_ sending a command to the server.

This function is called with narrowing, ala erc-send-modify-hook.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-send-post-hook nil
  "This hook is called just after `erc-send-modify-hook'.
At this point, all modifications from prior hook functions are done.
NOTE: The functions on this hook are called _before_ sending a command
to the server.

This function is called with narrowing, ala `erc-send-modify-hook'."
  :group 'erc-hooks
  :type 'hook
  :options '(erc-make-read-only))