Mercurial > emacs
changeset 25803:8b032ca83ce6
(reftex-parse-from-file): Scan for multiple thebibliography
environments.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Fri, 24 Sep 1999 10:00:17 +0000 |
parents | 4c4fabd16782 |
children | 8ae20ae6b8d2 |
files | lisp/textmodes/reftex-parse.el |
diffstat | 1 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/reftex-parse.el Fri Sep 24 09:55:00 1999 +0000 +++ b/lisp/textmodes/reftex-parse.el Fri Sep 24 10:00:17 1999 +0000 @@ -1,5 +1,5 @@ ;;; reftex-parse.el - Parser Functions for RefTeX -;;; Version: 4.5 +;;; Version: 4.6 ;;; ;;; See main file reftex.el for licensing information @@ -355,8 +355,11 @@ ;; Carefull: This function expects the match-data to be still in place! (let* ((marker (set-marker (make-marker) (1- (match-beginning 3)))) (macro (reftex-match-string 3)) - (level (cdr (assoc macro reftex-section-levels-all))) - (star (= ?* (char-after (match-end 3)))) + (level-exp (cdr (assoc macro reftex-section-levels-all))) + (level (if (symbolp level-exp) + (save-match-data (funcall level-exp)) + level-exp)) + (star (= ?* (char-after (match-end 3)))) (unnumbered (or star (< level 0))) (level (abs level)) (section-number (reftex-section-number level unnumbered)) @@ -927,7 +930,7 @@ (min (+ (point) 150) (point-max)))))) ;; Variable holding the vector with section numbers -(defvar reftex-section-numbers [0 0 0 0 0 0 0 0]) +(defvar reftex-section-numbers (make-vector reftex-max-section-depth 0)) (defun reftex-init-section-numbers (&optional toc-entry appendix) ;; Initialize the section numbers with zeros or with what is found