Variable: org-element--pair-curly-table

org-element--pair-curly-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) (2) (2) (2) (2) (2)
	 (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
	 (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
	 (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
	 (2) (2) (2) (2) (2) (2) (2) (2) (2) (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 . 125) (2) (5 . 123) (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) (2) (2) (2) (2) (2) (2) (2) (2)
		     (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
		     (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
		     (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
		     (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
		     (2) (2) (2) (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 . 125) (2) (5 . 123) (2) (2)]
	       (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
	       (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
	       (2) (2) (2)]
	 (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)]
   (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
   (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2) (2)
   (2) (2) (2) (2) (2) (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 curly brackets.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defconst org-element--pair-curly-table
  (let ((table (make-char-table 'syntax-table '(2))))
    (modify-syntax-entry ?\{ "(}" table)
    (modify-syntax-entry ?\} "){" table)
    table)
  "Table used internally to pair only curly brackets.")