summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Heytings <gregory@heytings.org>2023-04-01 23:06:53 +0000
committerGregory Heytings <gregory@heytings.org>2023-04-02 01:07:51 +0200
commitc0b9530862c2f27a23ad058d60171e06de3e9b50 (patch)
tree23ae244c6350e4e207631f2b8b73674402db4e8e
parent0cc8d6826ad2717a3fd21240d0c97232536cab93 (diff)
downloademacs-scratch/long-lines-cleanup.tar.gz
Another final fix to last changesscratch/long-lines-cleanup
* src/xdisp.c (get_small_narrowing_begv): Refine the value of 'bol_pos'.
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
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);
}