From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#51210: Customizable other-window-for-scrolling Date: Tue, 04 Jan 2022 19:37:54 +0200 Organization: LINKOV.NET Message-ID: <86y23vo0zx.fsf@mail.linkov.net> References: <878ryvh6bz.fsf@mail.linkov.net> <861r1v1foe.fsf@mail.linkov.net> <96d50c26-ea56-5ff6-3cc3-25652d744ca4@gmx.at> <86o84revzi.fsf@mail.linkov.net> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="4134"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-linux-gnu) Cc: 51210@debbugs.gnu.org To: martin rudalics Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Tue Jan 04 18:52:29 2022 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1n4nz3-0000qf-JN for geb-bug-gnu-emacs@m.gmane-mx.org; Tue, 04 Jan 2022 18:52:29 +0100 Original-Received: from localhost ([::1]:56726 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1n4nz1-0000pQ-OR for geb-bug-gnu-emacs@m.gmane-mx.org; Tue, 04 Jan 2022 12:52:27 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:36976) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n4nyd-0000p6-7e for bug-gnu-emacs@gnu.org; Tue, 04 Jan 2022 12:52:04 -0500 Original-Received: from debbugs.gnu.org ([209.51.188.43]:55300) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1n4nyc-0001Po-No for bug-gnu-emacs@gnu.org; Tue, 04 Jan 2022 12:52:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1n4nyc-0002Wy-DW for bug-gnu-emacs@gnu.org; Tue, 04 Jan 2022 12:52:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 04 Jan 2022 17:52:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 51210 X-GNU-PR-Package: emacs Original-Received: via spool by 51210-submit@debbugs.gnu.org id=B51210.16413187049678 (code B ref 51210); Tue, 04 Jan 2022 17:52:02 +0000 Original-Received: (at 51210) by debbugs.gnu.org; 4 Jan 2022 17:51:44 +0000 Original-Received: from localhost ([127.0.0.1]:38608 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n4nyK-0002W2-Av for submit@debbugs.gnu.org; Tue, 04 Jan 2022 12:51:44 -0500 Original-Received: from relay11.mail.gandi.net ([217.70.178.231]:42701) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n4nyG-0002VX-FZ for 51210@debbugs.gnu.org; Tue, 04 Jan 2022 12:51:42 -0500 Original-Received: (Authenticated sender: juri@linkov.net) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 36079100006; Tue, 4 Jan 2022 17:51:32 +0000 (UTC) In-Reply-To: (martin rudalics's message of "Tue, 4 Jan 2022 11:27:21 +0100") X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:223650 Archived-At: >>> And shouldn't a window, if specified, override a specified buffer? >> >> Its purpose is to override only the part that hard-codes 'next-window'. > > How about a variable 'other-window-to-scroll-function' whose default > value is 'next-window'? The default behavior is more complex than just 'next-window': else if (FUNCTIONP (Vother_window_scroll_default)) /* Nothing specified; try to get a window from the function. */ window = call0 (Vother_window_scroll_default); else { /* Otherwise, look for a neighboring window on the same frame. */ window = Fnext_window (selected_window, Qlambda, Qnil); if (EQ (window, selected_window)) /* That didn't get us anywhere; look for a window on another visible frame on the current terminal. */ window = Fnext_window (window, Qlambda, Qvisible); }