Function: erc-input-action

erc-input-action is an interactive and byte-compiled function defined in erc.el.gz.

Signature

(erc-input-action)

Documentation

Interactively input a user action and send it to IRC.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-input-action ()
  "Interactively input a user action and send it to IRC."
  (interactive "")
  (erc-set-active-buffer (current-buffer))
  (let ((action (read-string "Action: " nil 'erc-action-history-list)))
    (if (not (string-match "^\\s-*$" action))
        (erc-send-action (erc-default-target) action))))