Browse Source

guard invocation of org-mode and suppress warning from byte-compiler

* lisp/org.el: Add with-not-warnings around call of (org-fixup).
Achim Gratz 13 years ago
parent
commit
b3b7769457
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org.el

+ 1 - 1
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.