]> git.eshelyaron.com Git - emacs.git/commitdiff
Special mode buffers shouldn't query before exiting.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 1 Dec 2013 14:22:03 +0000 (15:22 +0100)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 1 Dec 2013 14:22:03 +0000 (15:22 +0100)
(eww-quit): Special mode buffers shouldn't query before exiting.

lisp/ChangeLog
lisp/net/eww.el

index 6c2d57c8a7928c788b8a48f882e0ad7f2a2f84e5..4cb4a613d29431ebb863af90ea4fec34d299a94a 100644 (file)
@@ -2,6 +2,7 @@
 
        * net/eww.el (eww-follow-link): New command to avoid reloading
        pages when we follow #target links (bug#15243).
+       (eww-quit): Special mode buffers shouldn't query before exiting.
 
 2013-12-01  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
 
index 9a90ccd258b07032175c9be60d14207799c8cf7e..9021c8f3b7e8b793630e76980e7b5789a90fed54 100644 (file)
@@ -418,10 +418,8 @@ word(s) will be searched for via `eww-search-prefix'."
 (defun eww-quit ()
   "Exit the Emacs Web Wowser."
   (interactive)
-  (if (y-or-n-p "quit eww? ")
-      (progn
-       (setq eww-history nil)
-       (kill-buffer (current-buffer)))))
+  (setq eww-history nil)
+  (kill-buffer (current-buffer)))
 
 (defun eww-back-url ()
   "Go to the previously displayed page."