Explorar o código

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 %!s(int64=15) %!d(string=hai) anos
pai
achega
9c02bf4946
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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))))