branch: externals-release/org
commit d2e8100b2db63f3f40464775876ea6ba2671e1a3
Author: Ihor Radchenko <yanta...@posteo.net>
Commit: Ihor Radchenko <yanta...@posteo.net>

    org-table-duration-custom-format: Fix type spec
    
    * lisp/org-table.el (org-table-duration-custom-format): Fix type
    specification.
    
    Reported-by: Mauro Aranda <maurooara...@gmail.com>
    Link: 
https://orgmode.org/list/6432f53c-35a3-416f-9e8c-423af6e08...@gmail.com
---
 lisp/org-table.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lisp/org-table.el b/lisp/org-table.el
index 931d14bb4d..a210448b36 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -344,11 +344,11 @@ The `U' flag in a table formula will select this specific 
format for
 a single formula."
   :group 'org-table-calculation
   :version "24.1"
-  :type '(choice (symbol :tag "Seconds" 'seconds)
-                (symbol :tag "Minutes" 'minutes)
-                (symbol :tag "Hours  " 'hours)
-                (symbol :tag "Days   " 'days)
-                (symbol :tag "HH:MM  " 'hh:mm)))
+  :type '(choice (symbol :tag "Seconds" seconds)
+                (symbol :tag "Minutes" minutes)
+                (symbol :tag "Hours  " hours)
+                (symbol :tag "Days   " days)
+                (symbol :tag "HH:MM  " hh:mm)))
 
 (defcustom org-table-duration-hour-zero-padding t
   "Non-nil means hours in table duration computations should be zero-padded.

Reply via email to