Variable: org-element--pair-round-table
org-element--pair-round-table is a variable defined in
org-element.el.gz.
Value
Large value
#^[(2) nil syntax-table
#^^[3 0 (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (4 . 41) (5 . 40) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2)]
#^^[1 0
#^^[2 0
#^^[3 0 (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (4 . 41) (5 . 40) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2)]
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2)]
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)]
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
(2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)]
Documentation
Table used internally to pair only round brackets.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defconst org-element--pair-round-table
(let ((table (make-char-table 'syntax-table '(2))))
(modify-syntax-entry ?\( "()" table)
(modify-syntax-entry ?\) ")(" table)
table)
"Table used internally to pair only round brackets.")