org-src.el (org-edit-src-exit): Don't add indentation on empty lines

* org-src.el (org-edit-src-exit): Don't add indentation on
empty lines.

TINYCHANGE
This commit is contained in:
Arun Persaud 2014-03-12 19:08:17 +01:00 committed by Bastien Guerry
parent f0e5683a12
commit 9323857411

View file

@ -737,8 +737,10 @@ with \",*\", \",#+\", \",,*\" and \",,#+\"."
(unless (or single preserve-indentation (= total-nindent 0))
(setq indent (make-string total-nindent ?\ ))
(goto-char (point-min))
(while (re-search-forward "^" nil t)
(replace-match indent)))
(while (re-search-forward "^" nil t)
(if (not (looking-at "$"))
(replace-match indent)
(forward-char 1))))
(if (org-bound-and-true-p org-edit-src-picture)
(setq total-nindent (+ total-nindent 2)))
(setq code (buffer-string))