From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Emacs doesn't compile -- what am I missing? Date: Mon, 29 Jun 2020 14:39:33 +0300 Message-ID: <3155E787-DB97-4884-938B-3922EE90BBDB@gnu.org> References: <87o8p2qflc.fsf@fencepost.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="50763"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: K-9 Mail for Android To: emacs-devel@gnu.org,David Kastrup Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Jun 29 13:40:26 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jps9B-000D5Y-E3 for ged-emacs-devel@m.gmane-mx.org; Mon, 29 Jun 2020 13:40:25 +0200 Original-Received: from localhost ([::1]:34268 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jps9A-0005pK-Ao for ged-emacs-devel@m.gmane-mx.org; Mon, 29 Jun 2020 07:40:24 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:52400) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jps8R-0005KT-ON for emacs-devel@gnu.org; Mon, 29 Jun 2020 07:39:39 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:57830) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jps8R-0004n7-EV for emacs-devel@gnu.org; Mon, 29 Jun 2020 07:39:39 -0400 Original-Received: from [109.253.170.114] (port=42619 helo=[10.128.245.141]) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1jps8P-00014R-Gm; Mon, 29 Jun 2020 07:39:38 -0400 In-Reply-To: <87o8p2qflc.fsf@fencepost.gnu.org> X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:252558 Archived-At: On June 29, 2020 2:25:03 PM GMT+03:00, David Kastrup wrote: >=20 > I get >=20 > In file included from =2E=2E/=2E=2E/emacs/src/xfaces=2Ec:225: > =2E=2E/=2E=2E/emacs/src/xfaces=2Ec:922:8: error: =E2=80=98Fcolor_values_= from_color_spec=E2=80=99 > undeclared here (not in a function); did you mean > =E2=80=98Scolor_values_from_color_spec=E2=80=99? > 922 | Fcolor_values_from_color_spec, > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > =2E=2E/=2E=2E/emacs/src/lisp=2Eh:3066:26: note: in definition of macro = =E2=80=98DEFUN=E2=80=99 > 3066 | { =2Ea ## maxargs =3D fnname }, \ > | ^~~~~~ > =2E=2E/=2E=2E/emacs/src/xfaces=2Ec:922:8: warning: no previous prototype= for > =E2=80=98Fcolor_values_from_color_spec=E2=80=99 [-Wmissing-prototypes] > 922 | Fcolor_values_from_color_spec, > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > =2E=2E/=2E=2E/emacs/src/lisp=2Eh:3068:16: note: in definition of macro = =E2=80=98DEFUN=E2=80=99 > 3068 | Lisp_Object fnname > | ^~~~~~ >=20 > Which would suggest a problem with >=20 > commit 30ff2433b16dba2c4e36c6eda6f808c6f2cb46d1 > Author: Eli Zaretskii > Date: Mon Jun 22 18:32:01 2020 +0300 >=20 > Minor improvements as followup to recent RGB string-parsing change > =20 > * src/xfaces=2Ec (Finternal_color_values_from_color_spec): Rename to=2E= =2E=2E > (Fcolor_values_from_color_spec): =2E=2E=2Ethis=2E Callers changed= =2E > Rename the argument to SPEC and improve the doc string=2E > (parse_color_spec, parse_float_color_comp, parse_hex_color_comp): > Improve commentary=2E > (parse_color_spec): Rename the argument S to SPEC=2E > =20 > * etc/NEWS: Mention 'color-values-from-color-spec'=2E >=20 > But it seems extremely unlikely that a problem causing compilation to > fail would persist for a week=2E >=20 > Ideas? Some snafu with globals=2Eh?