1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Merge from origin/emacs-29

bcf287bd11 typescript-ts-mode.el: Minor touches
67c8271076 Improve namespacing situation WRT to recent change in typ...
33ff4fed03 Make move-end-of-line in minibuffer consistent (bug#65980)
This commit is contained in:
Eli Zaretskii 2023-09-17 01:26:46 -04:00
commit d2f6a5c59a
2 changed files with 18 additions and 11 deletions

View file

@ -8263,7 +8263,11 @@ rests."
(let ((newpos
(save-excursion
(let ((goal-column 0)
(line-move-visual nil))
(line-move-visual nil)
;; Always move to eol when invoking `C-e' from
;; within the minibuffer's prompt string (see
;; bug#65980).
(inhibit-field-text-motion (minibufferp)))
(and (line-move arg t)
;; With bidi reordering, we may not be at bol,
;; so make sure we are.