]> git.eshelyaron.com Git - emacs.git/commitdiff
Use browse-url directly.
authorPer Abrahamsen <abraham@dina.kvl.dk>
Wed, 4 Mar 1998 10:48:19 +0000 (10:48 +0000)
committerPer Abrahamsen <abraham@dina.kvl.dk>
Wed, 4 Mar 1998 10:48:19 +0000 (10:48 +0000)
lisp/wid-edit.el

index e2d1a7cdf03178e0e6f60f2d27b4c1328c85f955..34930699b20384d0419bb994001cb5645ab75f78 100644 (file)
@@ -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.