From: Lars Ingebrigtsen Date: Tue, 2 Feb 2016 04:57:07 +0000 (+1100) Subject: Allow the user more control of popping up the eww window X-Git-Tag: emacs-25.0.91~120 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=51362d68d14af92799c65198a690f769b04d456d;p=emacs.git Allow the user more control of popping up the eww window * eww.el (eww): Use pop-to-buffer-same-window (suggested by Michael Heerdegen) (bug#22244). --- diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 128752a62ef..147ba5fcda7 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -274,7 +274,7 @@ word(s) will be searched for via `eww-search-prefix'." (setq url (concat url "/")))) (setq url (concat eww-search-prefix (replace-regexp-in-string " " "+" url)))))) - (switch-to-buffer + (pop-to-buffer-same-window (if (eq major-mode 'eww-mode) (current-buffer) (get-buffer-create "*eww*")))