Function: rcirc-handler-005

rcirc-handler-005 is a byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-handler-005 PROCESS SENDER ARGS TEXT)

Documentation

Register supported server features (RPL_ISUPPORT).

ARGS should be a list of string feature parameters, either of the form "PARAMETER" to enable a feature, "PARAMETER=VALUE" to configure a specific option or "-PARAMETER" to disable a previously specified feature. SENDER is passed on to rcirc-handler-generic. PROCESS is the process object for the current connection. Note that this is not the behavior as specified in RFC2812, where 005 stood for RPL_BOUNCE.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-005 (process sender args text)
  "Register supported server features (RPL_ISUPPORT).
ARGS should be a list of string feature parameters, either of the
form \"PARAMETER\" to enable a feature, \"PARAMETER=VALUE\" to
configure a specific option or \"-PARAMETER\" to disable a
previously specified feature.  SENDER is passed on to
`rcirc-handler-generic'.  PROCESS is the process object for the
current connection.  Note that this is not the behavior as
specified in RFC2812, where 005 stood for RPL_BOUNCE."
  (rcirc-handler-generic process "005" sender args text)
  (with-rcirc-process-buffer process
    (setq rcirc-server-parameters (append rcirc-server-parameters args))))