]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename eww-download-path to eww-download-directory.
authorXue Fuqiao <xfq.free@gmail.com>
Sun, 12 Jan 2014 14:25:10 +0000 (22:25 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Sun, 12 Jan 2014 14:25:10 +0000 (22:25 +0800)
* lisp/net/eww.el (eww-download-directory): Rename from
`eww-download-path' (Bug#16419).
* doc/misc/eww.texi (Basics): Use "directory" instead of "path" (Bug#16419).

doc/misc/ChangeLog
doc/misc/eww.texi
lisp/ChangeLog
lisp/net/eww.el

index a036a60d2082c754c53b728a9cbcfbad61500878..54a2a5de146143764769e24d447990381e304704 100644 (file)
@@ -1,3 +1,7 @@
+2014-01-12  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * eww.texi (Basics): Use "directory" instead of "path" (Bug#16419).
+
 2014-01-12  Glenn Morris  <rgm@gnu.org>
 
        * efaq.texi (Guidelines for newsgroup postings)
index b84de7509da0621362ba86ef97a1b91375c875d7..6fc344d84650e11c7b3d2ada11cb0f1a13792b26 100644 (file)
@@ -83,8 +83,8 @@ However a GNU Emacs with @code{libxml2} support is required.
 If the input doesn't look like a URL or domain name the web will be
 searched via @code{eww-search-prefix}.  The default search engine is
 @url{https://duckduckgo.com, DuckDuckGo}.  If you want to open a file
-either prefix the path with @code{file://} or use the command @kbd{M-x
-eww-open-file}.
+either prefix the file name with @code{file://} or use the command
+@kbd{M-x eww-open-file}.
 
 @findex eww-quit
 @findex eww-reload
@@ -99,12 +99,12 @@ web page hit @kbd{g} (@code{eww-reload}).  Pressing @kbd{w}
 (@code{eww-copy-page-url}) will copy the current URL to the kill ring.
 
 @findex eww-download
-@vindex eww-download-path
+@vindex eww-download-directory
 @kindex d
 @cindex Download
   A URL under the point can be downloaded with @kbd{d}
 (@code{eww-download}).  The file will be written to the directory
-specified in @code{eww-download-path} (Default: @file{~/Downloads/}).
+specified in @code{eww-download-directory} (Default: @file{~/Downloads/}).
 
 @findex eww-back-url
 @findex eww-forward-url
index 7abcbee02b29a3ee0635e7e318214a5b0e3fdebb..2b6065b76305a4f2fc88108392eb34f81381bb3a 100644 (file)
@@ -1,3 +1,8 @@
+2014-01-12  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * net/eww.el (eww-download-directory): Rename from
+       `eww-download-path' (Bug#16419).
+
 2014-01-12  Leo Liu  <sdl.web@gmail.com>
 
        * dired-x.el (dired-mode-map): Fix last change.
index 38726fd7dcc34d3f4f88b7679f8b337b703e976d..4375a31bd3690255bd49f6be804f8fa51abe814f 100644 (file)
@@ -50,8 +50,8 @@
   :group 'eww
   :type 'string)
 
-(defcustom eww-download-path "~/Downloads/"
-  "Path where files will downloaded."
+(defcustom eww-download-directory "~/Downloads/"
+  "Directory where files will downloaded."
   :version "24.4"
   :group 'eww
   :type 'string)