Function: erc--check-prompt-input-for-multiline-command

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

Signature

(erc--check-prompt-input-for-multiline-command LINE LINES)

Documentation

Return non-nil when non-blank lines follow a command line.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--check-prompt-input-for-multiline-command (line lines)
  "Return non-nil when non-blank lines follow a command line."
  (when (and (cdr lines)
             (string-match erc-command-regexp line)
             (seq-drop-while #'string-empty-p (reverse (cdr lines))))
    "Excess input after command line"))