0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-15 19:46:26 +00:00

DONE set =:results silent= when eval with prefix argument

This commit is contained in:
Eric Schulte 2009-05-22 16:23:52 -07:00
parent 92d070c41e
commit 19317f9b63
2 changed files with 8 additions and 3 deletions

View file

@ -34,8 +34,9 @@
(defun litorgy-execute-src-block-maybe () (defun litorgy-execute-src-block-maybe ()
"Detect if this is context for a litorgical src-block and if so "Detect if this is context for a litorgical src-block and if so
then run `litorgy-execute-src-block'." then run `litorgy-execute-src-block'."
(interactive)
(let ((info (litorgy-get-src-block-info))) (let ((info (litorgy-get-src-block-info)))
(if info (progn (litorgy-execute-src-block nil info) t) nil))) (if info (progn (litorgy-execute-src-block current-prefix-arg info) t) nil)))
(add-hook 'org-ctrl-c-ctrl-c-hook 'litorgy-execute-src-block-maybe) (add-hook 'org-ctrl-c-ctrl-c-hook 'litorgy-execute-src-block-maybe)

View file

@ -3,8 +3,7 @@
#+SEQ_TODO: TODO PROPOSED | DONE DEFERRED REJECTED #+SEQ_TODO: TODO PROPOSED | DONE DEFERRED REJECTED
#+STARTUP: oddeven #+STARTUP: oddeven
* Tasks [14/26] * Tasks [15/26]
** TODO set =:results silent= when eval with prefix argument
** TODO (simple caching) check for named results before source blocks ** TODO (simple caching) check for named results before source blocks
see the TODO comment in [[file:litorgy/litorgy-ref.el::TODO%20This%20should%20explicitly%20look%20for%20resname%20lines%20before][litorgy-ref.el#litorgy-ref-resolve-reference]] see the TODO comment in [[file:litorgy/litorgy-ref.el::TODO%20This%20should%20explicitly%20look%20for%20resname%20lines%20before][litorgy-ref.el#litorgy-ref-resolve-reference]]
@ -230,6 +229,11 @@ mean(mean(vec))
out some lines, and then convert it to litorgy format for out some lines, and then convert it to litorgy format for
posterity. Same for a shell session either in a *shell* buffer, or posterity. Same for a shell session either in a *shell* buffer, or
pasted from another terminal emulator. And python of course. pasted from another terminal emulator. And python of course.
** DONE set =:results silent= when eval with prefix argument
#+begin_src emacs-lisp
'silentp
#+end_src
** DONE results-type header (vector/file) [3/3] ** DONE results-type header (vector/file) [3/3]
In response to a point in Dan's email. We should allow the user to In response to a point in Dan's email. We should allow the user to
force scalar or vector results. This could be done with a header force scalar or vector results. This could be done with a header