From 2384c010d256c3201a522bdf1485c39ec07ea211 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 12 Jul 1997 06:17:23 +0000 Subject: [PATCH] (display_text_line): Exit the outer loop immediately when the right margin has been reached. --- src/xdisp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index a36b8f0eda9..65b4c2c26e8 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -1,5 +1,6 @@ /* Display generation from window structure and buffer text. - Copyright (C) 1985, 86, 87, 88, 93, 94, 95 Free Software Foundation, Inc. + Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 1997 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -2991,7 +2992,7 @@ display_text_line (w, start, vpos, hpos, taboffset, ovstr_done) next_boundary = pos; p1prev = p1; prevpos = pos; - while (1) + while (p1 < endp) { if (pos >= pause) { -- 2.39.5