Function: multi-prompt-expand-completion-table
multi-prompt-expand-completion-table is a byte-compiled function
defined in multi-prompt.el.
Signature
(multi-prompt-expand-completion-table TABLE)
Documentation
Return an expanded version of completion table TABLE.
This is achieved by eval'ing all variables in the value parts of the alist elements.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/multi-prompt.el
(defun multi-prompt-expand-completion-table (table)
"Return an expanded version of completion table TABLE.
This is achieved by eval'ing all variables in the value parts of
the alist elements."
(mapcar (lambda (x)
(if (and (cadr x) (symbolp (cadr x)) (not (functionp (cadr x))))
(cons (car x) (list (symbol-value (cadr x))))
x))
table))