Function: reftex-default-bibliography

reftex-default-bibliography is an autoloaded and byte-compiled function defined in reftex-cite.el.gz.

Signature

(reftex-default-bibliography)

Documentation

Return the expanded value of variable reftex-default-bibliography(var)/reftex-default-bibliography(fun).

The expanded value is cached.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-cite.el.gz
;;;###autoload
(defun reftex-default-bibliography ()
  "Return the expanded value of variable `reftex-default-bibliography'.
The expanded value is cached."
  (unless (eq (get 'reftex-default-bibliography :reftex-raw)
              reftex-default-bibliography)
    (put 'reftex-default-bibliography :reftex-expanded
         (reftex-locate-bibliography-files
          default-directory reftex-default-bibliography))
    (put 'reftex-default-bibliography :reftex-raw
         reftex-default-bibliography))
  (get 'reftex-default-bibliography :reftex-expanded))