Function: erc-input-message
erc-input-message is an interactive and byte-compiled function defined
in erc.el.gz.
Signature
(erc-input-message)
Documentation
Read input from the minibuffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; interactive operations
(defun erc-input-message ()
"Read input from the minibuffer."
(interactive)
(let ((minibuffer-allow-text-properties t)
(read-map minibuffer-local-map))
(insert (read-from-minibuffer "Message: "
(string last-command-event)
read-map))
(erc-send-current-line)))