branch: externals-release/org
commit a9af1faaa1fc6f2aa2457e355a8eb46ef4d1462d
Author: Sébastien Miquel <[email protected]>
Commit: Bastien <[email protected]>
org-src.el (org-edit-src-exit): Fix write-back-buf not getting killed
* lisp/org.el (org-edit-src-exit): Fix write-back-buf not getting
killed
---
lisp/org-src.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/org-src.el b/lisp/org-src.el
index b718e68..f7011d1 100644
--- a/lisp/org-src.el
+++ b/lisp/org-src.el
@@ -1255,8 +1255,8 @@ Throw an error if there is no such buffer."
(narrow-to-region beg end)
(replace-buffer-contents write-back-buf)
(goto-char (point-max))))
- (when (and expecting-bol (not (bolp))) (insert "\n")))
- (when write-back-buf (kill-buffer write-back-buf))))
+ (when (and expecting-bol (not (bolp))) (insert "\n")))))
+ (when write-back-buf (kill-buffer write-back-buf))
;; If we are to return to source buffer, put point at an
;; appropriate location. In particular, if block is hidden, move
;; to the beginning of the block opening line.