From: Gregory Heytings Date: Sat, 1 Apr 2023 23:06:53 +0000 (+0000) Subject: Another final fix to last changes X-Git-Tag: emacs-29.0.91~11^2~2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c0b9530862c;p=emacs.git Another final fix to last changes * src/xdisp.c (get_small_narrowing_begv): Refine the value of 'bol_pos'. --- diff --git a/src/xdisp.c b/src/xdisp.c index 940b8dc820e..30a32896aba 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -3644,7 +3644,7 @@ ptrdiff_t get_small_narrowing_begv (struct window *w, ptrdiff_t pos) { int len = get_narrowed_width (w); - ptrdiff_t bol_pos = get_nearby_bol_pos (pos); + ptrdiff_t bol_pos = max (get_nearby_bol_pos (pos), BEGV); return max (bol_pos + ((pos - bol_pos) / len - 1) * len, BEGV); }