Skip to main content
Bumped by Community user
Bumped by Community user
Bumped by Community user
Bumped by Community user
edited tags
Link
Drew
  • 80.9k
  • 10
  • 125
  • 265
Source Link

How to suppress output of link with elisp function in org-mode?

When using elisp function in the link in org-mode, like

[[elisp:(func)][text]] 

after clicking the link, the function itself will be printed in *Message* buffer. How should I prevent it from being printed? I've tried

(let ((inhibit-output t)) (...)) 

but it doesn't work.