1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-13 01:20:28 -08:00

* 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

@ -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)