Browse Source

org.el (org-src-fontify-natively): Default to `t'

* org.el (org-src-fontify-natively): Default to `t'.

Thanks to Sébastien Vauban for pushing this.
Bastien Guerry 11 years ago
parent
commit
c31782d903
1 changed files with 3 additions and 2 deletions
  1. 3 2
      lisp/org.el

+ 3 - 2
lisp/org.el

@@ -5809,10 +5809,11 @@ prompted for."
 				'(display t invisible t intangible t))
 				'(display t invisible t intangible t))
 	t)))
 	t)))
 
 
-(defcustom org-src-fontify-natively nil
+(defcustom org-src-fontify-natively t
   "When non-nil, fontify code in code blocks."
   "When non-nil, fontify code in code blocks."
   :type 'boolean
   :type 'boolean
-  :version "24.1"
+  :version "24.4"
+  :package-version '(Org . "8.3")
   :group 'org-appearance
   :group 'org-appearance
   :group 'org-babel)
   :group 'org-babel)