瀏覽代碼

babel: more robust newline regexp in `org-babel-comint-with-output'

* contrib/babel/lisp/org-babel-comint.el (org-babel-comint-with-output):
  Placing a more general regexp substitution for matching newlines
  returned by comint.  This new option should definitely cover all
  cases.
Eric Schulte 15 年之前
父節點
當前提交
9c02bf4946
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      contrib/babel/lisp/org-babel-comint.el

+ 2 - 1
contrib/babel/lisp/org-babel-comint.el

@@ -97,7 +97,8 @@ during execution of body."
        (if (and ,remove-echo
 		(string-match
 		 (replace-regexp-in-string
-		  "\n" "\r\n" (regexp-quote ,full-body)) string-buffer))
+		  "\n" "[\r\n]+" (regexp-quote ,full-body))
+		 string-buffer))
            (setq raw (substring string-buffer (match-end 0))))
        (split-string string-buffer comint-prompt-regexp))))