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:
parent
7656fe61b1
commit
bce6be12b9
2 changed files with 7 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue