From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Carsten Dominik Newsgroups: gmane.emacs.devel Subject: Question Date: Fri, 2 Jul 2010 06:15:40 +0200 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1278044157 8055 80.91.229.12 (2 Jul 2010 04:15:57 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 2 Jul 2010 04:15:57 +0000 (UTC) Cc: Dan Davison , Eric Schulte To: Emacs developers Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 02 06:15:55 2010 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.69) (envelope-from ) id 1OUXfO-0004SW-UX for ged-emacs-devel@m.gmane.org; Fri, 02 Jul 2010 06:15:55 +0200 Original-Received: from localhost ([127.0.0.1]:57103 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OUXfO-0006ZG-8P for ged-emacs-devel@m.gmane.org; Fri, 02 Jul 2010 00:15:54 -0400 Original-Received: from [140.186.70.92] (port=33228 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OUXfH-0006Xq-KZ for emacs-devel@gnu.org; Fri, 02 Jul 2010 00:15:49 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OUXfG-0004Jy-Au for emacs-devel@gnu.org; Fri, 02 Jul 2010 00:15:47 -0400 Original-Received: from mail-ew0-f41.google.com ([209.85.215.41]:57336) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OUXfG-0004Js-6p for emacs-devel@gnu.org; Fri, 02 Jul 2010 00:15:46 -0400 Original-Received: by ewy28 with SMTP id 28so1138743ewy.0 for ; Thu, 01 Jul 2010 21:15:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :content-type:content-transfer-encoding:mime-version:subject:date:cc :x-mailer; bh=Cdr/8cvGQBAjmxrUDRGh9Wequ2AhTOVx7UfFN85OKEE=; b=ZLg2EE8GOECkUpe3//LiP/pEBOhiMpMtd3U1gVhgIbtwnogVPkA3MKtRA+ET2BPgjY OiFfdfsiKHZJ/2sc68SWwvjLbSxC5lKEOUIFKGoq52RSenMSGjaq7GFpjEO8KufjVuFd xrjxvB73dfK/iNVgEympMi42Be7/5AvtHfei0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:content-type:content-transfer-encoding :mime-version:subject:date:cc:x-mailer; b=S12cwjJP1qBcRo8EqK0tMn55heYNYUpPAPGSkymITwZndIC+5ms1j2IajlGgtSKShy a42Cxi+Z7ahI1jR7OLa5HEJbS4KmWyRYWuEITy1qekAFENkWGBNHfqVg4Raq7xLDFGVu mDBoGv+VtYaVpXoBwfHx4Ntt2mOxuXmwQGv7s= Original-Received: by 10.213.22.135 with SMTP id n7mr3305832ebb.73.1278044145023; Thu, 01 Jul 2010 21:15:45 -0700 (PDT) Original-Received: from [192.168.1.11] (dc5146846e.adsl.wanadoo.nl [81.70.132.110]) by mx.google.com with ESMTPS id z55sm1625797eeh.21.2010.07.01.21.15.41 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 01 Jul 2010 21:15:42 -0700 (PDT) X-Mailer: Apple Mail (2.936) X-detected-operating-system: by eggs.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:126675 Archived-At: Hi everyone, I am on the verge to install a new version of Org mode into the Emacs tree. This version includes org-babel, a system to work with source code snippets embedded in files, for documentation purposes, but also for evaluating them in a reproducible research way. For supporting different languages, we will have a few emacs lisp files which should not be compiled because the have dependencies on code that is not present in Emacs. I.e. they do something like (require 'slime) and call lots of functions from this package. I think the best way it to leave these files uncompiled. Is this acceptable? If yes, how do I exclude them from compilation in the standard Emacs build process. How would I do this? - Carsten