Function: erc--check-prompt-input-for-running-process

erc--check-prompt-input-for-running-process is a byte-compiled function defined in erc.el.gz.

Signature

(erc--check-prompt-input-for-running-process STRING _)

Documentation

Return non-nil unless in an active ERC server buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--check-prompt-input-for-running-process (string _)
  "Return non-nil unless in an active ERC server buffer."
  (unless (or (erc-server-buffer-live-p)
              (erc-command-no-process-p string))
    "ERC: No process running"))