Xemacs Problem

Stephen J. Turnbull stephen at xemacs.org
Sat Aug 4 05:24:54 EDT 2007


Timothy A Zitzer writes:

 > (if default
 > (define-key 'edt-default-global-map 'f12 gold-binding)
 > (define-key 'edt-user-gold-map 'f12 gold-binding))

The *-maps are *variables*.  Try removing the quotation so that they
can be evaluated:

(if default
    (define-key edt-default-global-map 'f12 gold-binding)
  (define-key edt-user-gold-map 'f12 gold-binding))



More information about the XEmacs-Beta mailing list