From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Phillip Lord" Newsgroups: gmane.emacs.help Subject: RE: Debugging byte compiled files Date: Tue, 7 Mar 2006 18:48:34 -0000 Message-ID: <6942EE35B530F84EAD432959F5E4DAB501EAD0A4@largo.campus.ncl.ac.uk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1141774615 7674 80.91.229.2 (7 Mar 2006 23:36:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 7 Mar 2006 23:36:55 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 08 00:36:54 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FGljH-0006TD-Ds for geh-help-gnu-emacs@m.gmane.org; Wed, 08 Mar 2006 00:36:42 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FGljE-0003q4-4M for geh-help-gnu-emacs@m.gmane.org; Tue, 07 Mar 2006 18:36:32 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FGhEY-0007DS-HC for help-gnu-emacs@gnu.org; Tue, 07 Mar 2006 13:48:34 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FGhEV-0007CF-2t for help-gnu-emacs@gnu.org; Tue, 07 Mar 2006 13:48:34 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FGhEU-0007C1-Na for help-gnu-emacs@gnu.org; Tue, 07 Mar 2006 13:48:30 -0500 Original-Received: from [128.240.234.65] (helo=cheviot3.ncl.ac.uk) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FGhH9-00015h-VC for help-gnu-emacs@gnu.org; Tue, 07 Mar 2006 13:51:16 -0500 Original-Received: from largo.campus.ncl.ac.uk (largo.ncl.ac.uk [10.8.234.184]) by cheviot3.ncl.ac.uk (8.13.1/8.13.1) with ESMTP id k27ImOdD006444; Tue, 7 Mar 2006 18:48:24 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Debugging byte compiled files Thread-Index: AcZBc2KxKsvXryuuROO+ctPgEtoSXQApEWtQ Original-To: "John Paul Wallington" , X-Newcastle-MailScanner-Information: Please contact Postmaster@newcastle.ac.uk for more information X-Newcastle-MailScanner: Found to be clean X-Newcastle-MailScanner-MCPCheck: MCP-Clean, MCP-Checker (score=0, required 1) X-Newcastle-MailScanner-From: npl25@cpx.ncl.ac.uk 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:33638 Archived-At: John Paul Wallington wrote: > "Phillip Lord" writes: >=20 >> I've recently found a bug in my own pabbrev.el package. It's taken me >> so long because it only occurs when the file is byte compiled and I >> don't routinely byte compile my own packages. >>=20 >> I think that the problem is coming from this macro... >>=20 >> (defmacro pabbrev-save-buffer-modified-p (&rest body) [...] >=20 > Does the `defmacro' form occur before its use within your library ? There is a single use of the macro before its use. You question suggests to me that this is a bad thing? Phil