From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Fix some tooltip related problems Date: Mon, 08 Jan 2018 20:47:45 +0200 Message-ID: <83tvvw6vce.fsf@gnu.org> References: <5A533FA4.4030507@gmx.at> Reply-To: Eli Zaretskii NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1515437169 9121 195.159.176.226 (8 Jan 2018 18:46:09 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 8 Jan 2018 18:46:09 +0000 (UTC) Cc: emacs-devel@gnu.org To: martin rudalics Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 08 19:46:04 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eYcQu-00020B-1O for ged-emacs-devel@m.gmane.org; Mon, 08 Jan 2018 19:46:04 +0100 Original-Received: from localhost ([::1]:51238 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eYcSt-0002oz-8F for ged-emacs-devel@m.gmane.org; Mon, 08 Jan 2018 13:48:07 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44008) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eYcSm-0002np-Nm for emacs-devel@gnu.org; Mon, 08 Jan 2018 13:48:01 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eYcSj-0001WC-MX for emacs-devel@gnu.org; Mon, 08 Jan 2018 13:48:00 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:39828) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eYcSj-0001W6-IZ; Mon, 08 Jan 2018 13:47:57 -0500 Original-Received: from [176.228.60.248] (port=3462 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1eYcSi-0004E8-Ea; Mon, 08 Jan 2018 13:47:57 -0500 In-reply-to: <5A533FA4.4030507@gmx.at> (message from martin rudalics on Mon, 08 Jan 2018 10:53:40 +0100) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:221717 Archived-At: > Date: Mon, 08 Jan 2018 10:53:40 +0100 > From: martin rudalics > > I intend to apply the attached patch to master. Its ChangeLog goes > as below. Comments and suggestions welcome. > > Thanks, martin > > ------------------------------------------------------------------- > > Fix some tooltip related problems > > Replace 'tooltip' frame parameter with a 'tooltip' member in > the frame structure. For GTK+ builds use 'tip_last_frame' to > find the frame for which the currently visible tooltip was > made. For modeline help-echoing have tooltips show applicable > actions only. What would that do to Lisp code that was probing that frame parameter? I think for backward compatibility we should pretend in frame-parameters and frame-parameter that this parameter still exist, at least for tooltip frames. IOW, remove it only for internal bookkeeping. Thanks.