From c4ac30da6795a36334e1eb39ebc8d09326ab2543 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 26 Apr 1997 19:20:00 +0000 Subject: [PATCH] (forward-paragraph): Fix editing error in the updating of paragraph-separate. --- lisp/textmodes/paragraphs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index cb876d55031..6a22338ef7d 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -156,9 +156,9 @@ to which the end of the previous line belongs, or the end of the buffer." (equal ?^ (aref paragraph-start 0))) (substring paragraph-start 1) paragraph-start)) - (paragraph-separate (if (and (not (equal "" paragraph-start)) + (paragraph-separate (if (and (not (equal "" paragraph-separate)) (equal ?^ (aref paragraph-separate 0))) - (substring paragraph-separate 1) + (substring paragraph-separate 1) paragraph-separate)) (paragraph-separate (if fill-prefix-regexp -- 2.39.5