Made transition to new value type easier.

This commit is contained in:
Carsten Dominik 2008-03-03 15:05:49 +01:00
parent e34824029d
commit c5662d689a
1 changed files with 4 additions and 0 deletions

4
org.el
View File

@ -1973,6 +1973,10 @@ a double prefix argument to a time-stamp command like `C-c .' or `C-c !',
and by using a prefix arg to `S-up/down' to specify the exact number
of minutes to shift."
:group 'org-time
:get '(lambda (var) ; Make sure all entries have 5 elements
(if (integerp (default-value var))
(list (default-value var) 5)
(default-value var)))
:type '(list
(integer :tag "when inserting times")
(integer :tag "when modifying times")))