Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4669fb3c
Commit
4669fb3c
authored
Aug 08, 1995
by
Richard M. Stallman
Browse files
(forward-paragraph): Don't overlook a paragraph-start
line just because it ends at eob.
parent
23ce41fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/textmodes/paragraphs.el
lisp/textmodes/paragraphs.el
+2
-2
No files found.
lisp/textmodes/paragraphs.el
View file @
4669fb3c
...
...
@@ -202,10 +202,10 @@ to which the end of the previous line belongs, or the end of the buffer."
(looking-at fill-prefix-regexp))
(forward-line 1))
(while (and (re-search-forward sp-paragraph-start nil 1)
(not (eobp))
(progn (setq start (match-beginning 0))
(goto-char start)
(move-to-left-margin)
(not (eobp)))
(progn (move-to-left-margin)
(not (looking-at paragraph-separate)))
(or (not (looking-at paragraph-start))
(and use-hard-newlines
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment