Replace ":results silent" with ":eval never" where appropriate

This commit is contained in:
Gerard Vermeulen 2023-07-05 04:29:34 +02:00
parent bfb3d4a073
commit 4a3412e2b9
1 changed files with 4 additions and 4 deletions

View File

@ -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")