Function: texinfo-paragraphindent
texinfo-paragraphindent is a byte-compiled function defined in
texinfmt.el.gz.
Signature
(texinfo-paragraphindent)
Documentation
Specify the number of spaces for @refill to indent a paragraph.
Default is to leave the number of spaces as is.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defun texinfo-paragraphindent ()
"Specify the number of spaces for @refill to indent a paragraph.
Default is to leave the number of spaces as is."
(let ((arg (texinfo-parse-arg-discard)))
(if (string= "asis" arg)
(setq texinfo-paragraph-indent "asis")
(setq texinfo-paragraph-indent (string-to-number arg)))))