|
@@ -1211,7 +1211,7 @@ For example, 9:30am would become 09:30 rather than 9:30."
|
|
:type 'boolean)
|
|
:type 'boolean)
|
|
|
|
|
|
(defun org-agenda-time-of-day-to-ampm (time)
|
|
(defun org-agenda-time-of-day-to-ampm (time)
|
|
- "Convert TIME of a string like `13:45' to an AM/PM style time string."
|
|
|
|
|
|
+ "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
|
|
(let* ((hour-number (string-to-number (substring time 0 -3)))
|
|
(let* ((hour-number (string-to-number (substring time 0 -3)))
|
|
(minute (substring time -2))
|
|
(minute (substring time -2))
|
|
(ampm "am"))
|
|
(ampm "am"))
|
|
@@ -1993,8 +1993,8 @@ the lower-case version of all tags."
|
|
"Alist of characters and custom functions for bulk actions.
|
|
"Alist of characters and custom functions for bulk actions.
|
|
For example, this value makes those two functions available:
|
|
For example, this value makes those two functions available:
|
|
|
|
|
|
- ((?R set-category)
|
|
|
|
- (?C bulk-cut))
|
|
|
|
|
|
+ \\='((?R set-category)
|
|
|
|
+ (?C bulk-cut))
|
|
|
|
|
|
With selected entries in an agenda buffer, `B R' will call
|
|
With selected entries in an agenda buffer, `B R' will call
|
|
the custom function `set-category' on the selected entries.
|
|
the custom function `set-category' on the selected entries.
|
|
@@ -10114,8 +10114,8 @@ argument: an entry from `org-agenda-get-day-entries'.
|
|
FILTER can also be an alist with the car of each cell being
|
|
FILTER can also be an alist with the car of each cell being
|
|
either `headline' or `category'. For example:
|
|
either `headline' or `category'. For example:
|
|
|
|
|
|
- ((headline \"IMPORTANT\")
|
|
|
|
- (category \"Work\"))
|
|
|
|
|
|
+ \\='((headline \"IMPORTANT\")
|
|
|
|
+ (category \"Work\"))
|
|
|
|
|
|
will only add headlines containing IMPORTANT or headlines
|
|
will only add headlines containing IMPORTANT or headlines
|
|
belonging to the \"Work\" category.
|
|
belonging to the \"Work\" category.
|