|
@@ -329,11 +329,11 @@ the daily/weekly agenda, see `org-agenda-skip-function'.")
|
|
|
(string))
|
|
|
(list :tag "Number of days in agenda"
|
|
|
(const org-agenda-span)
|
|
|
- (choice (const :tag "Day" 'day)
|
|
|
- (const :tag "Week" 'week)
|
|
|
- (const :tag "Fortnight" 'fortnight)
|
|
|
- (const :tag "Month" 'month)
|
|
|
- (const :tag "Year" 'year)
|
|
|
+ (choice (const :tag "Day" day)
|
|
|
+ (const :tag "Week" week)
|
|
|
+ (const :tag "Fortnight" fortnight)
|
|
|
+ (const :tag "Month" month)
|
|
|
+ (const :tag "Year" year)
|
|
|
(integer :tag "Custom")))
|
|
|
(list :tag "Fixed starting date"
|
|
|
(const org-agenda-start-day)
|
|
@@ -391,32 +391,32 @@ the daily/weekly agenda, see `org-agenda-skip-function'.")
|
|
|
(repeat :inline t :tag "Conditions for skipping"
|
|
|
(choice
|
|
|
:tag "Condition type"
|
|
|
- (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
|
|
|
- (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
|
|
|
+ (list :tag "Regexp matches" :inline t (const :format "" regexp) (regexp))
|
|
|
+ (list :tag "Regexp does not match" :inline t (const :format "" notregexp) (regexp))
|
|
|
(list :tag "TODO state is" :inline t
|
|
|
- (const 'todo)
|
|
|
+ (const todo)
|
|
|
(choice
|
|
|
- (const :tag "any not-done state" 'todo)
|
|
|
- (const :tag "any done state" 'done)
|
|
|
- (const :tag "any state" 'any)
|
|
|
+ (const :tag "any not-done state" todo)
|
|
|
+ (const :tag "any done state" done)
|
|
|
+ (const :tag "any state" any)
|
|
|
(list :tag "Keyword list"
|
|
|
(const :format "" quote)
|
|
|
(repeat (string :tag "Keyword")))))
|
|
|
(list :tag "TODO state is not" :inline t
|
|
|
- (const 'nottodo)
|
|
|
+ (const nottodo)
|
|
|
(choice
|
|
|
- (const :tag "any not-done state" 'todo)
|
|
|
- (const :tag "any done state" 'done)
|
|
|
- (const :tag "any state" 'any)
|
|
|
+ (const :tag "any not-done state" todo)
|
|
|
+ (const :tag "any done state" done)
|
|
|
+ (const :tag "any state" any)
|
|
|
(list :tag "Keyword list"
|
|
|
(const :format "" quote)
|
|
|
(repeat (string :tag "Keyword")))))
|
|
|
- (const :tag "scheduled" 'scheduled)
|
|
|
- (const :tag "not scheduled" 'notscheduled)
|
|
|
- (const :tag "deadline" 'deadline)
|
|
|
- (const :tag "no deadline" 'notdeadline)
|
|
|
- (const :tag "timestamp" 'timestamp)
|
|
|
- (const :tag "no timestamp" 'nottimestamp))))))
|
|
|
+ (const :tag "scheduled" scheduled)
|
|
|
+ (const :tag "not scheduled" notscheduled)
|
|
|
+ (const :tag "deadline" deadline)
|
|
|
+ (const :tag "no deadline" notdeadline)
|
|
|
+ (const :tag "timestamp" timestamp)
|
|
|
+ (const :tag "no timestamp" nottimestamp))))))
|
|
|
(list :tag "Non-standard skipping condition"
|
|
|
:value (org-agenda-skip-function)
|
|
|
(const org-agenda-skip-function)
|
|
@@ -1358,12 +1358,12 @@ explanations on the possible values."
|
|
|
:group 'org-agenda-startup
|
|
|
:group 'org-agenda-daily/weekly
|
|
|
:type '(choice (const :tag "Don't show log items" nil)
|
|
|
- (const :tag "Show only log items" 'only)
|
|
|
- (const :tag "Show all possible log items" 'clockcheck)
|
|
|
+ (const :tag "Show only log items" only)
|
|
|
+ (const :tag "Show all possible log items" clockcheck)
|
|
|
(repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
|
|
|
- (choice (const :tag "Show closed log items" 'closed)
|
|
|
- (const :tag "Show clocked log items" 'clock)
|
|
|
- (const :tag "Show all logged state changes" 'state)))))
|
|
|
+ (choice (const :tag "Show closed log items" closed)
|
|
|
+ (const :tag "Show clocked log items" clock)
|
|
|
+ (const :tag "Show all logged state changes" state)))))
|
|
|
|
|
|
(defcustom org-agenda-start-with-clockreport-mode nil
|
|
|
"The initial value of clockreport-mode in a newly created agenda window."
|
|
@@ -1806,7 +1806,7 @@ When set to nil, never show inherited tags in agenda lines."
|
|
|
:version "24.3"
|
|
|
:type '(choice
|
|
|
(const :tag "Show inherited tags when available" t)
|
|
|
- (const :tag "Always show inherited tags" 'always)
|
|
|
+ (const :tag "Always show inherited tags" always)
|
|
|
(repeat :tag "Show inherited tags only in selected agenda types"
|
|
|
(symbol :tag "Agenda type"))))
|
|
|
|