From: Richard M. Stallman Date: Wed, 11 Dec 1996 21:06:53 +0000 (+0000) Subject: Fix previous change. X-Git-Tag: emacs-20.1~3274 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=31c8acc06530892e323641db66f8499bd5d126f7;p=emacs.git Fix previous change. --- diff --git a/lisp/browse-url.el b/lisp/browse-url.el index 1af08b0606b..d4e6988a387 100644 --- a/lisp/browse-url.el +++ b/lisp/browse-url.el @@ -371,7 +371,7 @@ Search backwards for the start of a URL ending at or after point. If no URL found, return the empty string. A file name is also acceptable, and `http://' will be prepended to it." (or (thing-at-point 'url) - (let ((file (thing-at-point 'file))) + (let ((file (thing-at-point 'filename))) (if file (concat "http://" file))) ""))