Function: reftex-index-select-phrases-macro
reftex-index-select-phrases-macro is a byte-compiled function defined
in reftex-index.el.gz.
Signature
(reftex-index-select-phrases-macro &optional DELAY)
Documentation
Offer a list of possible index macros and have the user select one.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
(defun reftex-index-select-phrases-macro (&optional delay)
"Offer a list of possible index macros and have the user select one."
(let* ((prompt (concat "Select macro: ["
(mapconcat (lambda (x) (char-to-string (car x)))
reftex-index-phrases-macro-data "")
"] "))
(help (concat "Select an indexing macro\n========================\n"
(mapconcat (lambda (x)
(format " [%c] %s"
(car x) (nth 1 x)))
reftex-index-phrases-macro-data "\n"))))
(reftex-select-with-char prompt help delay)))