Function: ConTeXt-set-paragraph-start

ConTeXt-set-paragraph-start is a byte-compiled function defined in context.el.

Signature

(ConTeXt-set-paragraph-start)

Documentation

Set paragraph-start.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/context.el
(defun ConTeXt-set-paragraph-start ()
  "Set `paragraph-start'."
  (setq paragraph-start
        (concat
         "[ \t]*\\(?:"
         LaTeX-paragraph-commands-regexp "\\|"
         "\\$\\$\\|" ; Plain TeX display math
         "$\\)")))