Browse Source

Don't use the org-warning face for the wrong install warning

Bastien Guerry 11 years ago
parent
commit
14dd4c56f2
1 changed files with 2 additions and 5 deletions
  1. 2 5
      lisp/org.el

+ 2 - 5
lisp/org.el

@@ -83,12 +83,9 @@
 		      "org-loaddefs.el")
 	      nil t t t)
       (error
-       (message (org-add-props
-		    "WARNING: No org-loaddefs.el file could be found from where org.el is loaded."
-		    nil 'face 'org-warning))
+       (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
        (sit-for 3)
-       (message (org-add-props "You need to run \"make\" or \"make autoloads\" from Org lisp directory"
-		    nil 'face 'org-warning))
+       (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
        (sit-for 3))))
 
 (require 'org-macs)