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
886f1656
Commit
886f1656
authored
Mar 02, 1995
by
Boris Goldowsky
Browse files
(texinfo-format-refill): Remove ^ from paragraph-start & paragraph-separate.
parent
c53857e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/textmodes/texinfmt.el
lisp/textmodes/texinfmt.el
+2
-2
No files found.
lisp/textmodes/texinfmt.el
View file @
886f1656
...
...
@@ -1916,9 +1916,9 @@ Default is to leave paragraph indentation as is."
;; are used to underline it. This could occur if the line following
;; the underlining is not an index entry and has text within it.
(
let*
((
previous-paragraph-separate
paragraph-separate
)
(
paragraph-separate
(
concat
paragraph-separate
"\\|
^
[-=*.]+"
))
(
paragraph-separate
(
concat
paragraph-separate
"\\|[-=*.]+"
))
(
previous-paragraph-start
paragraph-start
)
(
paragraph-start
(
concat
paragraph-start
"\\|
^
[-=*.]+"
)))
(
paragraph-start
(
concat
paragraph-start
"\\|[-=*.]+"
)))
(
unwind-protect
(
fill-paragraph
nil
)
(
setq
paragraph-separate
previous-paragraph-separate
)
...
...
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