branch: externals/eev commit 68e9991e6087bc1c9fc6a5fd186ac39a37561cbb Author: Eduardo Ochs <eduardoo...@gmail.com> Commit: Eduardo Ochs <eduardoo...@gmail.com>
Mention ":results output" in `(find-org-intro)'. --- ChangeLog | 5 +++++ VERSION | 4 ++-- eev-intro.el | 11 +++++++---- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index ec98439..c1d52fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2019-11-11 Eduardo Ochs <eduardoo...@gmail.com> + + * eev-intro.el (find-org-intro): use \":results output\" (thx Ken + Mankoff) + 2019-11-04 Eduardo Ochs <eduardoo...@gmail.com> * eev-intro.el (find-org-intro): rewrote everything. diff --git a/VERSION b/VERSION index 0b5d362..d37bfea 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -Tue Nov 5 20:01:03 GMT 2019 -Tue Nov 5 17:01:03 -03 2019 +Mon Nov 11 14:19:25 GMT 2019 +Mon Nov 11 11:19:25 -03 2019 diff --git a/eev-intro.el b/eev-intro.el index 92e6d8b..c17e79b 100644 --- a/eev-intro.el +++ b/eev-intro.el @@ -19,7 +19,7 @@ ;; ;; Author: Eduardo Ochs <eduardoo...@gmail.com> ;; Maintainer: Eduardo Ochs <eduardoo...@gmail.com> -;; Version: 2019nov04 +;; Version: 2019nov11 ;; Keywords: e-scripts ;; ;; Latest version: <http://angg.twu.net/eev-current/eev-intro.el> @@ -9905,12 +9905,15 @@ these notes. You can execute a source block in Org and display its results with `C-c C-c'. See: -# (find-orgnode \"Working With Source Code\") +# (find-orgnode \"Working with source code\") # (find-orgnode \"Evaluating code blocks\") +# (find-orgnode \"Evaluating code blocks\" \":results output\") +# (find-orgnode \"Results of evaluation\" \":results output\") +# (find-orgnode \"results\" \"output\") Try it here: -#+BEGIN_SRC sh +#+BEGIN_SRC sh :results output seq 200 204 #+END_SRC @@ -9920,7 +9923,7 @@ Compare that with: and compare -#+BEGIN_SRC python +#+BEGIN_SRC python :results output def square (x): return x*x