2001-07-16 07:46:48 +00:00
|
|
|
;;; reftex-parse.el --- parser functions for RefTeX
|
2006-12-09 04:06:06 +00:00
|
|
|
|
2020-01-01 00:19:43 +00:00
|
|
|
;; Copyright (C) 1997-2020 Free Software Foundation, Inc.
|
1999-12-30 02:57:12 +00:00
|
|
|
|
2002-07-22 10:38:32 +00:00
|
|
|
;; Author: Carsten Dominik <dominik@science.uva.nl>
|
2007-03-22 21:06:43 +00:00
|
|
|
;; Maintainer: auctex-devel@gnu.org
|
1999-12-30 02:57:12 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 04:34:22 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1999-12-30 02:57:12 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:34:22 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1999-12-30 02:57:12 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1999-08-16 07:42:41 +00:00
|
|
|
|
2001-07-16 07:46:48 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(eval-when-compile (require 'cl-lib))
|
Merge from standalone RefTeX repository.
Here is the ChangeLog of the standalone version of RefTeX without
information about Makefiles and other auxiliary files. The differences to
the Emacs repository are documented in the respective ChangeLog files.
2010-11-06 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-create-bibtex-file): Make sure that
entries with whitespace at various places are found.
(reftex-extract-bib-entries-from-thebibliography): Remove
superfluous backslash.
2010-10-16 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el
(reftex-extract-bib-entries-from-thebibliography): Use
`with-current-buffer'.
2010-09-14 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-do-citation): Make it possible again
to insert non-existent entries.
2010-01-30 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-syntax-table-for-bib, reftex-mode):
Do not derive `reftex-syntax-table-for-bib' from
`reftex-syntax-table' because parens have to retain their paren
syntax in order for parsing of BibTeX entries like @book(...) to
work.
2009-09-12 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-label-alist): Doc fix.
* lisp/reftex-toc.el (reftex-re-enlarge): Call `enlarge-window'
only if there is something to do because in Emacs the horizontal
version throws an error even if the parameter is 0.
2009-08-08 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el: Suppress byte-compiler warnings. Move
provide statement to end of file.
* lisp/reftex-dcr.el: Suppress byte-compiler warnings. Move
provide statement to end of file.
* lisp/reftex-auc.el: Suppress byte-compiler warnings.
* doc/reftex.texi (Imprint): Mention Wolfgang in list of
contributors.
* lisp/reftex-vars.el (reftex-plug-into-AUCTeX): Doc fix.
2009-07-05 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Creating Citations): Give a hint about how to
auto-revert the BibTeX database file when using external editors.
* lisp/reftex-cite.el (reftex-do-citation): Save match data when
asking for optional arguments.
2009-04-29 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-in-comment): Do not error out if
`comment-start-skip' is not set.
2009-03-01 Wolfgang Mayer <wmayer7@gmail.com>
* lisp/reftex-cite.el (reftex-all-used-citation-keys):
Fix regexp to correctly extract all citations in the same line.
2008-12-29 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-vref-is-default)
(reftex-fref-is-default): Adapt doc string.
(reftex-ref-style-default-list): New name for
`reftex-ref-style-active-list'. Use :set instead of :repeat.
(reftex-vref-is-default, reftex-fref-is-default): Adapt to new
name.
* lisp/reftex-base.el (reftex-tie-multifile-symbols): Add doc
string.
(reftex-tie-multifile-symbols): Initialize
`reftex-ref-style-list'.
(reftex-untie-multifile-symbols): Add doc string.
(reftex-add-index-macros): Doc fix.
(reftex-ref-style-activate, reftex-ref-style-toggle)
(reftex-ref-style-list): New functions.
(reftex-mode-menu): Use them.
* lisp/reftex-sel.el (reftex-select-cycle-ref-style-internal): Use
`reftex-ref-style-list' function.
* lisp/reftex-ref.el (reftex-reference): Use
`reftex-ref-style-list' function.
* doc/reftex.texi (Referencing Labels): Simplify section about
reference macro cycling.
(Reference Styles, Options (Referencing Labels)): Adapt to changed
implementation.
2008-12-18 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-in-comment): Deal correctly with
escaped comment characters.
2008-11-30 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-alist): Change structure
so that it is not possible to use multiple different package names
within a style.
(reftex-ref-style-active-list): Adapt to new structure of
`reftex-ref-style-alist'.
* lisp/reftex-sel.el (reftex-select-cycle-active-ref-styles):
Remove.
(reftex-select-cycle-ref-style-internal): Adapt to new structure
of `reftex-ref-style-alist'.
* lisp/reftex-ref.el: Adapt creation of `reftex-<package>-<macro>'
functions to new structure of `reftex-ref-style-alist'.
(reftex-reference): Adapt to new structure of
`reftex-ref-style-alist'.
* lisp/reftex-base.el (reftex-mode-menu): Adapt to new structure
of `reftex-ref-style-alist'.
* doc/reftex.texi (Options (Referencing Labels)): Adapt to new
structure of `reftex-ref-style-alist'.
2008-10-16 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Referencing Labels, Reference Styles): Document
changes in the referencing functionality.
2008-10-15 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-alist): Remove the symbols
for symbols for macro type distinction. Add characters for macro
selection.
(reftex-ref-macro-prompt): New variable.
* lisp/reftex-sel.el (reftex-select-cycle-ref-style-internal):
Remove code for testing macro type.
(reftex-select-toggle-numref-pageref): Remove.
(reftex-select-label-map): Remove binding for
`reftex-select-toggle-numref-pageref'.
* lisp/reftex-ref.el (reftex-reference): Prompt for a reference
macro if `reftex-ref-macro-prompt' is non-nil.
* lisp/reftex-base.el (reftex-select-with-char): Kill the RefTeX
Select buffer when done.
2008-06-07 David Kastrup <dak@gnu.org>
* lisp/reftex-base.el (reftex-remove-if): Improve performance.
2008-06-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-get-string-refs): Use a regexp
alternative for better performance.
* doc/reftex.texi (Commands): Mention options for definition of
header and footer in BibTeX files.
(Options (Creating Citations)): Document
`reftex-create-bibtex-header' and `reftex-create-bibtex-footer'.
* lisp/reftex-cite.el (reftex-stringref-p): Remove.
(reftex-get-string-refs): Do without `reftex-stringref-p' and use
`reftex-remove-if' instead of the cl-based `remove-if'.
(reftex-create-bibtex-file): Doc fix.
* lisp/reftex-base.el (reftex-remove-if): New function.
2008-06-07 Wolfgang Mayer <wmayer7@gmail.com>
* lisp/reftex-vars.el (reftex-create-bibtex-header)
(reftex-create-bibtex-footer): New variables.
* lisp/reftex-cite.el (reftex-parse-bibtex-entry): Accept
additional optional argument `raw' and keep quotes or braces if it
is non-nil.
(reftex-stringref-p, reftex-get-string-refs): New functions.
(reftex-create-bibtex-file): Include entries that are
cross-referenced from cited entries. Include @String definitions
in the resulting bib file. Add header and footer defined in
`reftex-create-bibtex-header' and `reftex-create-bibtex-footer'.
2008-05-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-parse.el (reftex-parse-from-file): Move backward one
char if a `\' was matched after a section macro.
* lisp/reftex-global.el (reftex-isearch-switch-to-next-file): Use
`reverse' instead of `nreverse' and `copy-list' in order to make
the byte compiler happy. Get rid of unused `orig-flist' variable.
* lisp/reftex-base.el (reftex-compile-variables): Revert last
change. Match `\' after a section macro.
(reftex-mapconcat-with-predicate): Remove.
2008-04-13 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-mapconcat-with-predicate): New
function.
(reftex-compile-variables): Use it. Treat environments and macros
differently in the regexp for section matching.
* lisp/reftex-parse.el (reftex-parse-from-file): Use beginning of
match instead of end as bound.
* lisp/reftex-sel.el (reftex-select-label-map): Changing binding
of reference style toggling to "s" which is not already taken.
* doc/reftex.texi (Reference Styles): Reflect change in key
binding for toggling reference styles. Some minor changes.
2008-03-27 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el: Some whitespace, doc and checkdoc fixes.
2008-03-16 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-selection-or-word): Use
`reftex-region-active-p'.
(reftex-index-show-entry)
(reftex-index-initialize-phrases-buffer)
(reftex-index-phrases-apply-to-region): Sync with Emacs trunk.
* lisp/reftex-dcr.el (reftex-start-itimer-once): Silence the byte
compiler.
* lisp/reftex-auc.el: Move `provide' call to bottom of file.
* lisp/reftex-base.el: Require easymenu and define autoloads
earlier to avoid compiler warnings.
(reftex-region-active-p, reftex-select-with-char)
(reftex-show-commentary): Sync with version in Emacs trunk.
(reftex-make-overlay, reftex-overlay-put, reftex-move-overlay)
(reftex-delete-overlay): Define in a way which hides the XEmacs
symbols from the byte compiler.
(reftex-info): Silence the byte compiler. Use `reftex.info'
instead of `reftex' in order to get the correct file.
2008-03-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-extract-bib-entries): Check if
BibTeX file changed on disk and ask if it should be reread in case
it did.
2008-03-02 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Lots of small fixes.
(Reference Styles): New section.
(varioref (LaTeX package), fancyref (LaTeX package)): Remove.
(Options (Referencing Labels)): Remove descriptions of deprecated
variables `reftex-vref-is-default' and `reftex-fref-is-default'.
Add descriptions for `reftex-ref-style-alist' and
`reftex-ref-style-active-list'.
(Referencing Labels): Update regarding reference styles.
2008-02-17 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-ref.el (reftex-format-special): Add third argument
for refstyle possible to be passed, making the byte compiler
happy.
(reftex-reference): Pass refstyle to `reftex-format-special'.
* lisp/reftex-vars.el (reftex-ref-style-active-list): Make
creation of type compatible with Emacs 21.
(reftex-format-ref-function): Mention third argument of special
format function.
* lisp/reftex-base.el (reftex-mode-menu): Make creation of
Reference Style menu compatible with Emacs 21.
* doc/reftex.texi: Fix some typos.
2008-01-27 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-active-list): Doc fix.
* lisp/reftex-base.el (reftex-erase-all-selection-and-index-buffers)
(reftex-access-parse-file): Use `mapc' instead of `mapcar' where
return value is not used.
* lisp/reftex-ref.el (reftex-offer-label-menu): Use `mapc' instead
of `mapcar' where return value is not used.
* lisp/reftex-sel.el (reftex-select-item, reftex-select-unmark):
Use `mapc' instead of `mapcar' where return value is not used.
* lisp/reftex-vars.el (reftex-ref-style-alist)
(reftex-ref-style-active-list): New variables.
(reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
to new implementation. Mark as obsolete. Add compatibility code
for honoring the variable values in case they are set.
* lisp/reftex-base.el (reftex-mode-menu): Reference styles are now
computed from `reftex-ref-style-alist'. Fix typo.
* lisp/reftex-ref.el (reftex-reference): Determine reference macro
by looking at `reftex-ref-style-active-list' and
`reftex-ref-style-alist'. Use only one special format function.
(reftex-varioref-vref, reftex-fancyref-fref)
(reftex-fancyref-Fref): Remove definitions. The functions are now
generated from `reftex-ref-style-alist'.
(reftex-format-vref, reftex-format-Fref, reftex-format-fref):
Remove.
(reftex-format-special): New function.
* lisp/reftex-sel.el (reftex-select-toggle-varioref)
(reftex-select-toggle-fancyref): Remove.
(reftex-select-cycle-active-ref-styles)
(reftex-select-cycle-ref-style-internal)
(reftex-select-cycle-ref-style-forward)
(reftex-select-cycle-ref-style-backward)
(reftex-select-toggle-numref-pageref): New functions.
(reftex-select-label-map): Use `v' and `V' for general cycling
through reference styles. Add `p' for switching between number
and page reference types.
2008-01-06 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-pop-to-bibtex-entry)
(reftex-extract-bib-entries-from-thebibliography): Match \bibitem
entries with spaces or tabs in front of arguments.
(reftex-insert-bib-matches): Use `mapc' instead of `mapcar'
because return value is not used.
2008-01-05 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-toc.el (reftex-make-separate-toc-frame): Hide
non-operational call to `focus-frame' in Emacs for the compilers's
sake.
2008-01-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-dcr.el (reftex-mouse-view-crossref): Explain why
point is set.
* lisp/reftex-toc.el (reftex-toc-do-promote): Use `mapc' instead
of `mapcar' because return value is not used.
(reftex-toggle-auto-toc-recenter): Fix typo.
* lisp/reftex-cite.el (reftex-do-citation): Use `mapc' instead of
`mapcar' because return value is not used.
2007-10-10 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-cite-format-builtin)
(reftex-bibliography-commands): Add support for ConTeXt.
* doc/reftex.texi (Citation Styles): Mention support for ConTeXt.
2007-08-23 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Options (Defining Label Environments)): Fix
typo.
2007-07-22 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-set-cite-format): Autoload.
(reftex-access-parse-file): Create parse file in a way that does
not interfere with recentf mode.
(reftex-access-parse-file): Do not risk destroying an existing
buffer.
2007-07-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-parse.el (reftex-nth-arg): Use `forward-comment'
instead of `comment-forward'. The latter is not always available
and the former is sufficient for LaTeX.
(reftex-nth-arg): Revert last change since moving over whitespace
and comments is done by `reftex-move-to-next-arg'.
2007-05-20 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Citation Styles): Correct some mistakes.
2007-04-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el: Delete trailing whitespace.
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-parse-bibtex-entry, reftex-create-bibtex-file): Match
entries containing numbers and symbol constituents.
2007-03-28 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Replace BibTeX by @BibTeX{} throughout the
file.
2007-03-12 John Paul Wallington <jpw@pobox.com>
* lisp/reftex-vars.el (reftex-format-ref-function)
(reftex-format-cite-function): Fix custom type.
2007-03-10 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el: Remove information in comment already in
imprint or cluttering output of `finder-commentary'.
Require reftex.el.
* lisp/reftex.el: Remove. Now generated from reftex.el.in.
* lisp/reftex-dcr.el: Remove version info in header. Add
maintainer info.
* lisp/reftex-global.el Remove version info in header. Add
maintainer info.
* lisp/reftex-index.el Remove version info in header. Add
maintainer info.
* lisp/reftex-parse.el Remove version info in header. Add
maintainer info.
* lisp/reftex-ref.el Remove version info in header. Add
maintainer info.
* lisp/reftex-sel.el Remove version info in header. Add
maintainer info.
* lisp/reftex-toc.el Remove version info in header. Add
maintainer info.
* lisp/reftex-vars.el Remove version info in header. Add
maintainer info.
2007-03-08 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Include macros.texi and version.texi. Change
maintainer and version information. Express TeX, LaTeX, AUCTeX
and RefTeX with macros.
(Imprint): Change maintainer information.
2007-03-04 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex.el: Update.
* lisp/reftex-base.el (reftex-show-commentary): Look in
reftex-base.el.
(reftex-report-bug): New function.
* lisp/reftex.el: Move original content to reftex-base.el. Add
new header and automatically generated autoloads.
* lisp/reftex-base.el: New file. Insert original content of
reftex.el. Remove autoload for `reftex-index-phrases-mode'.
Delete trailing whitespace.
2007-02-26 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-visit-phrases-buffer): Set
marker when visiting buffer. This allows for returning from the
phrases file to the file one was just editing instead of the file
where the last phrases was added from.
2007-02-25 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-phrases-syntax-table): New
variable. Give ?\" punctuation syntax as it usually is not used
as string quote in TeX-related modes and may occur unmatched. The
change also prevents fontification of quoted content.
(reftex-index-phrases-mode): Use it.
* lisp/reftex-cite.el (reftex-parse-bibtex-entry): Match fields
containing hyphens (besides word constituents).
2007-02-25 David Kastrup <dak@gnu.org>
* lisp/reftex.el (reftex-uniquify, reftex-uniquify-by-car):
Replace O(n^2) algorithms with O(n log n). Introduce optional
argument SORT (not yet used). TODO: figure out callers that can
specify SORT, in order to further speed this up.
2007-02-25 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-cite-key-separator): New variable.
* lisp/reftex-auc.el (reftex-arg-cite): Use
`reftex-cite-key-separator'.
* lisp/reftex-cite.el (reftex-do-citation)
(reftex-figure-out-cite-format): Use `reftex-cite-key-separator'.
* doc/reftex.texi (Options (Creating Citations)): Document
`reftex-cite-key-separator'.
* lisp/reftex-cite.el (reftex-do-citation): Return all keys, not
just the first one.
* lisp/reftex-auc.el (reftex-arg-cite): Correctly handle new
value type returned by `reftex-citation'.
2007-02-24 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Set correct filename for standalone
distribution.
2007-02-07 Ralf Angeli <angeli@caeruleus.net>
Create `reftex' module.
2012-09-30 22:30:13 +02:00
|
|
|
|
1999-08-16 07:42:41 +00:00
|
|
|
(require 'reftex)
|
|
|
|
|
|
|
|
(defmacro reftex-with-special-syntax (&rest body)
|
|
|
|
`(let ((saved-syntax (syntax-table)))
|
|
|
|
(unwind-protect
|
2003-08-11 12:27:02 +00:00
|
|
|
(progn
|
|
|
|
(set-syntax-table reftex-syntax-table)
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
,@body))
|
1999-08-16 07:42:41 +00:00
|
|
|
(set-syntax-table saved-syntax))))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-parse-one ()
|
|
|
|
"Re-parse this file."
|
|
|
|
(interactive)
|
|
|
|
(let ((reftex-enable-partial-scans t))
|
|
|
|
(reftex-access-scan-info '(4))))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-parse-all ()
|
|
|
|
"Re-parse entire document."
|
|
|
|
(interactive)
|
|
|
|
(reftex-access-scan-info '(16)))
|
|
|
|
|
2014-04-04 16:16:24 -04:00
|
|
|
(defvar reftex--index-tags)
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-do-parse (rescan &optional file)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Do a document rescan.
|
|
|
|
When allowed, do only a partial scan from FILE."
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
;; Normalize the rescan argument
|
|
|
|
(setq rescan (cond ((eq rescan t) t)
|
|
|
|
((eq rescan 1) 1)
|
|
|
|
((equal rescan '(4)) t)
|
|
|
|
((equal rescan '(16)) 1)
|
|
|
|
(t 1)))
|
|
|
|
|
|
|
|
;; Partial scans only when allowed
|
|
|
|
(unless reftex-enable-partial-scans
|
|
|
|
(setq rescan 1))
|
|
|
|
|
|
|
|
;; Do the scanning.
|
|
|
|
|
|
|
|
(let* ((old-list (symbol-value reftex-docstruct-symbol))
|
|
|
|
(master (reftex-TeX-master-file))
|
2003-08-11 12:27:02 +00:00
|
|
|
(true-master (file-truename master))
|
|
|
|
(master-dir (file-name-as-directory (file-name-directory master)))
|
1999-08-16 07:42:41 +00:00
|
|
|
(file (or file (buffer-file-name)))
|
2003-08-11 12:27:02 +00:00
|
|
|
(true-file (file-truename file))
|
|
|
|
(bibview-cache (assq 'bibview-cache old-list))
|
2014-04-04 16:16:24 -04:00
|
|
|
(reftex--index-tags (cdr (assq 'index-tags old-list)))
|
1999-08-16 07:42:41 +00:00
|
|
|
from-file appendix docstruct tmp)
|
|
|
|
|
|
|
|
;; Make sure replacement is really an option here
|
|
|
|
(when (and (eq rescan t)
|
|
|
|
(not (and (member (list 'bof file) old-list)
|
|
|
|
(member (list 'eof file) old-list))))
|
|
|
|
;; Scan whole document because no such file section exists
|
|
|
|
(setq rescan 1))
|
|
|
|
(when (string= true-file true-master)
|
|
|
|
;; Scan whole document because this file is the master
|
|
|
|
(setq rescan 1))
|
|
|
|
|
|
|
|
;; From which file do we start?
|
|
|
|
(setq from-file
|
|
|
|
(cond ((eq rescan t) (or file master))
|
|
|
|
((eq rescan 1) master)
|
|
|
|
(t (error "This should not happen (reftex-do-parse)"))))
|
|
|
|
|
|
|
|
;; Reset index-tags if we scan everything
|
2014-04-04 16:16:24 -04:00
|
|
|
(if (equal rescan 1) (setq reftex--index-tags nil))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
;; Find active toc entry and initialize section-numbers
|
|
|
|
(setq reftex-active-toc (reftex-last-assoc-before-elt
|
2003-08-11 12:27:02 +00:00
|
|
|
'toc (list 'bof from-file) old-list)
|
|
|
|
appendix (reftex-last-assoc-before-elt
|
|
|
|
'appendix (list 'bof from-file) old-list))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
(reftex-init-section-numbers reftex-active-toc appendix)
|
|
|
|
|
|
|
|
(if (eq rescan 1)
|
|
|
|
(message "Scanning entire document...")
|
|
|
|
(message "Scanning document from %s..." from-file))
|
|
|
|
|
|
|
|
(reftex-with-special-syntax
|
|
|
|
(save-window-excursion
|
|
|
|
(save-excursion
|
2003-08-11 12:27:02 +00:00
|
|
|
(unwind-protect
|
|
|
|
(setq docstruct
|
|
|
|
(reftex-parse-from-file
|
|
|
|
from-file docstruct master-dir))
|
|
|
|
(reftex-kill-temporary-buffers)))))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
(message "Scanning document... done")
|
|
|
|
|
|
|
|
;; Turn the list around.
|
|
|
|
(setq docstruct (nreverse docstruct))
|
|
|
|
|
|
|
|
;; Set or insert
|
|
|
|
(setq docstruct (reftex-replace-label-list-segment
|
|
|
|
old-list docstruct (eq rescan 1)))
|
|
|
|
|
|
|
|
;; Add all missing information
|
|
|
|
(unless (assq 'label-numbers docstruct)
|
|
|
|
(push (cons 'label-numbers nil) docstruct))
|
|
|
|
(unless (assq 'master-dir docstruct)
|
|
|
|
(push (cons 'master-dir master-dir) docstruct))
|
|
|
|
(unless (assq 'bibview-cache docstruct)
|
|
|
|
(push (cons 'bibview-cache (cdr bibview-cache)) docstruct))
|
|
|
|
(let* ((bof1 (memq (assq 'bof docstruct) docstruct))
|
|
|
|
(bof2 (assq 'bof (cdr bof1)))
|
|
|
|
(is-multi (not (not (and bof1 bof2))))
|
|
|
|
(entry (or (assq 'is-multi docstruct)
|
|
|
|
(car (push (list 'is-multi is-multi) docstruct)))))
|
|
|
|
(setcdr entry (cons is-multi nil)))
|
2014-04-04 16:16:24 -04:00
|
|
|
(and reftex--index-tags
|
|
|
|
(setq reftex--index-tags (sort reftex--index-tags 'string<)))
|
1999-08-16 07:42:41 +00:00
|
|
|
(let ((index-tag-cell (assq 'index-tags docstruct)))
|
|
|
|
(if index-tag-cell
|
2014-04-04 16:16:24 -04:00
|
|
|
(setcdr index-tag-cell reftex--index-tags)
|
|
|
|
(push (cons 'index-tags reftex--index-tags) docstruct)))
|
1999-08-16 07:42:41 +00:00
|
|
|
(unless (assq 'xr docstruct)
|
|
|
|
(let* ((allxr (reftex-all-assq 'xr-doc docstruct))
|
2003-08-11 12:27:02 +00:00
|
|
|
(alist (mapcar
|
2011-06-29 19:50:20 -07:00
|
|
|
(lambda (x)
|
2003-08-11 12:27:02 +00:00
|
|
|
(if (setq tmp (reftex-locate-file (nth 2 x) "tex"
|
|
|
|
master-dir))
|
|
|
|
(cons (nth 1 x) tmp)
|
|
|
|
(message "Can't find external document %s"
|
|
|
|
(nth 2 x))
|
|
|
|
nil))
|
|
|
|
allxr))
|
|
|
|
(alist (delq nil alist))
|
|
|
|
(allprefix (delq nil (mapcar 'car alist)))
|
|
|
|
(regexp (if allprefix
|
2011-06-29 19:50:20 -07:00
|
|
|
(concat "\\`\\("
|
2003-08-11 12:27:02 +00:00
|
|
|
(mapconcat 'identity allprefix "\\|")
|
|
|
|
"\\)")
|
|
|
|
"\\\\\\\\\\\\"))) ; this will never match
|
|
|
|
(push (list 'xr alist regexp) docstruct)))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
(set reftex-docstruct-symbol docstruct)
|
|
|
|
(put reftex-docstruct-symbol 'modified t)))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-everything-regexp ()
|
|
|
|
(if reftex-support-index
|
|
|
|
reftex-everything-regexp
|
|
|
|
reftex-everything-regexp-no-index))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;; NB this is a global autoload - see reftex.el.
|
2003-07-09 16:20:54 +00:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-all-document-files (&optional relative)
|
|
|
|
"Return a list of all files belonging to the current document.
|
|
|
|
When RELATIVE is non-nil, give file names relative to directory
|
|
|
|
of master file."
|
|
|
|
(let* ((all (symbol-value reftex-docstruct-symbol))
|
|
|
|
(master-dir (file-name-directory (reftex-TeX-master-file)))
|
|
|
|
(re (concat "\\`" (regexp-quote master-dir)))
|
|
|
|
file-list tmp file)
|
|
|
|
(while (setq tmp (assoc 'bof all))
|
|
|
|
(setq file (nth 1 tmp)
|
|
|
|
all (cdr (memq tmp all)))
|
|
|
|
(and relative
|
|
|
|
(string-match re file)
|
|
|
|
(setq file (substring file (match-end 0))))
|
|
|
|
(push file file-list))
|
|
|
|
(nreverse file-list)))
|
|
|
|
|
2011-06-29 19:50:20 -07:00
|
|
|
;; Bound in the caller, reftex-do-parse.
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-parse-from-file (file docstruct master-dir)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Scan the buffer for labels and save them in a list."
|
1999-08-16 07:42:41 +00:00
|
|
|
(let ((regexp (reftex-everything-regexp))
|
|
|
|
(bound 0)
|
|
|
|
file-found tmp include-file
|
|
|
|
(level 1)
|
|
|
|
(highest-level 100)
|
|
|
|
toc-entry index-entry next-buf buf)
|
|
|
|
|
|
|
|
(catch 'exit
|
|
|
|
(setq file-found (reftex-locate-file file "tex" master-dir))
|
|
|
|
(if (and (not file-found)
|
2003-08-11 12:27:02 +00:00
|
|
|
(setq buf (reftex-get-buffer-visiting file)))
|
|
|
|
(setq file-found (buffer-file-name buf)))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
(unless file-found
|
|
|
|
(push (list 'file-error file) docstruct)
|
|
|
|
(throw 'exit nil))
|
|
|
|
|
|
|
|
(save-excursion
|
|
|
|
|
|
|
|
(message "Scanning file %s" file)
|
|
|
|
(set-buffer
|
|
|
|
(setq next-buf
|
|
|
|
(reftex-get-file-buffer-force
|
|
|
|
file-found
|
|
|
|
(not (eq t reftex-keep-temporary-buffers)))))
|
|
|
|
|
|
|
|
;; Begin of file mark
|
|
|
|
(setq file (buffer-file-name))
|
|
|
|
(push (list 'bof file) docstruct)
|
|
|
|
|
2003-08-11 12:27:02 +00:00
|
|
|
(reftex-with-special-syntax
|
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(goto-char 1)
|
|
|
|
|
|
|
|
(while (re-search-forward regexp nil t)
|
|
|
|
|
|
|
|
(cond
|
|
|
|
|
|
|
|
((match-end 1)
|
|
|
|
;; It is a label
|
2013-04-25 14:01:09 +02:00
|
|
|
(when (or (null reftex-label-ignored-macros-and-environments)
|
|
|
|
;; \label{} defs should always be honored,
|
|
|
|
;; just no keyval style [label=foo] defs.
|
2015-09-17 12:28:45 -07:00
|
|
|
(string-equal "\\label{" (substring (reftex-match-string 0) 0 7))
|
2013-05-21 00:25:14 -07:00
|
|
|
(if (and (fboundp 'TeX-current-macro)
|
|
|
|
(fboundp 'LaTeX-current-environment))
|
|
|
|
(not (or (member (save-match-data (TeX-current-macro))
|
|
|
|
reftex-label-ignored-macros-and-environments)
|
|
|
|
(member (save-match-data (LaTeX-current-environment))
|
|
|
|
reftex-label-ignored-macros-and-environments)))
|
|
|
|
t))
|
2013-04-25 14:01:09 +02:00
|
|
|
(push (reftex-label-info (reftex-match-string 1) file bound)
|
|
|
|
docstruct)))
|
2003-08-11 12:27:02 +00:00
|
|
|
|
|
|
|
((match-end 3)
|
|
|
|
;; It is a section
|
|
|
|
|
Merge from standalone RefTeX repository.
Here is the ChangeLog of the standalone version of RefTeX without
information about Makefiles and other auxiliary files. The differences to
the Emacs repository are documented in the respective ChangeLog files.
2010-11-06 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-create-bibtex-file): Make sure that
entries with whitespace at various places are found.
(reftex-extract-bib-entries-from-thebibliography): Remove
superfluous backslash.
2010-10-16 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el
(reftex-extract-bib-entries-from-thebibliography): Use
`with-current-buffer'.
2010-09-14 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-do-citation): Make it possible again
to insert non-existent entries.
2010-01-30 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-syntax-table-for-bib, reftex-mode):
Do not derive `reftex-syntax-table-for-bib' from
`reftex-syntax-table' because parens have to retain their paren
syntax in order for parsing of BibTeX entries like @book(...) to
work.
2009-09-12 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-label-alist): Doc fix.
* lisp/reftex-toc.el (reftex-re-enlarge): Call `enlarge-window'
only if there is something to do because in Emacs the horizontal
version throws an error even if the parameter is 0.
2009-08-08 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el: Suppress byte-compiler warnings. Move
provide statement to end of file.
* lisp/reftex-dcr.el: Suppress byte-compiler warnings. Move
provide statement to end of file.
* lisp/reftex-auc.el: Suppress byte-compiler warnings.
* doc/reftex.texi (Imprint): Mention Wolfgang in list of
contributors.
* lisp/reftex-vars.el (reftex-plug-into-AUCTeX): Doc fix.
2009-07-05 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Creating Citations): Give a hint about how to
auto-revert the BibTeX database file when using external editors.
* lisp/reftex-cite.el (reftex-do-citation): Save match data when
asking for optional arguments.
2009-04-29 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-in-comment): Do not error out if
`comment-start-skip' is not set.
2009-03-01 Wolfgang Mayer <wmayer7@gmail.com>
* lisp/reftex-cite.el (reftex-all-used-citation-keys):
Fix regexp to correctly extract all citations in the same line.
2008-12-29 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-vref-is-default)
(reftex-fref-is-default): Adapt doc string.
(reftex-ref-style-default-list): New name for
`reftex-ref-style-active-list'. Use :set instead of :repeat.
(reftex-vref-is-default, reftex-fref-is-default): Adapt to new
name.
* lisp/reftex-base.el (reftex-tie-multifile-symbols): Add doc
string.
(reftex-tie-multifile-symbols): Initialize
`reftex-ref-style-list'.
(reftex-untie-multifile-symbols): Add doc string.
(reftex-add-index-macros): Doc fix.
(reftex-ref-style-activate, reftex-ref-style-toggle)
(reftex-ref-style-list): New functions.
(reftex-mode-menu): Use them.
* lisp/reftex-sel.el (reftex-select-cycle-ref-style-internal): Use
`reftex-ref-style-list' function.
* lisp/reftex-ref.el (reftex-reference): Use
`reftex-ref-style-list' function.
* doc/reftex.texi (Referencing Labels): Simplify section about
reference macro cycling.
(Reference Styles, Options (Referencing Labels)): Adapt to changed
implementation.
2008-12-18 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-in-comment): Deal correctly with
escaped comment characters.
2008-11-30 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-alist): Change structure
so that it is not possible to use multiple different package names
within a style.
(reftex-ref-style-active-list): Adapt to new structure of
`reftex-ref-style-alist'.
* lisp/reftex-sel.el (reftex-select-cycle-active-ref-styles):
Remove.
(reftex-select-cycle-ref-style-internal): Adapt to new structure
of `reftex-ref-style-alist'.
* lisp/reftex-ref.el: Adapt creation of `reftex-<package>-<macro>'
functions to new structure of `reftex-ref-style-alist'.
(reftex-reference): Adapt to new structure of
`reftex-ref-style-alist'.
* lisp/reftex-base.el (reftex-mode-menu): Adapt to new structure
of `reftex-ref-style-alist'.
* doc/reftex.texi (Options (Referencing Labels)): Adapt to new
structure of `reftex-ref-style-alist'.
2008-10-16 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Referencing Labels, Reference Styles): Document
changes in the referencing functionality.
2008-10-15 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-alist): Remove the symbols
for symbols for macro type distinction. Add characters for macro
selection.
(reftex-ref-macro-prompt): New variable.
* lisp/reftex-sel.el (reftex-select-cycle-ref-style-internal):
Remove code for testing macro type.
(reftex-select-toggle-numref-pageref): Remove.
(reftex-select-label-map): Remove binding for
`reftex-select-toggle-numref-pageref'.
* lisp/reftex-ref.el (reftex-reference): Prompt for a reference
macro if `reftex-ref-macro-prompt' is non-nil.
* lisp/reftex-base.el (reftex-select-with-char): Kill the RefTeX
Select buffer when done.
2008-06-07 David Kastrup <dak@gnu.org>
* lisp/reftex-base.el (reftex-remove-if): Improve performance.
2008-06-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-get-string-refs): Use a regexp
alternative for better performance.
* doc/reftex.texi (Commands): Mention options for definition of
header and footer in BibTeX files.
(Options (Creating Citations)): Document
`reftex-create-bibtex-header' and `reftex-create-bibtex-footer'.
* lisp/reftex-cite.el (reftex-stringref-p): Remove.
(reftex-get-string-refs): Do without `reftex-stringref-p' and use
`reftex-remove-if' instead of the cl-based `remove-if'.
(reftex-create-bibtex-file): Doc fix.
* lisp/reftex-base.el (reftex-remove-if): New function.
2008-06-07 Wolfgang Mayer <wmayer7@gmail.com>
* lisp/reftex-vars.el (reftex-create-bibtex-header)
(reftex-create-bibtex-footer): New variables.
* lisp/reftex-cite.el (reftex-parse-bibtex-entry): Accept
additional optional argument `raw' and keep quotes or braces if it
is non-nil.
(reftex-stringref-p, reftex-get-string-refs): New functions.
(reftex-create-bibtex-file): Include entries that are
cross-referenced from cited entries. Include @String definitions
in the resulting bib file. Add header and footer defined in
`reftex-create-bibtex-header' and `reftex-create-bibtex-footer'.
2008-05-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-parse.el (reftex-parse-from-file): Move backward one
char if a `\' was matched after a section macro.
* lisp/reftex-global.el (reftex-isearch-switch-to-next-file): Use
`reverse' instead of `nreverse' and `copy-list' in order to make
the byte compiler happy. Get rid of unused `orig-flist' variable.
* lisp/reftex-base.el (reftex-compile-variables): Revert last
change. Match `\' after a section macro.
(reftex-mapconcat-with-predicate): Remove.
2008-04-13 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-mapconcat-with-predicate): New
function.
(reftex-compile-variables): Use it. Treat environments and macros
differently in the regexp for section matching.
* lisp/reftex-parse.el (reftex-parse-from-file): Use beginning of
match instead of end as bound.
* lisp/reftex-sel.el (reftex-select-label-map): Changing binding
of reference style toggling to "s" which is not already taken.
* doc/reftex.texi (Reference Styles): Reflect change in key
binding for toggling reference styles. Some minor changes.
2008-03-27 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el: Some whitespace, doc and checkdoc fixes.
2008-03-16 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-selection-or-word): Use
`reftex-region-active-p'.
(reftex-index-show-entry)
(reftex-index-initialize-phrases-buffer)
(reftex-index-phrases-apply-to-region): Sync with Emacs trunk.
* lisp/reftex-dcr.el (reftex-start-itimer-once): Silence the byte
compiler.
* lisp/reftex-auc.el: Move `provide' call to bottom of file.
* lisp/reftex-base.el: Require easymenu and define autoloads
earlier to avoid compiler warnings.
(reftex-region-active-p, reftex-select-with-char)
(reftex-show-commentary): Sync with version in Emacs trunk.
(reftex-make-overlay, reftex-overlay-put, reftex-move-overlay)
(reftex-delete-overlay): Define in a way which hides the XEmacs
symbols from the byte compiler.
(reftex-info): Silence the byte compiler. Use `reftex.info'
instead of `reftex' in order to get the correct file.
2008-03-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-extract-bib-entries): Check if
BibTeX file changed on disk and ask if it should be reread in case
it did.
2008-03-02 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Lots of small fixes.
(Reference Styles): New section.
(varioref (LaTeX package), fancyref (LaTeX package)): Remove.
(Options (Referencing Labels)): Remove descriptions of deprecated
variables `reftex-vref-is-default' and `reftex-fref-is-default'.
Add descriptions for `reftex-ref-style-alist' and
`reftex-ref-style-active-list'.
(Referencing Labels): Update regarding reference styles.
2008-02-17 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-ref.el (reftex-format-special): Add third argument
for refstyle possible to be passed, making the byte compiler
happy.
(reftex-reference): Pass refstyle to `reftex-format-special'.
* lisp/reftex-vars.el (reftex-ref-style-active-list): Make
creation of type compatible with Emacs 21.
(reftex-format-ref-function): Mention third argument of special
format function.
* lisp/reftex-base.el (reftex-mode-menu): Make creation of
Reference Style menu compatible with Emacs 21.
* doc/reftex.texi: Fix some typos.
2008-01-27 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-active-list): Doc fix.
* lisp/reftex-base.el (reftex-erase-all-selection-and-index-buffers)
(reftex-access-parse-file): Use `mapc' instead of `mapcar' where
return value is not used.
* lisp/reftex-ref.el (reftex-offer-label-menu): Use `mapc' instead
of `mapcar' where return value is not used.
* lisp/reftex-sel.el (reftex-select-item, reftex-select-unmark):
Use `mapc' instead of `mapcar' where return value is not used.
* lisp/reftex-vars.el (reftex-ref-style-alist)
(reftex-ref-style-active-list): New variables.
(reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
to new implementation. Mark as obsolete. Add compatibility code
for honoring the variable values in case they are set.
* lisp/reftex-base.el (reftex-mode-menu): Reference styles are now
computed from `reftex-ref-style-alist'. Fix typo.
* lisp/reftex-ref.el (reftex-reference): Determine reference macro
by looking at `reftex-ref-style-active-list' and
`reftex-ref-style-alist'. Use only one special format function.
(reftex-varioref-vref, reftex-fancyref-fref)
(reftex-fancyref-Fref): Remove definitions. The functions are now
generated from `reftex-ref-style-alist'.
(reftex-format-vref, reftex-format-Fref, reftex-format-fref):
Remove.
(reftex-format-special): New function.
* lisp/reftex-sel.el (reftex-select-toggle-varioref)
(reftex-select-toggle-fancyref): Remove.
(reftex-select-cycle-active-ref-styles)
(reftex-select-cycle-ref-style-internal)
(reftex-select-cycle-ref-style-forward)
(reftex-select-cycle-ref-style-backward)
(reftex-select-toggle-numref-pageref): New functions.
(reftex-select-label-map): Use `v' and `V' for general cycling
through reference styles. Add `p' for switching between number
and page reference types.
2008-01-06 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-pop-to-bibtex-entry)
(reftex-extract-bib-entries-from-thebibliography): Match \bibitem
entries with spaces or tabs in front of arguments.
(reftex-insert-bib-matches): Use `mapc' instead of `mapcar'
because return value is not used.
2008-01-05 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-toc.el (reftex-make-separate-toc-frame): Hide
non-operational call to `focus-frame' in Emacs for the compilers's
sake.
2008-01-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-dcr.el (reftex-mouse-view-crossref): Explain why
point is set.
* lisp/reftex-toc.el (reftex-toc-do-promote): Use `mapc' instead
of `mapcar' because return value is not used.
(reftex-toggle-auto-toc-recenter): Fix typo.
* lisp/reftex-cite.el (reftex-do-citation): Use `mapc' instead of
`mapcar' because return value is not used.
2007-10-10 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-cite-format-builtin)
(reftex-bibliography-commands): Add support for ConTeXt.
* doc/reftex.texi (Citation Styles): Mention support for ConTeXt.
2007-08-23 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Options (Defining Label Environments)): Fix
typo.
2007-07-22 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-set-cite-format): Autoload.
(reftex-access-parse-file): Create parse file in a way that does
not interfere with recentf mode.
(reftex-access-parse-file): Do not risk destroying an existing
buffer.
2007-07-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-parse.el (reftex-nth-arg): Use `forward-comment'
instead of `comment-forward'. The latter is not always available
and the former is sufficient for LaTeX.
(reftex-nth-arg): Revert last change since moving over whitespace
and comments is done by `reftex-move-to-next-arg'.
2007-05-20 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Citation Styles): Correct some mistakes.
2007-04-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el: Delete trailing whitespace.
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-parse-bibtex-entry, reftex-create-bibtex-file): Match
entries containing numbers and symbol constituents.
2007-03-28 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Replace BibTeX by @BibTeX{} throughout the
file.
2007-03-12 John Paul Wallington <jpw@pobox.com>
* lisp/reftex-vars.el (reftex-format-ref-function)
(reftex-format-cite-function): Fix custom type.
2007-03-10 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el: Remove information in comment already in
imprint or cluttering output of `finder-commentary'.
Require reftex.el.
* lisp/reftex.el: Remove. Now generated from reftex.el.in.
* lisp/reftex-dcr.el: Remove version info in header. Add
maintainer info.
* lisp/reftex-global.el Remove version info in header. Add
maintainer info.
* lisp/reftex-index.el Remove version info in header. Add
maintainer info.
* lisp/reftex-parse.el Remove version info in header. Add
maintainer info.
* lisp/reftex-ref.el Remove version info in header. Add
maintainer info.
* lisp/reftex-sel.el Remove version info in header. Add
maintainer info.
* lisp/reftex-toc.el Remove version info in header. Add
maintainer info.
* lisp/reftex-vars.el Remove version info in header. Add
maintainer info.
2007-03-08 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Include macros.texi and version.texi. Change
maintainer and version information. Express TeX, LaTeX, AUCTeX
and RefTeX with macros.
(Imprint): Change maintainer information.
2007-03-04 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex.el: Update.
* lisp/reftex-base.el (reftex-show-commentary): Look in
reftex-base.el.
(reftex-report-bug): New function.
* lisp/reftex.el: Move original content to reftex-base.el. Add
new header and automatically generated autoloads.
* lisp/reftex-base.el: New file. Insert original content of
reftex.el. Remove autoload for `reftex-index-phrases-mode'.
Delete trailing whitespace.
2007-02-26 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-visit-phrases-buffer): Set
marker when visiting buffer. This allows for returning from the
phrases file to the file one was just editing instead of the file
where the last phrases was added from.
2007-02-25 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-phrases-syntax-table): New
variable. Give ?\" punctuation syntax as it usually is not used
as string quote in TeX-related modes and may occur unmatched. The
change also prevents fontification of quoted content.
(reftex-index-phrases-mode): Use it.
* lisp/reftex-cite.el (reftex-parse-bibtex-entry): Match fields
containing hyphens (besides word constituents).
2007-02-25 David Kastrup <dak@gnu.org>
* lisp/reftex.el (reftex-uniquify, reftex-uniquify-by-car):
Replace O(n^2) algorithms with O(n log n). Introduce optional
argument SORT (not yet used). TODO: figure out callers that can
specify SORT, in order to further speed this up.
2007-02-25 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-cite-key-separator): New variable.
* lisp/reftex-auc.el (reftex-arg-cite): Use
`reftex-cite-key-separator'.
* lisp/reftex-cite.el (reftex-do-citation)
(reftex-figure-out-cite-format): Use `reftex-cite-key-separator'.
* doc/reftex.texi (Options (Creating Citations)): Document
`reftex-cite-key-separator'.
* lisp/reftex-cite.el (reftex-do-citation): Return all keys, not
just the first one.
* lisp/reftex-auc.el (reftex-arg-cite): Correctly handle new
value type returned by `reftex-citation'.
2007-02-24 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Set correct filename for standalone
distribution.
2007-02-07 Ralf Angeli <angeli@caeruleus.net>
Create `reftex' module.
2012-09-30 22:30:13 +02:00
|
|
|
;; Use the beginning as bound and not the end
|
|
|
|
;; (i.e. (point)) because the section command might
|
|
|
|
;; be the start of the current environment to be
|
|
|
|
;; found by `reftex-label-info'.
|
|
|
|
(setq bound (match-beginning 0))
|
|
|
|
;; The section regexp matches a character at the end
|
|
|
|
;; we are not interested in. Especially if it is the
|
|
|
|
;; backslash of a following macro we want to find in
|
|
|
|
;; the next parsing iteration.
|
|
|
|
(when (eq (char-before) ?\\) (backward-char))
|
2003-08-11 12:27:02 +00:00
|
|
|
;; Insert in List
|
2012-11-25 06:05:34 +01:00
|
|
|
(setq toc-entry (funcall reftex-section-info-function file))
|
2016-12-30 11:12:42 +01:00
|
|
|
(when (and toc-entry
|
|
|
|
(eq ;; Either both are t or both are nil.
|
|
|
|
(= (char-after bound) ?%)
|
|
|
|
(string-suffix-p ".dtx" file)))
|
2003-08-11 12:27:02 +00:00
|
|
|
;; It can happen that section info returns nil
|
|
|
|
(setq level (nth 5 toc-entry))
|
|
|
|
(setq highest-level (min highest-level level))
|
|
|
|
(if (= level highest-level)
|
|
|
|
(message
|
|
|
|
"Scanning %s %s ..."
|
|
|
|
(car (rassoc level reftex-section-levels-all))
|
|
|
|
(nth 6 toc-entry)))
|
|
|
|
|
|
|
|
(push toc-entry docstruct)
|
|
|
|
(setq reftex-active-toc toc-entry)))
|
|
|
|
|
|
|
|
((match-end 7)
|
|
|
|
;; It's an include or input
|
|
|
|
(setq include-file (reftex-match-string 7))
|
|
|
|
;; Test if this file should be ignored
|
2011-06-29 19:50:20 -07:00
|
|
|
(unless (delq nil (mapcar
|
2003-08-11 12:27:02 +00:00
|
|
|
(lambda (x) (string-match x include-file))
|
|
|
|
reftex-no-include-regexps))
|
|
|
|
;; Parse it
|
|
|
|
(setq docstruct
|
|
|
|
(reftex-parse-from-file
|
|
|
|
include-file
|
|
|
|
docstruct master-dir))))
|
|
|
|
|
|
|
|
((match-end 9)
|
|
|
|
;; Appendix starts here
|
|
|
|
(reftex-init-section-numbers nil t)
|
|
|
|
(push (cons 'appendix t) docstruct))
|
|
|
|
|
|
|
|
((match-end 10)
|
|
|
|
;; Index entry
|
|
|
|
(when reftex-support-index
|
|
|
|
(setq index-entry (reftex-index-info file))
|
|
|
|
(when index-entry
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-pushnew (nth 1 index-entry) reftex--index-tags :test #'equal)
|
2003-08-11 12:27:02 +00:00
|
|
|
(push index-entry docstruct))))
|
|
|
|
|
|
|
|
((match-end 11)
|
|
|
|
;; A macro with label
|
|
|
|
(save-excursion
|
|
|
|
(let* ((mac (reftex-match-string 11))
|
|
|
|
(label (progn (goto-char (match-end 11))
|
|
|
|
(save-match-data
|
|
|
|
(reftex-no-props
|
|
|
|
(reftex-nth-arg-wrapper
|
|
|
|
mac)))))
|
|
|
|
(typekey (nth 1 (assoc mac reftex-env-or-mac-alist)))
|
|
|
|
(entry (progn (if typekey
|
|
|
|
;; A typing macro
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
;; A neutral macro
|
|
|
|
(goto-char (match-end 11))
|
|
|
|
(reftex-move-over-touching-args))
|
|
|
|
(reftex-label-info
|
|
|
|
label file bound nil nil))))
|
|
|
|
(push entry docstruct))))
|
|
|
|
(t (error "This should not happen (reftex-parse-from-file)")))
|
|
|
|
)
|
|
|
|
|
|
|
|
;; Find bibliography statement
|
|
|
|
(when (setq tmp (reftex-locate-bibliography-files master-dir))
|
|
|
|
(push (cons 'bib tmp) docstruct))
|
|
|
|
|
|
|
|
(goto-char 1)
|
2011-06-29 19:50:20 -07:00
|
|
|
(when (re-search-forward
|
2003-08-11 12:27:02 +00:00
|
|
|
"\\(\\`\\|[\n\r]\\)[ \t]*\\\\begin{thebibliography}" nil t)
|
|
|
|
(push (cons 'thebib file) docstruct))
|
2011-06-29 19:50:20 -07:00
|
|
|
|
2003-08-11 12:27:02 +00:00
|
|
|
;; Find external document specifications
|
|
|
|
(goto-char 1)
|
|
|
|
(while (re-search-forward "[\n\r][ \t]*\\\\externaldocument\\(\\[\\([^]]*\\)\\]\\)?{\\([^}]+\\)}" nil t)
|
|
|
|
(push (list 'xr-doc (reftex-match-string 2)
|
|
|
|
(reftex-match-string 3))
|
|
|
|
docstruct))
|
|
|
|
|
|
|
|
;; End of file mark
|
|
|
|
(push (list 'eof file) docstruct)))))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
;; Kill the scanned buffer
|
|
|
|
(reftex-kill-temporary-buffers next-buf))
|
|
|
|
|
|
|
|
;; Return the list
|
|
|
|
docstruct))
|
|
|
|
|
2013-11-01 11:27:21 +01:00
|
|
|
(defun reftex-using-biblatex-p ()
|
2014-05-01 19:55:25 -04:00
|
|
|
"Return non-nil if we are using biblatex rather than bibtex."
|
2013-11-01 11:27:21 +01:00
|
|
|
(if (boundp 'TeX-active-styles)
|
|
|
|
;; the sophisticated AUCTeX way
|
|
|
|
(member "biblatex" TeX-active-styles)
|
|
|
|
;; poor-man's check...
|
|
|
|
(save-excursion
|
2014-06-24 21:39:22 +02:00
|
|
|
(re-search-forward "^[^%\n]*?\\\\usepackage.*{biblatex}" nil t))))
|
2013-11-01 11:27:21 +01:00
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-locate-bibliography-files (master-dir &optional files)
|
2013-11-01 11:27:21 +01:00
|
|
|
"Scan buffer for bibliography macros and return file list."
|
1999-08-16 07:42:41 +00:00
|
|
|
(unless files
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
2013-11-01 11:27:21 +01:00
|
|
|
;; when biblatex is used, multiple \bibliography or
|
|
|
|
;; \addbibresource macros are allowed. With plain bibtex, only
|
|
|
|
;; the first is used.
|
|
|
|
(let ((using-biblatex (reftex-using-biblatex-p))
|
|
|
|
(again t))
|
|
|
|
(while (and again
|
|
|
|
(re-search-forward
|
|
|
|
(concat
|
|
|
|
;; "\\(\\`\\|[\n\r]\\)[^%]*\\\\\\("
|
|
|
|
"\\(^\\)[^%\n\r]*\\\\\\("
|
|
|
|
(mapconcat 'identity reftex-bibliography-commands "\\|")
|
|
|
|
"\\)\\(\\[.+?\\]\\)?{[ \t]*\\([^}]+\\)") nil t))
|
|
|
|
(setq files
|
|
|
|
(append files
|
|
|
|
(split-string (reftex-match-string 4)
|
|
|
|
"[ \t\n\r]*,[ \t\n\r]*")))
|
|
|
|
(unless using-biblatex
|
|
|
|
(setq again nil))))))
|
1999-08-16 07:42:41 +00:00
|
|
|
(when files
|
2011-06-29 19:50:20 -07:00
|
|
|
(setq files
|
2003-08-11 12:27:02 +00:00
|
|
|
(mapcar
|
|
|
|
(lambda (x)
|
|
|
|
(if (or (member x reftex-bibfile-ignore-list)
|
|
|
|
(delq nil (mapcar (lambda (re) (string-match re x))
|
|
|
|
reftex-bibfile-ignore-regexps)))
|
|
|
|
;; excluded file
|
|
|
|
nil
|
|
|
|
;; find the file
|
|
|
|
(reftex-locate-file x "bib" master-dir)))
|
|
|
|
files))
|
1999-08-16 07:42:41 +00:00
|
|
|
(delq nil files)))
|
|
|
|
|
|
|
|
(defun reftex-replace-label-list-segment (old insert &optional entirely)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Replace the segment in OLD which corresponds to INSERT.
|
|
|
|
Works with side effects, directly changes old.
|
|
|
|
If ENTIRELY is t, just return INSERT.
|
|
|
|
This function also makes sure the old toc markers do not point anywhere."
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
(cond
|
|
|
|
(entirely
|
|
|
|
(reftex-silence-toc-markers old (length old))
|
|
|
|
insert)
|
|
|
|
(t (let* ((new old)
|
|
|
|
(file (nth 1 (car insert)))
|
|
|
|
(eof-list (member (list 'eof file) old))
|
|
|
|
(bof-list (member (list 'bof file) old))
|
|
|
|
n)
|
|
|
|
(if (not (and bof-list eof-list))
|
|
|
|
(error "Cannot splice")
|
|
|
|
;; Splice
|
|
|
|
(reftex-silence-toc-markers bof-list (- (length bof-list)
|
|
|
|
(length eof-list)))
|
|
|
|
(setq n (- (length old) (length bof-list)))
|
|
|
|
(setcdr (nthcdr n new) (cdr insert))
|
|
|
|
(setcdr (nthcdr (1- (length new)) new) (cdr eof-list)))
|
|
|
|
new))))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-section-info (file)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Return a section entry for the current match.
|
|
|
|
Careful: This function expects the match-data to be still in place!"
|
1999-08-16 07:42:41 +00:00
|
|
|
(let* ((marker (set-marker (make-marker) (1- (match-beginning 3))))
|
|
|
|
(macro (reftex-match-string 3))
|
2003-08-11 12:27:02 +00:00
|
|
|
(prefix (save-match-data
|
|
|
|
(if (string-match "begin{\\([^}]+\\)}" macro)
|
|
|
|
(match-string 1 macro))))
|
|
|
|
(level-exp (cdr (assoc macro reftex-section-levels-all)))
|
1999-09-24 10:00:17 +00:00
|
|
|
(level (if (symbolp level-exp)
|
2003-08-11 12:27:02 +00:00
|
|
|
(save-match-data (funcall level-exp))
|
|
|
|
level-exp))
|
|
|
|
(star (= ?* (char-after (match-end 3))))
|
|
|
|
(unnumbered (or star (< level 0)))
|
|
|
|
(level (abs level))
|
1999-08-16 07:42:41 +00:00
|
|
|
(section-number (reftex-section-number level unnumbered))
|
2011-06-29 19:50:20 -07:00
|
|
|
(text1 (save-match-data
|
2003-08-11 12:27:02 +00:00
|
|
|
(save-excursion
|
|
|
|
(reftex-context-substring prefix))))
|
1999-08-16 07:42:41 +00:00
|
|
|
(literal (buffer-substring-no-properties
|
|
|
|
(1- (match-beginning 3))
|
|
|
|
(min (point-max) (+ (match-end 0) (length text1) 1))))
|
2011-06-29 19:50:20 -07:00
|
|
|
;; Literal can be too short since text1 too short. No big problem.
|
1999-08-16 07:42:41 +00:00
|
|
|
(text (reftex-nicify-text text1)))
|
|
|
|
|
|
|
|
;; Add section number and indentation
|
|
|
|
(setq text
|
|
|
|
(concat
|
|
|
|
(make-string (* reftex-level-indent level) ?\ )
|
|
|
|
(if (nth 1 reftex-label-menu-flags) ; section number flag
|
|
|
|
(concat section-number " "))
|
2003-08-11 12:27:02 +00:00
|
|
|
(if prefix (concat (capitalize prefix) ": ") "")
|
1999-08-16 07:42:41 +00:00
|
|
|
text))
|
|
|
|
(list 'toc "toc" text file marker level section-number
|
|
|
|
literal (marker-position marker))))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-ensure-index-support (&optional abort)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"When index support is turned off, ask to turn it on and
|
|
|
|
set the current prefix argument so that `reftex-access-scan-info'
|
|
|
|
will rescan the entire document."
|
1999-08-16 07:42:41 +00:00
|
|
|
(cond
|
|
|
|
(reftex-support-index t)
|
|
|
|
((y-or-n-p "Turn on index support and rescan entire document? ")
|
|
|
|
(setq reftex-support-index 'demanded
|
2003-08-11 12:27:02 +00:00
|
|
|
current-prefix-arg '(16)))
|
1999-08-16 07:42:41 +00:00
|
|
|
(t (if abort
|
2003-08-11 12:27:02 +00:00
|
|
|
(error "No index support")
|
|
|
|
(message "No index support")
|
|
|
|
(ding)
|
|
|
|
(sit-for 1)))))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-index-info-safe (file)
|
|
|
|
(reftex-with-special-syntax
|
|
|
|
(reftex-index-info file)))
|
|
|
|
|
|
|
|
(defvar test-dummy)
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-index-info (file)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Return an index entry for the current match.
|
|
|
|
Careful: This function expects the match-data to be still in place!"
|
1999-08-16 07:42:41 +00:00
|
|
|
(catch 'exit
|
|
|
|
(let* ((macro (reftex-match-string 10))
|
2003-08-11 12:27:02 +00:00
|
|
|
(bom (match-beginning 10))
|
|
|
|
(boa (match-end 10))
|
|
|
|
(entry (or (assoc macro reftex-index-macro-alist)
|
|
|
|
(throw 'exit nil)))
|
|
|
|
(exclude (nth 3 entry))
|
|
|
|
;; The following is a test if this match should be excluded
|
|
|
|
(test-dummy (and (fboundp exclude)
|
|
|
|
(funcall exclude)
|
|
|
|
(throw 'exit nil)))
|
|
|
|
(itag (nth 1 entry))
|
|
|
|
(prefix (nth 2 entry))
|
2011-06-29 19:50:20 -07:00
|
|
|
(index-tag
|
2003-08-11 12:27:02 +00:00
|
|
|
(cond ((stringp itag) itag)
|
|
|
|
((integerp itag)
|
|
|
|
(progn (goto-char boa)
|
|
|
|
(or (reftex-nth-arg itag (nth 6 entry)) "idx")))
|
|
|
|
(t "idx")))
|
|
|
|
(arg (or (progn (goto-char boa)
|
|
|
|
(reftex-nth-arg (nth 5 entry) (nth 6 entry)))
|
|
|
|
""))
|
|
|
|
(end-of-args (progn (goto-char boa)
|
|
|
|
(reftex-move-over-touching-args)
|
|
|
|
(point)))
|
|
|
|
(end-of-context (progn (skip-chars-forward "^ \t\n\r") (point)))
|
|
|
|
(begin-of-context
|
|
|
|
(progn (goto-char bom)
|
|
|
|
(skip-chars-backward "^ \t\r\n")
|
|
|
|
(point)))
|
|
|
|
(context (buffer-substring-no-properties
|
|
|
|
begin-of-context end-of-context))
|
|
|
|
(key-end (if (string-match reftex-index-key-end-re arg)
|
|
|
|
(1+ (match-beginning 0))))
|
|
|
|
(rawkey (substring arg 0 key-end))
|
2011-06-29 19:50:20 -07:00
|
|
|
|
2003-08-11 12:27:02 +00:00
|
|
|
(key (if prefix (concat prefix rawkey) rawkey))
|
|
|
|
(sortkey (downcase key))
|
2011-06-29 19:50:20 -07:00
|
|
|
(showkey (mapconcat 'identity
|
2003-08-11 12:27:02 +00:00
|
|
|
(split-string key reftex-index-level-re)
|
|
|
|
" ! ")))
|
1999-08-16 07:42:41 +00:00
|
|
|
(goto-char end-of-args)
|
|
|
|
;; 0 1 2 3 4 5 6 7 8 9
|
|
|
|
(list 'index index-tag context file bom arg key showkey sortkey key-end))))
|
2011-06-29 19:50:20 -07:00
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-short-context (env parse &optional bound derive)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Get about one line of useful context for the label definition at point."
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
(if (consp parse)
|
|
|
|
(setq parse (if derive (cdr parse) (car parse))))
|
|
|
|
|
|
|
|
(reftex-nicify-text
|
|
|
|
|
|
|
|
(cond
|
|
|
|
|
|
|
|
((null parse)
|
|
|
|
(save-excursion
|
|
|
|
(reftex-context-substring)))
|
|
|
|
|
|
|
|
((eq parse t)
|
|
|
|
(if (string= env "section")
|
|
|
|
;; special treatment for section labels
|
|
|
|
(save-excursion
|
|
|
|
(if (and (re-search-backward reftex-section-or-include-regexp
|
|
|
|
(point-min) t)
|
|
|
|
(match-end 2))
|
|
|
|
(progn
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(reftex-context-substring))
|
|
|
|
(if reftex-active-toc
|
|
|
|
(progn
|
|
|
|
(string-match "{\\([^}]*\\)" (nth 7 reftex-active-toc))
|
|
|
|
(match-string 1 (nth 7 reftex-active-toc)))
|
|
|
|
"SECTION HEADING NOT FOUND")))
|
|
|
|
(save-excursion
|
2003-08-11 12:27:02 +00:00
|
|
|
(goto-char reftex-default-context-position)
|
|
|
|
(unless (eq (string-to-char env) ?\\)
|
|
|
|
(reftex-move-over-touching-args))
|
1999-08-16 07:42:41 +00:00
|
|
|
(reftex-context-substring))))
|
|
|
|
|
|
|
|
((stringp parse)
|
|
|
|
(save-excursion
|
|
|
|
(if (re-search-backward parse bound t)
|
|
|
|
(progn
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(reftex-context-substring))
|
|
|
|
"NO MATCH FOR CONTEXT REGEXP")))
|
|
|
|
|
|
|
|
((integerp parse)
|
|
|
|
(or (save-excursion
|
|
|
|
(goto-char reftex-default-context-position)
|
|
|
|
(reftex-nth-arg
|
|
|
|
parse
|
|
|
|
(nth 6 (assoc env reftex-env-or-mac-alist))))
|
|
|
|
""))
|
|
|
|
|
|
|
|
((fboundp parse)
|
|
|
|
;; A hook function. Call it.
|
|
|
|
(save-excursion
|
|
|
|
(condition-case error-var
|
|
|
|
(funcall parse env)
|
|
|
|
(error (format "HOOK ERROR: %s" (cdr error-var))))))
|
|
|
|
(t
|
2005-03-25 09:03:24 +00:00
|
|
|
"INVALID VALUE OF PARSE"))))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-where-am-I ()
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Return the docstruct entry above point.
|
|
|
|
Actually returns a cons cell in which the cdr is a flag indicating
|
|
|
|
if the information is exact (t) or approximate (nil)."
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
(let ((docstruct (symbol-value reftex-docstruct-symbol))
|
2002-08-27 09:58:05 +00:00
|
|
|
(cnt 0) rtn rtn-if-no-other
|
1999-08-16 07:42:41 +00:00
|
|
|
found)
|
|
|
|
(save-excursion
|
|
|
|
(while (not rtn)
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-incf cnt)
|
1999-08-16 07:42:41 +00:00
|
|
|
(setq found (re-search-backward (reftex-everything-regexp) nil t))
|
|
|
|
(setq rtn
|
|
|
|
(cond
|
|
|
|
((not found)
|
|
|
|
;; no match
|
|
|
|
(or
|
|
|
|
(car (member (list 'bof (buffer-file-name)) docstruct))
|
|
|
|
(not (setq cnt 2))
|
|
|
|
(assq 'bof docstruct) ;; for safety reasons
|
|
|
|
'corrupted))
|
|
|
|
((match-end 1)
|
|
|
|
;; Label
|
|
|
|
(assoc (reftex-match-string 1)
|
|
|
|
(symbol-value reftex-docstruct-symbol)))
|
|
|
|
((match-end 3)
|
|
|
|
;; Section
|
|
|
|
(goto-char (1- (match-beginning 3)))
|
|
|
|
(let* ((list (member (list 'bof (buffer-file-name))
|
|
|
|
docstruct))
|
|
|
|
(endelt (car (member (list 'eof (buffer-file-name))
|
|
|
|
list)))
|
|
|
|
rtn1)
|
|
|
|
(while (and list (not (eq endelt (car list))))
|
|
|
|
(if (and (eq (car (car list)) 'toc)
|
|
|
|
(string= (buffer-file-name)
|
|
|
|
(nth 3 (car list))))
|
|
|
|
(cond
|
|
|
|
((equal (point)
|
|
|
|
(or (and (markerp (nth 4 (car list)))
|
|
|
|
(marker-position (nth 4 (car list))))
|
|
|
|
(nth 8 (car list))))
|
|
|
|
;; Fits with marker position or recorded position
|
|
|
|
(setq rtn1 (car list) list nil))
|
|
|
|
((looking-at (reftex-make-regexp-allow-for-ctrl-m
|
|
|
|
(nth 7 (car list))))
|
2002-08-27 09:58:05 +00:00
|
|
|
;; Same title: remember, but keep looking
|
2003-08-11 12:27:02 +00:00
|
|
|
(setq rtn-if-no-other (car list)))))
|
1999-08-16 07:42:41 +00:00
|
|
|
(pop list))
|
|
|
|
rtn1))
|
|
|
|
((match-end 7)
|
|
|
|
;; Input or include...
|
|
|
|
(car
|
|
|
|
(member (list 'eof (reftex-locate-file
|
|
|
|
(reftex-match-string 7) "tex"
|
2003-08-11 12:27:02 +00:00
|
|
|
(cdr (assq 'master-dir docstruct))))
|
1999-08-16 07:42:41 +00:00
|
|
|
docstruct)))
|
2003-08-11 12:27:02 +00:00
|
|
|
((match-end 9)
|
|
|
|
(assq 'appendix (symbol-value reftex-docstruct-symbol)))
|
|
|
|
((match-end 10)
|
|
|
|
;; Index entry
|
|
|
|
(when reftex-support-index
|
2011-06-29 19:50:20 -07:00
|
|
|
(let* ((index-info (save-excursion
|
2003-08-11 12:27:02 +00:00
|
|
|
(reftex-index-info-safe nil)))
|
|
|
|
(list (member (list 'bof (buffer-file-name))
|
|
|
|
docstruct))
|
|
|
|
(endelt (car (member (list 'eof (buffer-file-name))
|
|
|
|
list)))
|
|
|
|
dist last-dist last (n 0))
|
|
|
|
;; Check all index entries with equal text
|
|
|
|
(while (and list (not (eq endelt (car list))))
|
|
|
|
(when (and (eq (car (car list)) 'index)
|
2011-06-29 19:50:20 -07:00
|
|
|
(string= (nth 2 index-info)
|
2003-08-11 12:27:02 +00:00
|
|
|
(nth 2 (car list))))
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-incf n)
|
2003-08-11 12:27:02 +00:00
|
|
|
(setq dist (abs (- (point) (nth 4 (car list)))))
|
|
|
|
(if (or (not last-dist) (< dist last-dist))
|
|
|
|
(setq last-dist dist last (car list))))
|
|
|
|
(setq list (cdr list)))
|
|
|
|
;; We are sure if we have only one, or a zero distance
|
|
|
|
(cond ((or (= n 1) (equal dist 0)) last)
|
|
|
|
((> n 1) (setq cnt 2) last)
|
|
|
|
(t nil)))))
|
|
|
|
((match-end 11)
|
1999-08-16 07:42:41 +00:00
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-end 11))
|
|
|
|
(assoc (reftex-no-props
|
|
|
|
(reftex-nth-arg-wrapper
|
|
|
|
(reftex-match-string 11)))
|
|
|
|
(symbol-value reftex-docstruct-symbol))))
|
|
|
|
(t
|
|
|
|
(error "This should not happen (reftex-where-am-I)"))))))
|
2002-08-27 09:58:05 +00:00
|
|
|
;; Check if there was only a by-name match for the section.
|
|
|
|
(when (and (not rtn) rtn-if-no-other)
|
|
|
|
(setq rtn rtn-if-no-other
|
2003-08-11 12:27:02 +00:00
|
|
|
cnt 2))
|
1999-08-16 07:42:41 +00:00
|
|
|
(cons rtn (eq cnt 1))))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-notice-new (&optional n force)
|
|
|
|
"Hook to handshake with RefTeX after something new has been inserted."
|
|
|
|
;; Add a new entry to the docstruct list. If it is a section, renumber
|
|
|
|
;; the following sections.
|
2003-08-11 12:27:02 +00:00
|
|
|
;; FIXME: Put in a WHAT parameter and search backward until one is found.
|
1999-08-16 07:42:41 +00:00
|
|
|
;; When N is given, go back that many matches of reftex-everything-regexp
|
|
|
|
;; When FORCE is non-nil, also insert if `reftex-where-am-I' was uncertain.
|
|
|
|
(condition-case nil
|
|
|
|
(catch 'exit
|
2003-08-11 12:27:02 +00:00
|
|
|
(unless reftex-mode (throw 'exit nil))
|
|
|
|
(reftex-access-scan-info)
|
|
|
|
(let* ((docstruct (symbol-value reftex-docstruct-symbol))
|
|
|
|
here-I-am appendix tail entry star level
|
|
|
|
section-number context)
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
(save-excursion
|
|
|
|
(when (re-search-backward (reftex-everything-regexp) nil t (or n 1))
|
|
|
|
|
2003-08-11 12:27:02 +00:00
|
|
|
;; Find where we are
|
|
|
|
(setq here-I-am (reftex-where-am-I))
|
|
|
|
(or here-I-am (throw 'exit nil))
|
|
|
|
(unless (or force (cdr here-I-am)) (throw 'exit nil))
|
|
|
|
(setq tail (memq (car here-I-am) docstruct))
|
|
|
|
(or tail (throw 'exit nil))
|
|
|
|
(setq reftex-active-toc (reftex-last-assoc-before-elt
|
|
|
|
'toc (car here-I-am) docstruct)
|
|
|
|
appendix (reftex-last-assoc-before-elt
|
|
|
|
'appendix (car here-I-am) docstruct))
|
|
|
|
|
|
|
|
;; Initialize section numbers
|
|
|
|
(if (eq (car (car here-I-am)) 'appendix)
|
|
|
|
(reftex-init-section-numbers nil t)
|
|
|
|
(reftex-init-section-numbers reftex-active-toc appendix))
|
|
|
|
|
|
|
|
;; Match the section command
|
|
|
|
(when (re-search-forward (reftex-everything-regexp) nil t)
|
|
|
|
(cond
|
|
|
|
((match-end 1)
|
|
|
|
(push (reftex-label-info (reftex-match-string 1) buffer-file-name)
|
|
|
|
(cdr tail)))
|
|
|
|
|
|
|
|
((match-end 3)
|
|
|
|
(setq star (= ?* (char-after (match-end 3)))
|
|
|
|
entry (reftex-section-info (buffer-file-name))
|
|
|
|
level (nth 5 entry))
|
|
|
|
;; Insert the section info
|
|
|
|
(push entry (cdr tail))
|
2011-06-29 19:50:20 -07:00
|
|
|
|
2003-08-11 12:27:02 +00:00
|
|
|
;; We are done unless we use section numbers
|
|
|
|
(unless (nth 1 reftex-label-menu-flags) (throw 'exit nil))
|
|
|
|
|
|
|
|
;; Update the remaining toc items
|
|
|
|
(setq tail (cdr tail))
|
|
|
|
(while (and (setq tail (memq (assq 'toc (cdr tail)) tail))
|
|
|
|
(setq entry (car tail))
|
|
|
|
(>= (nth 5 entry) level))
|
|
|
|
(setq star (string-match "\\*" (nth 6 entry))
|
|
|
|
context (nth 2 entry)
|
|
|
|
section-number
|
|
|
|
(reftex-section-number (nth 5 entry) star))
|
|
|
|
(when (string-match "\\`\\([ \t]*\\)\\([.0-9A-Z]+\\)\\(.*\\)"
|
|
|
|
context)
|
|
|
|
(when (and (not appendix)
|
|
|
|
(>= (string-to-char (match-string 2)) ?A))
|
2011-11-14 15:59:56 -08:00
|
|
|
;; Just entered the appendix. Get out.
|
2003-08-11 12:27:02 +00:00
|
|
|
(throw 'exit nil))
|
|
|
|
|
|
|
|
;; Change the section number.
|
|
|
|
(setf (nth 2 entry)
|
|
|
|
(concat (match-string 1 context)
|
|
|
|
section-number
|
|
|
|
(match-string 3 context))))))
|
|
|
|
((match-end 10)
|
|
|
|
;; Index entry
|
|
|
|
(and reftex-support-index
|
|
|
|
(setq entry (reftex-index-info-safe buffer-file-name))
|
2014-04-04 16:16:24 -04:00
|
|
|
;; FIXME: (add-to-list 'reftex--index-tags (nth 1 index-entry))
|
2003-08-11 12:27:02 +00:00
|
|
|
(push entry (cdr tail))))))))))
|
2011-06-29 19:50:20 -07:00
|
|
|
|
1999-08-16 07:42:41 +00:00
|
|
|
(error nil))
|
|
|
|
)
|
|
|
|
|
|
|
|
(defsubst reftex-move-to-previous-arg (&optional bound)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Assuming that we are in front of a macro argument,
|
|
|
|
move backward to the closing parenthesis of the previous argument.
|
|
|
|
This function understands the splitting of macros over several lines
|
|
|
|
in TeX."
|
1999-08-16 07:42:41 +00:00
|
|
|
(cond
|
|
|
|
;; Just to be quick:
|
|
|
|
((memq (preceding-char) '(?\] ?\})))
|
|
|
|
;; Do a search
|
|
|
|
((and reftex-allow-detached-macro-args
|
2003-08-11 12:27:02 +00:00
|
|
|
(re-search-backward
|
|
|
|
"[]}][ \t]*[\n\r]?\\([ \t]*%[^\n\r]*[\n\r]\\)*[ \t]*\\=" bound t))
|
1999-08-16 07:42:41 +00:00
|
|
|
(goto-char (1+ (match-beginning 0)))
|
|
|
|
t)
|
|
|
|
(t nil)))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-what-macro-safe (which &optional bound)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Call `reftex-what-macro' with special syntax table."
|
1999-08-16 07:42:41 +00:00
|
|
|
(reftex-with-special-syntax
|
|
|
|
(reftex-what-macro which bound)))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-what-macro (which &optional bound)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Find out if point is within the arguments of any TeX-macro.
|
|
|
|
The return value is either (\"\\macro\" . (point)) or a list of them.
|
|
|
|
|
|
|
|
If WHICH is nil, immediately return nil.
|
|
|
|
If WHICH is 1, return innermost enclosing macro.
|
|
|
|
If WHICH is t, return list of all macros enclosing point.
|
|
|
|
If WHICH is a list of macros, look only for those macros and return the
|
|
|
|
name of the first macro in this list found to enclose point.
|
|
|
|
If the optional BOUND is an integer, bound backwards directed
|
|
|
|
searches to this point. If it is nil, limit to nearest \\section -
|
|
|
|
like statement.
|
|
|
|
|
|
|
|
This function is pretty stable, but can be fooled if the text contains
|
|
|
|
things like \\macro{aa}{bb} where \\macro is defined to take only one
|
|
|
|
argument. As RefTeX cannot know this, the string \"bb\" would still be
|
|
|
|
considered an argument of macro \\macro."
|
1999-08-16 07:42:41 +00:00
|
|
|
(unless reftex-section-regexp (reftex-compile-variables))
|
|
|
|
(catch 'exit
|
|
|
|
(if (null which) (throw 'exit nil))
|
|
|
|
(let ((bound (or bound (save-excursion (re-search-backward
|
|
|
|
reftex-section-regexp nil 1)
|
|
|
|
(point))))
|
|
|
|
pos cmd-list cmd cnt cnt-opt entry)
|
|
|
|
(save-restriction
|
|
|
|
(save-excursion
|
2010-09-20 15:27:59 +02:00
|
|
|
(narrow-to-region (max (point-min) bound) (point-max))
|
1999-08-16 07:42:41 +00:00
|
|
|
;; move back out of the current parenthesis
|
|
|
|
(while (condition-case nil
|
2010-09-21 00:42:47 +02:00
|
|
|
(let ((forward-sexp-function nil))
|
|
|
|
(up-list -1) t)
|
1999-08-16 07:42:41 +00:00
|
|
|
(error nil))
|
|
|
|
(setq cnt 1 cnt-opt 0)
|
|
|
|
;; move back over any touching sexps
|
|
|
|
(while (and (reftex-move-to-previous-arg bound)
|
2003-08-11 12:27:02 +00:00
|
|
|
(condition-case nil
|
2010-09-21 00:42:47 +02:00
|
|
|
(let ((forward-sexp-function nil))
|
|
|
|
(backward-sexp) t)
|
2003-08-11 12:27:02 +00:00
|
|
|
(error nil)))
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(if (eq (following-char) ?\[) (cl-incf cnt-opt))
|
|
|
|
(cl-incf cnt))
|
1999-08-16 07:42:41 +00:00
|
|
|
(setq pos (point))
|
|
|
|
(when (and (or (= (following-char) ?\[)
|
|
|
|
(= (following-char) ?\{))
|
|
|
|
(re-search-backward "\\\\[*a-zA-Z]+\\=" nil t))
|
|
|
|
(setq cmd (reftex-match-string 0))
|
2003-08-11 12:27:02 +00:00
|
|
|
(when (looking-at "\\\\begin{[^}]*}")
|
|
|
|
(setq cmd (reftex-match-string 0)
|
|
|
|
cnt (1- cnt)))
|
|
|
|
;; This does ignore optional arguments. Very hard to fix.
|
|
|
|
(when (setq entry (assoc cmd reftex-env-or-mac-alist))
|
|
|
|
(if (> cnt (or (nth 4 entry) 100))
|
|
|
|
(setq cmd nil)))
|
1999-08-16 07:42:41 +00:00
|
|
|
(cond
|
2003-08-11 12:27:02 +00:00
|
|
|
((null cmd))
|
|
|
|
((eq t which)
|
|
|
|
(push (cons cmd (point)) cmd-list))
|
|
|
|
((or (eq 1 which) (member cmd which))
|
|
|
|
(throw 'exit (cons cmd (point))))))
|
1999-08-16 07:42:41 +00:00
|
|
|
(goto-char pos)))
|
|
|
|
(nreverse cmd-list)))))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-what-environment (which &optional bound)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Find out if point is inside a LaTeX environment.
|
|
|
|
The return value is (e.g.) either (\"equation\" . (point)) or a list of
|
|
|
|
them.
|
|
|
|
|
|
|
|
If WHICH is nil, immediately return nil.
|
|
|
|
If WHICH is 1, return innermost enclosing environment.
|
|
|
|
If WHICH is t, return list of all environments enclosing point.
|
|
|
|
If WHICH is a list of environments, look only for those environments and
|
|
|
|
return the name of the first environment in this list found to enclose
|
|
|
|
point.
|
|
|
|
|
|
|
|
If the optional BOUND is an integer, bound backwards directed searches to
|
|
|
|
this point. If it is nil, limit to nearest \\section - like statement."
|
1999-08-16 07:42:41 +00:00
|
|
|
(unless reftex-section-regexp (reftex-compile-variables))
|
|
|
|
(catch 'exit
|
|
|
|
(save-excursion
|
|
|
|
(if (null which) (throw 'exit nil))
|
|
|
|
(let ((bound (or bound (save-excursion (re-search-backward
|
|
|
|
reftex-section-regexp nil 1)
|
|
|
|
(point))))
|
|
|
|
env-list end-list env)
|
|
|
|
(while (re-search-backward "\\\\\\(begin\\|end\\){\\([^}]+\\)}"
|
|
|
|
bound t)
|
|
|
|
(setq env (buffer-substring-no-properties
|
|
|
|
(match-beginning 2) (match-end 2)))
|
|
|
|
(cond
|
|
|
|
((string= (match-string 1) "end")
|
2003-08-11 12:27:02 +00:00
|
|
|
(push env end-list))
|
1999-08-16 07:42:41 +00:00
|
|
|
((equal env (car end-list))
|
|
|
|
(setq end-list (cdr end-list)))
|
|
|
|
((eq t which)
|
|
|
|
(push (cons env (point)) env-list))
|
|
|
|
((or (eq 1 which) (member env which))
|
|
|
|
(throw 'exit (cons env (point))))))
|
|
|
|
(nreverse env-list)))))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-what-special-env (which &optional bound)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Run the special environment parsers and return the matches.
|
|
|
|
|
|
|
|
The return value is (e.g.) either (\"my-parser-function\" . (point))
|
|
|
|
or a list of them.
|
1999-08-16 07:42:41 +00:00
|
|
|
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
If WHICH is nil, immediately return nil.
|
|
|
|
If WHICH is 1, return innermost enclosing environment.
|
|
|
|
If WHICH is t, return list of all environments enclosing point.
|
|
|
|
If WHICH is a list of environments, look only for those environments and
|
|
|
|
return the name of the first environment in this list found to enclose
|
|
|
|
point."
|
1999-08-16 07:42:41 +00:00
|
|
|
(unless reftex-section-regexp (reftex-compile-variables))
|
|
|
|
(catch 'exit
|
|
|
|
(save-excursion
|
|
|
|
(if (null reftex-special-env-parsers) (throw 'exit nil))
|
|
|
|
(if (null which) (throw 'exit nil))
|
|
|
|
(let ((bound (or bound (save-excursion (re-search-backward
|
|
|
|
reftex-section-regexp nil 1)
|
|
|
|
(point))))
|
2003-08-11 12:27:02 +00:00
|
|
|
(fun-list (if (listp which)
|
|
|
|
(mapcar (lambda (x) (if (memq x which) x nil))
|
|
|
|
reftex-special-env-parsers)
|
|
|
|
reftex-special-env-parsers))
|
1999-08-16 07:42:41 +00:00
|
|
|
specials rtn)
|
2003-08-11 12:27:02 +00:00
|
|
|
;; Call all functions
|
2011-06-29 19:50:20 -07:00
|
|
|
(setq specials (mapcar
|
2003-08-11 12:27:02 +00:00
|
|
|
(lambda (fun)
|
|
|
|
(save-excursion
|
|
|
|
(setq rtn (and fun (funcall fun bound)))
|
|
|
|
(if rtn (cons (symbol-name fun) rtn) nil)))
|
|
|
|
fun-list))
|
|
|
|
;; Delete the non-matches
|
|
|
|
(setq specials (delq nil specials))
|
|
|
|
;; Sort
|
|
|
|
(setq specials (sort specials (lambda (a b) (> (cdr a) (cdr b)))))
|
2011-06-29 19:50:20 -07:00
|
|
|
(if (eq which t)
|
2003-08-11 12:27:02 +00:00
|
|
|
specials
|
|
|
|
(car specials))))))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
2014-04-04 16:16:24 -04:00
|
|
|
(defsubst reftex-move-to-next-arg (&optional _ignore)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Assuming that we are at the end of a macro name or a macro argument,
|
|
|
|
move forward to the opening parenthesis of the next argument.
|
|
|
|
This function understands the splitting of macros over several lines
|
|
|
|
in TeX."
|
1999-08-16 07:42:41 +00:00
|
|
|
(cond
|
|
|
|
;; Just to be quick:
|
|
|
|
((memq (following-char) '(?\[ ?\{)))
|
|
|
|
;; Do a search
|
|
|
|
((and reftex-allow-detached-macro-args
|
2003-08-11 12:27:02 +00:00
|
|
|
(looking-at "[ \t]*[\n\r]?\\([ \t]*%[^\n\r]*[\n\r]\\)*[ \t]*[[{]"))
|
1999-08-16 07:42:41 +00:00
|
|
|
(goto-char (1- (match-end 0)))
|
|
|
|
t)
|
|
|
|
(t nil)))
|
|
|
|
|
|
|
|
(defun reftex-nth-arg-wrapper (key)
|
|
|
|
(let ((entry (assoc key reftex-env-or-mac-alist)))
|
|
|
|
(reftex-nth-arg (nth 5 entry) (nth 6 entry))))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-nth-arg (n &optional opt-args)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Return the Nth following {} or [] parentheses content.
|
|
|
|
OPT-ARGS is a list of argument numbers which are optional."
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
;; If we are sitting at a macro start, skip to end of macro name.
|
|
|
|
(and (eq (following-char) ?\\) (skip-chars-forward "a-zA-Z*\\\\"))
|
|
|
|
|
|
|
|
(if (= n 1000)
|
|
|
|
;; Special case: Skip all touching arguments
|
|
|
|
(progn
|
2003-08-11 12:27:02 +00:00
|
|
|
(reftex-move-over-touching-args)
|
|
|
|
(reftex-context-substring))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
;; Do the real thing.
|
|
|
|
(let ((cnt 1))
|
2011-06-29 19:50:20 -07:00
|
|
|
|
1999-08-16 07:42:41 +00:00
|
|
|
(when (reftex-move-to-next-arg)
|
2011-06-29 19:50:20 -07:00
|
|
|
|
2003-08-11 12:27:02 +00:00
|
|
|
(while (< cnt n)
|
|
|
|
(while (and (member cnt opt-args)
|
|
|
|
(eq (following-char) ?\{))
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-incf cnt))
|
2003-08-11 12:27:02 +00:00
|
|
|
(when (< cnt n)
|
|
|
|
(unless (and (condition-case nil
|
|
|
|
(or (forward-list 1) t)
|
|
|
|
(error nil))
|
|
|
|
(reftex-move-to-next-arg)
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-incf cnt))
|
2003-08-11 12:27:02 +00:00
|
|
|
(setq cnt 1000))))
|
|
|
|
|
|
|
|
(while (and (memq cnt opt-args)
|
|
|
|
(eq (following-char) ?\{))
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-incf cnt)))
|
1999-08-16 07:42:41 +00:00
|
|
|
(if (and (= n cnt)
|
2019-03-18 17:02:01 -07:00
|
|
|
(> (skip-chars-forward "{[") 0))
|
2003-08-11 12:27:02 +00:00
|
|
|
(reftex-context-substring)
|
|
|
|
nil))))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-move-over-touching-args ()
|
|
|
|
(condition-case nil
|
|
|
|
(while (memq (following-char) '(?\[ ?\{))
|
2003-08-11 12:27:02 +00:00
|
|
|
(forward-list 1))
|
2011-06-29 19:50:20 -07:00
|
|
|
(error nil)))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
* reftex.el (reftex-compile-variables): respect new structure of
`reftex-index-macro'
(reftex-compile-variables): Use the changed structure of
`reftex-label-alist'.
* reftex-vars.el (reftex-index-math-format,
(reftex-toc-max-level): New option.
reftex-index-phrases-search-whole-words,
reftex-index-phrases-case-fold-search,
reftex-index-phrases-skip-indexed-matches,
reftex-index-phrases-wrap-long-lines,
reftex-index-phrases-sort-prefers-entry,
reftex-index-phrases-sort-in-blocks): New options.
(reftex-index-macros): Option structure changed.
(reftex-index-macros-builtin): Added `repeat' item to each entry.
(reftex-label-alist): Additional item in each entry to specify if
the environment should be listed in the TOC.
(eval-when-compile (require 'cl)) added.
* reftex-index.el (reftex-index-selection-or-word): No longer
deals with "repeat".
(reftex-index): "repeat property in `reftex-index-macro-alist' is
now used.
(reftex-index-phrases-comment-regexp,
reftex-index-phrases-macrodef-regexp,
reftex-index-phrases-phrase-regexp1,
reftex-index-phrases-phrase-regexp2,
reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
New constants.
(reftex-index-phrases-macro-data, reftex-index-phrases-files,
reftex-index-phrases-font-lock-keywords,
reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
reftex-index-phrases-restrict-file): New variables.
(reftex-index-phrase-selection-or-word,
reftex-index-visit-phrases-buffer,
reftex-index-initialize-phrases-buffer,
reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
reftex-index-next-phrase, reftex-index-this-phrase,
reftex-index-all-phrases, reftex-index-region-phrases,
reftex-index-phrases-parse-header,
reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
reftex-index-make-replace-string,
reftex-query-index-phrase-globally, reftex-query-index-phrase,
reftex-index-phrase-match-is-indexed,
reftex-index-phrases-fixup-line,
reftex-index-phrases-replace-space,
reftex-index-select-phrases-macro): New functions.
(reftex-index-globalize, reftex-index-globally): functions removed
(eval-when-compile (require 'cl)) added.
* reftex-toc.el (reftex-toc-mode): Create new indicator for max
level.
(reftex-toc-max-level-indicator): New variable.
(reftex-toc-max-level): New command.
(reftex-toc-map): New keybinding `t'.
(reftex-toc-help): Constant updated.
(eval-when-compile (require 'cl)) added.
* reftex-ref.el (reftex-offer-label-menu): Prefix to `t' command key
can change `reftex-toc-max-level'
(eval-when-compile (require 'cl)) added.
* reftex-sel (reftex-insert-docstruct): Respect
`reftex-toc-max-level'
(eval-when-compile (require 'cl)) added.
* reftex-auc.el (eval-when-compile (require 'cl)) added.
* reftex-vcr.el (eval-when-compile (require 'cl)) added.
* reftex-cite.el (reftex-citep, reftex-citet): New commands.
(reftex-citation, reftex-do-citation,
reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
preselect a citation format.
(eval-when-compile (require 'cl)) added.
* reftex-parse.el (reftex-context-substring): Optional parameter
to-end
(reftex-section-info): Deal with environment matches.
(eval-when-compile (require 'cl)) added.
* reftex-global.el (eval-when-compile (require 'cl)) added.
1999-12-15 17:02:38 +00:00
|
|
|
(defun reftex-context-substring (&optional to-end)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Return up to 150 chars from point.
|
lisp/*.el: Fix typos and other trivial doc fixes
* lisp/allout-widgets.el (allout-widgets-auto-activation)
(allout-current-decorated-p):
* lisp/auth-source.el (auth-source-protocols):
* lisp/autorevert.el (auto-revert-set-timer):
* lisp/battery.el (battery-mode-line-limit):
* lisp/calc/calcalg3.el (math-map-binop):
* lisp/calendar/cal-dst.el (calendar-dst-find-startend):
* lisp/calendar/cal-mayan.el (calendar-mayan-long-count-to-absolute):
* lisp/calendar/calendar.el (calendar-date-echo-text)
(calendar-generate-month, calendar-string-spread)
(calendar-cursor-to-date, calendar-read, calendar-read-date)
(calendar-mark-visible-date, calendar-dayname-on-or-before):
* lisp/calendar/diary-lib.el (diary-ordinal-suffix):
* lisp/cedet/ede/autoconf-edit.el (autoconf-new-program)
(autoconf-find-last-macro, autoconf-parameter-strip):
* lisp/cedet/ede/config.el (ede-target-with-config-build):
* lisp/cedet/ede/linux.el (ede-linux--detect-architecture)
(ede-linux--get-architecture):
* lisp/cedet/semantic/complete.el (semantic-collector-calculate-cache)
(semantic-displayer-abstract, semantic-displayer-point-position):
* lisp/cedet/semantic/format.el (semantic-format-face-alist)
(semantic-format-tag-short-doc):
* lisp/cedet/semantic/fw.el (semantic-find-file-noselect):
* lisp/cedet/semantic/idle.el (semantic-idle-scheduler-work-idle-time)
(semantic-idle-breadcrumbs-display-function)
(semantic-idle-breadcrumbs-format-tag-list-function):
* lisp/cedet/semantic/lex.el (semantic-lex-map-types)
(define-lex, define-lex-block-type-analyzer):
* lisp/cedet/semantic/senator.el (senator-search-default-tag-filter):
* lisp/cedet/semantic/symref.el (semantic-symref-result)
(semantic-symref-hit-to-tag-via-db):
* lisp/cedet/semantic/symref.el (semantic-symref-tool-baseclass):
* lisp/cedet/semantic/tag.el (semantic-tag-new-variable)
(semantic-tag-new-include, semantic-tag-new-package)
(semantic-tag-set-faux, semantic-create-tag-proxy)
(semantic-tag-function-parent)
(semantic-tag-components-with-overlays):
* lisp/cedet/srecode/cpp.el (srecode-cpp-namespaces)
(srecode-semantic-handle-:c, srecode-semantic-apply-tag-to-dict):
* lisp/cedet/srecode/dictionary.el (srecode-create-dictionary)
(srecode-dictionary-add-entries, srecode-dictionary-lookup-name)
(srecode-create-dictionaries-from-tags):
* lisp/cmuscheme.el (scheme-compile-region):
* lisp/color.el (color-lab-to-lch):
* lisp/doc-view.el (doc-view-image-width)
(doc-view-set-up-single-converter):
* lisp/dynamic-setting.el (font-setting-change-default-font)
(dynamic-setting-handle-config-changed-event):
* lisp/elec-pair.el (electric-pair-text-pairs)
(electric-pair-skip-whitespace-function)
(electric-pair-string-bound-function):
* lisp/emacs-lisp/avl-tree.el (avl-tree--del-balance)
(avl-tree-member, avl-tree-mapcar, avl-tree-iter):
* lisp/emacs-lisp/bytecomp.el (byte-compile-generate-call-tree):
* lisp/emacs-lisp/checkdoc.el (checkdoc-autofix-flag)
(checkdoc-spellcheck-documentation-flag, checkdoc-ispell)
(checkdoc-ispell-current-buffer, checkdoc-ispell-interactive)
(checkdoc-ispell-message-interactive)
(checkdoc-ispell-message-text, checkdoc-ispell-start)
(checkdoc-ispell-continue, checkdoc-ispell-comments)
(checkdoc-ispell-defun):
* lisp/emacs-lisp/cl-generic.el (cl--generic-search-method):
* lisp/emacs-lisp/eieio-custom.el (eieio-read-customization-group):
* lisp/emacs-lisp/lisp.el (forward-sexp, up-list):
* lisp/emacs-lisp/package-x.el (package--archive-contents-from-file):
* lisp/emacs-lisp/package.el (package-desc)
(package--make-autoloads-and-stuff, package-hidden-regexps):
* lisp/emacs-lisp/tcover-ses.el (ses-exercise-startup):
* lisp/emacs-lisp/testcover.el (testcover-nohits)
(testcover-1value):
* lisp/epg.el (epg-receive-keys, epg-start-edit-key):
* lisp/erc/erc-backend.el (erc-server-processing-p)
(erc-split-line-length, erc-server-coding-system)
(erc-server-send, erc-message):
* lisp/erc/erc-button.el (erc-button-face, erc-button-alist)
(erc-browse-emacswiki):
* lisp/erc/erc-ezbounce.el (erc-ezbounce, erc-ezb-get-login):
* lisp/erc/erc-fill.el (erc-fill-variable-maximum-indentation):
* lisp/erc/erc-log.el (erc-current-logfile):
* lisp/erc/erc-match.el (erc-log-match-format)
(erc-text-matched-hook):
* lisp/erc/erc-netsplit.el (erc-netsplit, erc-netsplit-debug):
* lisp/erc/erc-networks.el (erc-server-alist)
(erc-networks-alist, erc-current-network):
* lisp/erc/erc-ring.el (erc-input-ring-index):
* lisp/erc/erc-speedbar.el (erc-speedbar)
(erc-speedbar-update-channel):
* lisp/erc/erc-stamp.el (erc-timestamp-only-if-changed-flag):
* lisp/erc/erc-track.el (erc-track-position-in-mode-line)
(erc-track-remove-from-mode-line, erc-modified-channels-update)
(erc-track-last-non-erc-buffer, erc-track-sort-by-importance)
(erc-track-get-active-buffer):
* lisp/erc/erc.el (erc-get-channel-user-list)
(erc-echo-notice-hook, erc-echo-notice-always-hook)
(erc-wash-quit-reason, erc-format-@nick):
* lisp/ffap.el (ffap-latex-mode):
* lisp/files.el (abort-if-file-too-large)
(dir-locals--get-sort-score, buffer-stale--default-function):
* lisp/filesets.el (filesets-tree-max-level, filesets-data)
(filesets-update-pre010505):
* lisp/gnus/gnus-agent.el (gnus-agent-flush-cache):
* lisp/gnus/gnus-art.el (gnus-article-encrypt-protocol)
(gnus-button-prefer-mid-or-mail):
* lisp/gnus/gnus-cus.el (gnus-group-parameters):
* lisp/gnus/gnus-demon.el (gnus-demon-handlers)
(gnus-demon-run-callback):
* lisp/gnus/gnus-dired.el (gnus-dired-print):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-buffer):
* lisp/gnus/gnus-range.el (gnus-range-normalize):
* lisp/gnus/gnus-spec.el (gnus-pad-form):
* lisp/gnus/gnus-srvr.el (gnus-server-agent, gnus-server-cloud)
(gnus-server-opened, gnus-server-closed, gnus-server-denied)
(gnus-server-offline):
* lisp/gnus/gnus-sum.el (gnus-refer-thread-use-nnir)
(gnus-refer-thread-limit-to-thread)
(gnus-summary-limit-include-thread, gnus-summary-refer-thread)
(gnus-summary-find-matching):
* lisp/gnus/gnus-util.el (gnus-rescale-image):
* lisp/gnus/gnus.el (gnus-summary-line-format, gnus-no-server):
* lisp/gnus/mail-source.el (mail-source-incoming-file-prefix):
* lisp/gnus/message.el (message-cite-reply-position)
(message-cite-style-outlook, message-cite-style-thunderbird)
(message-cite-style-gmail, message--send-mail-maybe-partially):
* lisp/gnus/mm-extern.el (mm-inline-external-body):
* lisp/gnus/mm-partial.el (mm-inline-partial):
* lisp/gnus/mml-sec.el (mml-secure-message-sign)
(mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
* lisp/gnus/mml2015.el (mml2015-epg-key-image)
(mml2015-epg-key-image-to-string):
* lisp/gnus/nndiary.el (nndiary-reminders, nndiary-get-new-mail):
* lisp/gnus/nnheader.el (nnheader-directory-files-is-safe):
* lisp/gnus/nnir.el (nnir-search-history)
(nnir-imap-search-other, nnir-artlist-length)
(nnir-artlist-article, nnir-artitem-group, nnir-artitem-number)
(nnir-artitem-rsv, nnir-article-group, nnir-article-number)
(nnir-article-rsv, nnir-article-ids, nnir-categorize)
(nnir-retrieve-headers-override-function)
(nnir-imap-default-search-key, nnir-hyrex-additional-switches)
(gnus-group-make-nnir-group, nnir-run-namazu, nnir-read-parms)
(nnir-read-parm, nnir-read-server-parm, nnir-search-thread):
* lisp/gnus/nnmairix.el (nnmairix-default-group)
(nnmairix-propagate-marks):
* lisp/gnus/smime.el (smime-keys, smime-crl-check)
(smime-verify-buffer, smime-noverify-buffer):
* lisp/gnus/spam-report.el (spam-report-url-ping-mm-url):
* lisp/gnus/spam.el (spam-spamassassin-positive-spam-flag-header)
(spam-spamassassin-spam-status-header, spam-sa-learn-rebuild)
(spam-classifications, spam-check-stat, spam-spamassassin-score):
* lisp/help.el (describe-minor-mode-from-symbol):
* lisp/hippie-exp.el (hippie-expand-ignore-buffers):
* lisp/htmlfontify.el (hfy-optimizations, hfy-face-resolve-face)
(hfy-begin-span):
* lisp/ibuf-ext.el (ibuffer-update-saved-filters-format)
(ibuffer-saved-filters, ibuffer-old-saved-filters-warning)
(ibuffer-filtering-qualifiers, ibuffer-repair-saved-filters)
(eval, ibuffer-unary-operand, file-extension, directory):
* lisp/image-dired.el (image-dired-cmd-pngcrush-options):
* lisp/image-mode.el (image-toggle-display):
* lisp/international/ccl.el (ccl-compile-read-multibyte-character)
(ccl-compile-write-multibyte-character):
* lisp/international/kkc.el (kkc-save-init-file):
* lisp/international/latin1-disp.el (latin1-display):
* lisp/international/ogonek.el (ogonek-name-encoding-alist)
(ogonek-information, ogonek-lookup-encoding)
(ogonek-deprefixify-region):
* lisp/isearch.el (isearch-filter-predicate)
(isearch--momentary-message):
* lisp/jsonrpc.el (jsonrpc-connection-send)
(jsonrpc-process-connection, jsonrpc-shutdown)
(jsonrpc--async-request-1):
* lisp/language/tibet-util.el (tibetan-char-p):
* lisp/mail/feedmail.el (feedmail-queue-use-send-time-for-date)
(feedmail-last-chance-hook, feedmail-before-fcc-hook)
(feedmail-send-it-immediately-wrapper, feedmail-find-eoh):
* lisp/mail/hashcash.el (hashcash-generate-payment)
(hashcash-generate-payment-async, hashcash-insert-payment)
(hashcash-verify-payment):
* lisp/mail/rmail.el (rmail-movemail-variant-in-use)
(rmail-get-attr-value):
* lisp/mail/rmailmm.el (rmail-mime-prefer-html, rmail-mime):
* lisp/mail/rmailsum.el (rmail-summary-show-message):
* lisp/mail/supercite.el (sc-raw-mode-toggle):
* lisp/man.el (Man-start-calling):
* lisp/mh-e/mh-acros.el (mh-do-at-event-location)
(mh-iterate-on-messages-in-region, mh-iterate-on-range):
* lisp/mh-e/mh-alias.el (mh-alias-system-aliases)
(mh-alias-reload, mh-alias-ali)
(mh-alias-canonicalize-suggestion, mh-alias-add-alias-to-file)
(mh-alias-add-alias):
* lisp/mouse.el (mouse-save-then-kill):
* lisp/net/browse-url.el (browse-url-default-macosx-browser):
* lisp/net/eudc.el (eudc-set, eudc-variable-protocol-value)
(eudc-variable-server-value, eudc-update-variable)
(eudc-expand-inline):
* lisp/net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
* lisp/net/eudcb-ldap.el (eudc-ldap-get-field-list):
* lisp/net/pop3.el (pop3-list):
* lisp/net/soap-client.el (soap-namespace-put)
(soap-xs-parse-sequence, soap-parse-envelope):
* lisp/net/soap-inspect.el (soap-inspect-xs-complex-type):
* lisp/nxml/rng-xsd.el (rng-xsd-date-to-days):
* lisp/org/ob-C.el (org-babel-prep-session:C)
(org-babel-load-session:C):
* lisp/org/ob-J.el (org-babel-execute:J):
* lisp/org/ob-asymptote.el (org-babel-prep-session:asymptote):
* lisp/org/ob-awk.el (org-babel-execute:awk):
* lisp/org/ob-core.el (org-babel-process-file-name):
* lisp/org/ob-ebnf.el (org-babel-execute:ebnf):
* lisp/org/ob-forth.el (org-babel-execute:forth):
* lisp/org/ob-fortran.el (org-babel-execute:fortran)
(org-babel-prep-session:fortran, org-babel-load-session:fortran):
* lisp/org/ob-groovy.el (org-babel-execute:groovy):
* lisp/org/ob-io.el (org-babel-execute:io):
* lisp/org/ob-js.el (org-babel-execute:js):
* lisp/org/ob-lilypond.el (org-babel-default-header-args:lilypond)
(org-babel-lilypond-compile-post-tangle)
(org-babel-lilypond-display-pdf-post-tangle)
(org-babel-lilypond-tangle)
(org-babel-lilypond-execute-tangled-ly)
(org-babel-lilypond-compile-lilyfile)
(org-babel-lilypond-check-for-compile-error)
(org-babel-lilypond-process-compile-error)
(org-babel-lilypond-mark-error-line)
(org-babel-lilypond-parse-error-line)
(org-babel-lilypond-attempt-to-open-pdf)
(org-babel-lilypond-attempt-to-play-midi)
(org-babel-lilypond-switch-extension)
(org-babel-lilypond-set-header-args):
* lisp/org/ob-lua.el (org-babel-prep-session:lua):
* lisp/org/ob-picolisp.el (org-babel-execute:picolisp):
* lisp/org/ob-processing.el (org-babel-prep-session:processing):
* lisp/org/ob-python.el (org-babel-prep-session:python):
* lisp/org/ob-scheme.el (org-babel-scheme-capture-current-message)
(org-babel-scheme-execute-with-geiser, org-babel-execute:scheme):
* lisp/org/ob-shen.el (org-babel-execute:shen):
* lisp/org/org-agenda.el (org-agenda-entry-types)
(org-agenda-move-date-from-past-immediately-to-today)
(org-agenda-time-grid, org-agenda-sorting-strategy)
(org-agenda-filter-by-category, org-agenda-forward-block):
* lisp/org/org-colview.el (org-columns--overlay-text):
* lisp/org/org-faces.el (org-verbatim, org-cycle-level-faces):
* lisp/org/org-indent.el (org-indent-set-line-properties):
* lisp/org/org-macs.el (org-get-limited-outline-regexp):
* lisp/org/org-mobile.el (org-mobile-files):
* lisp/org/org.el (org-use-fast-todo-selection)
(org-extend-today-until, org-use-property-inheritance)
(org-refresh-effort-properties, org-open-at-point-global)
(org-track-ordered-property-with-tag, org-shiftright):
* lisp/org/ox-html.el (org-html-checkbox-type):
* lisp/org/ox-man.el (org-man-source-highlight)
(org-man-verse-block):
* lisp/org/ox-publish.el (org-publish-sitemap-default):
* lisp/outline.el (outline-head-from-level):
* lisp/progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-calc-command-indent, dcl-indent-to):
* lisp/progmodes/flymake.el (flymake-make-diagnostic)
(flymake--overlays, flymake-diagnostic-functions)
(flymake-diagnostic-types-alist, flymake--backend-state)
(flymake-is-running, flymake--collect, flymake-mode):
* lisp/progmodes/gdb-mi.el (gdb-threads-list, gdb, gdb-non-stop)
(gdb-buffers, gdb-gud-context-call, gdb-jsonify-buffer):
* lisp/progmodes/grep.el (grep-error-screen-columns):
* lisp/progmodes/gud.el (gud-prev-expr):
* lisp/progmodes/ps-mode.el (ps-mode, ps-mode-target-column)
(ps-run-goto-error):
* lisp/progmodes/python.el (python-eldoc-get-doc)
(python-eldoc-function-timeout-permanent, python-eldoc-function):
* lisp/shadowfile.el (shadow-make-group):
* lisp/speedbar.el (speedbar-obj-do-check):
* lisp/textmodes/flyspell.el (flyspell-auto-correct-previous-hook):
* lisp/textmodes/reftex-cite.el (reftex-bib-or-thebib):
* lisp/textmodes/reftex-index.el (reftex-index-goto-entry)
(reftex-index-kill, reftex-index-undo):
* lisp/textmodes/reftex-parse.el (reftex-context-substring):
* lisp/textmodes/reftex.el (reftex-TeX-master-file):
* lisp/textmodes/rst.el (rst-next-hdr, rst-toc)
(rst-uncomment-region, rst-font-lock-extend-region-internal):
* lisp/thumbs.el (thumbs-mode):
* lisp/vc/ediff-util.el (ediff-restore-diff):
* lisp/vc/pcvs-defs.el (cvs-cvsroot, cvs-force-dir-tag):
* lisp/vc/vc-hg.el (vc-hg--ignore-patterns-valid-p):
* lisp/wid-edit.el (widget-field-value-set, string):
* lisp/x-dnd.el (x-dnd-version-from-flags)
(x-dnd-more-than-3-from-flags): Assorted docfixes.
2019-09-21 00:27:53 +02:00
|
|
|
When point is just after a { or [, limit string to matching parenthesis."
|
1999-08-16 07:42:41 +00:00
|
|
|
(cond
|
* reftex.el (reftex-compile-variables): respect new structure of
`reftex-index-macro'
(reftex-compile-variables): Use the changed structure of
`reftex-label-alist'.
* reftex-vars.el (reftex-index-math-format,
(reftex-toc-max-level): New option.
reftex-index-phrases-search-whole-words,
reftex-index-phrases-case-fold-search,
reftex-index-phrases-skip-indexed-matches,
reftex-index-phrases-wrap-long-lines,
reftex-index-phrases-sort-prefers-entry,
reftex-index-phrases-sort-in-blocks): New options.
(reftex-index-macros): Option structure changed.
(reftex-index-macros-builtin): Added `repeat' item to each entry.
(reftex-label-alist): Additional item in each entry to specify if
the environment should be listed in the TOC.
(eval-when-compile (require 'cl)) added.
* reftex-index.el (reftex-index-selection-or-word): No longer
deals with "repeat".
(reftex-index): "repeat property in `reftex-index-macro-alist' is
now used.
(reftex-index-phrases-comment-regexp,
reftex-index-phrases-macrodef-regexp,
reftex-index-phrases-phrase-regexp1,
reftex-index-phrases-phrase-regexp2,
reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
New constants.
(reftex-index-phrases-macro-data, reftex-index-phrases-files,
reftex-index-phrases-font-lock-keywords,
reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
reftex-index-phrases-restrict-file): New variables.
(reftex-index-phrase-selection-or-word,
reftex-index-visit-phrases-buffer,
reftex-index-initialize-phrases-buffer,
reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
reftex-index-next-phrase, reftex-index-this-phrase,
reftex-index-all-phrases, reftex-index-region-phrases,
reftex-index-phrases-parse-header,
reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
reftex-index-make-replace-string,
reftex-query-index-phrase-globally, reftex-query-index-phrase,
reftex-index-phrase-match-is-indexed,
reftex-index-phrases-fixup-line,
reftex-index-phrases-replace-space,
reftex-index-select-phrases-macro): New functions.
(reftex-index-globalize, reftex-index-globally): functions removed
(eval-when-compile (require 'cl)) added.
* reftex-toc.el (reftex-toc-mode): Create new indicator for max
level.
(reftex-toc-max-level-indicator): New variable.
(reftex-toc-max-level): New command.
(reftex-toc-map): New keybinding `t'.
(reftex-toc-help): Constant updated.
(eval-when-compile (require 'cl)) added.
* reftex-ref.el (reftex-offer-label-menu): Prefix to `t' command key
can change `reftex-toc-max-level'
(eval-when-compile (require 'cl)) added.
* reftex-sel (reftex-insert-docstruct): Respect
`reftex-toc-max-level'
(eval-when-compile (require 'cl)) added.
* reftex-auc.el (eval-when-compile (require 'cl)) added.
* reftex-vcr.el (eval-when-compile (require 'cl)) added.
* reftex-cite.el (reftex-citep, reftex-citet): New commands.
(reftex-citation, reftex-do-citation,
reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
preselect a citation format.
(eval-when-compile (require 'cl)) added.
* reftex-parse.el (reftex-context-substring): Optional parameter
to-end
(reftex-section-info): Deal with environment matches.
(eval-when-compile (require 'cl)) added.
* reftex-global.el (eval-when-compile (require 'cl)) added.
1999-12-15 17:02:38 +00:00
|
|
|
(to-end
|
|
|
|
;; Environment - find next \end
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point)
|
|
|
|
(min (+ (point) 150)
|
2003-08-11 12:27:02 +00:00
|
|
|
(save-match-data
|
|
|
|
;; FIXME: This is not perfect
|
|
|
|
(if (re-search-forward "\\\\end{" nil t)
|
|
|
|
(match-beginning 0)
|
|
|
|
(point-max))))))
|
2010-09-21 00:42:47 +02:00
|
|
|
((memq (preceding-char) '(?\{ ?\[))
|
1999-08-16 07:42:41 +00:00
|
|
|
;; Inside a list - get only the list.
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point)
|
|
|
|
(min (+ (point) 150)
|
|
|
|
(point-max)
|
|
|
|
(condition-case nil
|
2010-09-21 00:42:47 +02:00
|
|
|
(let ((forward-sexp-function nil)) ;Unneeded fanciness.
|
1999-08-16 07:42:41 +00:00
|
|
|
(up-list 1)
|
|
|
|
(1- (point)))
|
|
|
|
(error (point-max))))))
|
|
|
|
(t
|
|
|
|
;; no list - just grab 150 characters
|
2011-06-29 19:50:20 -07:00
|
|
|
(buffer-substring-no-properties (point)
|
2003-08-11 12:27:02 +00:00
|
|
|
(min (+ (point) 150) (point-max))))))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
|
|
|
;; Variable holding the vector with section numbers
|
1999-09-24 10:00:17 +00:00
|
|
|
(defvar reftex-section-numbers (make-vector reftex-max-section-depth 0))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-init-section-numbers (&optional toc-entry appendix)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Initialize the section numbers with zeros or with what is found in the TOC-ENTRY."
|
1999-08-16 07:42:41 +00:00
|
|
|
(let* ((level (or (nth 5 toc-entry) -1))
|
|
|
|
(numbers (nreverse (split-string (or (nth 6 toc-entry) "") "\\.")))
|
|
|
|
(depth (1- (length reftex-section-numbers)))
|
|
|
|
(i depth) number-string)
|
|
|
|
(while (>= i 0)
|
|
|
|
(if (> i level)
|
|
|
|
(aset reftex-section-numbers i 0)
|
2003-08-11 12:27:02 +00:00
|
|
|
(setq number-string (or (car numbers) "0"))
|
|
|
|
(if (string-match "\\`[A-Z]\\'" number-string)
|
|
|
|
(aset reftex-section-numbers i
|
|
|
|
(- (string-to-char number-string) ?A -1))
|
2005-05-16 11:34:49 +00:00
|
|
|
(aset reftex-section-numbers i (string-to-number number-string)))
|
1999-08-16 07:42:41 +00:00
|
|
|
(pop numbers))
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-decf i)))
|
1999-08-16 07:42:41 +00:00
|
|
|
(put 'reftex-section-numbers 'appendix appendix))
|
|
|
|
|
2014-03-28 20:53:32 -04:00
|
|
|
;;;###autoload
|
1999-08-16 07:42:41 +00:00
|
|
|
(defun reftex-section-number (&optional level star)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Return a string with the current section number.
|
|
|
|
When LEVEL is non-nil, increase section numbers on that level."
|
1999-08-16 07:42:41 +00:00
|
|
|
(let* ((depth (1- (length reftex-section-numbers))) idx n (string "")
|
2003-08-11 12:27:02 +00:00
|
|
|
(appendix (get 'reftex-section-numbers 'appendix))
|
|
|
|
(partspecial (and (not reftex-part-resets-chapter)
|
|
|
|
(equal level 0))))
|
2002-08-27 09:58:05 +00:00
|
|
|
;; partspecial means, this is a part statement.
|
|
|
|
;; Parts do not reset the chapter counter, and the part number is
|
|
|
|
;; not included in the numbering of other sectioning levels.
|
1999-08-16 07:42:41 +00:00
|
|
|
(when level
|
|
|
|
(when (and (> level -1) (not star))
|
2011-06-29 19:50:20 -07:00
|
|
|
(aset reftex-section-numbers
|
2003-08-11 12:27:02 +00:00
|
|
|
level (1+ (aref reftex-section-numbers level))))
|
1999-08-16 07:42:41 +00:00
|
|
|
(setq idx (1+ level))
|
|
|
|
(when (not star)
|
2003-08-11 12:27:02 +00:00
|
|
|
(while (<= idx depth)
|
|
|
|
(if (or (not partspecial)
|
|
|
|
(not (= idx 1)))
|
|
|
|
(aset reftex-section-numbers idx 0))
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-incf idx))))
|
2002-08-27 09:58:05 +00:00
|
|
|
(if partspecial
|
2003-08-11 12:27:02 +00:00
|
|
|
(setq string (concat "Part " (reftex-roman-number
|
|
|
|
(aref reftex-section-numbers 0))))
|
2002-08-27 09:58:05 +00:00
|
|
|
(setq idx (if reftex-part-resets-chapter 0 1))
|
|
|
|
(while (<= idx depth)
|
2003-08-11 12:27:02 +00:00
|
|
|
(setq n (aref reftex-section-numbers idx))
|
|
|
|
(if (not (and partspecial (not (equal string ""))))
|
|
|
|
(setq string (concat string (if (not (string= string "")) "." "")
|
|
|
|
(int-to-string n))))
|
Port RefTeX to cl-lib
* lisp/textmodes/reftex-auc.el:
* lisp/textmodes/reftex-cite.el: Use cl-lib.
(reftex-do-citation, reftex-create-bibtex-file): Substitute cl-lib
macros.
* lisp/textmodes/reftex-dcr.el: Use cl-lib.
(reftex-view-regexp-match): Substitute cl-lib macro.
* lisp/textmodes/reftex-global.el: Use cl-lib.
(reftex-find-duplicate-labels, reftex-renumber-simple-labels):
(reftex-translate): Substitute cl-lib macros.
* lisp/textmodes/reftex-index.el: Use cl-lib.
(reftex-index, reftex-index-select-tag, reftex-index-mode-map):
(reftex-index-next-phrase, reftex-index-phrases-info):
(reftex-query-index-phrase): Substitute cl-lib macros.
* lisp/textmodes/reftex-parse.el: Use cl-lib.
(reftex-parse-from-file, reftex-where-am-I, reftex-what-macro):
(reftex-nth-arg, reftex-init-section-numbers, reftex-section-number):
Substitute cl-lib macros.
* lisp/textmodes/reftex-ref.el: Use cl-lib.
(reftex-uniquify-label, reftex-offer-label-menu): Substitute cl-lib
macros.
* lisp/textmodes/reftex-sel.el: Use cl-lib.
(reftex-select-shared-map): Set keymap parent to special-mode-map.
Flatten loop and remove digits and hyphen definitions from the map.
(reftex-select-label-mode-map):
(reftex-select-bib-mode-map): Use cl-lib macro, and flatten other loop.
(reftex-insert-docstruct, reftex-select-unmark): Use cl-lib macros.
* lisp/textmodes/reftex-vars.el (reftex-vref-is-default): Use
cl-pushnew.
* lisp/textmodes/reftex.el: Use cl-lib.
(reftex-docstruct-symbol): Use cl-incf.
(reftex-ref-style-toggle): Replace add-to-list with append.
(reftex-compile-variables): Use cl-lib macros, and functions with
compiler macros. cl-first is just an alias.
(reftex-parse-args, reftex-scanning-info-available-p):
(reftex-select-external-document, reftex-get-file-buffer-force): Use
cl-lib macros.
(reftex-isearch-minor-mode): Replace add-to-list with append.
2016-11-19 13:34:24 -05:00
|
|
|
(cl-incf idx))
|
2002-08-27 09:58:05 +00:00
|
|
|
(save-match-data
|
2003-08-11 12:27:02 +00:00
|
|
|
(if (string-match "\\`\\([@0]\\.\\)+" string)
|
|
|
|
(setq string (replace-match "" nil nil string)))
|
|
|
|
(if (string-match "\\(\\.0\\)+\\'" string)
|
|
|
|
(setq string (replace-match "" nil nil string)))
|
|
|
|
(if (and appendix
|
|
|
|
(string-match "\\`[0-9]+" string))
|
2011-06-29 19:50:20 -07:00
|
|
|
(setq string
|
2003-08-11 12:27:02 +00:00
|
|
|
(concat
|
|
|
|
(char-to-string
|
2005-05-16 11:34:49 +00:00
|
|
|
(1- (+ ?A (string-to-number (match-string 0 string)))))
|
2003-08-11 12:27:02 +00:00
|
|
|
(substring string (match-end 0))))))
|
2002-08-27 09:58:05 +00:00
|
|
|
(if star
|
2003-08-11 12:27:02 +00:00
|
|
|
(concat (make-string (1- (length string)) ?\ ) "*")
|
|
|
|
string))))
|
2002-08-27 09:58:05 +00:00
|
|
|
|
|
|
|
(defun reftex-roman-number (n)
|
* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
(reftex-citation-prompt, reftex-default-bibliography)
(reftex-bib-or-thebib, reftex-get-bibfile-list)
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-bib-sort-author, reftex-bib-sort-year)
(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-get-bibkey-default, reftex-get-bib-names)
(reftex-parse-bibtex-entry, reftex-get-bib-field)
(reftex-format-bib-entry, reftex-parse-bibitem)
(reftex-format-bibitem, reftex-do-citation)
(reftex-figure-out-cite-format, reftex-offer-bib-menu)
(reftex-restrict-bib-matches, reftex-extract-bib-file)
(reftex-insert-bib-matches, reftex-format-citation)
(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
(reftex-create-bibtex-file): Add docstrings, mostly by converting
existing comments into docstrings.
2013-06-12 14:42:35 +02:00
|
|
|
"Return as a string the roman number equal to N."
|
2002-08-27 09:58:05 +00:00
|
|
|
(let ((nrest n)
|
2003-08-11 12:27:02 +00:00
|
|
|
(string "")
|
|
|
|
(list '((1000 . "M") ( 900 . "CM") ( 500 . "D") ( 400 . "CD")
|
|
|
|
( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
|
|
|
|
( 10 . "X") ( 9 . "IX") ( 5 . "V") ( 4 . "IV")
|
|
|
|
( 1 . "I")))
|
|
|
|
listel i s)
|
2002-08-27 09:58:05 +00:00
|
|
|
(while (>= nrest 1)
|
|
|
|
(setq listel (pop list)
|
2003-08-11 12:27:02 +00:00
|
|
|
i (car listel)
|
|
|
|
s (cdr listel))
|
2002-08-27 09:58:05 +00:00
|
|
|
(while (>= nrest i)
|
2003-08-11 12:27:02 +00:00
|
|
|
(setq string (concat string s)
|
|
|
|
nrest (- nrest i))))
|
2002-08-27 09:58:05 +00:00
|
|
|
string))
|
1999-08-16 07:42:41 +00:00
|
|
|
|
Merge from standalone RefTeX repository.
Here is the ChangeLog of the standalone version of RefTeX without
information about Makefiles and other auxiliary files. The differences to
the Emacs repository are documented in the respective ChangeLog files.
2010-11-06 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-create-bibtex-file): Make sure that
entries with whitespace at various places are found.
(reftex-extract-bib-entries-from-thebibliography): Remove
superfluous backslash.
2010-10-16 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el
(reftex-extract-bib-entries-from-thebibliography): Use
`with-current-buffer'.
2010-09-14 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-do-citation): Make it possible again
to insert non-existent entries.
2010-01-30 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-syntax-table-for-bib, reftex-mode):
Do not derive `reftex-syntax-table-for-bib' from
`reftex-syntax-table' because parens have to retain their paren
syntax in order for parsing of BibTeX entries like @book(...) to
work.
2009-09-12 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-label-alist): Doc fix.
* lisp/reftex-toc.el (reftex-re-enlarge): Call `enlarge-window'
only if there is something to do because in Emacs the horizontal
version throws an error even if the parameter is 0.
2009-08-08 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el: Suppress byte-compiler warnings. Move
provide statement to end of file.
* lisp/reftex-dcr.el: Suppress byte-compiler warnings. Move
provide statement to end of file.
* lisp/reftex-auc.el: Suppress byte-compiler warnings.
* doc/reftex.texi (Imprint): Mention Wolfgang in list of
contributors.
* lisp/reftex-vars.el (reftex-plug-into-AUCTeX): Doc fix.
2009-07-05 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Creating Citations): Give a hint about how to
auto-revert the BibTeX database file when using external editors.
* lisp/reftex-cite.el (reftex-do-citation): Save match data when
asking for optional arguments.
2009-04-29 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-in-comment): Do not error out if
`comment-start-skip' is not set.
2009-03-01 Wolfgang Mayer <wmayer7@gmail.com>
* lisp/reftex-cite.el (reftex-all-used-citation-keys):
Fix regexp to correctly extract all citations in the same line.
2008-12-29 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-vref-is-default)
(reftex-fref-is-default): Adapt doc string.
(reftex-ref-style-default-list): New name for
`reftex-ref-style-active-list'. Use :set instead of :repeat.
(reftex-vref-is-default, reftex-fref-is-default): Adapt to new
name.
* lisp/reftex-base.el (reftex-tie-multifile-symbols): Add doc
string.
(reftex-tie-multifile-symbols): Initialize
`reftex-ref-style-list'.
(reftex-untie-multifile-symbols): Add doc string.
(reftex-add-index-macros): Doc fix.
(reftex-ref-style-activate, reftex-ref-style-toggle)
(reftex-ref-style-list): New functions.
(reftex-mode-menu): Use them.
* lisp/reftex-sel.el (reftex-select-cycle-ref-style-internal): Use
`reftex-ref-style-list' function.
* lisp/reftex-ref.el (reftex-reference): Use
`reftex-ref-style-list' function.
* doc/reftex.texi (Referencing Labels): Simplify section about
reference macro cycling.
(Reference Styles, Options (Referencing Labels)): Adapt to changed
implementation.
2008-12-18 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-in-comment): Deal correctly with
escaped comment characters.
2008-11-30 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-alist): Change structure
so that it is not possible to use multiple different package names
within a style.
(reftex-ref-style-active-list): Adapt to new structure of
`reftex-ref-style-alist'.
* lisp/reftex-sel.el (reftex-select-cycle-active-ref-styles):
Remove.
(reftex-select-cycle-ref-style-internal): Adapt to new structure
of `reftex-ref-style-alist'.
* lisp/reftex-ref.el: Adapt creation of `reftex-<package>-<macro>'
functions to new structure of `reftex-ref-style-alist'.
(reftex-reference): Adapt to new structure of
`reftex-ref-style-alist'.
* lisp/reftex-base.el (reftex-mode-menu): Adapt to new structure
of `reftex-ref-style-alist'.
* doc/reftex.texi (Options (Referencing Labels)): Adapt to new
structure of `reftex-ref-style-alist'.
2008-10-16 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Referencing Labels, Reference Styles): Document
changes in the referencing functionality.
2008-10-15 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-alist): Remove the symbols
for symbols for macro type distinction. Add characters for macro
selection.
(reftex-ref-macro-prompt): New variable.
* lisp/reftex-sel.el (reftex-select-cycle-ref-style-internal):
Remove code for testing macro type.
(reftex-select-toggle-numref-pageref): Remove.
(reftex-select-label-map): Remove binding for
`reftex-select-toggle-numref-pageref'.
* lisp/reftex-ref.el (reftex-reference): Prompt for a reference
macro if `reftex-ref-macro-prompt' is non-nil.
* lisp/reftex-base.el (reftex-select-with-char): Kill the RefTeX
Select buffer when done.
2008-06-07 David Kastrup <dak@gnu.org>
* lisp/reftex-base.el (reftex-remove-if): Improve performance.
2008-06-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-get-string-refs): Use a regexp
alternative for better performance.
* doc/reftex.texi (Commands): Mention options for definition of
header and footer in BibTeX files.
(Options (Creating Citations)): Document
`reftex-create-bibtex-header' and `reftex-create-bibtex-footer'.
* lisp/reftex-cite.el (reftex-stringref-p): Remove.
(reftex-get-string-refs): Do without `reftex-stringref-p' and use
`reftex-remove-if' instead of the cl-based `remove-if'.
(reftex-create-bibtex-file): Doc fix.
* lisp/reftex-base.el (reftex-remove-if): New function.
2008-06-07 Wolfgang Mayer <wmayer7@gmail.com>
* lisp/reftex-vars.el (reftex-create-bibtex-header)
(reftex-create-bibtex-footer): New variables.
* lisp/reftex-cite.el (reftex-parse-bibtex-entry): Accept
additional optional argument `raw' and keep quotes or braces if it
is non-nil.
(reftex-stringref-p, reftex-get-string-refs): New functions.
(reftex-create-bibtex-file): Include entries that are
cross-referenced from cited entries. Include @String definitions
in the resulting bib file. Add header and footer defined in
`reftex-create-bibtex-header' and `reftex-create-bibtex-footer'.
2008-05-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-parse.el (reftex-parse-from-file): Move backward one
char if a `\' was matched after a section macro.
* lisp/reftex-global.el (reftex-isearch-switch-to-next-file): Use
`reverse' instead of `nreverse' and `copy-list' in order to make
the byte compiler happy. Get rid of unused `orig-flist' variable.
* lisp/reftex-base.el (reftex-compile-variables): Revert last
change. Match `\' after a section macro.
(reftex-mapconcat-with-predicate): Remove.
2008-04-13 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-mapconcat-with-predicate): New
function.
(reftex-compile-variables): Use it. Treat environments and macros
differently in the regexp for section matching.
* lisp/reftex-parse.el (reftex-parse-from-file): Use beginning of
match instead of end as bound.
* lisp/reftex-sel.el (reftex-select-label-map): Changing binding
of reference style toggling to "s" which is not already taken.
* doc/reftex.texi (Reference Styles): Reflect change in key
binding for toggling reference styles. Some minor changes.
2008-03-27 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el: Some whitespace, doc and checkdoc fixes.
2008-03-16 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-selection-or-word): Use
`reftex-region-active-p'.
(reftex-index-show-entry)
(reftex-index-initialize-phrases-buffer)
(reftex-index-phrases-apply-to-region): Sync with Emacs trunk.
* lisp/reftex-dcr.el (reftex-start-itimer-once): Silence the byte
compiler.
* lisp/reftex-auc.el: Move `provide' call to bottom of file.
* lisp/reftex-base.el: Require easymenu and define autoloads
earlier to avoid compiler warnings.
(reftex-region-active-p, reftex-select-with-char)
(reftex-show-commentary): Sync with version in Emacs trunk.
(reftex-make-overlay, reftex-overlay-put, reftex-move-overlay)
(reftex-delete-overlay): Define in a way which hides the XEmacs
symbols from the byte compiler.
(reftex-info): Silence the byte compiler. Use `reftex.info'
instead of `reftex' in order to get the correct file.
2008-03-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-extract-bib-entries): Check if
BibTeX file changed on disk and ask if it should be reread in case
it did.
2008-03-02 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Lots of small fixes.
(Reference Styles): New section.
(varioref (LaTeX package), fancyref (LaTeX package)): Remove.
(Options (Referencing Labels)): Remove descriptions of deprecated
variables `reftex-vref-is-default' and `reftex-fref-is-default'.
Add descriptions for `reftex-ref-style-alist' and
`reftex-ref-style-active-list'.
(Referencing Labels): Update regarding reference styles.
2008-02-17 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-ref.el (reftex-format-special): Add third argument
for refstyle possible to be passed, making the byte compiler
happy.
(reftex-reference): Pass refstyle to `reftex-format-special'.
* lisp/reftex-vars.el (reftex-ref-style-active-list): Make
creation of type compatible with Emacs 21.
(reftex-format-ref-function): Mention third argument of special
format function.
* lisp/reftex-base.el (reftex-mode-menu): Make creation of
Reference Style menu compatible with Emacs 21.
* doc/reftex.texi: Fix some typos.
2008-01-27 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-ref-style-active-list): Doc fix.
* lisp/reftex-base.el (reftex-erase-all-selection-and-index-buffers)
(reftex-access-parse-file): Use `mapc' instead of `mapcar' where
return value is not used.
* lisp/reftex-ref.el (reftex-offer-label-menu): Use `mapc' instead
of `mapcar' where return value is not used.
* lisp/reftex-sel.el (reftex-select-item, reftex-select-unmark):
Use `mapc' instead of `mapcar' where return value is not used.
* lisp/reftex-vars.el (reftex-ref-style-alist)
(reftex-ref-style-active-list): New variables.
(reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
to new implementation. Mark as obsolete. Add compatibility code
for honoring the variable values in case they are set.
* lisp/reftex-base.el (reftex-mode-menu): Reference styles are now
computed from `reftex-ref-style-alist'. Fix typo.
* lisp/reftex-ref.el (reftex-reference): Determine reference macro
by looking at `reftex-ref-style-active-list' and
`reftex-ref-style-alist'. Use only one special format function.
(reftex-varioref-vref, reftex-fancyref-fref)
(reftex-fancyref-Fref): Remove definitions. The functions are now
generated from `reftex-ref-style-alist'.
(reftex-format-vref, reftex-format-Fref, reftex-format-fref):
Remove.
(reftex-format-special): New function.
* lisp/reftex-sel.el (reftex-select-toggle-varioref)
(reftex-select-toggle-fancyref): Remove.
(reftex-select-cycle-active-ref-styles)
(reftex-select-cycle-ref-style-internal)
(reftex-select-cycle-ref-style-forward)
(reftex-select-cycle-ref-style-backward)
(reftex-select-toggle-numref-pageref): New functions.
(reftex-select-label-map): Use `v' and `V' for general cycling
through reference styles. Add `p' for switching between number
and page reference types.
2008-01-06 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el (reftex-pop-to-bibtex-entry)
(reftex-extract-bib-entries-from-thebibliography): Match \bibitem
entries with spaces or tabs in front of arguments.
(reftex-insert-bib-matches): Use `mapc' instead of `mapcar'
because return value is not used.
2008-01-05 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-toc.el (reftex-make-separate-toc-frame): Hide
non-operational call to `focus-frame' in Emacs for the compilers's
sake.
2008-01-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-dcr.el (reftex-mouse-view-crossref): Explain why
point is set.
* lisp/reftex-toc.el (reftex-toc-do-promote): Use `mapc' instead
of `mapcar' because return value is not used.
(reftex-toggle-auto-toc-recenter): Fix typo.
* lisp/reftex-cite.el (reftex-do-citation): Use `mapc' instead of
`mapcar' because return value is not used.
2007-10-10 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-cite-format-builtin)
(reftex-bibliography-commands): Add support for ConTeXt.
* doc/reftex.texi (Citation Styles): Mention support for ConTeXt.
2007-08-23 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Options (Defining Label Environments)): Fix
typo.
2007-07-22 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el (reftex-set-cite-format): Autoload.
(reftex-access-parse-file): Create parse file in a way that does
not interfere with recentf mode.
(reftex-access-parse-file): Do not risk destroying an existing
buffer.
2007-07-07 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-parse.el (reftex-nth-arg): Use `forward-comment'
instead of `comment-forward'. The latter is not always available
and the former is sufficient for LaTeX.
(reftex-nth-arg): Revert last change since moving over whitespace
and comments is done by `reftex-move-to-next-arg'.
2007-05-20 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi (Citation Styles): Correct some mistakes.
2007-04-03 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-cite.el: Delete trailing whitespace.
(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
(reftex-parse-bibtex-entry, reftex-create-bibtex-file): Match
entries containing numbers and symbol constituents.
2007-03-28 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Replace BibTeX by @BibTeX{} throughout the
file.
2007-03-12 John Paul Wallington <jpw@pobox.com>
* lisp/reftex-vars.el (reftex-format-ref-function)
(reftex-format-cite-function): Fix custom type.
2007-03-10 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-base.el: Remove information in comment already in
imprint or cluttering output of `finder-commentary'.
Require reftex.el.
* lisp/reftex.el: Remove. Now generated from reftex.el.in.
* lisp/reftex-dcr.el: Remove version info in header. Add
maintainer info.
* lisp/reftex-global.el Remove version info in header. Add
maintainer info.
* lisp/reftex-index.el Remove version info in header. Add
maintainer info.
* lisp/reftex-parse.el Remove version info in header. Add
maintainer info.
* lisp/reftex-ref.el Remove version info in header. Add
maintainer info.
* lisp/reftex-sel.el Remove version info in header. Add
maintainer info.
* lisp/reftex-toc.el Remove version info in header. Add
maintainer info.
* lisp/reftex-vars.el Remove version info in header. Add
maintainer info.
2007-03-08 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Include macros.texi and version.texi. Change
maintainer and version information. Express TeX, LaTeX, AUCTeX
and RefTeX with macros.
(Imprint): Change maintainer information.
2007-03-04 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex.el: Update.
* lisp/reftex-base.el (reftex-show-commentary): Look in
reftex-base.el.
(reftex-report-bug): New function.
* lisp/reftex.el: Move original content to reftex-base.el. Add
new header and automatically generated autoloads.
* lisp/reftex-base.el: New file. Insert original content of
reftex.el. Remove autoload for `reftex-index-phrases-mode'.
Delete trailing whitespace.
2007-02-26 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-visit-phrases-buffer): Set
marker when visiting buffer. This allows for returning from the
phrases file to the file one was just editing instead of the file
where the last phrases was added from.
2007-02-25 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-index.el (reftex-index-phrases-syntax-table): New
variable. Give ?\" punctuation syntax as it usually is not used
as string quote in TeX-related modes and may occur unmatched. The
change also prevents fontification of quoted content.
(reftex-index-phrases-mode): Use it.
* lisp/reftex-cite.el (reftex-parse-bibtex-entry): Match fields
containing hyphens (besides word constituents).
2007-02-25 David Kastrup <dak@gnu.org>
* lisp/reftex.el (reftex-uniquify, reftex-uniquify-by-car):
Replace O(n^2) algorithms with O(n log n). Introduce optional
argument SORT (not yet used). TODO: figure out callers that can
specify SORT, in order to further speed this up.
2007-02-25 Ralf Angeli <angeli@caeruleus.net>
* lisp/reftex-vars.el (reftex-cite-key-separator): New variable.
* lisp/reftex-auc.el (reftex-arg-cite): Use
`reftex-cite-key-separator'.
* lisp/reftex-cite.el (reftex-do-citation)
(reftex-figure-out-cite-format): Use `reftex-cite-key-separator'.
* doc/reftex.texi (Options (Creating Citations)): Document
`reftex-cite-key-separator'.
* lisp/reftex-cite.el (reftex-do-citation): Return all keys, not
just the first one.
* lisp/reftex-auc.el (reftex-arg-cite): Correctly handle new
value type returned by `reftex-citation'.
2007-02-24 Ralf Angeli <angeli@caeruleus.net>
* doc/reftex.texi: Set correct filename for standalone
distribution.
2007-02-07 Ralf Angeli <angeli@caeruleus.net>
Create `reftex' module.
2012-09-30 22:30:13 +02:00
|
|
|
(provide 'reftex-parse)
|
|
|
|
|
1999-08-16 07:42:41 +00:00
|
|
|
;;; reftex-parse.el ends here
|
2014-03-28 20:53:32 -04:00
|
|
|
|
|
|
|
;; Local Variables:
|
2015-12-15 21:51:12 +00:00
|
|
|
;; generated-autoload-file: "reftex-loaddefs.el"
|
2014-03-28 20:53:32 -04:00
|
|
|
;; End:
|