From ae4ba1b35c4c4b7604ed524eadb43d1db3842ffc Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 3 Apr 2012 13:40:11 +0200 Subject: [PATCH] Add :version to org-agenda.el options. --- lisp/org-agenda.el | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 81377cae8..324ddd27f 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -649,6 +649,7 @@ See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want to make his option also apply to the tags-todo list." :group 'org-agenda-skip :group 'org-agenda-todo-list + :version "24.1" :type '(choice (const :tag "Ignore future timestamp todos" future) (const :tag "Ignore past or present timestamp todos" past) @@ -796,6 +797,7 @@ trigger you to schedule it, and then you don't want to be reminded of it because you will take care of it on the day when scheduled." :group 'org-agenda-skip :group 'org-agenda-daily/weekly + :version "24.1" :type '(choice (const :tag "Alwas show prewarning" nil) (const :tag "Remove prewarning if entry is scheduled" t) @@ -860,6 +862,7 @@ property so than moving the mouse over the command shows it. Setting it to nil is good if matcher strings are very long and/or if you want to use two-column display (see `org-agenda-menu-two-column')." :group 'org-agenda + :version "24.1" :type 'boolean) (defcustom org-agenda-menu-two-column nil @@ -867,6 +870,7 @@ you want to use two-column display (see `org-agenda-menu-two-column')." If you use this, you probably want to set `org-agenda-menu-show-matcher' to nil." :group 'org-agenda + :version "24.1" :type 'boolean) (defcustom org-finalize-agenda-hook nil @@ -890,6 +894,7 @@ Needs to be set before org.el is loaded." "Non-nil means `org-agenda-follow-mode' displays only the current item's tree, in an indirect buffer." :group 'org-agenda + :version "24.1" :type 'boolean) (defcustom org-agenda-show-outline-path t @@ -1042,11 +1047,13 @@ This function makes sure that dates are aligned for easy reading." "Non-nil means use leading zero for military times in agenda. For example, 9:30am would become 09:30 rather than 9:30." :group 'org-agenda-daily/weekly + :version "24.1" :type 'boolean) (defcustom org-agenda-timegrid-use-ampm nil "When set, show AM/PM style timestamps on the timegrid." :group 'org-agenda + :version "24.1" :type 'boolean) (defun org-agenda-time-of-day-to-ampm (time) @@ -1094,6 +1101,7 @@ stamp currently points to the past, the first key press will move it to today. WHen nil, just move one day forward even if the date stays in the past." :group 'org-agenda-daily/weekly + :version "24.1" :type 'boolean) (defcustom org-agenda-include-diary nil @@ -1106,6 +1114,7 @@ Custom commands can set this variable in the options section." "If non-nil, include entries within their deadline warning period. Custom commands can set this variable in the options section." :group 'org-agenda-daily/weekly + :version "24.1" :type 'boolean) (defcustom org-agenda-repeating-timestamp-show-all t @@ -1181,6 +1190,7 @@ issue display. :short-face face for clock intervals that are too short" :group 'org-agenda-daily/weekly :group 'org-clock + :version "24.1" :type 'plist) (defcustom org-agenda-log-mode-add-notes t @@ -1239,6 +1249,7 @@ by preceding the first snippet with \"+\" or \"-\". If the first snippet is a regexp marked with braces like \"{abc}\", this will also switch to boolean search." :group 'org-agenda-search-view + :version "24.1" :type 'boolean) (if (fboundp 'defvaralias) @@ -1249,6 +1260,7 @@ boolean search." "Non-nil means, search words must be matches as complete words. When nil, they may also match part of a word." :group 'org-agenda-search-view + :version "24.1" :type 'boolean) (defgroup org-agenda-time-grid nil @@ -1312,12 +1324,14 @@ a grid line." (defcustom org-agenda-show-current-time-in-grid t "Non-nil means show the current time in the time grid." :group 'org-agenda-time-grid + :version "24.1" :type 'boolean) (defcustom org-agenda-current-time-string "now - - - - - - - - - - - - - - - - - - - - - - - - -" "The string for the current time marker in the agenda." :group 'org-agenda-time-grid + :version "24.1" :type 'string) (defgroup org-agenda-sorting nil @@ -1528,6 +1542,7 @@ that passed since this item was scheduled first." "Text preceding item pulled into the agenda by inactive time stamps. These entries are added to the agenda when pressing \"[\"." :group 'org-agenda-line-format + :version "24.1" :type '(list (string :tag "Scheduled today ") (string :tag "Scheduled previously"))) @@ -1566,6 +1581,7 @@ the headline/diary entry." "Non-nil means remove time ranges specifications in agenda items that span on several days." :group 'org-agenda-line-format + :version "24.1" :type 'boolean) (defcustom org-agenda-default-appointment-duration nil @@ -1647,6 +1663,7 @@ The only argument passed to that function is the day. It should returns a face, or nil if does not want to specify a face and let the normal rules apply." :group 'org-agenda-line-format + :version "24.1" :type 'function) (defcustom org-agenda-category-icon-alist nil @@ -1679,6 +1696,7 @@ category, you can use: (\"Emacs\" '(space . (:width (16))))" :group 'org-agenda-line-format + :version "24.1" :type '(alist :key-type (string :tag "Regexp matching category") :value-type (choice (list :tag "Icon" (string :tag "File or data") @@ -1741,6 +1759,7 @@ With selected entries in an agenda buffer, `B R' will call the custom function `set-category' on the selected entries. Note that functions in this alist don't need to be quoted." :type 'alist + :version "24.1" :group 'org-agenda) (eval-when-compile @@ -7998,6 +8017,7 @@ top-level as top-level entries at the end of the file." (defcustom org-agenda-insert-diary-extract-time nil "Non-nil means extract any time specification from the diary entry." :group 'org-agenda + :version "24.1" :type 'boolean) (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2) -- 2.11.4.GIT