From ddb823e1964e31b0c105a5360913f51981435c46 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 7 Sep 2016 15:56:38 +0200 Subject: [PATCH] org-footnote: Silence byte-compiler * lisp/org-footnote.el (org-footnote-normalize-label): Silence byte-compiler. --- lisp/org-footnote.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-footnote.el b/lisp/org-footnote.el index 820eb8b7a..e0fedfad1 100644 --- a/lisp/org-footnote.el +++ b/lisp/org-footnote.el @@ -565,7 +565,7 @@ return nil instead." (pcase (org-trim label) ("" nil) ((pred (string-prefix-p "fn:")) (substring label 3)) - (t label))) + (_ label))) (defun org-footnote-get-definition (label) "Return label, boundaries and definition of the footnote LABEL."