Browse Source

Move variable `org-protecting-blocks' to org.el

Carsten Dominik 16 years ago
parent
commit
dc5bc0d443
2 changed files with 5 additions and 5 deletions
  1. 0 5
      lisp/org-src.el
  2. 5 0
      lisp/org.el

+ 0 - 5
lisp/org-src.el

@@ -109,11 +109,6 @@ You may want to use this hook for example to turn off `outline-minor-mode'
 or similar things which you want to have when editing a source code file,
 but which mess up the display of a snippet in Org exported files.")
 
-(defvar org-protecting-blocks
-  '("src" "example" "latex" "ascii" "html" "docbook" "ditaa" "dot" "r" "R")
-  "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
-This is needed for font-lock setup.")
-
 ;;; Editing source examples
 
 (defvar org-src-mode-map (make-sparse-keymap))

+ 5 - 0
lisp/org.el

@@ -2771,6 +2771,11 @@ Use customize to modify this, or restart Emacs after changing it."
 	   (string :tag "HTML end tag")
 	   (option (const verbatim)))))
 
+(defvar org-protecting-blocks
+  '("src" "example" "latex" "ascii" "html" "docbook" "ditaa" "dot" "r" "R")
+  "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
+This is needed for font-lock setup.")
+
 ;;; Miscellaneous options
 
 (defgroup org-completion nil