From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Antipov Newsgroups: gmane.emacs.devel Subject: Re: #2 [Was: Re: Function attributes for make-docfile] Date: Tue, 13 Jan 2015 13:21:30 +0300 Message-ID: <54B4F1AA.2040002@yandex.ru> References: <54B348E8.7080203@yandex.ru> <54B3604E.9020304@cs.ucla.edu> <54B3BDE3.8030602@yandex.ru> <54B4C971.7010209@cs.ucla.edu> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1421144511 525 80.91.229.3 (13 Jan 2015 10:21:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 13 Jan 2015 10:21:51 +0000 (UTC) Cc: Emacs development discussions To: Paul Eggert Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 13 11:21:45 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YAybY-0000Zn-HQ for ged-emacs-devel@m.gmane.org; Tue, 13 Jan 2015 11:21:44 +0100 Original-Received: from localhost ([::1]:38271 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YAybX-0000fr-Vu for ged-emacs-devel@m.gmane.org; Tue, 13 Jan 2015 05:21:43 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:57563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YAybU-0000fg-Vi for emacs-devel@gnu.org; Tue, 13 Jan 2015 05:21:41 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YAybQ-0007pd-UR for emacs-devel@gnu.org; Tue, 13 Jan 2015 05:21:40 -0500 Original-Received: from forward6l.mail.yandex.net ([84.201.143.139]:47920) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YAybQ-0007pF-Ky for emacs-devel@gnu.org; Tue, 13 Jan 2015 05:21:36 -0500 Original-Received: from smtp3h.mail.yandex.net (smtp3h.mail.yandex.net [84.201.186.20]) by forward6l.mail.yandex.net (Yandex) with ESMTP id 7522D14E15DC; Tue, 13 Jan 2015 13:21:32 +0300 (MSK) Original-Received: from smtp3h.mail.yandex.net (localhost [127.0.0.1]) by smtp3h.mail.yandex.net (Yandex) with ESMTP id DFFCB1B46624; Tue, 13 Jan 2015 13:21:31 +0300 (MSK) Original-Received: from unknown (unknown [195.239.22.162]) by smtp3h.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id k1AUkPXKtq-LVV4Vbx3; Tue, 13 Jan 2015 13:21:31 +0300 (using TLSv1.2 with cipher AES128-SHA (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1421144491; bh=nPufEZLY7STcZEgecqEdm0QacjnX8FzXbxJwuytz8sM=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=JMdR03qJ+39y+6LxUSDs9s51uZJbfYslyRa6vL812XVy/NPeAq/tkssPJN+NpvzVO fQ5eO6M/PrBtob9jbdgfMK45AQnht1CsLV6Loif2b/QdcDH+xDPm95NS1+o0HaSkeX UkQQ/xSSaHnMMzlUhuX5IlB/PsfJcXAx6OGlRL+c= Authentication-Results: smtp3h.mail.yandex.net; dkim=pass header.i=@yandex.ru User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 In-Reply-To: <54B4C971.7010209@cs.ucla.edu> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] [fuzzy] X-Received-From: 84.201.143.139 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:181211 Archived-At: On 01/13/2015 10:29 AM, Paul Eggert wrote: > Fnext_read_file_uses_dialog_p should be a const function if and only if > !(defined USE_MOTIF || defined HAVE_NTGUI || defined USE_GTK || defined HAVE_NS), > but the DEFUN syntax doesn't let one specify a > function to be conditionally const -- it's either always const or always non-const. > This problem existed before you installed this change, but I worry that the change > will make it harder to fix. Hopefully 0064e36f4fc76b0e8d2fc8d3e6f63da6e579a414 should be a workaround for that. Dmitry