* doc-view.el (doc-view-cache-directory): Fix bug where an integer

was given to concat.
This commit is contained in:
Reiner Steib 2007-10-31 21:17:32 +00:00
parent 7656fe61b1
commit bce6be12b9
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-10-31 Tassilo Horn <tassilo@member.fsf.org>
* doc-view.el (doc-view-cache-directory): Fix bug where an integer
was given to concat.
2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
* doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys

View file

@ -157,7 +157,8 @@ Needed for searching."
:group 'doc-view)
(defcustom doc-view-cache-directory
(expand-file-name (concat "docview" (user-uid)) temporary-file-directory)
(expand-file-name (concat "docview" (format "%d" (user-uid)))
temporary-file-directory)
"The base directory, where the PNG images will be saved."
:type 'directory
:group 'doc-view)