summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorPer Abrahamsen <abraham@dina.kvl.dk>1998-03-04 10:48:19 +0000
committerPer Abrahamsen <abraham@dina.kvl.dk>1998-03-04 10:48:19 +0000
commitaf0f19d71bd5e774c4928975c4b479428c9974db (patch)
treef43355499bcf5ae779eda2dddb276a0ab163b46a /lisp
parent7cf8c582dda63ca3a238dee85f240dc0623229e8 (diff)
downloademacs-af0f19d71bd5e774c4928975c4b479428c9974db.tar.gz
emacs-af0f19d71bd5e774c4928975c4b479428c9974db.tar.bz2
emacs-af0f19d71bd5e774c4928975c4b479428c9974db.zip
Use browse-url directly.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/wid-edit.el3
1 files changed, 1 insertions, 2 deletions
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.