Function: rcirc-handler-433

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

Signature

(rcirc-handler-433 PROCESS SENDER ARGS TEXT)

Documentation

Warn user that nick is used (ERR_NICKNAMEINUSE).

ARGS should have the form (NICK CHANNEL WARNING). SENDER is passed on to rcirc-handler-generic. PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-433 (process sender args text)
  "Warn user that nick is used (ERR_NICKNAMEINUSE).
ARGS should have the form (NICK CHANNEL WARNING).
SENDER is passed on to `rcirc-handler-generic'.
PROCESS is the process object for the current connection."
  (rcirc-handler-generic process "433" sender args text)
  (with-rcirc-process-buffer process
    (let* ((length (string-to-number
                    (or (rcirc-server-parameter-value 'nicklen)
                        "16"))))
      (rcirc-cmd-nick (rcirc--make-new-nick (cadr args) length) nil process))))