From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ed Swarthout Newsgroups: gmane.emacs.devel Subject: Re: emacs-buffer.gdb Date: Wed, 8 Jun 2005 23:15:09 -0500 Message-ID: Reply-To: Ed Swarthout NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1118290325 3147 80.91.229.2 (9 Jun 2005 04:12:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 9 Jun 2005 04:12:05 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 09 06:12:04 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DgEOK-0005Ax-RS for ged-emacs-devel@m.gmane.org; Thu, 09 Jun 2005 06:11:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DgEVB-0004Zw-FI for ged-emacs-devel@m.gmane.org; Thu, 09 Jun 2005 00:18:45 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DgEUy-0004ZB-5Z for emacs-devel@gnu.org; Thu, 09 Jun 2005 00:18:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DgEUv-0004XZ-Ih for emacs-devel@gnu.org; Thu, 09 Jun 2005 00:18:29 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DgEUv-0004X7-Cm for emacs-devel@gnu.org; Thu, 09 Jun 2005 00:18:29 -0400 Original-Received: from [64.233.162.200] (helo=zproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DgERn-0002uF-14 for emacs-devel@gnu.org; Thu, 09 Jun 2005 00:15:15 -0400 Original-Received: by zproxy.gmail.com with SMTP id 13so517779nzn for ; Wed, 08 Jun 2005 21:15:09 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=ok/EPds+YYlXDyauA126Ve5ZBa7JxK/f1F0LQVBLvGUogrLrtfmx8tSdvV4gkpmyrkPUy9D8Araretq+Eg/7liDJiv6fdyOuDVn8kapBzsF7cYnXwMhhqNrCCf0kIAb1HNFk2UdLOFm1Dr5L3oreLqYnnazI/K2dG+RP6ynRMkI= Original-Received: by 10.36.222.42 with SMTP id u42mr123030nzg; Wed, 08 Jun 2005 21:15:09 -0700 (PDT) Original-Received: by 10.36.2.5 with HTTP; Wed, 8 Jun 2005 21:15:09 -0700 (PDT) Original-To: emacs-devel@gnu.org Content-Disposition: inline X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:38404 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:38404 Even though I haven't needed it, thats an impressive gdb macro! I'm seeing a problem with Qnil filename though: (gdb) ybuffer-list B# M Size Name Mode File -- - ---- ---- ---- ---- 0 68954 python.el Emacs-Lisp /nfs/packages/packages/emacs/emacs/lisp/progmodes/python.el 1 10317 progmodes Dired by dateCannot access memory at address 0x20 which is fixed by this simple patch: --- emacs-buffer.gdb.~1.3.~=092005-05-30 12:01:09.000000000 -0500 +++ emacs-buffer.gdb=092005-06-08 22:08:03.645246008 -0500 @@ -118,7 +118,7 @@ ygetptr $buf->filename set $filename =3D ((struct Lisp_String *) $ptr)->data else - set $filename =3D ' ' + set $filename =3D " " end =20 printf "%2d %c %9d %-20s %-10s %s\n", \ - Ed Swarthout - Austin, TX