Function: erc-port-to-string

erc-port-to-string is a byte-compiled function defined in erc.el.gz.

Signature

(erc-port-to-string P)

Documentation

Convert port P to a string.

P may be an integer or a service name.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-port-to-string (p)
  "Convert port P to a string.
P may be an integer or a service name."
  (if (integerp p)
      (int-to-string p)
    p))