Function: erc-prompt-format

erc-prompt-format is a byte-compiled function defined in erc.el.gz.

Signature

(erc-prompt-format)

Documentation

Make predefined format-spec substitutions.

See option erc-prompt-format(var)/erc-prompt-format(fun) and option erc-prompt(var)/erc-prompt(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-prompt-format ()
  "Make predefined `format-spec' substitutions.

See option `erc-prompt-format' and option `erc-prompt'."
  (format-spec erc-prompt-format
               (erc-compat--defer-format-spec-in-buffer
                (?C erc--channel-modes 3 ",")
                (?M erc--format-modes 'no-query-p)
                (?N erc-format-network)
                (?S erc-format-target-and/or-network)
                (?a erc--format-away-indicator)
                (?b buffer-name)
                (?c erc-format-channel-modes)
                (?m erc--format-modes)
                (?n erc-current-nick)
                (?p erc--format-channel-status-prefix)
                (?s erc-format-target-and/or-server)
                (?t erc-format-target)
                (?u erc--format-user-modes))
               'ignore-missing)) ; formerly `only-present'