From b3b77694576d3a9590640b5a6ebcd39e721fd3cb Mon Sep 17 00:00:00 2001 From: Achim Gratz Date: Wed, 16 May 2012 20:21:50 +0200 Subject: [PATCH] guard invocation of org-mode and suppress warning from byte-compiler * lisp/org.el: Add with-not-warnings around call of (org-fixup). --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 3ed14d723..835e42227 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -214,7 +214,7 @@ identifier." (defun org-git-version () "N/A !!check installation!!") (and (load (concat (org-find-library-dir "org") "../UTILITIES/org-fixup.el") 'noerror 'nomessage 'nosuffix) - (org-fixup))) + (with-no-warnings (org-fixup)))) ;;;###autoload (defun org-version (&optional here) "Show the org-mode version in the echo area. -- 2.11.4.GIT