changeset 1736:92dd8587c485

[xemacs-hg @ 2003-10-10 10:51:09 by stephent] fix typo in fn name <871xtlnz8t.fsf@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Fri, 10 Oct 2003 10:51:11 +0000
parents c521eeaafa0d
children 68ed93de81b7
files lisp/ChangeLog lisp/wid-edit.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Oct 10 10:45:01 2003 +0000
+++ b/lisp/ChangeLog	Fri Oct 10 10:51:11 2003 +0000
@@ -1,3 +1,7 @@
+2003-10-10  Stephen J. Turnbull  <stephen@xemacs.org>
+
+	* wid-edit.el (widget-url-link-action): Fix typo.
+
 2003-10-05	Kevin Haddock	<kevinhaddock@yahoo.com>
 
 	* lisp/wid-edit.el (widget-default-create): Implemented suggested
--- a/lisp/wid-edit.el	Fri Oct 10 10:45:01 2003 +0000
+++ b/lisp/wid-edit.el	Fri Oct 10 10:51:11 2003 +0000
@@ -2131,7 +2131,7 @@
 
 (defun widget-url-link-action (widget &optional event)
   "Open the url specified by WIDGET."
-  (if-fboundp 'browse-url
+  (if (fboundp 'browse-url)
       (browse-url (widget-value widget))
     (error 'missing-package "Cannot browse URLs in this XEmacs" 'browse-url)))