Function: rcirc-process-server-response

rcirc-process-server-response is a byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-process-server-response PROCESS TEXT)

Documentation

Parse TEXT as received from PROCESS.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-process-server-response (process text)
  "Parse TEXT as received from PROCESS."
  (if rcirc-trap-errors-flag
      (condition-case err
          (rcirc-process-server-response-1 process text)
        (error
         (rcirc-print process "*rcirc*" "ERROR" nil
                      (format "\"%s\" %s" text err) t)))
    (rcirc-process-server-response-1 process text)))