emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r118259: * net/eww.el (eww): Allow "file:/file/name"


From: Teodor Zlatanov
Subject: [Emacs-diffs] trunk r118259: * net/eww.el (eww): Allow "file:/file/name" URLs.
Date: Sun, 02 Nov 2014 21:07:12 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 118259
revision-id: address@hidden
parent: address@hidden
author: Ivan Shmakov <address@hidden>
committer: Ted Zlatanov <address@hidden>
branch nick: quickfixes
timestamp: Sun 2014-11-02 16:06:52 -0500
message:
  * net/eww.el (eww): Allow "file:/file/name" URLs.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/net/eww.el                eww.el-20130610114603-80ap3gwnw4x4m5ix-1
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-11-02 21:02:10 +0000
+++ b/lisp/ChangeLog    2014-11-02 21:06:52 +0000
@@ -1,5 +1,9 @@
 2014-11-02  Ivan Shmakov <address@hidden>
 
+       * net/eww.el (eww): Allow "file:/file/name" URLs.
+
+2014-11-02  Ivan Shmakov <address@hidden>
+
        * net/eww.el (eww-mode-map): Remove mentions of `eww-quit'.
 
 2014-11-02  Eric Abrahamsen  <address@hidden>

=== modified file 'lisp/net/eww.el'
--- a/lisp/net/eww.el   2014-11-02 21:02:10 +0000
+++ b/lisp/net/eww.el   2014-11-02 21:06:52 +0000
@@ -159,7 +159,7 @@
 If the input doesn't look like an URL or a domain name, the
 word(s) will be searched for via `eww-search-prefix'."
   (interactive "sEnter URL or keywords: ")
-  (cond ((string-match-p "\\`file://" url))
+  (cond ((string-match-p "\\`file:/" url))
         ((string-match-p "\\`ftp://"; url)
          (user-error "FTP is not supported."))
         (t


reply via email to

[Prev in Thread] Current Thread [Next in Thread]