Re: [O] Can't remove deadline or schedule in bulk mode

2017-08-10 Thread Adam Porter
Julien Cubizolles writes: > In an agenda buffer, C-u B d should clear the deadline of the entries > marked the way C-u does on a single entry. I think it's what it used to > do some time ago. Instead, I get: > > org-agenda-deadline: Invalid function: 4 FWIW, works for me

Re: [O] remove TODO state in agenda view

2017-08-10 Thread Adam Porter
Julien Cubizolles writes: > Got it: the problem occurs when trying to clear the TODO state of > several entries through a bulk action: > > * mark several entries > > * "B t" doesn't offer to clear the TODO state with space like "t" does > on a single entry. Yes, I guess

[O] Unbundling contrib from org-plus-contrib package?

2017-08-10 Thread Simon Guest
Hiding in the ox-taskjuggler thread is a discussion of some of the problems caused by having contrib bundled up in the org-plus-contrib package. (See that thread for the details.) However, a general question remains, as asked by Tim Cross, whom I will quote if I may: There are also some other

Re: [O] [PATCH] Fix two false failures in org's test suite

2017-08-10 Thread Nicolas Goaziou
Hello, "Galen Menzel" writes: > org-deadline-close-p interprets its timestamp-string argument as being > in the local time zone (i.e., the call to encode-time that results > from calling org-deadline-close-p always has a nil zone argument). > Since we are using

Re: [O] Bug: Beamer export error

2017-08-10 Thread Nicolas Goaziou
Hello, Rasmus writes: > It should be fixed by commit 323fc95b4. Thank you. Regards, -- Nicolas Goaziou

[O] [PATCH] lisp/org.el: make org-open-at-point handle parens in encoded urls correctly

2017-08-10 Thread Marc Ihm
Hi, the attached patch changes org-open-at-point in org.el: Currently, when opening an url the function org-open-at-point uses the variable path, which is the result of applying org-link-unescape on the original url. Thus, all special chars like '() "' etc. which were originally encoded like

Re: [O] Bug: Beamer export error

2017-08-10 Thread Rasmus
Nicolas Goaziou writes: > Hello, > > Rasmus writes: > >> This is caused by this commit, which changes how org-split-string works. >> >> f776e65373fa135fffb51e201698823fbfb3865b >> >> Before (org-split-string "" ",") would return ‘nil’. Now it returns

Re: [O] Property header :session... really working?

2017-08-10 Thread Igor Sosa Mayor
"Berry, Charles" writes: > > If you have more than one session running, it is a consequence of ESS's > handling of multiple sessions. Yes, I have. That explains at least a little bit the issue... Thanks for your very informative answer. -- :: Igor Sosa Mayor ::

Re: [O] Property header :session... really working?

2017-08-10 Thread Berry, Charles
> On Aug 10, 2017, at 5:54 AM, Igor Sosa Mayor > wrote: > > Hi, > > I have in an org file the following > > #+PROPERTY: header-args:R :session *R-cities* > > I open a R session, rename it to *R-cities*, open the org file. If I go > then to a babel block and send

Re: [O] LaTeX Export

2017-08-10 Thread Scott Randby
On 08/10/2017 11:35 AM, Richard Lawrence wrote:> Hi Scott, > > Scott Randby writes: > >> I tried this in the properties associated with a subtree: >> :export_latex_header: >>

Re: [O] LaTeX Export

2017-08-10 Thread Richard Lawrence
Hi Scott, Scott Randby writes: I tried this in the properties associated with a subtree: :export_latex_header: \hypersetup{pdfauthor={foo},pdftitle={foo},pdfsubject={foo},pdfkeywords={foo},pdfproducer={foo},pdfcreator={foo}} Unfortunately, all the other LaTeX headers

Re: [O] remove TODO state in agenda view

2017-08-10 Thread Julien Cubizolles
Julien Cubizolles writes: > Adam Porter writes: > >> Julien Cubizolles writes: >> >>> Choosing "space" when changing the TODO state of an entry with C-c C-t >>> in an org buffer clears the TODO state. However it doesn't work in

[O] Property header :session... really working?

2017-08-10 Thread Igor Sosa Mayor
Hi, I have in an org file the following #+PROPERTY: header-args:R :session *R-cities* I open a R session, rename it to *R-cities*, open the org file. If I go then to a babel block and send it to the R session with C-c C-c it is sent to the right session. But: if I edit the block with

[O] Can't remove deadline or schedule in bulk mode

2017-08-10 Thread Julien Cubizolles
In an agenda buffer, C-u B d should clear the deadline of the entries marked the way C-u does on a single entry. I think it's what it used to do some time ago. Instead, I get: --8<---cut here---start->8--- org-agenda-deadline: Invalid function: 4

Re: [O] Change in appearance of org-todo-keywords

2017-08-10 Thread Colin Baxter
Dear Adam, > "Adam" == Adam Porter writes: Adam> Colin Baxter writes: >> Considering how fundamental keywords and tags are to org-mode, >> I'm a little surprised that only two other users have reported >> the issue. Adam> It's

Re: [O] Add-Easy-Template-for-COMMENT-C to org.el

2017-08-10 Thread Nicolas Goaziou
Hello, Grant Rettke writes: > Does my init file get used during execution of the tests? I didn't check, but I think so. Anyway, we found the culprit: the test does not follow symlinks. It should be fixed soon. > Subject: [PATCH] Add Easy Template for COMMENT (C) > >

Re: [O] [PATCH] Fix org-open-at-point to work with tags

2017-08-10 Thread Nicolas Goaziou
Hello, "Galen Menzel" writes: > Subject: [PATCH] org.el: Fix org-open-at-point for tags. > > lisp/org.el (org-open-at-point): Move case for tags up so that it's > not shortcutted by the case for no valid context. Applied, with some refactoring. Thank you. Regards, --

Re: [O] Bug: Beamer export error

2017-08-10 Thread Nicolas Goaziou
Hello, Rasmus writes: > This is caused by this commit, which changes how org-split-string works. > > f776e65373fa135fffb51e201698823fbfb3865b > > Before (org-split-string "" ",") would return ‘nil’. Now it returns "". > > Depending on whether the new behavior is desired or

Re: [O] [PATCH] Fix two false failures in org's test suite

2017-08-10 Thread Nicolas Goaziou
Hello, "Galen Menzel" writes: > * testing/lisp/test-org.el (test-org/deadline-close-p): Fix false > failures due to time-zone differences. > (test-org/refile-get-targets): Fix false failures when test temp-file > path contains a symlink. Thank you. > -