From: Lars Magne Ingebrigtsen Date: Tue, 30 Jul 2013 14:31:51 +0000 (+0200) Subject: (eww-setup-buffer): Switching to the buffer seems more natural than popping. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1688^2~79 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=997798bf652c4f279fc576ec1e0d29c41ae1ea80;p=emacs.git (eww-setup-buffer): Switching to the buffer seems more natural than popping. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index da0e85e47c7..0c1e7fcb683 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2013-07-30 Lars Magne Ingebrigtsen + * net/eww.el (eww-setup-buffer): Switching to the buffer seems + more natural than popping. + * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815). (shr-urlify): Highlight under mouse. diff --git a/lisp/net/eww.el b/lisp/net/eww.el index d65932ae7c9..70c11c3201f 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -309,7 +309,7 @@ word(s) will be searched for via `eww-search-prefix'." (goto-char (point-min)))) (defun eww-setup-buffer () - (pop-to-buffer (get-buffer-create "*eww*")) + (switch-to-buffer (get-buffer-create "*eww*")) (let ((inhibit-read-only t)) (remove-overlays) (erase-buffer))