Function: TeX-shdex-listify

TeX-shdex-listify is a byte-compiled function defined in tex.el.

Signature

(TeX-shdex-listify DIALECT-SET)

Documentation

Converts a dialect set DIALECT-SET to a list of all dialect comprised in this set, where dialects are symbols

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defsubst TeX-shdex-listify (dialect-set)
  "Converts a dialect set DIALECT-SET to a list of all dialect
comprised in this set, where dialects are symbols"
  (let (ret)
    (dolist (c dialect-set)
      (when (/= 0 (logand (cdr c) dialect-set))
        (push (car c) ret)))
    ret))