Re: [O] [PATCH] Fix: allow org-refile in goto mode from everywhere

2014-04-21 Thread Markus Hauck
Hi Bastien, I think you're right, sorry for any inconveniences ;) Bastien writes: > Hi Markus, > > Markus Hauck writes: > >> It seems like org-refile with the goto argument is no longer allowed >> From non org-mode buffers. > > I reverted your patch. > >> In commit 49da67d the condition was c

Re: [O] [PATCH] Fix: allow org-refile in goto mode from everywhere

2014-04-19 Thread Bastien
Hi Markus, Markus Hauck writes: > It seems like org-refile with the goto argument is no longer allowed > From non org-mode buffers. I reverted your patch. > In commit 49da67d the condition was changed from: > > (unless goto ...) > > to: > > (unless (and goto (listp goto)) ...) > > where the co

Re: [O] [PATCH] Fix: allow org-refile in goto mode from everywhere

2014-04-11 Thread Bastien
Hi Markus, I applied your patch on maint, thanks for the clear explanations and the perfectly formatted patch. Best, -- Bastien

[O] [PATCH] Fix: allow org-refile in goto mode from everywhere

2014-04-07 Thread Markus Hauck
It seems like org-refile with the goto argument is no longer allowed From non org-mode buffers. In commit 49da67d the condition was changed from: (unless goto ...) to: (unless (and goto (listp goto)) ...) where the condition of unless is only true for non-empty lists. IMO the condition has to