Function: erc-format-network

erc-format-network is a byte-compiled function defined in erc.el.gz.

Signature

(erc-format-network)

Documentation

Return the name of the network we are currently on.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-format-network ()
  "Return the name of the network we are currently on."
  (let ((network (and (fboundp 'erc-network-name) (erc-network-name))))
    (if (and network (symbolp network))
        (symbol-name network)
      "")))