Mercurial > emacs
diff lisp/textmodes/reftex-cite.el @ 37998:706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
description.
* reftex-sel.el (reftex-select-jump): New command.
* reftex-toc.el (reftex-toc-help): Added "z" key description.
(reftex-toc-jump): New command.
* reftex-cite.el (reftex-parse-bibitem): Regexp changed to parse
international characters as well.
* reftex.el: Added autoloads for eftex-varioref-vref',
eftex-fancyref-fref', eftex-fancyref-Fref'
* reftex-vars.el: Protected single backslash in many docstrings.
* reftex-dcr.el (reftex-view-crossref): added SPACE and TAB to the
key separaotrs.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Fri, 08 Jun 2001 08:43:20 +0000 |
parents | 5eec8d1d09f0 |
children | 7a94f1c588c4 |
line wrap: on
line diff
--- a/lisp/textmodes/reftex-cite.el Thu Jun 07 16:01:50 2001 +0000 +++ b/lisp/textmodes/reftex-cite.el Fri Jun 08 08:43:20 2001 +0000 @@ -2,7 +2,7 @@ ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> -;; Version: 4.15 +;; Version: 4.16 ;; ;; This file is part of GNU Emacs. @@ -487,7 +487,7 @@ (defun reftex-parse-bibitem (item) ;; Parse a \bibitem entry (let ((key "") (text "")) - (when (string-match "\\`{\\([^}]+\\)}\\([\001-\255]*\\)" item) + (when (string-match "\\`{\\([^}]+\\)}\\([^\000]*\\)" item) (setq key (match-string 1 item) text (match-string 2 item))) ;; Clean up the text a little bit @@ -534,7 +534,7 @@ When called with one or two `C-u' prefixes, first rescans the document. When called with a numeric prefix, make that many citations. When -called with point inside the braces of a `\cite' command, it will +called with point inside the braces of a `\\cite' command, it will add another key, ignoring the value of `reftex-cite-format'. The regular expression uses an expanded syntax: && is interpreted as `and'.