From a41541c033008336001d6f01b45e85502e04ecff Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 6 Aug 2011 11:34:54 +0200 Subject: [PATCH] org-footnote: remove an unused variable * lisp/org-footnote.el (org-footnote-label-history): removed variable (org-footnote-new): remove call to that variable. --- lisp/org-footnote.el | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lisp/org-footnote.el b/lisp/org-footnote.el index 68b14127e..4e1f7a13b 100644 --- a/lisp/org-footnote.el +++ b/lisp/org-footnote.el @@ -416,10 +416,6 @@ The returns the firsts fn:N labels that is currently not used." (incf cnt)) (format fmt cnt))) -(defvar org-footnote-label-history nil - "History of footnote labels entered in current buffer.") -(make-variable-buffer-local 'org-footnote-label-history) - (defun org-footnote-new () "Insert a new footnote. This command prompts for a label. If this is a label referencing an @@ -443,8 +439,7 @@ or new, let the user edit the definition of the footnote." (completing-read "Label (leave empty for anonymous): " (mapcar 'list labels) nil nil - (if (eq org-footnote-auto-label 'confirm) propose nil) - 'org-footnote-label-history)))))) + (if (eq org-footnote-auto-label 'confirm) propose nil))))))) (cond ((not label) (insert "[fn:: ]")