diff options
author | Arash Esbati <arash@gnu.org> | 2021-12-15 12:10:05 +0100 |
---|---|---|
committer | Arash Esbati <arash@gnu.org> | 2021-12-15 12:10:05 +0100 |
commit | 5a057f6716e6991a60968e48f849da57a0339735 (patch) | |
tree | 168f568be765606addcc5036d9632cdded829f4b /lisp/textmodes | |
parent | 92ed2fe6886a367f00cf04a11d39b4fbf7a44edc (diff) | |
download | emacs-5a057f6716e6991a60968e48f849da57a0339735.tar.gz emacs-5a057f6716e6991a60968e48f849da57a0339735.tar.bz2 emacs-5a057f6716e6991a60968e48f849da57a0339735.zip |
Recognize starred environments
* lisp/textmodes/reftex-vars.el (reftex-label-alist-builtin): Add
missing starred environments from sidecap and rotating packages.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/reftex-vars.el | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index eedc067b868..dedd74607ae 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el @@ -70,12 +70,16 @@ ("tabwindow" ?f nil nil 1))) (rotating "Sidewaysfigure and table" - (("sidewaysfigure" ?f nil nil caption) - ("sidewaystable" ?t nil nil caption))) - - (sidecap "CSfigure and SCtable" - (("SCfigure" ?f nil nil caption) - ("SCtable" ?t nil nil caption))) + (("sidewaysfigure" ?f nil nil caption) + ("sidewaysfigure*" ?f nil nil caption) + ("sidewaystable" ?t nil nil caption) + ("sidewaystable*" ?t nil nil caption))) + + (sidecap "SCfigure and SCtable" + (("SCfigure" ?f nil nil caption) + ("SCfigure*" ?f nil nil caption) + ("SCtable" ?t nil nil caption) + ("SCtable*" ?t nil nil caption))) (subfigure "Subfigure environments/macro" (("subfigure" ?f nil nil caption) |