From: Per Abrahamsen Date: Wed, 4 Mar 1998 10:48:19 +0000 (+0000) Subject: Use browse-url directly. X-Git-Tag: emacs-20.3~2006 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=af0f19d71bd5e774c4928975c4b479428c9974db;p=emacs.git Use browse-url directly. --- diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index e2d1a7cdf03..34930699b20 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -1765,8 +1765,7 @@ If END is omitted, it defaults to the length of LIST." (defun widget-url-link-action (widget &optional event) "Open the url specified by WIDGET." - (require 'browse-url) - (funcall browse-url-browser-function (widget-value widget))) + (browse-url (widget-value widget))) ;;; The `function-link' Widget.