Correctly indent BEGIN_SRC and END_SRC lines

* lisp/org.el (org-indent-region): BEGIN_SRC and END_SRC lines should
  not be considered part of the source block for the purposes of
  indentation.

TINYCHANGE
This commit is contained in:
Joost Diepenmaat 2013-10-25 11:08:46 +02:00 committed by Nicolas Goaziou
parent 2b3e01ef4f
commit da232c9711
1 changed files with 1 additions and 1 deletions

View File

@ -22155,7 +22155,7 @@ hierarchy of headlines by UP levels before marking the subtree."
(let ((line-end (org-current-line end)))
(goto-char start)
(while (< (org-current-line) line-end)
(cond ((org-in-src-block-p) (org-src-native-tab-command-maybe))
(cond ((org-in-src-block-p t) (org-src-native-tab-command-maybe))
(t (call-interactively 'org-indent-line)))
(move-beginning-of-line 2)))))