diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-26 19:20:00 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-26 19:20:00 +0000 |
commit | c4ac30da6795a36334e1eb39ebc8d09326ab2543 (patch) | |
tree | 3d894e8e25bbc8e52f29fdd247480d96f5508b85 /lisp/textmodes/paragraphs.el | |
parent | 5f0cfe8bfffdae441ecfa85a4575c022422731ac (diff) | |
download | emacs-c4ac30da6795a36334e1eb39ebc8d09326ab2543.tar.gz emacs-c4ac30da6795a36334e1eb39ebc8d09326ab2543.tar.bz2 emacs-c4ac30da6795a36334e1eb39ebc8d09326ab2543.zip |
(forward-paragraph): Fix editing error
in the updating of paragraph-separate.
Diffstat (limited to 'lisp/textmodes/paragraphs.el')
-rw-r--r-- | lisp/textmodes/paragraphs.el | 4 |
1 files 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 |