changeset 16670:37fa6003964d

Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Wed, 11 Dec 1996 21:06:53 +0000
parents 0bd213d55f05
children 9fa09185bca0
files lisp/browse-url.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)))
       ""))