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

2008-11-22 Thread Christopher Suckling
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 395..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
___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


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

2008-11-22 Thread Carsten Dominik

Indeed, thank you very much.

Fixed, thanks.

- Carsten

On Nov 22, 2008, at 5:22 PM, Christopher Suckling wrote:

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 395..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


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode