From: Arash Esbati Date: Thu, 17 Jun 2021 20:59:32 +0000 (+0200) Subject: Support new LaTeX kernel macro \footref X-Git-Tag: emacs-28.0.90~2096 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f41d0f4749405a642518a1ec9226e537c52f646a;p=emacs.git Support new LaTeX kernel macro \footref * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist): Add entry for \footref macro which is part of LaTeX kernel 2021-06-01. --- diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index 0d6bfb5d860..a8ca780b31f 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el @@ -1059,7 +1059,7 @@ This is used to string together whole reference sets, like (defcustom reftex-ref-style-alist '(("Default" t - (("\\ref" ?\C-m) ("\\Ref" ?R) ("\\pageref" ?p))) + (("\\ref" ?\C-m) ("\\Ref" ?R) ("\\footref" ?n) ("\\pageref" ?p))) ("Varioref" "varioref" (("\\vref" ?v) ("\\Vref" ?V) ("\\vpageref" ?g))) ("Fancyref" "fancyref" @@ -1079,7 +1079,7 @@ the macro type is being prompted for. (See also `reftex-ref-macro-prompt'.) The keys, represented as characters, have to be unique." :group 'reftex-referencing-labels - :version "27.1" + :version "28.1" :type '(alist :key-type (string :tag "Style name") :value-type (group (choice :tag "Package" (const :tag "Any package" t)