From c8a54e77274d8375d56a67ab3c65420458db2801 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 3 Nov 2014 00:18:43 +0100 Subject: [PATCH] Allow "min" modifier in effort durations * lisp/org.el (org-effort-durations): Allow "min" modifier. This is a standard abbreviation. It also improves compatibility with other programs using this property (e.g. "Taskjuggler"). --- lisp/org.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 1b17d2c9a..2184776fc 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -17883,7 +17883,8 @@ If there is already a time stamp at the cursor position, update it." (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date)))))) (defcustom org-effort-durations - `(("h" . 60) + `(("min" . 1) + ("h" . 60) ("d" . ,(* 60 8)) ("w" . ,(* 60 8 5)) ("m" . ,(* 60 8 5 4))