Function: erc-cmd-SERVER

erc-cmd-SERVER is a byte-compiled function defined in erc.el.gz.

Signature

(erc-cmd-SERVER SERVER)

Documentation

Connect to SERVER, leaving existing connection intact.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-SERVER (server)
  "Connect to SERVER, leaving existing connection intact."
  (erc-log (format "cmd: SERVER: %s" server))
  (condition-case nil
      (erc :server server :nick (erc-current-nick))
    (error
     (erc-error "Cannot find host: `%s'" server)))
  t)