aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorStephen Berman2013-12-20 18:16:47 +0100
committerStephen Berman2013-12-20 18:16:47 +0100
commit2f99433b944d602c382bfa87c8e3e27b1eaaed3b (patch)
tree4105847b84e1507c726ed93b0d41e3371c889b07 /lisp/ChangeLog
parent3cbfb9354082c9e3466156d81da3dfe9d7d9f99f (diff)
downloademacs-2f99433b944d602c382bfa87c8e3e27b1eaaed3b.tar.gz
emacs-2f99433b944d602c382bfa87c8e3e27b1eaaed3b.zip
Todo mode bug fixes and new features.
* calendar/todo-mode.el: Bug fixes and new features. (todo-toggle-item-highlighting): Use eval-and-compile instead of eval-when-compile. (todo-move-category): Allow choosing a non-existing todo file to move the category to, and create that file. (todo-default-priority): New user option. (todo-set-item-priority): Use it. (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions. (desktop-restore-file-buffer): Declare. (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer. (todo-modes-set-2): Locally set desktop-save-buffer to todo-desktop-save-buffer. (todo-mode, todo-archive-mode, todo-filtered-items-mode) (auto-mode-alist): Add autoload cookie. Fixes: debbugs:15225
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b3315ca8c56..e367749fb39 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12013-12-20 Stephen Berman <stephen.berman@gmx.net>
2
3 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
4 (todo-toggle-item-highlighting): Use eval-and-compile instead of
5 eval-when-compile.
6 (todo-move-category): Allow choosing a non-existing todo file to
7 move the category to, and create that file.
8 (todo-default-priority): New user option.
9 (todo-set-item-priority): Use it.
10 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
11 (desktop-restore-file-buffer): Declare.
12 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
13 (todo-modes-set-2): Locally set desktop-save-buffer to
14 todo-desktop-save-buffer.
15 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
16 (auto-mode-alist): Add autoload cookie.
17
12013-12-20 Bozhidar Batsov <bozhidar@batsov.com> 182013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
2 19
3 * emacs-lisp/subr-x.el: Renamed from helpers.el. 20 * emacs-lisp/subr-x.el: Renamed from helpers.el.