Function: edt-bind-key-default

edt-bind-key-default is a byte-compiled function defined in edt.el.gz.

Signature

(edt-bind-key-default KEY BINDING)

Documentation

Bind key sequences to default bindings in the EDT Emulator.

Argument KEY is the name of a standard key or a function key. Argument BINDING is the Emacs function to be bound to <KEY>.

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-bind-key-default (key binding)
  "Bind key sequences to default bindings in the EDT Emulator.
Argument KEY is the name of a standard key or a function key.
Argument BINDING is the Emacs function to be bound to <KEY>."
  (define-key edt-default-global-map key binding))