From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pawel Newsgroups: gmane.emacs.help Subject: abbrevs are not expanded with in debugger(gud) mode Date: Wed, 11 Jul 2007 18:14:44 +0200 Message-ID: <18069.500.587850.602026@localhost.localdomain> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1184170482 28424 80.91.229.12 (11 Jul 2007 16:14:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 11 Jul 2007 16:14:42 +0000 (UTC) To: emacs mailing list Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jul 11 18:14:40 2007 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 1I8eps-0004l7-Lr for geh-help-gnu-emacs@m.gmane.org; Wed, 11 Jul 2007 18:14:40 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8eps-0004Pr-22 for geh-help-gnu-emacs@m.gmane.org; Wed, 11 Jul 2007 12:14:40 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I8enX-00026A-Ui for help-gnu-emacs@gnu.org; Wed, 11 Jul 2007 12:12:15 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I8enV-00024s-K9 for help-gnu-emacs@gnu.org; Wed, 11 Jul 2007 12:12:14 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8enV-00024j-9Z for help-gnu-emacs@gnu.org; Wed, 11 Jul 2007 12:12:13 -0400 Original-Received: from cg-01.tenbit.pl ([213.180.131.136] helo=tenbit.pl) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I8enU-0004vJ-Lk for help-gnu-emacs@gnu.org; Wed, 11 Jul 2007 12:12:12 -0400 Original-Received: from [157.25.157.162] (account paulino90 HELO localhost.localdomain) by tenbit.pl (CommuniGate Pro SMTP 4.1.8) with ESMTP id 58972920 for help-gnu-emacs@gnu.org; Wed, 11 Jul 2007 18:11:45 +0200 X-MAILER: KMail/1.7.1 X-detected-kernel: Solaris 8 (1) 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:45609 Archived-At: Hallo group members. I added the following abbrev to debugger (gud) mode. (define-abbrev gud-mode-abbrev-table "ir" "info reg ") It is expanded using C-x a e, so it got "installed" properly. Unfortunatelly does not expand it. Just to compare, I added the same abbrev to c-mode and expansion with works fine there. In both the modes, key is handled by: self-insert-command In both the modes, belongs to " " class ( Command:(string (char-syntax ?\ )), returns " " for both the modes). Have You got idea what is the reason? Regards, Pawel.