+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
: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)