Function: reftex-get-string-refs

reftex-get-string-refs is a byte-compiled function defined in reftex-cite.el.gz.

Signature

(reftex-get-string-refs ALIST)

Documentation

Return a list of BibTeX @string references that appear as values in ALIST.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-cite.el.gz
(defun reftex-get-string-refs (alist)
  "Return a list of BibTeX @string references that appear as values in ALIST."
  (reftex-remove-if (lambda (x) (string-match "^\\([\"{]\\|[0-9]+$\\)" x))
		    ;; get list of values, discard keys
		    (mapcar #'cdr
			    ;; remove &key and &type entries
			    (reftex-remove-if (lambda (pair)
						(string-match "^&" (car pair)))
					      alist))))