Variable: erc--message-speaker-statusmsg

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

Value

#("(%p%n%s) %m" 0 1 (font-lock-face erc-default-face) 1 3
  (font-lock-face erc-nick-prefix-face) 3 5
  (font-lock-face erc-nick-default-face) 5 7
  (font-lock-face erc-notice-face) 7 11
  (font-lock-face erc-default-face))

Documentation

Message template for in-channel status messages.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; The format strings in the following `-speaker' catalog shouldn't
;; contain any non-protocol words, so they make sense in any language.
;; Note that the following definitions generally avoid `propertize'
;; because it reverses the order of the text properties it's given.
(defvar erc--message-speaker-statusmsg
  #("(%p%n%s) %m"
    0 1 (font-lock-face erc-default-face)
    1 3 (font-lock-face erc-nick-prefix-face)
    3 5 (font-lock-face erc-nick-default-face)
    5 7 (font-lock-face erc-notice-face)
    7 11 (font-lock-face erc-default-face))
  "Message template for in-channel status messages.")