Variable: texinfo-paragraph-indent

texinfo-paragraph-indent is a variable defined in texinfmt.el.gz.

Value

"asis"

Documentation

Number of spaces for @refill to indent a paragraph; else to leave as is.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
;;; Refilling and indenting:  @refill, @paragraphindent, @noindent

;; Indent only those paragraphs that are refilled as a result of an
;; @refill command.

;;    * If the value is `asis', do not change the existing indentation at
;;      the starts of paragraphs.

;;    * If the value zero, delete any existing indentation.

;;    * If the value is greater than zero, indent each paragraph by that
;;      number of spaces.

;; But do not refill paragraphs with an @refill command that are
;; preceded by @noindent or are part of a table, list, or deffn.

(defvar texinfo-paragraph-indent "asis"
  "Number of spaces for @refill to indent a paragraph; else to leave as is.")