emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] [Patch] Fixes elisp links in org files


From: Christopher Suckling
Subject: [Orgmode] [Patch] Fixes elisp links in org files
Date: Sat, 22 Nov 2008 16:22:32 +0000

Following elisp links in org files has been broken since commit 4954225ce37. 

This small patch fixes them. 

Best wishes,

Christopher

diff --git a/lisp/org.el b/lisp/org.el
index 3953333..6d52dd9 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]