diff options
| author | Stefan Monnier | 2000-12-18 03:19:54 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-12-18 03:19:54 +0000 |
| commit | 3f5dc0b0306bb585e9c3381d8a9f16a62c36d590 (patch) | |
| tree | fe9381f8497d75d2ab2767c03356a9f81c1175bc | |
| parent | 73eff59992932bf78951e4c0426f6cb604e0aa52 (diff) | |
| download | emacs-3f5dc0b0306bb585e9c3381d8a9f16a62c36d590.tar.gz emacs-3f5dc0b0306bb585e9c3381d8a9f16a62c36d590.zip | |
Typo.
| -rw-r--r-- | lisp/textmodes/paragraphs.el | 8 |
1 files 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. | |||
| 106 | The variable `paragraph-separate' specifies how to distinguish | 106 | The variable `paragraph-separate' specifies how to distinguish |
| 107 | lines that start paragraphs from lines that separate them. | 107 | lines that start paragraphs from lines that separate them. |
| 108 | 108 | ||
| 109 | If the variable `use-hard-newlines' is nonnil, then only lines following a | 109 | If the variable `use-hard-newlines' is non-nil, then only lines following a |
| 110 | hard newline are considered to match." | 110 | hard newline are considered to match." |
| 111 | :group 'paragraphs | 111 | :group 'paragraphs |
| 112 | :type 'regexp) | 112 | :type 'regexp) |
| @@ -200,7 +200,7 @@ to which the end of the previous line belongs, or the end of the buffer." | |||
| 200 | (while (and (not (bobp)) | 200 | (while (and (not (bobp)) |
| 201 | (progn (move-to-left-margin) | 201 | (progn (move-to-left-margin) |
| 202 | (looking-at paragraph-separate))) | 202 | (looking-at paragraph-separate))) |
| 203 | (forward-line -1)) | 203 | (forward-line -1)) |
| 204 | (if (bobp) | 204 | (if (bobp) |
| 205 | nil | 205 | nil |
| 206 | ;; Go to end of the previous (non-separating) line. | 206 | ;; 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." | |||
| 213 | (progn (move-to-left-margin) | 213 | (progn (move-to-left-margin) |
| 214 | (not (looking-at paragraph-separate))) | 214 | (not (looking-at paragraph-separate))) |
| 215 | (looking-at fill-prefix-regexp)) | 215 | (looking-at fill-prefix-regexp)) |
| 216 | (if (not (= (point) start)) | 216 | (unless (= (point) start) |
| 217 | (setq multiple-lines t)) | 217 | (setq multiple-lines t)) |
| 218 | (forward-line -1)) | 218 | (forward-line -1)) |
| 219 | (move-to-left-margin) | 219 | (move-to-left-margin) |
| 220 | ;;; This deleted code caused a long hanging-indent line | 220 | ;;; This deleted code caused a long hanging-indent line |