From: Gregory Heytings Date: Sat, 1 Apr 2023 23:06:53 +0000 (+0000) Subject: Another final fix to last changes X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~16^2~287^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c0b9530862c2f27a23ad058d60171e06de3e9b50;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); }