Function: ebrowse-install-1-to-9-keys

ebrowse-install-1-to-9-keys is a byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-install-1-to-9-keys)

Documentation

Define keys 1..9 to select the 1st to 9nth entry in the list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-install-1-to-9-keys ()
  "Define keys 1..9 to select the 1st to 9nth entry in the list."
  (dotimes (i 9)
    (define-key (current-local-map) (char-to-string (+ i ?1))
      'ebrowse-select-1st-to-9nth)))