소스 검색

fix 5f0a9cca3 missing space

* lisp/ob-core.el (org-babel-demarcate-block): Replace wrong newline
with missing space.
stardiviner 4 년 전
부모
커밋
758b039c04
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/ob-core.el

+ 1 - 1
lisp/ob-core.el

@@ -1908,7 +1908,7 @@ region is not active then the point is demarcated."
 			(if (looking-at "^") "" "\n")
 			indent (if upper-case-p "#+END_SRC\n" "#+end_src\n")
 			(if arg stars indent) "\n"
-			indent (if upper-case-p "#+BEGIN_SRC\n" "#+begin_src\n")
+			indent (if upper-case-p "#+BEGIN_SRC " "#+begin_src ")
 			lang
 			(if (> (length headers) 1)
 			    (concat " " headers) headers)