1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-14 09:39:42 +00:00

* net/eww.el (eww-download-callback): Fix reference to eww-download-directory.

This commit is contained in:
Juanma Barranquero 2014-01-24 05:15:13 +01:00
parent 76c3fa958f
commit f77c7a99c1
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2014-01-24 Juanma Barranquero <lekktu@gmail.com>
* net/eww.el (eww-download-callback):
Fix reference to eww-download-directory.
* emacs-lisp/bytecomp.el (byte-compile-file):
Remove unused local variable `file-name'.

View File

@ -1072,7 +1072,7 @@ Differences in #targets are ignored."
(let* ((obj (url-generic-parse-url url))
(path (car (url-path-and-query obj)))
(file (eww-make-unique-file-name (file-name-nondirectory path)
eww-download-path)))
eww-download-directory)))
(write-file file)
(message "Saved %s" file))))