From 3f5dc0b0306bb585e9c3381d8a9f16a62c36d590 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 18 Dec 2000 03:19:54 +0000 Subject: [PATCH] Typo. --- lisp/textmodes/paragraphs.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index f3fac7076e1..f1ad48dd3cf 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -106,7 +106,7 @@ of text indented by a margin setting. The variable `paragraph-separate' specifies how to distinguish lines that start paragraphs from lines that separate them. -If the variable `use-hard-newlines' is nonnil, then only lines following a +If the variable `use-hard-newlines' is non-nil, then only lines following a hard newline are considered to match." :group 'paragraphs :type 'regexp) @@ -200,7 +200,7 @@ to which the end of the previous line belongs, or the end of the buffer." (while (and (not (bobp)) (progn (move-to-left-margin) (looking-at paragraph-separate))) - (forward-line -1)) + (forward-line -1)) (if (bobp) nil ;; Go to end of the previous (non-separating) line. @@ -213,8 +213,8 @@ to which the end of the previous line belongs, or the end of the buffer." (progn (move-to-left-margin) (not (looking-at paragraph-separate))) (looking-at fill-prefix-regexp)) - (if (not (= (point) start)) - (setq multiple-lines t)) + (unless (= (point) start) + (setq multiple-lines t)) (forward-line -1)) (move-to-left-margin) ;;; This deleted code caused a long hanging-indent line -- 2.39.5