# HG changeset patch # User Glenn Morris # Date 1196222272 0 # Node ID bc8f1a009d536c6a32492359298a6d155261f04e # Parent 6116ad9615de42074a55eaea9dd7337ad1822a5b (edt-user-emulation-setup): Test edt-setup-user-bindings is bound before calling. diff -r 6116ad9615de -r bc8f1a009d53 lisp/emulation/edt.el --- a/lisp/emulation/edt.el Wed Nov 28 03:57:08 2007 +0000 +++ b/lisp/emulation/edt.el Wed Nov 28 03:57:52 2007 +0000 @@ -2229,7 +2229,10 @@ ;; function edt-setup-extra-default-bindings. (define-prefix-command 'edt-user-gold-map) (fset 'edt-user-gold-map (copy-keymap 'edt-default-gold-map)) - (edt-setup-user-bindings) + ;; This is a function that the user can define for custom bindings. + ;; See etc/edt-user.doc. + (if (fboundp 'edt-setup-user-bindings) + (edt-setup-user-bindings)) (edt-select-user-global-map)) (defun edt-select-default-global-map()