Function: data-debug-expand-or-contract-mouse

data-debug-expand-or-contract-mouse is an interactive and byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-expand-or-contract-mouse EVENT)

Documentation

Expand or contract anything at event EVENT.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
(defun data-debug-expand-or-contract-mouse (event)
  "Expand or contract anything at event EVENT."
  (interactive "e")
  (let* ((win (car (car (cdr event))))
	 )
    (select-window win t)
    (save-excursion
      ;(goto-char (window-start win))
      (mouse-set-point event)
      (data-debug-expand-or-contract))
    ))