diff options
| author | Chong Yidong | 2009-04-15 22:51:26 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-04-15 22:51:26 +0000 |
| commit | dee8ac108452e32efb8c4542f4509c69c0e27d45 (patch) | |
| tree | 922e8bb315bbc14fdf8a3cd9062e254c9535852c | |
| parent | 7beba943eca576811305afdef5a471cee1f36fe6 (diff) | |
| download | emacs-dee8ac108452e32efb8c4542f4509c69c0e27d45.tar.gz emacs-dee8ac108452e32efb8c4542f4509c69c0e27d45.zip | |
* net/browse-url.el (browse-url-filename-alist): Correct file
URI (Bug#2922).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/browse-url.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 88d37ed22a0..9b5e6cd6176 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-04-15 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * net/browse-url.el (browse-url-filename-alist): Correct file | ||
| 4 | URI (Bug#2922). | ||
| 5 | |||
| 1 | 2009-04-15 Chong Yidong <cyd@stupidchicken.com> | 6 | 2009-04-15 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * subr.el (posn-col-row): Properly compute line spacing. | 8 | * subr.el (posn-col-row): Properly compute line spacing. |
diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el index 82711a5b0ba..8be8e00583a 100644 --- a/lisp/net/browse-url.el +++ b/lisp/net/browse-url.el | |||
| @@ -446,7 +446,7 @@ commands reverses the effect of this variable. Requires Netscape version | |||
| 446 | ,@(if (memq system-type '(windows-nt ms-dos cygwin)) | 446 | ,@(if (memq system-type '(windows-nt ms-dos cygwin)) |
| 447 | '(("^\\([a-zA-Z]:\\)[\\/]" . "file:\\1/") | 447 | '(("^\\([a-zA-Z]:\\)[\\/]" . "file:\\1/") |
| 448 | ("^[\\/][\\/]+" . "file://"))) | 448 | ("^[\\/][\\/]+" . "file://"))) |
| 449 | ("^/+" . "file:/")) | 449 | ("^/+" . "file:///")) |
| 450 | "An alist of (REGEXP . STRING) pairs used by `browse-url-of-file'. | 450 | "An alist of (REGEXP . STRING) pairs used by `browse-url-of-file'. |
| 451 | Any substring of a filename matching one of the REGEXPs is replaced by | 451 | Any substring of a filename matching one of the REGEXPs is replaced by |
| 452 | the corresponding STRING using `replace-match', not treating STRING | 452 | the corresponding STRING using `replace-match', not treating STRING |