help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Key binding in local keymap problem


From: Drew Adams
Subject: RE: Key binding in local keymap problem
Date: Tue, 9 Sep 2008 14:46:43 -0700

> > > I have the following line in my .emacs:
> > > (define-key gud-mode-map [f9] 'gud-break)
> > > and I get an error that the value of gud-mode-map is void.
> > 
> > You need to load library `gud' before you do that.
> > It defines variable `gud-mode-map' and gives it a value.
> 
> So, if you don't want to load `gud' on Emacs start-up, use `add-hook':
> (add-hook 'gud-mode-hook
>           (lambda () (define-key gud-mode-map [f9] 'gud-break)))

Yes, I should have added that. Thanks.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]