From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: VanL Newsgroups: gmane.emacs.bugs Subject: bug#33102: 26.1, emacs-mac 7.2; *Newsticker List* frame's SPC does not next page as expected Date: Thu, 11 Jul 2019 00:52:46 +1000 Message-ID: <22994ABA-292E-4D71-B41F-AD096F576393@scratch.space> References: <32C4D63D-778A-43FA-9097-CC3D0352CCF9@scratch.space> <874l3u3sre.fsf@mouse.gnus.org> Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="104969"; mail-complaints-to="usenet@blaine.gmane.org" Cc: 33102@debbugs.gnu.org To: Lars Ingebrigtsen Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Jul 10 16:54:16 2019 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hlDz5-000RCG-NR for geb-bug-gnu-emacs@m.gmane.org; Wed, 10 Jul 2019 16:54:15 +0200 Original-Received: from localhost ([::1]:34372 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlDz4-000856-Ev for geb-bug-gnu-emacs@m.gmane.org; Wed, 10 Jul 2019 10:54:14 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:58081) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlDyv-00084b-Ew for bug-gnu-emacs@gnu.org; Wed, 10 Jul 2019 10:54:06 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlDyt-0002Bd-HY for bug-gnu-emacs@gnu.org; Wed, 10 Jul 2019 10:54:05 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:55805) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hlDyr-0002Ac-Vz for bug-gnu-emacs@gnu.org; Wed, 10 Jul 2019 10:54:03 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hlDyr-00043e-SH for bug-gnu-emacs@gnu.org; Wed, 10 Jul 2019 10:54:01 -0400 X-Loop: help-debbugs@gnu.org Resent-From: VanL Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 10 Jul 2019 14:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 33102 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: moreinfo Original-Received: via spool by 33102-submit@debbugs.gnu.org id=B33102.156277038315514 (code B ref 33102); Wed, 10 Jul 2019 14:54:01 +0000 Original-Received: (at 33102) by debbugs.gnu.org; 10 Jul 2019 14:53:03 +0000 Original-Received: from localhost ([127.0.0.1]:36390 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hlDxu-000429-Tm for submit@debbugs.gnu.org; Wed, 10 Jul 2019 10:53:03 -0400 Original-Received: from relay1-d.mail.gandi.net ([217.70.183.193]:43175) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hlDxs-00041b-FS for 33102@debbugs.gnu.org; Wed, 10 Jul 2019 10:53:01 -0400 X-Originating-IP: 110.175.193.118 Original-Received: from epi.local (110-175-193-118.static.tpgi.com.au [110.175.193.118]) (Authenticated sender: van@scratch.space) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 4CF2624000D; Wed, 10 Jul 2019 14:52:51 +0000 (UTC) In-Reply-To: X-Mailer: Apple Mail (2.3124) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.51.188.43 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.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.org gmane.emacs.bugs:162643 Archived-At: > On 11 Jul 2019, at 00:28, Lars Ingebrigtsen wrote: >=20 > SPC in the Newsticker List window scrolls the Newsticker Item window, > which seems like a natural thing to do (and is the same that Gnus > summary buffer does). >=20 > Or did you mean something else? I try to get used to that natural thing to do. Yes, I might've been thrown by the 'side-effect' page-down in the next = buffer without focus on the item-buffer. I tried the following setting to allow page down in the summary buffer, = directly. --8<---------------cut here---------------start------------->8--- (add-hook 'gnus-summary-mode-hook (lambda () (define-key gnus-summary-mode-map (kbd "") 'scroll-up-command))) --8<---------------cut here---------------end--------------->8---