Function: erc--parsed-prefix-statuses

erc--parsed-prefix-statuses is a byte-compiled function defined in erc-common.el.gz.

Signature

(erc--parsed-prefix-statuses CL-X)

Documentation

Access slot "statuses" of erc--parsed-prefix(var)/erc--parsed-prefix(fun) struct CL-X.

Status prefixes ranked lowest to highest.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
(cl-defstruct (erc--parsed-prefix (:include erc--isupport-data))
  "Server-local data for recognized membership-status prefixes.
Derived from the advertised \"PREFIX\" ISUPPORT parameter."
  ( letters "vhoaq" :type string
    :documentation "Status letters ranked lowest to highest.")
  ( statuses "+%@&~" :type string
    :documentation "Status prefixes ranked lowest to highest.")
  ( alist nil :type (list-of cons)
    :documentation "Alist of letters-prefix pairs."))