From 569ba0eee847406b70b345cae6e3e696f027a621 Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Tue, 7 Sep 2010 12:42:15 -0400 Subject: [PATCH] Turn off code fontification by default; supply customize interface * org.el (org-src-fontify-natively): Set to nil by default. Supply cutomize interface. --- lisp/org.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 36b329c83..dfd6d79ac 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5022,8 +5022,11 @@ will be prompted for." '(display t invisible t intangible t)) t))) -(defvar org-src-fontify-natively t - "When non-nil, fontify code in code blocks.") +(defcustom org-src-fontify-natively nil + "When non-nil, fontify code in code blocks." + :type 'boolean + :group 'org-appearance + :group 'org-babel) (defun org-fontify-meta-lines-and-blocks (limit) "Fontify #+ lines and blocks, in the correct ways."