Function: dframe-power-click

dframe-power-click is an interactive and byte-compiled function defined in dframe.el.gz.

Signature

(dframe-power-click E)

Documentation

Activate any dframe mouse click as a power click.

A power click will dispose of cached data (if available) or bring a buffer up into a different window. This should be bound to mouse event E.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-power-click (e)
  "Activate any dframe mouse click as a power click.
A power click will dispose of cached data (if available) or bring a buffer
up into a different window.
This should be bound to mouse event E."
  (interactive "e")
  (let ((dframe-power-click t))
    (select-frame last-event-frame)
    (dframe-click e)))