# HG changeset patch # User Reiner Steib # Date 1193865452 0 # Node ID cf0d3de082932ffe66bd90c295863db4c6005216 # Parent 05357c175a50da1e30470330a23d674df00e91c4 * doc-view.el (doc-view-cache-directory): Fix bug where an integer was given to concat. diff -r 05357c175a50 -r cf0d3de08293 lisp/ChangeLog --- a/lisp/ChangeLog Wed Oct 31 20:40:30 2007 +0000 +++ b/lisp/ChangeLog Wed Oct 31 21:17:32 2007 +0000 @@ -1,3 +1,8 @@ +2007-10-31 Tassilo Horn + + * doc-view.el (doc-view-cache-directory): Fix bug where an integer + was given to concat. + 2007-10-31 Stefan Monnier * doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys diff -r 05357c175a50 -r cf0d3de08293 lisp/doc-view.el --- a/lisp/doc-view.el Wed Oct 31 20:40:30 2007 +0000 +++ b/lisp/doc-view.el Wed Oct 31 21:17:32 2007 +0000 @@ -157,7 +157,8 @@ :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)