summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Berry <ccberry@ucsd.edu>2016-04-23 17:01:37 -0700
committerCharles Berry <ccberry@ucsd.edu>2016-04-23 17:03:26 -0700
commitda4db33132e83ed1b2cd4b8704d1865890f6f257 (patch)
tree161c6bc7866cf9ee0ef220e4524e119c11b8ff94
parente1d6a43c8e9d73cd1e157531c3402e4e6473f922 (diff)
downloadorg-mode-da4db33132e83ed1b2cd4b8704d1865890f6f257.tar.gz
ob-comint.el: Revert yet another change
* ob-comint.el (org-babel-comint-eval-invisibly-and-wait-for-file): Remove the `(ignore v)'. This creates a byte-compiler warning for supposedly unused `v', but allows remote execution.
-rw-r--r--lisp/ob-comint.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/ob-comint.el b/lisp/ob-comint.el
index 123e42a..c7c0327 100644
--- a/lisp/ob-comint.el
+++ b/lisp/ob-comint.el
@@ -152,8 +152,7 @@ FILE exists at end of evaluation."
;; From Tramp 2.1.19 the following cache flush is not necessary
(if (file-remote-p default-directory)
(let (v)
- (ignore v)
- (with-parsed-tramp-file-name default-directory nil
+ (with-parsed-tramp-file-name default-directory v
(tramp-flush-directory-property v ""))))
(while (not (file-exists-p file)) (sit-for (or period 0.25))))