# HG changeset patch # User Richard M. Stallman # Date 850338413 0 # Node ID 37fa6003964d3c039c79182119515baba762f195 # Parent 0bd213d55f05ad2989d4e7cb2d72aa30874e601e Fix previous change. diff -r 0bd213d55f05 -r 37fa6003964d lisp/browse-url.el --- a/lisp/browse-url.el Wed Dec 11 21:06:18 1996 +0000 +++ b/lisp/browse-url.el Wed Dec 11 21:06:53 1996 +0000 @@ -371,7 +371,7 @@ 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))) ""))