Variable: texinfo-raisesections-alist

texinfo-raisesections-alist is a variable defined in texinfmt.el.gz.

Value

((@chapter . @chapter)
 (@unnumbered . @unnumbered)
 (@centerchap . @unnumbered)
 (@majorheading . @majorheading)
 (@chapheading . @chapheading)
 (@appendix . @appendix)
 (@section . @chapter)
 (@unnumberedsec . @unnumbered)
 (@heading . @chapheading)
 (@appendixsec . @appendix)
 (@subsection . @section)
 (@unnumberedsubsec . @unnumberedsec)
 (@subheading . @heading)
 (@appendixsubsec . @appendixsec)
 (@subsubsection . @subsection)
 (@unnumberedsubsubsec . @unnumberedsubsec)
 (@subsubheading . @subheading)
 (@appendixsubsubsec . @appendixsubsec))

Documentation

An alist of next higher levels for chapters, sections, etc...

For example, section to chapter, subsection to section. Used by texinfo-raise-lower-sections. The keys specify types of section; the values correspond to the next higher types.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defvar texinfo-raisesections-alist
  '((@chapter . @chapter)             ; Cannot go higher
    (@unnumbered . @unnumbered)
    (@centerchap . @unnumbered)

    (@majorheading . @majorheading)
    (@chapheading . @chapheading)
    (@appendix . @appendix)

    (@section . @chapter)
    (@unnumberedsec . @unnumbered)
    (@heading . @chapheading)
    (@appendixsec . @appendix)

    (@subsection . @section)
    (@unnumberedsubsec . @unnumberedsec)
    (@subheading . @heading)
    (@appendixsubsec . @appendixsec)

    (@subsubsection . @subsection)
    (@unnumberedsubsubsec . @unnumberedsubsec)
    (@subsubheading . @subheading)
    (@appendixsubsubsec . @appendixsubsec))
  "An alist of next higher levels for chapters, sections, etc...
For example, section to chapter, subsection to section.
Used by `texinfo-raise-lower-sections'.
The keys specify types of section; the values correspond to the next
higher types.")