Variable: erc--message-speaker-ctcp-action-statusmsg-input

erc--message-speaker-ctcp-action-statusmsg-input is a variable defined in erc.el.gz.

Value

#("* (%p%n%s) %m" 0 3
  (font-lock-face (erc-input-face erc-action-face)) 3 5
  (font-lock-face
   (erc-my-nick-prefix-face erc-input-face erc-action-face))
  5 7
  (font-lock-face (erc-my-nick-face erc-input-face erc-action-face)) 7
  9 (font-lock-face (erc-notice-face erc-input-face erc-action-face))
  9 13 (font-lock-face (erc-input-face erc-action-face)))

Documentation

Template for a CTCP ACTION status message from current client.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defvar erc--message-speaker-ctcp-action-statusmsg-input
  (let ((base '(erc-input-face erc-action-face))) ; shared
    (concat (propertize "* (" 'font-lock-face base)
            (propertize "%p" 'font-lock-face `(erc-my-nick-prefix-face ,@base))
            (propertize "%n" 'font-lock-face `(erc-my-nick-face ,@base))
            (propertize "%s" 'font-lock-face `(erc-notice-face ,@base))
            (propertize ") %m" 'font-lock-face base)))
  "Template for a CTCP ACTION status message from current client.")