branch: externals/org-modern commit 239c02aa99dc52755edf38d5e9c9e986683c4249 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Update example --- example.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/example.org b/example.org index 124a7bf30d..ec77689df6 100644 --- a/example.org +++ b/example.org @@ -41,8 +41,10 @@ TREPEATED: <2022-02-26 Sat 10:00 .+1d/2d> "Show the documentation for a random command." (interactive) (let ((commands)) - (mapatoms (lambda (s) (when (commandp s) (push s commands)))) - (describe-function (nth (random (length commands)) commands)))) + (mapatoms (lambda (s) + (when (commandp s) (push s commands)))) + (describe-function + (nth (random (length commands)) commands)))) #+end_src #+begin_src calc