On Sun, Jun 23, 2024 at 9:46 AM Eli Zaretskii <eliz@gnu.org> wrote:
> Date: Sun, 23 Jun 2024 13:29:21 +0000
> Cc: Daniel Colascione <dancol@dancol.org>,
>  Stefan Monnier <monnier@iro.umontreal.ca>, emacs-devel@gnu.org
> From: Alan Mackenzie <acm@muc.de>
>
> I speak from experience here.  org mode binds some arrow key
> combinations.  Two of these, C-S-<up> and C-S-<down> which do some minor
> thing in org mode are bindings I use to scroll the current window
> down/up 6 lines.  So, when somebody changed NEWS from outline mode to
> org mode some while ago

NEWS is not visited using Org mode, it uses a special News mode, which
is a minor variation of Outline mode.

When I run emacs -Q, there is no binding for C-S-Up in Emacs News. That said:

(use-package org :bind (:map org-mode-map
                        ("C-S-<up>" . nil)
                        ("C-S-<down>" . nil))) 

Hope that helps,
~Chad