Function: org-cite-biblatex--expand-shortcuts
org-cite-biblatex--expand-shortcuts is a byte-compiled function
defined in oc-biblatex.el.gz.
Signature
(org-cite-biblatex--expand-shortcuts STYLE)
Documentation
Return STYLE pair with shortcuts expanded.
Source Code
;; Defined in /usr/src/emacs/lisp/org/oc-biblatex.el.gz
(defun org-cite-biblatex--expand-shortcuts (style)
"Return STYLE pair with shortcuts expanded."
(pcase style
(`(,style . ,variant)
(cons (or (alist-get style org-cite-biblatex-style-shortcuts
nil nil #'equal)
style)
(or (alist-get variant org-cite-biblatex-style-shortcuts
nil nil #'equal)
variant)))
(_ (error "This should not happen"))))