Variable: org-texinfo--definition-command-regexp
org-texinfo--definition-command-regexp is a variable defined in
ox-texinfo.el.gz.
Value
"\\`\\(Command\\|Function\\|Key\\|Macro\\|Special Form\\|User Option\\|Variable\\): \\(.+\\)"
Documentation
Regexp used to match definition commands in descriptive lists.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
(defconst org-texinfo--definition-command-regexp
(format "\\`%s: \\(.+\\)"
(regexp-opt
(delq nil (mapcar #'cdr org-texinfo--definition-command-alist))
t))
"Regexp used to match definition commands in descriptive lists.")