diff options
| author | Richard M. Stallman | 1996-12-11 21:06:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-12-11 21:06:53 +0000 |
| commit | 31c8acc06530892e323641db66f8499bd5d126f7 (patch) | |
| tree | 998489fd175c10c67ba9e3d7fc4fa451e20a89b6 | |
| parent | 0f995be681f4db236429ea3cf5f62914ebe6f86b (diff) | |
| download | emacs-31c8acc06530892e323641db66f8499bd5d126f7.tar.gz emacs-31c8acc06530892e323641db66f8499bd5d126f7.zip | |
Fix previous change.
| -rw-r--r-- | lisp/browse-url.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
| 371 | point. If no URL found, return the empty string. | 371 | point. If no URL found, return the empty string. |
| 372 | A file name is also acceptable, and `http://' will be prepended to it." | 372 | A file name is also acceptable, and `http://' will be prepended to it." |
| 373 | (or (thing-at-point 'url) | 373 | (or (thing-at-point 'url) |
| 374 | (let ((file (thing-at-point 'file))) | 374 | (let ((file (thing-at-point 'filename))) |
| 375 | (if file (concat "http://" file))) | 375 | (if file (concat "http://" file))) |
| 376 | "")) | 376 | "")) |
| 377 | 377 | ||