diff options
| author | Tassilo Horn | 2015-12-13 17:35:40 +0100 |
|---|---|---|
| committer | Tassilo Horn | 2015-12-13 17:37:07 +0100 |
| commit | 93b106794966c5fd75281fa576da5ea534115273 (patch) | |
| tree | 88bad4a0dc986260814e33df097b48ab725c4ece | |
| parent | 536f6fc826b4cd024bf3b332e8342b9509f77bfb (diff) | |
| download | emacs-93b106794966c5fd75281fa576da5ea534115273.tar.gz emacs-93b106794966c5fd75281fa576da5ea534115273.zip | |
Fix regex matching keyval labels
* lisp/textmodes/reftex-vars.el (reftex-label-regexps): Fix regexp
matching keyval labels.
| -rw-r--r-- | lisp/textmodes/reftex-vars.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index 3f7a6f34dc6..5683e62493a 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el | |||
| @@ -877,7 +877,7 @@ DOWNCASE t: Downcase words before using them." | |||
| 877 | "\\\\label{\\(?1:[^}]*\\)}" | 877 | "\\\\label{\\(?1:[^}]*\\)}" |
| 878 | ;; keyvals [..., label = {foo}, ...] forms used by ctable, | 878 | ;; keyvals [..., label = {foo}, ...] forms used by ctable, |
| 879 | ;; listings, minted, ... | 879 | ;; listings, minted, ... |
| 880 | "\\[[^[]]*\\<label[[:space:]]*=[[:space:]]*{?\\(?1:[^],}]+\\)}?") | 880 | "\\[[^][]*\\<label[[:space:]]*=[[:space:]]*{?\\(?1:[^],}]+\\)}?") |
| 881 | "List of regexps matching \\label definitions. | 881 | "List of regexps matching \\label definitions. |
| 882 | The default value matches usual \\label{...} definitions and | 882 | The default value matches usual \\label{...} definitions and |
| 883 | keyval style [..., label = {...}, ...] label definitions. It is | 883 | keyval style [..., label = {...}, ...] label definitions. It is |