Re: [O] BUG: unwanted ":" in org agenda tags-todo result lines

2018-05-28 Thread Rainer Stengele
Am 26.05.2018 um 12:32 schrieb Nicolas Goaziou: Hello, Rainer Stengele writes: Emacs : GNU Emacs 25.3.1 (x86_64-w64-mingw32) of 2017-09-17 Package: Org mode version 9.1.13 (release_9.1.13-763-g2621db @ c:/Users/rstengele/AppData/Roaming/.emacs.d/org/lisp/) I configured a minimal Emacs star

Re: [O] running a source code by name

2018-05-28 Thread Nick Dokos
"Julian M. Burgos" writes: > Dear list, > > I have an org file with an R source code block. I want to have a second > code block with an elisp call to run that first code. Something like this > > > #+begin_src emacs-lisp :results silent :tangle no > > ... Some elisp code to run the "myRcode" bl

Re: [O] [patch] Check org-structure-template-alist

2018-05-28 Thread Rasmus
Aaron Ecay writes: > Hi Rasmus, > > 2018ko maiatzak 27an, Rasmus-ek idatzi zuen: > > [...] > >> If there’s any better way to display the error > > org-display-warning? That’s great. Thanks! > [...] > >> + (mapconcat 'identity >> + '("Please update the entries of `%s'." >> +

Re: [O] running a source code by name

2018-05-28 Thread Berry, Charles
OK, I have to note that this will also do the job that the OP requested: #+begin_src emacs-lisp :results silent :var result=myRcode #+end_src although it seems a little strange to write an empty src block for its side effects. I suppose I should have suggested this in the first place: #+begin

[O] Issues with org-babel-detangle and :comments noweb

2018-05-28 Thread Frederick Giasson
Hi Everybody, I am trying to have noweb references working with org-babel-detangle. Let's use this example: ``` #+NAME: a #+BEGIN_SRC clojure (def a "a") #+END_SRC #+NAME: b #+BEGIN_SRC clojure (def a "b") #+END_SRC #+NAME: c #+BEGIN_SRC clojure (def a "c") #+END_SRC #+NAME: a #+BEGIN_SR

Re: [O] running a source code by name

2018-05-28 Thread Berry, Charles
> On May 28, 2018, at 7:35 AM, Eric S Fraga wrote: > > On Monday, 28 May 2018 at 11:13, Julian M. Burgos wrote: >> Dear list, >> >> I have an org file with an R source code block. I want to have a second >> code block with an elisp call to run that first code. Something like this >> >> >>

Re: [O] C++ is not accepted for SRC block evaluation

2018-05-28 Thread Aaron Ecay
Hi Nicolas, 2018ko maiatzak 27an, Nicolas Goaziou-ek idatzi zuen: [...] > > We probably need to implement a mapping between languages symbols and > files and use it in `org-babel-do-load-languages'. The implicit mapping > it uses currently has shortcomings. > > We could also leave it like this

Re: [O] unable to edit indirect-buffer in fundamental mode without losing pretty printing in base buffer org mode

2018-05-28 Thread Aaron Ecay
Hi Nicolas, 2018ko maiatzak 27an, Nicolas Goaziou-ek idatzi zuen: > > Aaron Ecay writes: > >> Of course, done in c32938b7f. I did not realize how the freeze for 9.2 >> was working. > > Thank you. > > BTW, I'm considering creating a "next" branch for pending patches that > I'm refraining to p

Re: [O] running a source code by name

2018-05-28 Thread Eric S Fraga
On Monday, 28 May 2018 at 11:13, Julian M. Burgos wrote: > Dear list, > > I have an org file with an R source code block. I want to have a second > code block with an elisp call to run that first code. Something like this > > > #+begin_src emacs-lisp :results silent :tangle no > > ... Some elisp

[O] ox-odt in Org 8.2.10 and 9.1.13: killed buffer is read-only

2018-05-28 Thread Adonay Felipe Nogueira
Make any .org file, and export it. The error is something like this: --8<---cut here---start->8--- Making completion list... LaTeX to MathML converter not available. Formatting LaTeX using verbatim Wrote /tmp/odt-21540L0A/meta.xml Using vacuous schema [2 times]

[O] running a source code by name

2018-05-28 Thread Julian M. Burgos
Dear list, I have an org file with an R source code block. I want to have a second code block with an elisp call to run that first code. Something like this #+begin_src emacs-lisp :results silent :tangle no ... Some elisp code to run the "myRcode" block. #+end_src #+NAME: myRcode #+beg in