Function: edebug-temp-display-freq-count
edebug-temp-display-freq-count is an interactive and byte-compiled
function defined in edebug.el.gz.
Signature
(edebug-temp-display-freq-count)
Documentation
Temporarily display the frequency count data for the current definition.
It is removed when you hit any char.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
;; FIXME this does not work very well. Eg if you press an arrow key,
;; or make a mouse-click, it fails with "Non-character input-event".
(defun edebug-temp-display-freq-count ()
"Temporarily display the frequency count data for the current definition.
It is removed when you hit any char."
(interactive)
(let ((inhibit-read-only t))
(undo-boundary)
(edebug-display-freq-count)
(setq unread-command-events
(append unread-command-events (list (read-event))))
;; Yuck! This doesn't seem to work at all for me.
(undo)))