mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-25 07:27:57 +00:00
ol: Fix formatting in org-link--open-shell
* lisp/ol.el (org-link--open-shell): The %S token in the format string causes the propertization to be printed as a structure, instead of styling the path string. This is clearly not the intended behaviour. Reported by Max Nikulin <manikulin@gmail.com> in https://list.orgmode.org/2c23e039-7215-3d6e-13a2-cb244563f347@gmail.com
This commit is contained in:
parent
6ee45518f3
commit
e7ea951ac9
@ -1377,7 +1377,7 @@ PATH is the command to execute, as a string."
|
||||
(string-match-p org-link-shell-skip-confirm-regexp path))
|
||||
(not org-link-shell-confirm-function)
|
||||
(funcall org-link-shell-confirm-function
|
||||
(format "Execute %S in shell? "
|
||||
(format "Execute %s in shell? "
|
||||
(org-add-props path nil 'face 'org-warning))))
|
||||
(let ((buf (generate-new-buffer "*Org Shell Output*")))
|
||||
(message "Executing %s" path)
|
||||
|
Loading…
Reference in New Issue
Block a user