From ad62fc94e4e60f0d815421687e9b466ca49d3444 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Sun, 23 Nov 2008 00:35:20 +0100 Subject: [PATCH] Fix mixup about interactive and non-interactive elisp links. Patch by Christopher Suckling. --- lisp/ChangeLog | 5 +++++ lisp/org.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ce4573c83..212ce4079 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-11-22 Carsten Dominik + + * org.el (org-open-at-point): Fix mixup about interactive and + non-interactive elisp links. + 2008-11-21 Carsten Dominik * org-exp.el (org-export-preprocess-string): Allow one comment diff --git a/lisp/org.el b/lisp/org.el index 7a056146d..de4cea454 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -6877,8 +6877,8 @@ application the system uses for this file type." 'face 'org-warning)))) (message "%s => %s" cmd (if (equal (string-to-char cmd) ?\() - (call-interactively (read cmd)) - (eval (read cmd)))) + (eval (read cmd)) + (call-interactively (read cmd)))) (error "Abort")))) (t -- 2.11.4.GIT