From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: David Kastrup Newsgroups: gmane.emacs.devel Subject: Re: match-data aborts on mac os x Date: 15 Jul 2004 03:48:44 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <8BD2A419-D5D7-11D8-B79A-000D93AD2E12@lunch.org> <3721F9D6-D5ED-11D8-99CD-000D93AD2E12@lunch.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1089856151 13704 80.91.224.253 (15 Jul 2004 01:49:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 15 Jul 2004 01:49:11 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu Jul 15 03:49:04 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BkvMu-0000xi-00 for ; Thu, 15 Jul 2004 03:49:04 +0200 Original-Received: from lists.gnu.org ([199.232.76.165]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BkvMt-000644-00 for ; Thu, 15 Jul 2004 03:49:03 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BkvPL-0001y0-HS for emacs-devel@quimby.gnus.org; Wed, 14 Jul 2004 21:51:35 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BkvPJ-0001xv-2p for emacs-devel@gnu.org; Wed, 14 Jul 2004 21:51:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BkvPH-0001xj-M5 for emacs-devel@gnu.org; Wed, 14 Jul 2004 21:51:32 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BkvPH-0001xg-IF for emacs-devel@gnu.org; Wed, 14 Jul 2004 21:51:31 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BkvMd-0007ax-1F for emacs-devel@gnu.org; Wed, 14 Jul 2004 21:48:47 -0400 Original-Received: from localhost ([127.0.0.1] helo=lola.goethe.zz) by fencepost.gnu.org with esmtp (Exim 4.34) id 1BkvMc-0002TH-9Z; Wed, 14 Jul 2004 21:48:46 -0400 Original-To: bryan o'connor In-Reply-To: <3721F9D6-D5ED-11D8-99CD-000D93AD2E12@lunch.org> Original-Lines: 16 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 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: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:25710 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:25710 --=-=-= bryan o'connor writes: > > Does the following patch (where I, on a hunch, try using XSETBUFFER > > whenever assigning a buffer, without a clue about whether this has any > > relevance or not) change anything? > > unfortunately no difference. the backtrace looks similar. Undo the patch. Does the following patch help in any manner? --=-=-= Content-Type: text/x-patch Content-Disposition: attachment --- search.c 01 Jul 2004 00:48:54 +0200 1.183 +++ search.c 15 Jul 2004 03:46:20 +0200 @@ -2974,6 +2974,9 @@ last_thing_searched = Qnil; staticpro (&last_thing_searched); + saved_last_thing_searched = Qnil; + staticpro (&saved_last_thing_searched); + defsubr (&Slooking_at); defsubr (&Sposix_looking_at); defsubr (&Sstring_match); --=-=-= -- David Kastrup, Kriemhildstr. 15, 44793 Bochum --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel --=-=-=--