aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorStephen Berman2013-01-14 13:51:14 +0100
committerStephen Berman2013-01-14 13:51:14 +0100
commit20166aeaa8fb74437ab85a74ff0dca498f5350e7 (patch)
treec8bb804e8128d6e6860e475dbfeaf18e423b2ea4 /lisp/ChangeLog
parentb58fa72f2ad2f2c268a3e6eb8d884fe0f229dfac (diff)
downloademacs-20166aeaa8fb74437ab85a74ff0dca498f5350e7.tar.gz
emacs-20166aeaa8fb74437ab85a74ff0dca498f5350e7.zip
* calendar/todos.el: Implement saving top priority items buffers,
improve implementation of item filtering commands and infrastucture, and fix two bugs. (todos-prefix-overlays): Use todos-top-priority face only in Todos mode. (todos-multiple-filter-files): Get file-truename of Todos file. (todos-filter-items): Pass a list of files from the caller instead of building it here, and move handling of cancelled file selection dialog to callers. Correct omission of file-wide default number of top priorities. (todos-filtered-buffer-name): Treat file-list argument only as a list. (todos-find-item, todos-check-top-priorities) (todos-top-priorities-filename) (todos-save-top-priorities-buffer): New functions. (todos-save): Use todos-save-top-priorities-buffer. (todos-jump-to-item): Refactor and use todos-find-item. (todos-top-priorities): Simplify semantics of prefix argument. Check if top priorities file exists and if so, visit it, reporting whether it is up to date. Add optional argument and use it to handle multiple files. (todos-diary-items, todos-regexp-items): Add optional argument and use it to handle multiple files. (todos-top-priorities-multifile, todos-diary-items-multifile) (todos-regexp-items-multifile): Refactor, using corresponding non-multifile command. (auto-mode-alist): Add pattern for top priorities files to visit these in Todos Filtered Items mode.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog30
1 files changed, 30 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c529800e564..43587c6bc46 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,33 @@
12013-01-14 Stephen Berman <stephen.berman@gmx.net>
2
3 * calendar/todos.el: Implement saving top priority items buffers,
4 improve implementation of item filtering commands and
5 infrastucture, and fix two bugs.
6 (todos-prefix-overlays): Use todos-top-priority face only in Todos
7 mode.
8 (todos-multiple-filter-files): Get file-truename of Todos file.
9 (todos-filter-items): Pass a list of files from the caller instead
10 of building it here, and move handling of cancelled file selection
11 dialog to callers. Correct omission of file-wide default number
12 of top priorities.
13 (todos-filtered-buffer-name): Treat file-list argument only as a list.
14 (todos-find-item, todos-check-top-priorities)
15 (todos-top-priorities-filename)
16 (todos-save-top-priorities-buffer): New functions.
17 (todos-save): Use todos-save-top-priorities-buffer.
18 (todos-jump-to-item): Refactor and use todos-find-item.
19 (todos-top-priorities): Simplify semantics of prefix argument.
20 Check if top priorities file exists and if so, visit it, reporting
21 whether it is up to date. Add optional argument and use it to
22 handle multiple files.
23 (todos-diary-items, todos-regexp-items): Add optional argument and
24 use it to handle multiple files.
25 (todos-top-priorities-multifile, todos-diary-items-multifile)
26 (todos-regexp-items-multifile): Refactor, using corresponding
27 non-multifile command.
28 (auto-mode-alist): Add pattern for top priorities files to visit
29 these in Todos Filtered Items mode.
30
12013-01-08 Stephen Berman <stephen.berman@gmx.net> 312013-01-08 Stephen Berman <stephen.berman@gmx.net>
2 32
3 * calendar/todos.el: Fix tabular alignment in Todos Categories mode. 33 * calendar/todos.el: Fix tabular alignment in Todos Categories mode.