GNU bug report logs -
#57433
Emacs no longer moves point into visible port of the buffer
Previous Next
Full log
Message #32 received at 57433 <at> debbugs.gnu.org (full text, mbox):
> From: Gerd Möllmann <gerd.moellmann <at> gmail.com>
> Cc: 57433 <at> debbugs.gnu.org, pogonyshev <at> gmail.com
> Date: Sat, 27 Aug 2022 12:02:32 +0200
>
> Eli Zaretskii <eliz <at> gnu.org> writes:
>
> > Does Magit turn on truncate-lines in the affected buffer, or cause
> > them be truncated due to partial-width windows? If it does, I might
> > have an idea what could cause the OP's problem.
>
> Yes, truncate-lines it t.
In that case, can you see if the patch below solves the original issue
with Magit?
diff --git a/lisp/simple.el b/lisp/simple.el
index ee765c8..d18d54c 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -7717,13 +7717,15 @@ line-move
(not goal-column)
;; Lines aren't truncated.
(not
- (or truncate-lines
- (and (integerp truncate-partial-width-windows)
- (< (window-width)
- truncate-partial-width-windows))
- (and truncate-partial-width-windows
- (not (integerp truncate-partial-width-windows))
- (not (window-full-width-p)))))
+ (and
+ (or truncate-lines
+ (and (integerp truncate-partial-width-windows)
+ (< (window-total-width)
+ truncate-partial-width-windows))
+ (and truncate-partial-width-windows
+ (not (integerp truncate-partial-width-windows))
+ (not (window-full-width-p))))
+ (long-line-optimizations-p)))
;; When the text in the window is scrolled to the left,
;; display-based motion doesn't make sense (because each
;; logical line occupies exactly one screen line).
This bug report was last modified 2 years and 319 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.