1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-05 22:20:24 -08:00

Revert "Fix bug#79518 with 'windmove-mode' in "C-h m" display"

This reverts commit bf750adc4e.
It caused windmove to be loaded unconditionally.
The correct "fix" for bug#79518 is to load the package or
to toggle the mode.
This commit is contained in:
Eli Zaretskii 2025-09-28 08:19:48 +03:00
parent b9573f8f1a
commit ae4878c53b

View file

@ -520,10 +520,8 @@ stopped because it wouldn't move into a window marked with
(define-minor-mode windmove-mode (define-minor-mode windmove-mode
"Global minor mode for default windmove commands." "Global minor mode for default windmove commands."
:keymap windmove-mode-map :keymap windmove-mode-map
:initialize 'custom-initialize-delay
:init-value t :init-value t
:global t :global t)
:group 'windows)
(defun windmove-install-defaults (prefix modifiers alist &optional uninstall) (defun windmove-install-defaults (prefix modifiers alist &optional uninstall)
"Install keys as specified by ALIST. "Install keys as specified by ALIST.