Variable: calc-embedded-announce-formula-alist

calc-embedded-announce-formula-alist is a customizable variable defined in calc.el.gz.

Value

((c++-mode . "//Embed\n\\(// .*\n\\)*")
 (c-mode . "/\\*Embed\\*/\n\\(/\\* .*\\*/\n\\)*")
 (f90-mode . "!Embed\n\\(! .*\n\\)*")
 (fortran-mode . "C Embed\n\\(C .*\n\\)*")
 (html-helper-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
 (html-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
 (nroff-mode . "\\\\\"Embed\n\\(\\\\\" .*\n\\)*")
 (pascal-mode . "{Embed}\n\\({.*}\n\\)*")
 (sgml-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
 (xml-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
 (texinfo-mode . "@c Embed\n\\(@c .*\n\\)*"))

Documentation

Alist of major modes for calc-embedded-announce-formula.

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
(defcustom calc-embedded-announce-formula-alist
  '((c++-mode     . "//Embed\n\\(// .*\n\\)*")
    (c-mode       . "/\\*Embed\\*/\n\\(/\\* .*\\*/\n\\)*")
    (f90-mode     . "!Embed\n\\(! .*\n\\)*")
    (fortran-mode . "C Embed\n\\(C .*\n\\)*")
    (html-helper-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
    (html-mode    . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
    (nroff-mode   . "\\\\\"Embed\n\\(\\\\\" .*\n\\)*")
    (pascal-mode  . "{Embed}\n\\({.*}\n\\)*")
    (sgml-mode    . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
    (xml-mode     . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
    (texinfo-mode . "@c Embed\n\\(@c .*\n\\)*"))
  "Alist of major modes for `calc-embedded-announce-formula'."
  :type '(alist :key-type (symbol :tag "Major mode")
                :value-type (regexp :tag "Regexp to announce formula")))