0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 22:07:49 +00:00

org-agenda: Fix quit sticky agenda

* lisp/org-agenda.el(org-agenda--quit): Removed the argument from the
  call to `bury-buffer' to let the agenda disappear.
This commit is contained in:
Marco Wahl 2015-12-12 19:35:26 +01:00
parent 7d1a6777d0
commit 9b1c682425

View file

@ -7255,7 +7255,7 @@ agenda."
(not (one-window-p))
(delete-window))))
(if bury
(bury-buffer buf)
(bury-buffer)
(kill-buffer buf)
(setq org-agenda-archives-mode nil
org-agenda-buffer nil)))))