From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lars Hansen Newsgroups: gmane.emacs.devel Subject: Debugger and mode-line Date: Wed, 28 Jun 2006 18:38:56 +0200 Message-ID: <44A2B0A0.8060601@soem.dk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1151512777 4861 80.91.229.2 (28 Jun 2006 16:39:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 28 Jun 2006 16:39:37 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 28 18:39:35 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fvd4a-000833-IY for ged-emacs-devel@m.gmane.org; Wed, 28 Jun 2006 18:39:28 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fvd4a-0002Wa-04 for ged-emacs-devel@m.gmane.org; Wed, 28 Jun 2006 12:39:28 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fvd4D-0002N4-Qs for emacs-devel@gnu.org; Wed, 28 Jun 2006 12:39:05 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fvd47-0002FY-S3 for emacs-devel@gnu.org; Wed, 28 Jun 2006 12:39:05 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fvd47-0002FL-Ia for emacs-devel@gnu.org; Wed, 28 Jun 2006 12:38:59 -0400 Original-Received: from [212.99.225.245] (helo=odin.broadcom.dk) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FvdGT-0006ul-Ml for emacs-devel@gnu.org; Wed, 28 Jun 2006 12:51:46 -0400 Original-Received: from pppoe3-ves.broadcom.dk ([212.99.255.42] helo=[10.17.0.52]) by odin.broadcom.dk with esmtp (Exim 4.24; FreeBSD) id 1Fvd2g-0000Yv-C2 for emacs-devel@gnu.org; Wed, 28 Jun 2006 18:37:30 +0200 User-Agent: Debian Thunderbird 1.0.2 (X11/20060423) X-Accept-Language: en-us, en Original-To: emacs-devel@gnu.org 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:56256 Archived-At: For a long time, I have had problems with the Emacs lisp debugger: The value returned from match-string calls was often wrong. Now I have found out that match-data was overwritten during evaluation of the mode-line because I have an abbreviate-file-name call there, and abbreviate-file-name overwrites match-data. Is this a debugger bug? Or should evaluation of the mode-line save match-data?