Re: [O] Enhancement: Changing default setting of source block header line switches [9.0.5 (9.0.5-elpa @ /home/naehring/.emacs.d/elpa/org-20170210/)]

2017-07-06 Thread Rasmus
Tobias Zawada writes: > At first I would like to ask whether it is already possible to change > the default settings of the source block header line switches. Couldn't you use #+property headers? E.g. #+PROPERTY: header-args:R :session *R* See: http://orgmode.org/org.html#Using-heade

Re: [O] Enhancement: Changing default setting of source block header line switches [9.0.5 (9.0.5-elpa @ /home/naehring/.emacs.d/elpa/org-20170210/)]

2017-07-06 Thread Tobias Zawada
Dear Rasmus, thanks for the fast reply. > Rasmus wrote on July, 6th 2017, 09:03: > > Tobias Zawada writes: > > > At first I would like to ask whether it is already possible to change > > the default settings of the source block header line switches. > > Couldn't you use #+property headers? >

[O] git question

2017-07-06 Thread Rasmus
Hi, Re commit acabacaa5689f0644a47edae7c66bbdd68418194 http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=acabacaa5689f0644a47edae7c66bbdd68418194 This should probably have gone to maint as it is a bugfix. For some reason I pushed the commit to master. Could I now use git cherry-pick to

Re: [O] bug in tramp?

2017-07-06 Thread Michael Albinus
Thomas Holst writes: > Hi Michael, Hi Thomas, > The culprit was that I use org-mode and tramp from git. Now I set the > load-path for org at the very beginning of my .emacs file but for > tramp further down. As I understand org requires tramp at some point. > So it loaded tramp from emacs but n

Re: [O] Emacs-orgmode Digest, Vol 137, Issue 4

2017-07-06 Thread Eric S Fraga
Philosophically, #+call: or call_ are very different to noweb. The latter is really only about insertion of code as is somewhere else and it can be nested (see contrived example attached). The former is about invoking a babel src block with particular arguments and so is much more flexible. That

[O] [PATCH] Fixed bug in custom timestamps for date ranges.

2017-07-06 Thread Jan Seeger
Changed org-activate-dates to activate custom timestamps for both dates in date ranges. Formerly, only the second date would be activated. The reason was a misplaced "if". Replaced it with "when". --- lisp/org.el | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lisp/org.

Re: [O] git question

2017-07-06 Thread Kaushal Modi
On Thu, Jul 6, 2017, 3:37 AM Rasmus wrote: > Hi, > > Re commit acabacaa5689f0644a47edae7c66bbdd68418194 > > > http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=acabacaa5689f0644a47edae7c66bbdd68418194 > > This should probably have gone to maint as it is a bugfix. For some > reason I pushed the

Re: [O] org-plus-contrib, where is library-of-babel.org?

2017-07-06 Thread Kaushal Modi
Hello Tom, On Thu, Jul 6, 2017, 12:03 AM Thomas S. Dye wrote: > > Org-plus-contrib from ELPA doesn't have the doc folder and is likewise > missing the library-of-babel.org file. > My response was only to "Where has the Library of Babel gone?" :) I don't know the reasoning behind why that file

Re: [O] [PATCH] Fixed bug in custom timestamps for date ranges.

2017-07-06 Thread Kaushal Modi
Hi Jan, I haven't reviewed the patch functionality, but I see that it is missing a commit message. Please review this to learn about the required format for commit messages: http://orgmode.org/worg/org-contribute.html#commit-messages Thanks. On Thu, Jul 6, 2017, 5:10 AM Jan Seeger wrote: > Ch

Re: [O] git question

2017-07-06 Thread Kyle Meyer
Rasmus writes: > Hi, > > Re commit acabacaa5689f0644a47edae7c66bbdd68418194 > > > http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=acabacaa5689f0644a47edae7c66bbdd68418194 > > This should probably have gone to maint as it is a bugfix. For some > reason I pushed the commit to master. > >

[O] [PATCH] org.el: Fix custom timestamps for date ranges

