diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a2efbdd9bbc..4da45bb425c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2002-07-06 Richard M. Stallman + * net/browse-url.el (browse-url-at-mouse): Don't pass an arg + to browse-url-at-point. + * simple.el (shell-command): Match & only at end of whole command. 2002-07-03 Dave Love diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el index cebdb2fdcda..62886c7bad3 100644 --- a/lisp/net/browse-url.el +++ b/lisp/net/browse-url.el @@ -661,7 +661,9 @@ to use." (interactive "e") (save-excursion (mouse-set-point event) - (browse-url-at-point browse-url-new-window-flag))) + ;; This handles browse-url-new-window-flag properly + ;; when it gets no arg. + (browse-url-at-point))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Browser-specific commands