From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.devel Subject: Re: define-key acting strange.. Date: Fri, 24 May 2002 15:34:46 +0300 Sender: emacs-devel-admin@gnu.org Message-ID: <1438-Fri24May2002153445+0300-eliz@is.elta.co.il> References: <200205202134.g4KLY4g26004@aztec.santafe.edu> <200205240044.g4O0iEu01307@aztec.santafe.edu> Reply-To: Eli Zaretskii NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1022243927 25564 127.0.0.1 (24 May 2002 12:38:47 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 24 May 2002 12:38:47 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17BELH-0006eD-00 for ; Fri, 24 May 2002 14:38:47 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17BEb9-0001Ad-00 for ; Fri, 24 May 2002 14:55:12 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17BELj-0003v8-00; Fri, 24 May 2002 08:39:15 -0400 Original-Received: from mirapoint.inter.net.il ([192.114.186.20]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17BEJU-0003mX-00 for ; Fri, 24 May 2002 08:36:56 -0400 Original-Received: from Zaretsky ([80.230.2.40]) by mirapoint.inter.net.il (Mirapoint Messaging Server MOS 3.1.0.58-GA) with ESMTP id AER81865; Fri, 24 May 2002 15:36:38 +0300 (IDT) Original-To: deego@glue.umd.edu X-Mailer: emacs 21.2.50 (via feedmail 8 I) and Blat ver 1.8.9 In-Reply-To: (deego@glue.umd.edu) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:4333 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:4333 > From: "D. Goel" > Date: 24 May 2002 01:31:31 -0400 > > To the list: BTW, this 'gdb emacs' will be a huge learning curve for > me The file etc/DEBUG in the distribution might help a lot. > and i will bug folks (is this the right forum Yes, this is the right forum for asking help in debugging Emacs problems. > | (gdb) > | > +---- > > gdb seems to have stopped.. typing 'continue' doesn't help Type "run -q" to start Emacs. GDB stops because in many cases you would want to prepare the debugging session: set breakpoints, add directories to the source search list, set various GDB options, etc. > BTW, This directory emacs/src above is indeed the directory from > emacs21 is built This is the right directory from where to run a debugging session. In particular, the file .gdbinit there makes sure you have the Emacs-specific GDB commands (such as xstring and pr) defined.