From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: byte-compile-file not reentrant? Date: Wed, 30 Dec 2009 03:58:21 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1262141940 16886 80.91.229.12 (30 Dec 2009 02:59:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 30 Dec 2009 02:59:00 +0000 (UTC) To: Emacs-Devel devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Dec 30 03:58:53 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NPolw-0001jX-HV for ged-emacs-devel@m.gmane.org; Wed, 30 Dec 2009 03:58:52 +0100 Original-Received: from localhost ([127.0.0.1]:46637 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NPolx-0000H2-2C for ged-emacs-devel@m.gmane.org; Tue, 29 Dec 2009 21:58:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NPolr-0000Ff-45 for emacs-devel@gnu.org; Tue, 29 Dec 2009 21:58:47 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NPolm-0000EO-E3 for emacs-devel@gnu.org; Tue, 29 Dec 2009 21:58:46 -0500 Original-Received: from [199.232.76.173] (port=49453 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NPolm-0000EL-8e for emacs-devel@gnu.org; Tue, 29 Dec 2009 21:58:42 -0500 Original-Received: from mail-yw0-f177.google.com ([209.85.211.177]:61479) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NPoll-00056f-Sj for emacs-devel@gnu.org; Tue, 29 Dec 2009 21:58:41 -0500 Original-Received: by ywh7 with SMTP id 7so2069062ywh.24 for ; Tue, 29 Dec 2009 18:58:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=gqCzRPowwMsgMK+MMcILQiH1G7wKqL2aiq2eubRilYg=; b=Wg9ipF0IgCX4CM4Glzsb4auFJ0EhIh0S+Kd58k47pmKdtxwcjBOSeaxrgcbFaHSuqJ 4uSAW2GN+s5V+45/vUGY4qg8RvNpYsmQzyUB2HHmcoLOrMEPGewVeY5GFboU/x2+f+tY AIFFWraLjFoVRxzSbKPcjFvVJt6ODBlSLJ1yM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=Wuoa13ZC0telfOF1xzuRKnaR+kor4s0s87U+Pc9XNCcWMpSa5hC1PCsb1EEBzrSTHj WILr3OJ1MREd5jzdxBqoCruSZTm46KsIPaSwTX86ws2eYy6ycibVSAJNseMZz0OTc4dy OwrkfqABnnNiRByeUKjmbR+cblKF9lvs7KWL4= Original-Received: by 10.101.105.25 with SMTP id h25mr26337085anm.63.1262141921078; Tue, 29 Dec 2009 18:58:41 -0800 (PST) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:119002 Archived-At: A buffer created with (get-buffer-create " *Compiler Input*") makes byte-compile-file not reentrant if I understand it correctly. (I did not look very carefully.) I do not understand the meaning of this. Should the old buffer be reused in some way? There is a similar call in byte-compile-from-buffer. Could perhaps these calls be changed to generate new buffer names? Would that make byte compiling reentrant or are there other restrictions that makes this impossible?