Function: erc-button-click-button

erc-button-click-button is an interactive and byte-compiled function defined in erc-button.el.gz.

Signature

(erc-button-click-button IGNORE EVENT)

Documentation

Call erc-button-press-button.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-button.el.gz
;; widget-button-click calls with two args, we ignore the first.
;; Since Emacs runs this directly, rather than with
;; widget-button-click, we need to fake an extra arg in the
;; interactive spec.
(defun erc-button-click-button (_ignore event)
  "Call `erc-button-press-button'."
  (interactive "P\ne")
  (save-excursion
    (mouse-set-point event)
    (erc-button-press-button)))