Function: erc-is-message-ctcp-and-not-action-p
erc-is-message-ctcp-and-not-action-p is a byte-compiled function
defined in erc.el.gz.
Signature
(erc-is-message-ctcp-and-not-action-p MESSAGE)
Documentation
Check if MESSAGE is a CTCP message or not.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-is-message-ctcp-and-not-action-p (message)
"Check if MESSAGE is a CTCP message or not."
(and (erc-is-message-ctcp-p message)
(not (string-match "^\C-aACTION.*\C-a$" message))))