branch: externals-release/org
commit d2e8100b2db63f3f40464775876ea6ba2671e1a3
Author: Ihor Radchenko <[email protected]>
Commit: Ihor Radchenko <[email protected]>
org-table-duration-custom-format: Fix type spec
* lisp/org-table.el (org-table-duration-custom-format): Fix type
specification.
Reported-by: Mauro Aranda <[email protected]>
Link:
https://orgmode.org/list/[email protected]
---
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.