Function: describe-mode-local-bindings

describe-mode-local-bindings is an interactive and byte-compiled function defined in mode-local.el.gz.

Signature

(describe-mode-local-bindings BUFFER)

Documentation

Display mode local bindings active in BUFFER.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/mode-local.el.gz
(defun describe-mode-local-bindings (buffer)
  "Display mode local bindings active in BUFFER."
  (interactive "b")
  (when (setq buffer (get-buffer buffer))
    (mode-local-describe-bindings-1 buffer (called-interactively-p 'any))))