From a77117ba80114001c7641c31db1f4b07c56af5b9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 29 Sep 2011 22:44:58 +0200 Subject: [PATCH] org-footnote: Remove useless org-re * lisp/org-footnote.el (org-footnote-at-definition-p): remove useless org-re. --- lisp/org-footnote.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/org-footnote.el b/lisp/org-footnote.el index afb7b47fe..d54a0f8ee 100644 --- a/lisp/org-footnote.el +++ b/lisp/org-footnote.el @@ -267,10 +267,9 @@ label, start, end and definition of the footnote otherwise." (re-search-backward message-signature-separator nil t))))) (or (and (re-search-forward - (org-re - (concat org-outline-regexp-bol "\\|" - org-footnote-definition-re "\\|" - "^[ \t]*$")) + (concat org-outline-regexp-bol "\\|" + org-footnote-definition-re "\\|" + "^[ \t]*$") bound 'move) (progn (skip-chars-forward " \t\n") (point-at-bol))) (point)))) -- 2.11.4.GIT