From: Eli Zaretskii Date: Sat, 6 Jul 2002 13:33:56 +0000 (+0000) Subject: (browse-url-at-mouse): Don't pass an arg to browse-url-at-point. X-Git-Tag: emacs-pretest-21.2.91~196 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7adf9bbfe425d04db84fc85a187d3fc447d23ea2;p=emacs.git (browse-url-at-mouse): Don't pass an arg to browse-url-at-point. --- 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