Adjust todo-quit to recent change in dired

* lisp/calendar/todo-mode.el (todo-quit): Use quit-window instead of
bury-buffer to exit todo-mode.  This restores the desired behavior
of not immediately returning to the exited todo-mode buffer on
quitting another buffer, which a dired bug fix had changed (see
http://lists.gnu.org/archive/html/emacs-devel/2017-07/msg00739.html).
This commit is contained in:
Stephen Berman 2017-07-19 15:41:59 +02:00
parent 458057ee29
commit 0ef1b7ceeb

View file

@ -823,7 +823,7 @@ buries it and restores state as needed."
(when (buffer-live-p buf) (kill-buffer buf)))
((eq major-mode 'todo-mode)
(todo-save)
(bury-buffer)))))
(quit-window)))))
;; -----------------------------------------------------------------------------
;;; Navigation between and within categories