diff options
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/net/eww.el | 2 |
2 files changed, 4 insertions, 1 deletions
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 <larsi@gnus.org> + * 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)) |