Variable: TeX-fold--spec-type

TeX-fold--spec-type is a variable defined in tex-fold.el.

Value

(choice (string :tag "Display String")
	(integer :tag "Number of argument" :value 1)
	(function :tag "Function to execute")
	(cons :tag "Spec with signature"
	      (choice (string :tag "Display String")
		      (integer :tag "Number of argument" :value 1)
		      (function :tag "Function to execute"))
	      (choice (const :tag "No restriction" nil)
		      (integer :tag "Max total arguments")
		      (cons :tag "Max optional and mandatory"
			    (integer :tag "Max optional arguments")
			    (integer :tag "Max mandatory arguments"))
		      (function :tag "Predicate function"))))

Documentation

Type spec used by TeX-fold defcustoms.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-fold.el
(defconst TeX-fold--spec-type
  '(choice
    (string :tag "Display String")
    (integer :tag "Number of argument" :value 1)
    (function :tag "Function to execute")
    (cons :tag "Spec with signature"
          (choice (string :tag "Display String")
                  (integer :tag "Number of argument" :value 1)
                  (function :tag "Function to execute"))
          (choice (const :tag "No restriction" nil)
                  (integer :tag "Max total arguments")
                  (cons :tag "Max optional and mandatory"
                        (integer :tag "Max optional arguments")
                        (integer :tag "Max mandatory arguments"))
                  (function :tag "Predicate function"))))
  "Type spec used by TeX-fold defcustoms.")