Quellcode durchsuchen

ob-C: Fix command to perform on remote host

* lisp/ob-C.el (org-babel-C-execute): Make sure name of compiled
program is converted to local representation before sending it to the
shell on remote host.

The problem was when one would try to evaluate C source code block in
the file on remote host.  Compilation would go normally, then
evaluation would fail with error like "/bin/sh: unable to find file".

TINYCHANGE
Иван Трусков vor 7 Jahren
Ursprung
Commit
411e9e0816
1 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen
  1. 3 2
      lisp/ob-C.el

+ 3 - 2
lisp/ob-C.el

@@ -125,7 +125,8 @@ or `org-babel-execute:C++' or `org-babel-execute:D'."
 			(pcase org-babel-c-variant
 			  (`c ".c") (`cpp ".cpp") (`d ".d"))))
 	 (tmp-bin-file			;not used for D
-	  (org-babel-temp-file "C-bin-" org-babel-exeext))
+	  (org-babel-process-file-name
+	   (org-babel-temp-file "C-bin-" org-babel-exeext)))
 	 (cmdline (cdr (assq :cmdline params)))
 	 (cmdline (if cmdline (concat " " cmdline) ""))
 	 (flags (cdr (assq :flags params)))
@@ -151,7 +152,7 @@ or `org-babel-execute:C++' or `org-babel-execute:D'."
 		(pcase org-babel-c-variant
 		  (`c org-babel-C-compiler)
 		  (`cpp org-babel-C++-compiler))
-		(org-babel-process-file-name tmp-bin-file)
+		tmp-bin-file
 		flags
 		(org-babel-process-file-name tmp-src-file)
 		libs)