mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-26 07:33:39 +00:00
Fix mixup about interactive and non-interactive elisp links.
Patch by Christopher Suckling.
This commit is contained in:
parent
5810f0a8c9
commit
ad62fc94e4
@ -1,3 +1,8 @@
|
||||
2008-11-22 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.el (org-open-at-point): Fix mixup about interactive and
|
||||
non-interactive elisp links.
|
||||
|
||||
2008-11-21 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-exp.el (org-export-preprocess-string): Allow one comment
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user