org.el (org-refile): Allow org-refile goto from everywhere
commitfaa1703b8f9c2bc2d1b9317c29fde75b764f41fc
authorMarkus Hauck <markus1189@gmail.com>
Mon, 7 Apr 2014 17:21:43 +0000 (7 19:21 +0200)
committerBastien Guerry <bzg@altern.org>
Fri, 11 Apr 2014 09:59:43 +0000 (11 11:59 +0200)
treeaa97b3b9104828790aef9af35abbac39642055e0
parentd6a38604e6154091f2357e0dd5e42c233bc6663c
org.el (org-refile): Allow org-refile goto from everywhere

* lisp/org-agenda.el (org-refile): Flip logic to allow instead of
  prohibit the use of `org-refile' with the goto flat from non
  org-mode buffers.

In commit 49da67d the condition was changed from only
`(unless goto ...)` to `(unless (and goto (listp arg)) ...)`
where the `and` condition is only true for non-empty lists, so that
calling `(org-refile t)` complains about not being inside an org-mode
buffer.

With this patch org-refile can be used (again) from anywhere when
passed the goto flag to jump to the chosen task.

TINYCHANGE
lisp/org.el