Function: edt-bind-gold-key-default

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

Signature

(edt-bind-gold-key-default KEY GOLD-BINDING)

Documentation

Binds <GOLD> key sequences to default bindings in the EDT Emulator.

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

Source Code

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