Browse Source

Add :version to org-clock.el options.

Bastien Guerry 13 years ago
parent
commit
bdd922e3f7
1 changed files with 6 additions and 0 deletions
  1. 6 0
      lisp/org-clock.el

+ 6 - 0
lisp/org-clock.el

@@ -226,6 +226,7 @@ should get a different face (`org-mode-line-clock-overrun').
 When this is a string, it is prepended to the clock string as an indication,
 When this is a string, it is prepended to the clock string as an indication,
 also using the face `org-mode-line-clock-overrun'."
 also using the face `org-mode-line-clock-overrun'."
   :group 'org-clock
   :group 'org-clock
+  :version "24.1"
   :type '(choice
   :type '(choice
 	  (const :tag "Just mark the time string" nil)
 	  (const :tag "Just mark the time string" nil)
 	  (string :tag "Text to prepend")))
 	  (string :tag "Text to prepend")))
@@ -267,12 +268,14 @@ string as argument."
     :formatter nil)
     :formatter nil)
   "Default properties for clock tables."
   "Default properties for clock tables."
   :group 'org-clock
   :group 'org-clock
+  :version "24.1"
   :type 'plist)
   :type 'plist)
 
 
 (defcustom org-clock-clocktable-formatter 'org-clocktable-write-default
 (defcustom org-clock-clocktable-formatter 'org-clocktable-write-default
   "Function to turn clocking data into a table.
   "Function to turn clocking data into a table.
 For more information, see `org-clocktable-write-default'."
 For more information, see `org-clocktable-write-default'."
   :group 'org-clocktable
   :group 'org-clocktable
+  :version "24.1"
   :type 'function)
   :type 'function)
 
 
 ;; FIXME: translate es and nl last string "Clock summary at"
 ;; FIXME: translate es and nl last string "Clock summary at"
@@ -283,6 +286,7 @@ For more information, see `org-clocktable-write-default'."
     ("nl" "Bestand"  "N"  "Tijdstip"   "Hoofding" "Duur"  "ALLES" "Totale duur"  "Bestandstijd" "Clock summary at"))
     ("nl" "Bestand"  "N"  "Tijdstip"   "Hoofding" "Duur"  "ALLES" "Totale duur"  "Bestandstijd" "Clock summary at"))
   "Terms used in clocktable, translated to different languages."
   "Terms used in clocktable, translated to different languages."
   :group 'org-clocktable
   :group 'org-clocktable
+  :version "24.1"
   :type 'alist)
   :type 'alist)
 
 
 (defcustom org-clock-clocktable-default-properties '(:maxlevel 2 :scope file)
 (defcustom org-clock-clocktable-default-properties '(:maxlevel 2 :scope file)
@@ -310,11 +314,13 @@ play with them."
 (defcustom org-clock-report-include-clocking-task nil
 (defcustom org-clock-report-include-clocking-task nil
   "When non-nil, include the current clocking task time in clock reports."
   "When non-nil, include the current clocking task time in clock reports."
   :group 'org-clock
   :group 'org-clock
+  :version "24.1"
   :type 'boolean)
   :type 'boolean)
 
 
 (defcustom org-clock-resolve-expert nil
 (defcustom org-clock-resolve-expert nil
   "Non-nil means do not show the splash buffer with the clock resolver."
   "Non-nil means do not show the splash buffer with the clock resolver."
   :group 'org-clock
   :group 'org-clock
+  :version "24.1"
   :type 'boolean)
   :type 'boolean)
 
 
 (defvar org-clock-in-prepare-hook nil
 (defvar org-clock-in-prepare-hook nil