aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 813858422d4..89b295932ed 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -18089,7 +18089,7 @@ compute_window_start_on_continuation_line (struct window *w)
18089 point will not be visible with any window start we 18089 point will not be visible with any window start we
18090 compute. */ 18090 compute. */
18091 if (IT_CHARPOS (it) <= PT 18091 if (IT_CHARPOS (it) <= PT
18092 || (CHARPOS (start_pos) - IT_CHARPOS (it) 18092 && (CHARPOS (start_pos) - IT_CHARPOS (it)
18093 /* PXW: Do we need upper bounds here? */ 18093 /* PXW: Do we need upper bounds here? */
18094 < WINDOW_TOTAL_LINES (w) * WINDOW_TOTAL_COLS (w))) 18094 < WINDOW_TOTAL_LINES (w) * WINDOW_TOTAL_COLS (w)))
18095 { 18095 {