From: Richard M. Stallman Date: Sat, 26 Apr 1997 19:20:00 +0000 (+0000) Subject: (forward-paragraph): Fix editing error X-Git-Tag: emacs-20.1~2376 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c4ac30da6795a36334e1eb39ebc8d09326ab2543;p=emacs.git (forward-paragraph): Fix editing error in the updating of paragraph-separate. --- 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