1 ;;; reftex-parse.el --- parser functions for RefTeX
3 ;; Copyright (C) 1997-2011 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <dominik@science.uva.nl>
6 ;; Maintainer: auctex-devel@gnu.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 (eval-when-compile (require 'cl
))
30 (provide 'reftex-parse
)
33 (defmacro reftex-with-special-syntax
(&rest body
)
34 `(let ((saved-syntax (syntax-table)))
37 (set-syntax-table reftex-syntax-table
)
38 (let ((case-fold-search nil
))
40 (set-syntax-table saved-syntax
))))
42 (defun reftex-parse-one ()
45 (let ((reftex-enable-partial-scans t
))
46 (reftex-access-scan-info '(4))))
48 (defun reftex-parse-all ()
49 "Re-parse entire document."
51 (reftex-access-scan-info '(16)))
53 (defun reftex-do-parse (rescan &optional file
)
54 "Do a document rescan. When allowed, do only a partial scan from FILE."
56 ;; Normalize the rescan argument
57 (setq rescan
(cond ((eq rescan t
) t
)
59 ((equal rescan
'(4)) t
)
60 ((equal rescan
'(16)) 1)
63 ;; Partial scans only when allowed
64 (unless reftex-enable-partial-scans
69 (let* ((old-list (symbol-value reftex-docstruct-symbol
))
70 (master (reftex-TeX-master-file))
71 (true-master (file-truename master
))
72 (master-dir (file-name-as-directory (file-name-directory master
)))
73 (file (or file
(buffer-file-name)))
74 (true-file (file-truename file
))
75 (bibview-cache (assq 'bibview-cache old-list
))
76 (index-tags (cdr (assq 'index-tags old-list
)))
77 from-file appendix docstruct tmp
)
79 ;; Make sure replacement is really an option here
80 (when (and (eq rescan t
)
81 (not (and (member (list 'bof file
) old-list
)
82 (member (list 'eof file
) old-list
))))
83 ;; Scan whole document because no such file section exists
85 (when (string= true-file true-master
)
86 ;; Scan whole document because this file is the master
89 ;; From which file do we start?
91 (cond ((eq rescan t
) (or file master
))
92 ((eq rescan
1) master
)
93 (t (error "This should not happen (reftex-do-parse)"))))
95 ;; Reset index-tags if we scan everything
96 (if (equal rescan
1) (setq index-tags nil
))
98 ;; Find active toc entry and initialize section-numbers
99 (setq reftex-active-toc
(reftex-last-assoc-before-elt
100 'toc
(list 'bof from-file
) old-list
)
101 appendix
(reftex-last-assoc-before-elt
102 'appendix
(list 'bof from-file
) old-list
))
104 (reftex-init-section-numbers reftex-active-toc appendix
)
107 (message "Scanning entire document...")
108 (message "Scanning document from %s..." from-file
))
110 (reftex-with-special-syntax
111 (save-window-excursion
115 (reftex-parse-from-file
116 from-file docstruct master-dir
))
117 (reftex-kill-temporary-buffers)))))
119 (message "Scanning document... done")
121 ;; Turn the list around.
122 (setq docstruct
(nreverse docstruct
))
125 (setq docstruct
(reftex-replace-label-list-segment
126 old-list docstruct
(eq rescan
1)))
128 ;; Add all missing information
129 (unless (assq 'label-numbers docstruct
)
130 (push (cons 'label-numbers nil
) docstruct
))
131 (unless (assq 'master-dir docstruct
)
132 (push (cons 'master-dir master-dir
) docstruct
))
133 (unless (assq 'bibview-cache docstruct
)
134 (push (cons 'bibview-cache
(cdr bibview-cache
)) docstruct
))
135 (let* ((bof1 (memq (assq 'bof docstruct
) docstruct
))
136 (bof2 (assq 'bof
(cdr bof1
)))
137 (is-multi (not (not (and bof1 bof2
))))
138 (entry (or (assq 'is-multi docstruct
)
139 (car (push (list 'is-multi is-multi
) docstruct
)))))
140 (setcdr entry
(cons is-multi nil
)))
141 (and index-tags
(setq index-tags
(sort index-tags
'string
<)))
142 (let ((index-tag-cell (assq 'index-tags docstruct
)))
144 (setcdr index-tag-cell index-tags
)
145 (push (cons 'index-tags index-tags
) docstruct
)))
146 (unless (assq 'xr docstruct
)
147 (let* ((allxr (reftex-all-assq 'xr-doc docstruct
))
150 (if (setq tmp
(reftex-locate-file (nth 2 x
) "tex"
153 (message "Can't find external document %s"
157 (alist (delq nil alist
))
158 (allprefix (delq nil
(mapcar 'car alist
)))
159 (regexp (if allprefix
161 (mapconcat 'identity allprefix
"\\|")
163 "\\\\\\\\\\\\"))) ; this will never match
164 (push (list 'xr alist regexp
) docstruct
)))
166 (set reftex-docstruct-symbol docstruct
)
167 (put reftex-docstruct-symbol
'modified t
)))
169 (defun reftex-everything-regexp ()
170 (if reftex-support-index
171 reftex-everything-regexp
172 reftex-everything-regexp-no-index
))
175 (defun reftex-all-document-files (&optional relative
)
176 "Return a list of all files belonging to the current document.
177 When RELATIVE is non-nil, give file names relative to directory
179 (let* ((all (symbol-value reftex-docstruct-symbol
))
180 (master-dir (file-name-directory (reftex-TeX-master-file)))
181 (re (concat "\\`" (regexp-quote master-dir
)))
183 (while (setq tmp
(assoc 'bof all
))
184 (setq file
(nth 1 tmp
)
185 all
(cdr (memq tmp all
)))
187 (string-match re file
)
188 (setq file
(substring file
(match-end 0))))
189 (push file file-list
))
190 (nreverse file-list
)))
192 (defun reftex-parse-from-file (file docstruct master-dir
)
193 ;; Scan the buffer for labels and save them in a list.
194 (let ((regexp (reftex-everything-regexp))
196 file-found tmp include-file
199 toc-entry index-entry next-buf buf
)
202 (setq file-found
(reftex-locate-file file
"tex" master-dir
))
203 (if (and (not file-found
)
204 (setq buf
(reftex-get-buffer-visiting file
)))
205 (setq file-found
(buffer-file-name buf
)))
208 (push (list 'file-error file
) docstruct
)
213 (message "Scanning file %s" file
)
216 (reftex-get-file-buffer-force
218 (not (eq t reftex-keep-temporary-buffers
)))))
220 ;; Begin of file mark
221 (setq file
(buffer-file-name))
222 (push (list 'bof file
) docstruct
)
224 (reftex-with-special-syntax
230 (while (re-search-forward regexp nil t
)
236 (push (reftex-label-info (reftex-match-string 1) file bound
)
244 (setq toc-entry
(reftex-section-info file
))
246 ;; It can happen that section info returns nil
247 (setq level
(nth 5 toc-entry
))
248 (setq highest-level
(min highest-level level
))
249 (if (= level highest-level
)
252 (car (rassoc level reftex-section-levels-all
))
255 (push toc-entry docstruct
)
256 (setq reftex-active-toc toc-entry
)))
259 ;; It's an include or input
260 (setq include-file
(reftex-match-string 7))
261 ;; Test if this file should be ignored
262 (unless (delq nil
(mapcar
263 (lambda (x) (string-match x include-file
))
264 reftex-no-include-regexps
))
267 (reftex-parse-from-file
269 docstruct master-dir
))))
272 ;; Appendix starts here
273 (reftex-init-section-numbers nil t
)
274 (push (cons 'appendix t
) docstruct
))
278 (when reftex-support-index
279 (setq index-entry
(reftex-index-info file
))
281 (add-to-list 'index-tags
(nth 1 index-entry
))
282 (push index-entry docstruct
))))
285 ;; A macro with label
287 (let* ((mac (reftex-match-string 11))
288 (label (progn (goto-char (match-end 11))
291 (reftex-nth-arg-wrapper
293 (typekey (nth 1 (assoc mac reftex-env-or-mac-alist
)))
294 (entry (progn (if typekey
296 (goto-char (match-end 0))
298 (goto-char (match-end 11))
299 (reftex-move-over-touching-args))
301 label file bound nil nil
))))
302 (push entry docstruct
))))
303 (t (error "This should not happen (reftex-parse-from-file)")))
306 ;; Find bibliography statement
307 (when (setq tmp
(reftex-locate-bibliography-files master-dir
))
308 (push (cons 'bib tmp
) docstruct
))
311 (when (re-search-forward
312 "\\(\\`\\|[\n\r]\\)[ \t]*\\\\begin{thebibliography}" nil t
)
313 (push (cons 'thebib file
) docstruct
))
315 ;; Find external document specifications
317 (while (re-search-forward "[\n\r][ \t]*\\\\externaldocument\\(\\[\\([^]]*\\)\\]\\)?{\\([^}]+\\)}" nil t
)
318 (push (list 'xr-doc
(reftex-match-string 2)
319 (reftex-match-string 3))
323 (push (list 'eof file
) docstruct
)))))
325 ;; Kill the scanned buffer
326 (reftex-kill-temporary-buffers next-buf
))
331 (defun reftex-locate-bibliography-files (master-dir &optional files
)
332 ;; Scan buffer for bibliography macro and return file list.
336 (goto-char (point-min))
337 (if (re-search-forward
339 ; "\\(\\`\\|[\n\r]\\)[^%]*\\\\\\("
340 "\\(^\\)[^%\n\r]*\\\\\\("
341 (mapconcat 'identity reftex-bibliography-commands
"\\|")
342 "\\){[ \t]*\\([^}]+\\)") nil t
)
344 (split-string (reftex-match-string 3)
345 "[ \t\n\r]*,[ \t\n\r]*")))))
350 (if (or (member x reftex-bibfile-ignore-list
)
351 (delq nil
(mapcar (lambda (re) (string-match re x
))
352 reftex-bibfile-ignore-regexps
)))
356 (reftex-locate-file x
"bib" master-dir
)))
360 (defun reftex-replace-label-list-segment (old insert
&optional entirely
)
361 ;; Replace the segment in OLD which corresponds to INSERT.
362 ;; Works with side effects, directly changes old.
363 ;; If entirely is t, just return INSERT.
364 ;; This function also makes sure the old toc markers do not point anywhere.
368 (reftex-silence-toc-markers old
(length old
))
371 (file (nth 1 (car insert
)))
372 (eof-list (member (list 'eof file
) old
))
373 (bof-list (member (list 'bof file
) old
))
375 (if (not (and bof-list eof-list
))
376 (error "Cannot splice")
378 (reftex-silence-toc-markers bof-list
(- (length bof-list
)
380 (setq n
(- (length old
) (length bof-list
)))
381 (setcdr (nthcdr n new
) (cdr insert
))
382 (setcdr (nthcdr (1- (length new
)) new
) (cdr eof-list
)))
385 (defun reftex-section-info (file)
386 ;; Return a section entry for the current match.
387 ;; Careful: This function expects the match-data to be still in place!
388 (let* ((marker (set-marker (make-marker) (1- (match-beginning 3))))
389 (macro (reftex-match-string 3))
390 (prefix (save-match-data
391 (if (string-match "begin{\\([^}]+\\)}" macro
)
392 (match-string 1 macro
))))
393 (level-exp (cdr (assoc macro reftex-section-levels-all
)))
394 (level (if (symbolp level-exp
)
395 (save-match-data (funcall level-exp
))
397 (star (= ?
* (char-after (match-end 3))))
398 (unnumbered (or star
(< level
0)))
400 (section-number (reftex-section-number level unnumbered
))
401 (text1 (save-match-data
403 (reftex-context-substring prefix
))))
404 (literal (buffer-substring-no-properties
405 (1- (match-beginning 3))
406 (min (point-max) (+ (match-end 0) (length text1
) 1))))
407 ;; Literal can be too short since text1 too short. No big problem.
408 (text (reftex-nicify-text text1
)))
410 ;; Add section number and indentation
413 (make-string (* reftex-level-indent level
) ?\
)
414 (if (nth 1 reftex-label-menu-flags
) ; section number flag
415 (concat section-number
" "))
416 (if prefix
(concat (capitalize prefix
) ": ") "")
418 (list 'toc
"toc" text file marker level section-number
419 literal
(marker-position marker
))))
421 (defun reftex-ensure-index-support (&optional abort
)
422 ;; When index support is turned off, ask to turn it on and
423 ;; set the current prefix argument so that `reftex-access-scan-info'
424 ;; will rescan the entire document.
426 (reftex-support-index t
)
427 ((y-or-n-p "Turn on index support and rescan entire document? ")
428 (setq reftex-support-index
'demanded
429 current-prefix-arg
'(16)))
431 (error "No index support")
432 (message "No index support")
436 (defun reftex-index-info-safe (file)
437 (reftex-with-special-syntax
438 (reftex-index-info file
)))
441 (defun reftex-index-info (file)
442 ;; Return an index entry for the current match.
443 ;; Carefull: This function expects the match-data to be still in place!
445 (let* ((macro (reftex-match-string 10))
446 (bom (match-beginning 10))
448 (entry (or (assoc macro reftex-index-macro-alist
)
450 (exclude (nth 3 entry
))
451 ;; The following is a test if this match should be excluded
452 (test-dummy (and (fboundp exclude
)
456 (prefix (nth 2 entry
))
458 (cond ((stringp itag
) itag
)
460 (progn (goto-char boa
)
461 (or (reftex-nth-arg itag
(nth 6 entry
)) "idx")))
463 (arg (or (progn (goto-char boa
)
464 (reftex-nth-arg (nth 5 entry
) (nth 6 entry
)))
466 (end-of-args (progn (goto-char boa
)
467 (reftex-move-over-touching-args)
469 (end-of-context (progn (skip-chars-forward "^ \t\n\r") (point)))
471 (progn (goto-char bom
)
472 (skip-chars-backward "^ \t\r\n")
474 (context (buffer-substring-no-properties
475 begin-of-context end-of-context
))
476 (key-end (if (string-match reftex-index-key-end-re arg
)
477 (1+ (match-beginning 0))))
478 (rawkey (substring arg
0 key-end
))
480 (key (if prefix
(concat prefix rawkey
) rawkey
))
481 (sortkey (downcase key
))
482 (showkey (mapconcat 'identity
483 (split-string key reftex-index-level-re
)
485 (goto-char end-of-args
)
486 ;; 0 1 2 3 4 5 6 7 8 9
487 (list 'index index-tag context file bom arg key showkey sortkey key-end
))))
489 (defun reftex-short-context (env parse
&optional bound derive
)
490 ;; Get about one line of useful context for the label definition at point.
493 (setq parse
(if derive
(cdr parse
) (car parse
))))
501 (reftex-context-substring)))
504 (if (string= env
"section")
505 ;; special treatment for section labels
507 (if (and (re-search-backward reftex-section-or-include-regexp
511 (goto-char (match-end 0))
512 (reftex-context-substring))
513 (if reftex-active-toc
515 (string-match "{\\([^}]*\\)" (nth 7 reftex-active-toc
))
516 (match-string 1 (nth 7 reftex-active-toc
)))
517 "SECTION HEADING NOT FOUND")))
519 (goto-char reftex-default-context-position
)
520 (unless (eq (string-to-char env
) ?
\\)
521 (reftex-move-over-touching-args))
522 (reftex-context-substring))))
526 (if (re-search-backward parse bound t
)
528 (goto-char (match-end 0))
529 (reftex-context-substring))
530 "NO MATCH FOR CONTEXT REGEXP")))
534 (goto-char reftex-default-context-position
)
537 (nth 6 (assoc env reftex-env-or-mac-alist
))))
541 ;; A hook function. Call it.
543 (condition-case error-var
545 (error (format "HOOK ERROR: %s" (cdr error-var
))))))
547 "INVALID VALUE OF PARSE"))))
549 (defun reftex-where-am-I ()
550 ;; Return the docstruct entry above point. Actually returns a cons
551 ;; cell in which the cdr is a flag indicating if the information is
552 ;; exact (t) or approximate (nil).
554 (let ((docstruct (symbol-value reftex-docstruct-symbol
))
555 (cnt 0) rtn rtn-if-no-other
560 (setq found
(re-search-backward (reftex-everything-regexp) nil t
))
566 (car (member (list 'bof
(buffer-file-name)) docstruct
))
568 (assq 'bof docstruct
) ;; for safety reasons
572 (assoc (reftex-match-string 1)
573 (symbol-value reftex-docstruct-symbol
)))
576 (goto-char (1- (match-beginning 3)))
577 (let* ((list (member (list 'bof
(buffer-file-name))
579 (endelt (car (member (list 'eof
(buffer-file-name))
582 (while (and list
(not (eq endelt
(car list
))))
583 (if (and (eq (car (car list
)) 'toc
)
584 (string= (buffer-file-name)
588 (or (and (markerp (nth 4 (car list
)))
589 (marker-position (nth 4 (car list
))))
591 ;; Fits with marker position or recorded position
592 (setq rtn1
(car list
) list nil
))
593 ((looking-at (reftex-make-regexp-allow-for-ctrl-m
595 ;; Same title: remember, but keep looking
596 (setq rtn-if-no-other
(car list
)))))
600 ;; Input or include...
602 (member (list 'eof
(reftex-locate-file
603 (reftex-match-string 7) "tex"
604 (cdr (assq 'master-dir docstruct
))))
607 (assq 'appendix
(symbol-value reftex-docstruct-symbol
)))
610 (when reftex-support-index
611 (let* ((index-info (save-excursion
612 (reftex-index-info-safe nil
)))
613 (list (member (list 'bof
(buffer-file-name))
615 (endelt (car (member (list 'eof
(buffer-file-name))
617 dist last-dist last
(n 0))
618 ;; Check all index entries with equal text
619 (while (and list
(not (eq endelt
(car list
))))
620 (when (and (eq (car (car list
)) 'index
)
621 (string= (nth 2 index-info
)
624 (setq dist
(abs (- (point) (nth 4 (car list
)))))
625 (if (or (not last-dist
) (< dist last-dist
))
626 (setq last-dist dist last
(car list
))))
627 (setq list
(cdr list
)))
628 ;; We are sure if we have only one, or a zero distance
629 (cond ((or (= n
1) (equal dist
0)) last
)
630 ((> n
1) (setq cnt
2) last
)
634 (goto-char (match-end 11))
635 (assoc (reftex-no-props
636 (reftex-nth-arg-wrapper
637 (reftex-match-string 11)))
638 (symbol-value reftex-docstruct-symbol
))))
640 (error "This should not happen (reftex-where-am-I)"))))))
641 ;; Check if there was only a by-name match for the section.
642 (when (and (not rtn
) rtn-if-no-other
)
643 (setq rtn rtn-if-no-other
645 (cons rtn
(eq cnt
1))))
647 (defun reftex-notice-new (&optional n force
)
648 "Hook to handshake with RefTeX after something new has been inserted."
649 ;; Add a new entry to the docstruct list. If it is a section, renumber
650 ;; the following sections.
651 ;; FIXME: Put in a WHAT parameter and search backward until one is found.
652 ;; When N is given, go back that many matches of reftex-everything-regexp
653 ;; When FORCE is non-nil, also insert if `reftex-where-am-I' was uncertain.
656 (unless reftex-mode
(throw 'exit nil
))
657 (reftex-access-scan-info)
658 (let* ((docstruct (symbol-value reftex-docstruct-symbol
))
659 here-I-am appendix tail entry star level
660 section-number context
)
663 (when (re-search-backward (reftex-everything-regexp) nil t
(or n
1))
666 (setq here-I-am
(reftex-where-am-I))
667 (or here-I-am
(throw 'exit nil
))
668 (unless (or force
(cdr here-I-am
)) (throw 'exit nil
))
669 (setq tail
(memq (car here-I-am
) docstruct
))
670 (or tail
(throw 'exit nil
))
671 (setq reftex-active-toc
(reftex-last-assoc-before-elt
672 'toc
(car here-I-am
) docstruct
)
673 appendix
(reftex-last-assoc-before-elt
674 'appendix
(car here-I-am
) docstruct
))
676 ;; Initialize section numbers
677 (if (eq (car (car here-I-am
)) 'appendix
)
678 (reftex-init-section-numbers nil t
)
679 (reftex-init-section-numbers reftex-active-toc appendix
))
681 ;; Match the section command
682 (when (re-search-forward (reftex-everything-regexp) nil t
)
685 (push (reftex-label-info (reftex-match-string 1) buffer-file-name
)
689 (setq star
(= ?
* (char-after (match-end 3)))
690 entry
(reftex-section-info (buffer-file-name))
692 ;; Insert the section info
693 (push entry
(cdr tail
))
695 ;; We are done unless we use section numbers
696 (unless (nth 1 reftex-label-menu-flags
) (throw 'exit nil
))
698 ;; Update the remaining toc items
699 (setq tail
(cdr tail
))
700 (while (and (setq tail
(memq (assq 'toc
(cdr tail
)) tail
))
701 (setq entry
(car tail
))
702 (>= (nth 5 entry
) level
))
703 (setq star
(string-match "\\*" (nth 6 entry
))
704 context
(nth 2 entry
)
706 (reftex-section-number (nth 5 entry
) star
))
707 (when (string-match "\\`\\([ \t]*\\)\\([.0-9A-Z]+\\)\\(.*\\)"
709 (when (and (not appendix
)
710 (>= (string-to-char (match-string 2)) ?A
))
711 ;; Just entered the appendex. Get out.
714 ;; Change the section number.
716 (concat (match-string 1 context
)
718 (match-string 3 context
))))))
721 (and reftex-support-index
722 (setq entry
(reftex-index-info-safe buffer-file-name
))
723 ;; FIXME: (add-to-list 'index-tags (nth 1 index-entry))
724 (push entry
(cdr tail
))))))))))
729 (defsubst reftex-move-to-previous-arg
(&optional bound
)
730 ;; Assuming that we are in front of a macro argument,
731 ;; move backward to the closing parenthesis of the previous argument.
732 ;; This function understands the splitting of macros over several lines
736 ((memq (preceding-char) '(?\
] ?\
})))
738 ((and reftex-allow-detached-macro-args
740 "[]}][ \t]*[\n\r]?\\([ \t]*%[^\n\r]*[\n\r]\\)*[ \t]*\\=" bound t
))
741 (goto-char (1+ (match-beginning 0)))
745 (defun reftex-what-macro-safe (which &optional bound
)
746 ;; reftex-what-macro with special syntax table.
747 (reftex-with-special-syntax
748 (reftex-what-macro which bound
)))
750 (defun reftex-what-macro (which &optional bound
)
751 ;; Find out if point is within the arguments of any TeX-macro.
752 ;; The return value is either ("\\macro" . (point)) or a list of them.
754 ;; If WHICH is nil, immediately return nil.
755 ;; If WHICH is 1, return innermost enclosing macro.
756 ;; If WHICH is t, return list of all macros enclosing point.
757 ;; If WHICH is a list of macros, look only for those macros and return the
758 ;; name of the first macro in this list found to enclose point.
759 ;; If the optional BOUND is an integer, bound backwards directed
760 ;; searches to this point. If it is nil, limit to nearest \section -
763 ;; This function is pretty stable, but can be fooled if the text contains
764 ;; things like \macro{aa}{bb} where \macro is defined to take only one
765 ;; argument. As RefTeX cannot know this, the string "bb" would still be
766 ;; considered an argument of macro \macro.
768 (unless reftex-section-regexp
(reftex-compile-variables))
770 (if (null which
) (throw 'exit nil
))
771 (let ((bound (or bound
(save-excursion (re-search-backward
772 reftex-section-regexp nil
1)
774 pos cmd-list cmd cnt cnt-opt entry
)
777 (narrow-to-region (max (point-min) bound
) (point-max))
778 ;; move back out of the current parenthesis
779 (while (condition-case nil
780 (let ((forward-sexp-function nil
))
783 (setq cnt
1 cnt-opt
0)
784 ;; move back over any touching sexps
785 (while (and (reftex-move-to-previous-arg bound
)
787 (let ((forward-sexp-function nil
))
790 (if (eq (following-char) ?\
[) (incf cnt-opt
))
793 (when (and (or (= (following-char) ?\
[)
794 (= (following-char) ?\
{))
795 (re-search-backward "\\\\[*a-zA-Z]+\\=" nil t
))
796 (setq cmd
(reftex-match-string 0))
797 (when (looking-at "\\\\begin{[^}]*}")
798 (setq cmd
(reftex-match-string 0)
800 ;; This does ignore optional arguments. Very hard to fix.
801 (when (setq entry
(assoc cmd reftex-env-or-mac-alist
))
802 (if (> cnt
(or (nth 4 entry
) 100))
807 (push (cons cmd
(point)) cmd-list
))
808 ((or (eq 1 which
) (member cmd which
))
809 (throw 'exit
(cons cmd
(point))))))
811 (nreverse cmd-list
)))))
813 (defun reftex-what-environment (which &optional bound
)
814 ;; Find out if point is inside a LaTeX environment.
815 ;; The return value is (e.g.) either ("equation" . (point)) or a list of
818 ;; If WHICH is nil, immediately return nil.
819 ;; If WHICH is 1, return innermost enclosing environment.
820 ;; If WHICH is t, return list of all environments enclosing point.
821 ;; If WHICH is a list of environments, look only for those environments and
822 ;; return the name of the first environment in this list found to enclose
825 ;; If the optional BOUND is an integer, bound backwards directed searches to
826 ;; this point. If it is nil, limit to nearest \section - like statement.
828 (unless reftex-section-regexp
(reftex-compile-variables))
831 (if (null which
) (throw 'exit nil
))
832 (let ((bound (or bound
(save-excursion (re-search-backward
833 reftex-section-regexp nil
1)
835 env-list end-list env
)
836 (while (re-search-backward "\\\\\\(begin\\|end\\){\\([^}]+\\)}"
838 (setq env
(buffer-substring-no-properties
839 (match-beginning 2) (match-end 2)))
841 ((string= (match-string 1) "end")
843 ((equal env
(car end-list
))
844 (setq end-list
(cdr end-list
)))
846 (push (cons env
(point)) env-list
))
847 ((or (eq 1 which
) (member env which
))
848 (throw 'exit
(cons env
(point))))))
849 (nreverse env-list
)))))
851 (defun reftex-what-special-env (which &optional bound
)
852 ;; Run the special environment parsers and return the matches.
854 ;; The return value is (e.g.) either ("my-parser-function" . (point))
855 ;; or a list of them.
857 ;; If WHICH is nil, immediately return nil.
858 ;; If WHICH is 1, return innermost enclosing environment.
859 ;; If WHICH is t, return list of all environments enclosing point.
860 ;; If WHICH is a list of environments, look only for those environments and
861 ;; return the name of the first environment in this list found to enclose
864 (unless reftex-section-regexp
(reftex-compile-variables))
867 (if (null reftex-special-env-parsers
) (throw 'exit nil
))
868 (if (null which
) (throw 'exit nil
))
869 (let ((bound (or bound
(save-excursion (re-search-backward
870 reftex-section-regexp nil
1)
872 (fun-list (if (listp which
)
873 (mapcar (lambda (x) (if (memq x which
) x nil
))
874 reftex-special-env-parsers
)
875 reftex-special-env-parsers
))
877 ;; Call all functions
878 (setq specials
(mapcar
881 (setq rtn
(and fun
(funcall fun bound
)))
882 (if rtn
(cons (symbol-name fun
) rtn
) nil
)))
884 ;; Delete the non-matches
885 (setq specials
(delq nil specials
))
887 (setq specials
(sort specials
(lambda (a b
) (> (cdr a
) (cdr b
)))))
892 (defsubst reftex-move-to-next-arg
(&optional ignore
)
893 ;; Assuming that we are at the end of a macro name or a macro argument,
894 ;; move forward to the opening parenthesis of the next argument.
895 ;; This function understands the splitting of macros over several lines
899 ((memq (following-char) '(?\
[ ?\
{)))
901 ((and reftex-allow-detached-macro-args
902 (looking-at "[ \t]*[\n\r]?\\([ \t]*%[^\n\r]*[\n\r]\\)*[ \t]*[[{]"))
903 (goto-char (1- (match-end 0)))
907 (defun reftex-nth-arg-wrapper (key)
908 (let ((entry (assoc key reftex-env-or-mac-alist
)))
909 (reftex-nth-arg (nth 5 entry
) (nth 6 entry
))))
911 (defun reftex-nth-arg (n &optional opt-args
)
912 ;; Return the nth following {} or [] parentheses content.
913 ;; OPT-ARGS is a list of argument numbers which are optional.
915 ;; If we are sitting at a macro start, skip to end of macro name.
916 (and (eq (following-char) ?
\\) (skip-chars-forward "a-zA-Z*\\\\"))
919 ;; Special case: Skip all touching arguments
921 (reftex-move-over-touching-args)
922 (reftex-context-substring))
924 ;; Do the real thing.
927 (when (reftex-move-to-next-arg)
930 (while (and (member cnt opt-args
)
931 (eq (following-char) ?\
{))
934 (unless (and (condition-case nil
935 (or (forward-list 1) t
)
937 (reftex-move-to-next-arg)
941 (while (and (memq cnt opt-args
)
942 (eq (following-char) ?\
{))
945 (> (skip-chars-forward "{\\[") 0))
946 (reftex-context-substring)
949 (defun reftex-move-over-touching-args ()
951 (while (memq (following-char) '(?\
[ ?\
{))
955 (defun reftex-context-substring (&optional to-end
)
956 ;; Return up to 150 chars from point
957 ;; When point is just after a { or [, limit string to matching parenthesis
960 ;; Environment - find next \end
961 (buffer-substring-no-properties
965 ;; FIXME: This is not perfect
966 (if (re-search-forward "\\\\end{" nil t
)
969 ((memq (preceding-char) '(?\
{ ?\
[))
970 ;; Inside a list - get only the list.
971 (buffer-substring-no-properties
976 (let ((forward-sexp-function nil
)) ;Unneeded fanciness.
979 (error (point-max))))))
981 ;; no list - just grab 150 characters
982 (buffer-substring-no-properties (point)
983 (min (+ (point) 150) (point-max))))))
985 ;; Variable holding the vector with section numbers
986 (defvar reftex-section-numbers
(make-vector reftex-max-section-depth
0))
988 (defun reftex-init-section-numbers (&optional toc-entry appendix
)
989 ;; Initialize the section numbers with zeros or with what is found
991 (let* ((level (or (nth 5 toc-entry
) -
1))
992 (numbers (nreverse (split-string (or (nth 6 toc-entry
) "") "\\.")))
993 (depth (1- (length reftex-section-numbers
)))
994 (i depth
) number-string
)
997 (aset reftex-section-numbers i
0)
998 (setq number-string
(or (car numbers
) "0"))
999 (if (string-match "\\`[A-Z]\\'" number-string
)
1000 (aset reftex-section-numbers i
1001 (- (string-to-char number-string
) ?A -
1))
1002 (aset reftex-section-numbers i
(string-to-number number-string
)))
1005 (put 'reftex-section-numbers
'appendix appendix
))
1007 (defun reftex-section-number (&optional level star
)
1008 ;; Return a string with the current section number.
1009 ;; When LEVEL is non-nil, increase section numbers on that level.
1010 (let* ((depth (1- (length reftex-section-numbers
))) idx n
(string "")
1011 (appendix (get 'reftex-section-numbers
'appendix
))
1012 (partspecial (and (not reftex-part-resets-chapter
)
1014 ;; partspecial means, this is a part statement.
1015 ;; Parts do not reset the chapter counter, and the part number is
1016 ;; not included in the numbering of other sectioning levels.
1018 (when (and (> level -
1) (not star
))
1019 (aset reftex-section-numbers
1020 level
(1+ (aref reftex-section-numbers level
))))
1021 (setq idx
(1+ level
))
1023 (while (<= idx depth
)
1024 (if (or (not partspecial
)
1026 (aset reftex-section-numbers idx
0))
1029 (setq string
(concat "Part " (reftex-roman-number
1030 (aref reftex-section-numbers
0))))
1031 (setq idx
(if reftex-part-resets-chapter
0 1))
1032 (while (<= idx depth
)
1033 (setq n
(aref reftex-section-numbers idx
))
1034 (if (not (and partspecial
(not (equal string
""))))
1035 (setq string
(concat string
(if (not (string= string
"")) "." "")
1036 (int-to-string n
))))
1039 (if (string-match "\\`\\([@0]\\.\\)+" string
)
1040 (setq string
(replace-match "" nil nil string
)))
1041 (if (string-match "\\(\\.0\\)+\\'" string
)
1042 (setq string
(replace-match "" nil nil string
)))
1044 (string-match "\\`[0-9]+" string
))
1048 (1- (+ ?A
(string-to-number (match-string 0 string
)))))
1049 (substring string
(match-end 0))))))
1051 (concat (make-string (1- (length string
)) ?\
) "*")
1054 (defun reftex-roman-number (n)
1055 ;; Return as a string the roman number equal to N.
1058 (list '((1000 .
"M") ( 900 .
"CM") ( 500 .
"D") ( 400 .
"CD")
1059 ( 100 .
"C") ( 90 .
"XC") ( 50 .
"L") ( 40 .
"XL")
1060 ( 10 .
"X") ( 9 .
"IX") ( 5 .
"V") ( 4 .
"IV")
1064 (setq listel
(pop list
)
1068 (setq string
(concat string s
)
1069 nrest
(- nrest i
))))
1072 ;;; reftex-parse.el ends here