Function: erc--update-channel-modes

erc--update-channel-modes is a byte-compiled function defined in erc.el.gz.

Signature

(erc--update-channel-modes STRING &rest ARGS)

Documentation

Update erc-channel-modes and call individual mode handlers.

Also update membership prefixes, as needed. Expect STRING to be a "modestring" and ARGS to match mode-specific parameters.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--update-channel-modes (string &rest args)
  "Update `erc-channel-modes' and call individual mode handlers.
Also update membership prefixes, as needed.  Expect STRING to be
a \"modestring\" and ARGS to match mode-specific parameters."
  (let ((status-letters (or (erc-with-server-buffer
                              (erc--parsed-prefix-letters
                               (erc--parsed-prefix)))
                            "qaovhbQAOVHB")))
    (erc--process-channel-modes string args status-letters)))