From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Emanuele Giaquinta Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] Changes to emacs/src/emacs.c,v Date: Tue, 29 Jul 2008 01:18:51 +0200 Message-ID: <20080728231851.GC894@orion.lan> References: <20080728224640.GB894@orion.lan> <200807282259.m6SMxLOj027630@sallyv1.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1217287153 5894 80.91.229.12 (28 Jul 2008 23:19:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 28 Jul 2008 23:19:13 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jul 29 01:20:03 2008 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 1KNc0W-0008Dq-Fe for ged-emacs-devel@m.gmane.org; Tue, 29 Jul 2008 01:20:00 +0200 Original-Received: from localhost ([127.0.0.1]:46291 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KNbzc-00023O-5Q for ged-emacs-devel@m.gmane.org; Mon, 28 Jul 2008 19:19:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KNbzW-00022n-R8 for emacs-devel@gnu.org; Mon, 28 Jul 2008 19:18:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KNbzU-00022b-Nh for emacs-devel@gnu.org; Mon, 28 Jul 2008 19:18:57 -0400 Original-Received: from [199.232.76.173] (port=35681 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KNbzU-00022Y-KT for emacs-devel@gnu.org; Mon, 28 Jul 2008 19:18:56 -0400 Original-Received: from fg-out-1718.google.com ([72.14.220.154]:65149) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KNbzU-0004rv-5b for emacs-devel@gnu.org; Mon, 28 Jul 2008 19:18:56 -0400 Original-Received: by fg-out-1718.google.com with SMTP id l26so2195469fgb.30 for ; Mon, 28 Jul 2008 16:18:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:references:mime-version:content-type:content-disposition :in-reply-to; bh=0y/8+r+2yK/BY7Ixlqh0T/CtWFxXPQTwd0MvvhUgVcU=; b=CCdv4uowgL3hx90645D/H/OySRVSctyIpWngE98AWLzRm4XKB2OTlCKe1iVq3zVUFQ 4JYBE609YPDwKBF+RKZljAcQhGQ1DOTmIYiwyTZmhIMcyvIbAE4h8lf9K8UK5Nzpw9sp GD2MWOEgaVnX/ccFa4d88dI0h5vXljl3sdmnY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; b=qyJ3h2NWlaKXzLbSZeWQKlecMGHiC1tkX8KfCys74hQQkFTC6UEk2loaykz3tHG4wE CqWjqPHrfQjhVypdnQiygUvQKY6/PpeImGQNwdGwKODwYo/9tse2OT5iph++vhfdtKx5 9Y0ouO5biT/gu7+cH1yWiuA46TZU4V/rQ8hXA= Original-Received: by 10.86.4.14 with SMTP id 14mr3087208fgd.20.1217287135228; Mon, 28 Jul 2008 16:18:55 -0700 (PDT) Original-Received: from localhost ( [82.53.45.190]) by mx.google.com with ESMTPS id l12sm9655271fgb.6.2008.07.28.16.18.53 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 28 Jul 2008 16:18:54 -0700 (PDT) Content-Disposition: inline In-Reply-To: <200807282259.m6SMxLOj027630@sallyv1.ics.uci.edu> X-detected-kernel: by monty-python.gnu.org: 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:101661 Archived-At: On Mon, Jul 28, 2008 at 03:59:21PM -0700, Dan Nicolaescu wrote: > Unfortunately that is not what the code in configure.in said: > > /* TODO: These are used for the Carbon port only. */ > #undef MAC_OS > #undef MAC_OSX > > What is the right conditional there? I think the right conditional is to check only MAC_OSX (defined in s/darwin.h), that code is required by unexmacosx.c. Emanuele