Function: mode-local-describe-bindings-1

mode-local-describe-bindings-1 is a byte-compiled function defined in mode-local.el.gz.

Signature

(mode-local-describe-bindings-1 BUFFER-OR-MODE &optional INTERACTIVE-P)

Documentation

Display mode local bindings active in BUFFER-OR-MODE.

Optional argument INTERACTIVE-P is non-nil if the calling command was invoked interactively.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/mode-local.el.gz
(defun mode-local-describe-bindings-1 (buffer-or-mode &optional interactive-p)
  "Display mode local bindings active in BUFFER-OR-MODE.
Optional argument INTERACTIVE-P is non-nil if the calling command was
invoked interactively."
  (help-setup-xref
   (list 'mode-local-describe-bindings-1 buffer-or-mode)
   interactive-p)
  (with-output-to-temp-buffer (help-buffer) ; "*Help*"
    (with-current-buffer standard-output
      (mode-local-describe-bindings-2 buffer-or-mode))))