From: Nicolas Goaziou Date: Tue, 25 Feb 2014 16:49:22 +0000 (+0100) Subject: Fix `org-open-at-point' on planning lines X-Git-Tag: beta_8.3~458 X-Git-Url: https://repo.or.cz/w/org-mode.git/commitdiff_plain/66f3ba38c2b08dea909d2bfdef7b9cd997e5b613 Fix `org-open-at-point' on planning lines * lisp/org.el (org-open-at-point): Open timestamps on planning lines. This is a regression introduced in fc9ce8. --- diff --git a/lisp/org.el b/lisp/org.el index 3800d80b9..b5b7d0ed8 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -10482,7 +10482,7 @@ is used internally by `org-open-link-from-string'." (require 'org-attach) (org-attach-reveal 'if-exists)))) ((run-hook-with-args-until-success 'org-open-at-point-functions)) - ((eq type 'timestamp) (org-follow-timestamp-link)) + ((memq type '(planning timestamp)) (org-follow-timestamp-link)) ;; On tags within a headline or an inlinetask. ((save-excursion (beginning-of-line) (and (looking-at org-complex-heading-regexp)