Re: [O] [PATCH] org.el: Fix indentation in lists after blocks with special env

2017-05-19 Thread Nicolas Goaziou
Hello, Tim Stewart writes: > * lisp/org.el (org--get-expected-indentation): Fix indentation within > lists after blocks that support a special editing environment. > > Testing shows that the indentation within lists is incorrect after > `example-block', `export-block', and `source-block'. The

Re: [O] [Patch] Fix handling of variable capture location

2017-05-19 Thread Nicolas Goaziou
Hello, Yuri Lensky writes: > I now understand what you mean by the second call to symbol-value not being > needed. The previous behavior only chose this "branch" of the cond if > symbol-value was not nil. To keep this behavior but only have one call to > symbol-value, why not change to (keep the

[O] [PATCH] org.el: Fix indentation in lists after blocks with special env

2017-05-19 Thread Tim Stewart
* lisp/org.el (org--get-expected-indentation): Fix indentation within lists after blocks that support a special editing environment. Testing shows that the indentation within lists is incorrect after `example-block', `export-block', and `source-block'. The logic falls through and makes a recurs

Re: [O] [Patch] Fix handling of variable capture location

2017-05-19 Thread Yuri Lensky
Thanks! I now understand what you mean by the second call to symbol-value not being needed. The previous behavior only chose this "branch" of the cond if symbol-value was not nil. To keep this behavior but only have one call to symbol-value, why not change to (keep the symbol-value in the cond as

[O] org-refresh-stats-properties: Stack overflow in regexp matcher

2017-05-19 Thread Kevin Zettler
Apologies if this is a duplicate. I first sent when I wasn't registered with the mailing list. Looks like org Gmane is down http://news.gmane.org/gmane.emacs.orgmode I get a 404. I suddenly am unable to open my org agenda. Invoking ~C-a~ and selecting any agenda command results in ~org-refresh-s

Re: [O] possible bug exporting blocks?

2017-05-19 Thread John Kitchin
thanks! John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin http://kitchingroup.cheme.cmu.edu On Fri, May 19, 2017 at 10:30 AM, Nicolas Goaziou wrote: >

Re: [O] possible bug exporting blocks?

2017-05-19 Thread Nicolas Goaziou
Hello, John Kitchin writes: > If I export this block to org (C-c C-e O O): > > #+begin: exercise > #+ipynb-newcell > > *Exercise 1* #+end > > I get this: > > #+BEGIN: exercisenil > #+ipynb-newcell > > *Exercise 1* > #+END: > > there is an extra nil at the end of the first line. That seems like a

Re: [O] [Patch] Fix handling of variable capture location

2017-05-19 Thread Nicolas Goaziou
Hello, Yuri Lensky writes: > The second call is indeed needed. AFAICT, it isn't. (cond ('foo) (t nil)) => 'foo > This is the case fixed by the patch: > > (setq org-default-notes-file (expand-file-name "~/docs/notes.org")) > (setq org-capture-templates '(("t" "Todo" entry (file+olp > org-d

[O] possible bug exporting blocks?

2017-05-19 Thread John Kitchin
If I export this block to org (C-c C-e O O): #+begin: exercise #+ipynb-newcell *Exercise 1* #+end I get this: #+BEGIN: exercisenil #+ipynb-newcell *Exercise 1* #+END: there is an extra nil at the end of the first line. That seems like a bug, does anyone else get this? I am running org 9.0.5.

Re: [O] Bug: org-clocktable-write-default fails to display properties [9.0.7 (9.0.7-elpaplus @ /home/fvaresi/.emacs.d/elpa/org-plus-contrib-20170515/)]

2017-05-19 Thread Nicolas Goaziou
Hello, Fernando Varesi writes: > I'm trying to create a clocktable with the following header: > > #+BEGIN: clocktable :scope file-with-archives :tstart "2017-05-17 14:00" > :tend "" :link t :fileskip0 t :properties ("TODO") > > This should display every item with the TODO label (which was remov