* 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
|
@ -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>
|
2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
* doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys
|
* doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys
|
||||||
|
|
|
@ -157,7 +157,8 @@ Needed for searching."
|
||||||
:group 'doc-view)
|
:group 'doc-view)
|
||||||
|
|
||||||
(defcustom doc-view-cache-directory
|
(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."
|
"The base directory, where the PNG images will be saved."
|
||||||
:type 'directory
|
:type 'directory
|
||||||
:group 'doc-view)
|
:group 'doc-view)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue