Function: LaTeX-set-paragraph-start
LaTeX-set-paragraph-start is a byte-compiled function defined in
latex.el.
Signature
(LaTeX-set-paragraph-start)
Documentation
Set paragraph-start.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-set-paragraph-start ()
"Set `paragraph-start'."
(setq paragraph-start
(concat
"[ \t]*%*[ \t]*\\("
LaTeX-paragraph-commands-regexp "\\|"
(regexp-quote TeX-esc) "\\(" LaTeX-item-regexp "\\)\\|"
"\\$\\$\\|" ; Plain TeX display math (Some people actually use this
; with LaTeX. Yuck.)
"$\\)")))