From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.devel Subject: Re: master d8a00879309: Cease preloading touch-screen.el outside X and Android Date: Wed, 06 Dec 2023 23:12:21 +0100 Message-ID: References: <170183012607.20763.1485814684546086922@vcs2.savannah.gnu.org> <20231206023526.8C80FC38EA3@vcs2.savannah.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="blaine.gmane.org:116.202.254.214"; logging-data="37840"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: Po Lu To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Dec 06 23:13:06 2023 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 1rB08g-0009bf-3p for ged-emacs-devel@m.gmane-mx.org; Wed, 06 Dec 2023 23:13:06 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rB081-0006Z2-Nz; Wed, 06 Dec 2023 17:12:25 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rB080-0006Vp-Bi for emacs-devel@gnu.org; Wed, 06 Dec 2023 17:12:24 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rB080-0006uh-2F; Wed, 06 Dec 2023 17:12:24 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=MPoyqrL7p3avFSZuiL4Y6f4hk0RiKOpSJqTiDK8aMcI=; b=TELfl0zlHAcqZiRVnwic WatENCXz8iTwWk4PdCGPpa/MyTnFD9/5QzqTxLAs+94AI0Zhh2ACz5aB91n9QDMsYUUxp9JAiVhYz 8pYa264JGQIg83j/snlUnAGGyB/hUGQJHuXBbquq6xnS611RmmpC4aeyugMoufPqsct3OX0BRBLu5 +wqf+Ltyrbxt/k8PzB0wUIA3Toc6zLDSSj80XLyq6obVjQ/bCeXSsy5hmMUJVkToV2x8IBuZ7sghi M5mbaqKEwv9s8vPS1BiD21tlMU0U2ClrJsrl2hzYFGNXpnCmEqpd82wIWHaNe4IvT6PnAXi9mBpvj q/u0ixP7iksYZw==; In-Reply-To: <20231206023526.8C80FC38EA3@vcs2.savannah.gnu.org> (Po Lu via Mailing list for Emacs changes's message of "Tue, 5 Dec 2023 21:35:26 -0500 (EST)") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:313573 Archived-At: Po Lu via Mailing list for Emacs changes writes: > branch: master > commit d8a00879309a3bf62f6ffcae103aa3bdba776ee9 > Author: Po Lu > Commit: Po Lu > > Cease preloading touch-screen.el outside X and Android >=20=20=20=20=20 > * lisp/calc/calc.el (touch-screen-display-keyboard): >=20=20=20=20=20 > * lisp/minibuffer.el (clear-minibuffer-message): >=20=20=20=20=20 > * lisp/term.el (touch-screen-display-keyboard): Declare > touch-screen-display-keyboard before binding or setting it. >=20=20=20=20=20 > * lisp/loadup.el: Don't autoload touch-screen.el outside X and > Android. >=20=20=20=20=20 > * lisp/touch-screen.el: Autoload functions called from commands > responding to touch screen events. I think this change produces these warnings: In end of data: button.el:498:26: Warning: the function =E2=80=98touch-screen-track-tap= =E2=80=99 is not known to be defined. In clear-minibuffer-message: minibuffer.el:979:23: Warning: reference to free variable =E2=80=98touch-screen-current-tool=E2=80=99 In tab-bar-touchscreen-begin: tab-bar.el:440:55: Warning: reference to free variable =E2=80=98touch-screen-delay=E2=80=99 In end of data: dired.el:5185:8: Warning: the function =E2=80=98touch-screen-hold=E2=80= =99 is not known to be defined. In tab-line-track-tap: tab-line.el:978:50: Warning: reference to free variable =E2=80=98touch-screen-delay=E2=80=99 This is with Emacs from master (d8a0087930) on macOS, built with: git clean -fdx ./autogen ./configure ... make Best, Arash