From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.help Subject: RE: Key binding in local keymap problem Date: Tue, 9 Sep 2008 13:45:04 -0700 Message-ID: <000701c912bc$f033ad80$0200a8c0@us.oracle.com> References: <0811e68c-504a-4a57-971c-7681d433528b@x35g2000hsb.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1220993288 21697 80.91.229.12 (9 Sep 2008 20:48:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 9 Sep 2008 20:48:08 +0000 (UTC) To: , Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Sep 09 22:49:03 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KdA8t-0003Zt-D8 for geh-help-gnu-emacs@m.gmane.org; Tue, 09 Sep 2008 22:48:56 +0200 Original-Received: from localhost ([127.0.0.1]:52655 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KdA7t-0008AB-0q for geh-help-gnu-emacs@m.gmane.org; Tue, 09 Sep 2008 16:47:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KdA5W-0004PY-6v for help-gnu-emacs@gnu.org; Tue, 09 Sep 2008 16:45:26 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KdA5L-00048T-VE for help-gnu-emacs@gnu.org; Tue, 09 Sep 2008 16:45:19 -0400 Original-Received: from [199.232.76.173] (port=53494 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KdA5K-00046d-BM for help-gnu-emacs@gnu.org; Tue, 09 Sep 2008 16:45:14 -0400 Original-Received: from agminet01.oracle.com ([141.146.126.228]:29348) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KdA5J-0002g1-M3 for help-gnu-emacs@gnu.org; Tue, 09 Sep 2008 16:45:14 -0400 Original-Received: from rgmgw2.us.oracle.com (rgmgw2.us.oracle.com [138.1.186.111]) by agminet01.oracle.com (Switch-3.2.4/Switch-3.1.7) with ESMTP id m89Kj6Sb023590; Tue, 9 Sep 2008 15:45:07 -0500 Original-Received: from acsmt705.oracle.com (acsmt705.oracle.com [141.146.40.83]) by rgmgw2.us.oracle.com (Switch-3.2.4/Switch-3.2.4) with ESMTP id m89Kj5iS026829; Tue, 9 Sep 2008 14:45:05 -0600 Original-Received: from dradamslap1 (/141.144.53.208) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 09 Sep 2008 13:45:04 -0700 X-Mailer: Microsoft Office Outlook 11 In-reply-to: <0811e68c-504a-4a57-971c-7681d433528b@x35g2000hsb.googlegroups.com> Thread-Index: AckSvIh//UEg40LPSOGMaL5HCfs/2gAACkFQ X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3350 X-Brightmail-Tracker: AAAAAQAAAAI= X-Brightmail-Tracker: AAAAAQAAAAI= X-Whitelist: TRUE X-Whitelist: TRUE X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:57369 Archived-At: > 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.