瀏覽代碼

org-babel: make tangling honour org-src-preserve-indentation

This allows python code to be tangled (i.e. extracted) correctly by
org-babel-tangle. Previously, if e.g. methods of a class were in
separate blocks, then they would be incorrectly indented as top-level
functions in the tangled output.
Dan Davison 15 年之前
父節點
當前提交
e079584e56
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      contrib/babel/lisp/org-babel.el

+ 3 - 2
contrib/babel/lisp/org-babel.el

@@ -366,13 +366,14 @@ may be specified in the properties of the current outline entry."
 (defun org-babel-parse-src-block-match ()
   (let* ((lang (org-babel-clean-text-properties (match-string 1)))
          (lang-headers (intern (concat "org-babel-default-header-args:" lang)))
-         (body (org-babel-clean-text-properties (match-string 4))))
+         (body (org-babel-clean-text-properties (match-string 4)))
+	 (preserve-indentation org-src-preserve-indentation))
     (list lang
           ;; get src block body removing properties, protective commas, and indentation
           (with-temp-buffer
             (save-match-data
               (insert (org-babel-strip-protective-commas body))
-              (org-do-remove-indentation)
+	      (unless preserve-indentation (org-do-remove-indentation))
               (buffer-string)))
 	  (org-babel-merge-params
 	   org-babel-default-header-args