[O] Release Org 9.2.3

2019-04-01 Thread Bastien
Hi all, Org 9.2.3, a bugfix release, is out. Enjoy! https://orgmode.org -- Bastien

Re: [O] Two unexpected failures in `make test'

2019-04-01 Thread Nick Dokos
Nick Dokos writes: > Running `make test' on the current git version () showed two > unexpected failures: > I forgot to fill in the current git version: (release_9.2.2-341-ga9d3ea). -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-on

Re: [O] orgalist-mode: wrong indentation in message mode after recent change in emacs

2019-04-01 Thread Basil L. Contovounesios
[CCing Stefan as the nadvice.el expert.] Gregor Zattler writes: > Dear org-mode developers, hello Nicolas, > I use orgalist-mode while writing emails in > notmuch-message-mode. Today I updated emacs (from git), and > since then, the second line of a paragraph get's indented >

[O] Two unexpected failures in `make test'

2019-04-01 Thread Nick Dokos
Running `make test' on the current git version () showed two unexpected failures: == Ran 816 tests, 814 results as expected, 2 unexpected (2019-04-01 16:35:17-0400, 22.330179 sec) 11 expected failures 2 unexpected results: FAILED ob-emacs-lisp/dynamic-lexical-edit FAILED test

Re: [O] Python source block and :dir header arg

2019-04-01 Thread Joao Cortes
Looking at org-babel-execute-src-block, It seems the only way to get the the intended behavihour is adding :mkdirp "yes" or some other value that gives a true value to the result of the =and= call in the following snippet. This is the relevant code at ob-core.el, starting at line 681. #+begin_src

Re: [O] Bug: Entries with diary-sexps in "scheduled" not exported properly to calendar file (.ics file)

2019-04-01 Thread Wanrong Lin
I just wrote a function to do it, and hope it can help other people with similar needs: ;; example: (dates-from-diary-sexp "2019-04-01" "2019-09-01" "(diary-float t 1 2)") ;; => ((8 12 2019) (7 8 2019) (6 10 2019) (5 13 2019) (4 8 2019)) (defun dates-from-diary-sexp (start end diary-sexp)   "G

Re: [O] Python source block and :dir header arg

2019-04-01 Thread John Kitchin
You might need to provide some additional information about your setup (org-version, etc.). This works for me in org 9.1.9. John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268

[O] Python source block and :dir header arg

2019-04-01 Thread Joao Cortes
Consider the following python source block, #+begin_src python :results output : session :dir ./run import os; cwd = os.getcwd() print(cwd) #+end_src The dir header arg should change the directory used to run the session, in this case to the directory "../base/r

[O] orgalist-mode: wrong indentation in message mode after recent change in emacs

2019-04-01 Thread Gregor Zattler
Dear org-mode developers, hello Nicolas, I use orgalist-mode while writing emails in notmuch-message-mode. Today I updated emacs (from git), and since then, the second line of a paragraph get's indented (and succeeding lines too). As demonstrated with this email. While I writ

Re: [O] local variables to initialize org buffer?

2019-04-01 Thread Lawrence Bottorff
I've got this in my config.org , which is called by my init.el: #+begin_src emacs-lisp (defun borgauf/execute-startup-block () (interactive) (progn (org-babel-goto-named-src-block "startup") (org-babel-execute-src-block))) #+end_src then in my org-mode file I have this at the bottom:

Re: [O] local variables to initialize org buffer?

2019-04-01 Thread Berry, Charles
> On Mar 31, 2019, at 8:59 PM, Lawrence Bottorff wrote: > > Sure, but how should it be implemented? # Local Variables: # eval: (org-babel-load-file (buffer-file-name)) # End: or if you want to follow Eric's suggestion, something like: #+name: startup #+begin_src emacs-lisp :tangle no

Re: [O] table: vmean and select a column

2019-04-01 Thread Uwe Brauer
>>> "ESF" == Eric S Fraga writes: > On Monday, 1 Apr 2019 at 09:15, Uwe Brauer wrote: >> Hi >> >> Vmean and friends are great, but it would be very convenient if I could >> just could mark a column or parts of it and run vmean on that selection. >> >> Right now I do this explicitly like: >> @

Re: [O] table: vmean and select a column

2019-04-01 Thread Eric S Fraga
On Monday, 1 Apr 2019 at 09:15, Uwe Brauer wrote: > Hi > > Vmean and friends are great, but it would be very convenient if I could > just could mark a column or parts of it and run vmean on that selection. > > Right now I do this explicitly like: > @40$9=vmean(@2$9..@37$9);f1 > > (vmean($9) does

[O] table: vmean and select a column

2019-04-01 Thread Uwe Brauer
Hi Vmean and friends are great, but it would be very convenient if I could just could mark a column or parts of it and run vmean on that selection. Right now I do this explicitly like: @40$9=vmean(@2$9..@37$9);f1 (vmean($9) does not work) Any idea when or whether such a feature will be impl