Function: texinfo-format-paragraph-break
texinfo-format-paragraph-break is a byte-compiled function defined in
texinfmt.el.gz.
Signature
(texinfo-format-paragraph-break)
Documentation
Force a paragraph break.
If used within a line, follow @br with braces.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defun texinfo-format-paragraph-break ()
"Force a paragraph break.
If used within a line, follow `@br' with braces."
(texinfo-optional-braces-discard)
;; insert one return if at end of line;
;; else insert two returns, to generate a blank line.
(if (= (following-char) ?\n)
(insert ?\n)
(insert-char ?\n 2)))