Variable: edmacro--macro-lines-regexp
edmacro--macro-lines-regexp is a variable defined in edmacro.el.gz.
Value
"Macro\\(?: (most recent line first)\\)?:[ \n ]*"
Documentation
A regexp identifying the lines that precede the macro's contents.
Source Code
;; Defined in /usr/src/emacs/lisp/edmacro.el.gz
(defvar edmacro--macro-lines-regexp
(rx "Macro"
(zero-or-one " (most recent line first)")
":"
(zero-or-more (any " \t\n")))
"A regexp identifying the lines that precede the macro's contents.")