From b9270bf46f1470dbe679c2dc3e5f34e175cc0ab6 Mon Sep 17 00:00:00 2001 From: Jambunathan K Date: Mon, 3 Sep 2012 02:57:13 +0530 Subject: [PATCH] * lisp/org.el (org-open-file): Print shell command used to open file --- lisp/org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index f744193bd..3ac562276 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -10545,9 +10545,9 @@ If the file does not exist, an error is thrown." (setq match-index (+ match-index 1))))) (save-window-excursion + (message "Running %s...done" cmd) (start-process-shell-command cmd nil cmd) - (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait)) - )) + (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait)))) ((or (stringp cmd) (eq cmd 'emacs)) (funcall (cdr (assq 'file org-link-frame-setup)) file)