2017-07-06 Thread Jan Seeger
* org.el (org-activate-dates): Change `org-activate-dates' to activate custom timestamps for both dates in date ranges. Formerly, only the second date would be activated. The reason was a misplaced `if'. Replaced it with `when'. Also added doc comments. TINYCHANGE --- lisp/org.el | 8 +--- 1

Re: [O] org-plus-contrib, where is library-of-babel.org?

2017-07-06 Thread Thomas S. Dye
Aloha Kaushal Modi, Kaushal Modi writes: > Hello Tom, > > On Thu, Jul 6, 2017, 12:03 AM Thomas S. Dye wrote: > >> >> Org-plus-contrib from ELPA doesn't have the doc folder and is likewise >> missing the library-of-babel.org file. >> > > My response was only to "Where has the Library of Babel gon

Re: [O] Patch on org-agenda-cmp-user-defined not called

2017-07-06 Thread Nicolas Goaziou
Hello, Li Zhuo writes: > Subject: [PATCH] fix `org-agenda-cmp-user-defined` not called when user has > defined it > > --- > lisp/org-agenda.el | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el > index 652fada..3a0248e 100644 >

Re: [O] Parsing property drawers in subtree scope exports

2017-07-06 Thread Kaushal Modi
On Sat, Jul 1, 2017 at 12:08 PM Nicolas Goaziou wrote: > Kaushal Modi writes: > > > I didn't follow that. Do you mean that the "EXPORT_" is a special > > prefix? > > I do. See (info "(org) Export settings"). > Thanks! Sorry for not reading that earlier. For reference: > When exporting sub-tree

Re: [O] Parsing property drawers in subtree scope exports

2017-07-06 Thread Nicolas Goaziou
Hello, Kaushal Modi writes: > Thanks. That works. Just curious though.. if one specifies certain keywords > to be exporter specific keywords in the backend definition in > :options-alist, it is evident that those keywords are specifically for > export. Should the requirement to have "EXPORT_" pr

Re: [O] bug in tramp?

2017-07-06 Thread Nicolas Goaziou
Hello, Michael Albinus writes: > I believe it is unfortune in Org to require Tramp while > loading. Instead, it shall declare used Tramp functions. I removed the sole (require 'tramp) I could find in the code base. Hopefully it solves the problem. Regards, -- Nicolas Goaziou

Re: [O] [PATCH] org.el: Fix custom timestamps for date ranges

2017-07-06 Thread Nicolas Goaziou
Hello, Jan Seeger writes: > * org.el (org-activate-dates): Change `org-activate-dates' to activate > custom timestamps for both dates in date ranges. Formerly, only the > second date would be activated. The reason was a misplaced > `if'. Replaced it with `when'. Also added doc comments. Applied

Re: [O] org-protocol documentation

2017-07-06 Thread Nicolas Goaziou
Hello, Mario Martelli writes: > I started this whole thing because I wanted to learn elisp. But > learning texinfo en-passant is nice :) Thank you for your patch. I re-worded the documentation based on your work. I also added more index entries. Since I'm not using Org Protocol, I may fall wid

Re: [O] Should i upgrade new emacs?

2017-07-06 Thread Kaushal Modi
On Thu, Jul 6, 2017 at 10:10 PM Byung-Hee HWANG (황병희, 黃炳熙) < soyeo...@doraji.xyz> wrote: > Hello, i'm new to orgmode. Welcome to the fold! > Today i did buy org mode book [The Org Mode 7 Reference > Manaual That's a really old Org version (version 7.3, Nov 2010). I hope you don't get confuse

[O] [PATCH] allow users to customize string in org-agenda-time-grid

2017-07-06 Thread Alex Branham
Hello, This small patch allows users to customize the string to display after the time in the agenda view. I think I formatted the patch correctly, but please let me know if I missed something, Alex >From 3e1a9a4a0cde14e1496c355028c

Re: [O] [PATCH 2/2] org-refile: Fix inconsistency when listing refile targets

2017-07-06 Thread Allen Li
Yes, 2906e50177d47 is needed on maint. However, my understanding is that on maint we still escape filesystem slashes in the outline path? If so, org-protect-path will be needed around the file-truename in 2906e50177d4 My workflow recently changed such that I no longer need to set org-refile-use-o