From 4a3412e2b98948d1c4f992364f1e6d7ff36d79ef Mon Sep 17 00:00:00 2001 From: Gerard Vermeulen Date: Wed, 5 Jul 2023 04:29:34 +0200 Subject: [PATCH] Replace ":results silent" with ":eval never" where appropriate --- README.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 82620b6..e840170 100644 --- a/README.org +++ b/README.org @@ -2820,7 +2820,7 @@ SCHEDULED: <2023-06-30 Fri> #+caption[Find valid entries for =org-babel-load-languages=]: #+caption: Find valid entries for =org-babel-load-languages=. #+name: lst:valid-org-babel-load-languages-entries -#+header: :wrap "src emacs-lisp -n :results silent :tangle no" +#+header: :wrap "src emacs-lisp -n :eval never :tangle no" #+begin_src emacs-lisp -n :exports both :results value pp :tangle no (defun all-org-babel-execute-fns () "Find `ob-LANGUAGE' files in Org defining `org-babel-execute:LANGUAGE'. @@ -2855,7 +2855,7 @@ Return a list of items where the filename is the `car' of each item and the #+caption[Org Babel libraries with =org-babel-execute:language= functions]: #+caption: Org Babel libraries with =org-babel-execute:language= functions. #+RESULTS: lst:valid-org-babel-load-languages-entries -#+begin_src emacs-lisp -n :results silent :tangle no +#+begin_src emacs-lisp -n :eval never :tangle no (("ob-C" "C" "D" "C++" "cpp") ("ob-R" "R") ("ob-awk" "awk") @@ -2900,7 +2900,7 @@ Return a list of items where the filename is the `car' of each item and the #+caption[Find active Org Babel languages]: #+caption: Find active Org Babel languages. #+name: lst:org-babel-active-languages -#+header: :wrap "src emacs-lisp -n :results silent :tangle no" +#+header: :wrap "src emacs-lisp -n :eval never :tangle no" #+begin_src emacs-lisp -n :exports both :results value pp :tangle no (defun org-babel-active-languages () (let ((result '("conf" "text" "toml"))) @@ -2923,7 +2923,7 @@ Return a list of items where the filename is the `car' of each item and the #+caption[Active Org Babel languages]: #+caption: Active Org Babel languages. #+RESULTS: lst:org-babel-active-languages -#+begin_src emacs-lisp -n :results silent :tangle no +#+begin_src emacs-lisp -n :eval never :tangle no (("C") ("C++") ("D")