Function: edt-bind-gold-key

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

Signature

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

Documentation

Binds <GOLD> standard key sequences to custom 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 (key gold-binding)
  "Binds <GOLD> standard key sequences to custom 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-user-gold-map key gold-binding))