diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:30:13 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:32:53 -0800 |
commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/url | |
parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/url')
-rw-r--r-- | lisp/url/url-file.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/url/url-file.el b/lisp/url/url-file.el index 41ffb4cd4a8..df567b0fc4d 100644 --- a/lisp/url/url-file.el +++ b/lisp/url/url-file.el @@ -37,8 +37,8 @@ "Find the exact file referenced by `fname'. This tries the common compression extensions, because things like ange-ftp and efs are not quite smart enough to realize when a server -can do automatic decompression for them, and won't find 'foo' if -'foo.gz' exists, even though the FTP server would happily serve it up +can do automatic decompression for them, and won't find `foo' if +`foo.gz' exists, even though the FTP server would happily serve it up to them." (let ((scratch nil) (compressed-extensions '("" ".gz" ".z" ".Z" ".bz2" ".xz")) |