aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorJoakim Verona2011-11-09 14:05:54 +0100
committerJoakim Verona2011-11-09 14:05:54 +0100
commitc8d4b74cfa26762d34fd1703a07463008b32be16 (patch)
tree6610ac356d47e328bb1094d9f5a0dcc15ed5fb6a /lisp/org
parent32db4845d5c433fd15c6665cbed169e5d8b94f05 (diff)
parent2cffd68198c4d574f073ab238dc12b1221005eab (diff)
downloademacs-c8d4b74cfa26762d34fd1703a07463008b32be16.tar.gz
emacs-c8d4b74cfa26762d34fd1703a07463008b32be16.zip
upstream
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/org-agenda.el24
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el
index aea284fe72c..53a0c5587a2 100644
--- a/lisp/org/org-agenda.el
+++ b/lisp/org/org-agenda.el
@@ -764,7 +764,7 @@ because you will take care of it on the day when scheduled."
764 :group 'org-agenda-skip 764 :group 'org-agenda-skip
765 :group 'org-agenda-daily/weekly 765 :group 'org-agenda-daily/weekly
766 :type '(choice 766 :type '(choice
767 (const :tag "Alwas show prewarning" nil) 767 (const :tag "Always show prewarning" nil)
768 (const :tag "Remove prewarning if entry is scheduled" t) 768 (const :tag "Remove prewarning if entry is scheduled" t)
769 (integer :tag "Restart prewarning N days before deadline"))) 769 (integer :tag "Restart prewarning N days before deadline")))
770 770
@@ -1388,13 +1388,13 @@ When nil, such items are sorted as 0 minutes effort."
1388 (tags . " %i %-12:c") 1388 (tags . " %i %-12:c")
1389 (search . " %i %-12:c")) 1389 (search . " %i %-12:c"))
1390 "Format specifications for the prefix of items in the agenda views. 1390 "Format specifications for the prefix of items in the agenda views.
1391An alist with five entries, each for the different agenda types. The 1391An alist with five entries, each for the different agenda types. The
1392keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'. 1392keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
1393The values are format strings. 1393The values are format strings.
1394 1394
1395This format works similar to a printf format, with the following meaning: 1395This format works similar to a printf format, with the following meaning:
1396 1396
1397 %c the category of the item, \"Diary\" for entries from the diary, 1397 %c the category of the item, \"Diary\" for entries from the diary,
1398 or as given by the CATEGORY keyword or derived from the file name 1398 or as given by the CATEGORY keyword or derived from the file name
1399 %i the icon category of the item, see `org-agenda-category-icon-alist' 1399 %i the icon category of the item, see `org-agenda-category-icon-alist'
1400 %T the last tag of the item (ignore inherited tags, which come first) 1400 %T the last tag of the item (ignore inherited tags, which come first)
@@ -1408,10 +1408,10 @@ contain two additional characters: a question mark just after the `%'
1408and a whitespace/punctuation character just before the final letter. 1408and a whitespace/punctuation character just before the final letter.
1409 1409
1410If the first character after `%' is a question mark, the entire field 1410If the first character after `%' is a question mark, the entire field
1411will only be included if the corresponding value applies to the current 1411will only be included if the corresponding value applies to the current
1412entry. This is useful for fields which should have fixed width when 1412entry. This is useful for fields which should have fixed width when
1413present, but zero width when absent. For example, \"%?-12t\" will 1413present, but zero width when absent. For example, \"%?-12t\" will
1414result in a 12 character time field if a time of the day is specified, 1414result in a 12 character time field if a time of the day is specified,
1415but will completely disappear in entries which do not contain a time. 1415but will completely disappear in entries which do not contain a time.
1416 1416
1417If there is punctuation or whitespace character just before the final 1417If there is punctuation or whitespace character just before the final
@@ -1420,7 +1420,7 @@ the value is not empty. For example, the format \"%-12:c\" leads to
1420\"Diary: \" if the category is \"Diary\". If the category were be 1420\"Diary: \" if the category is \"Diary\". If the category were be
1421empty, no additional colon would be inserted. 1421empty, no additional colon would be inserted.
1422 1422
1423The default value for the agenda sublist is \" %-12:c%?-12t% s\", 1423The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1424which means: 1424which means:
1425 1425
1426- Indent the line with two space characters 1426- Indent the line with two space characters
@@ -1697,7 +1697,7 @@ For example, this value makes those two functions available:
1697 (?C bulk-cut)) 1697 (?C bulk-cut))
1698 1698
1699With selected entries in an agenda buffer, `B R' will call 1699With selected entries in an agenda buffer, `B R' will call
1700the custom function `set-category' on the selected entries. 1700the custom function `set-category' on the selected entries.
1701Note that functions in this alist don't need to be quoted." 1701Note that functions in this alist don't need to be quoted."
1702 :type 'alist 1702 :type 'alist
1703 :group 'org-agenda) 1703 :group 'org-agenda)
@@ -5003,9 +5003,9 @@ See also the user option `org-agenda-clock-consistency-checks'."
5003 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second 5003 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5004 (tlstart 0.) 5004 (tlstart 0.)
5005 (tlend 0.) 5005 (tlend 0.)
5006 (maxtime (org-hh:mm-string-to-minutes 5006 (maxtime (org-hh:mm-string-to-minutes
5007 (or (plist-get pl :max-duration) "24:00"))) 5007 (or (plist-get pl :max-duration) "24:00")))
5008 (mintime (org-hh:mm-string-to-minutes 5008 (mintime (org-hh:mm-string-to-minutes
5009 (or (plist-get pl :min-duration) 0))) 5009 (or (plist-get pl :min-duration) 0)))
5010 (maxgap (org-hh:mm-string-to-minutes 5010 (maxgap (org-hh:mm-string-to-minutes
5011 ;; default 30:00 means never complain 5011 ;; default 30:00 means never complain