diff options
| author | Reiner Steib | 2007-10-31 21:17:32 +0000 |
|---|---|---|
| committer | Reiner Steib | 2007-10-31 21:17:32 +0000 |
| commit | bce6be12b94d6008266d60dac6d3062d1126611f (patch) | |
| tree | edd81a6d62ec55935a83b844073fb28398bb6ad0 | |
| parent | 7656fe61b1ebfb9fef33fd4707186dc6d2099e10 (diff) | |
| download | emacs-bce6be12b94d6008266d60dac6d3062d1126611f.tar.gz emacs-bce6be12b94d6008266d60dac6d3062d1126611f.zip | |
* doc-view.el (doc-view-cache-directory): Fix bug where an integer
was given to concat.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/doc-view.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 22175da0b87..9ff79e5e8f0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-10-31 Tassilo Horn <tassilo@member.fsf.org> | ||
| 2 | |||
| 3 | * doc-view.el (doc-view-cache-directory): Fix bug where an integer | ||
| 4 | was given to concat. | ||
| 5 | |||
| 1 | 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys | 8 | * doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys |
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index d43eb97cbcc..7b14711fb07 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el | |||
| @@ -157,7 +157,8 @@ Needed for searching." | |||
| 157 | :group 'doc-view) | 157 | :group 'doc-view) |
| 158 | 158 | ||
| 159 | (defcustom doc-view-cache-directory | 159 | (defcustom doc-view-cache-directory |
| 160 | (expand-file-name (concat "docview" (user-uid)) temporary-file-directory) | 160 | (expand-file-name (concat "docview" (format "%d" (user-uid))) |
| 161 | temporary-file-directory) | ||
| 161 | "The base directory, where the PNG images will be saved." | 162 | "The base directory, where the PNG images will be saved." |
| 162 | :type 'directory | 163 | :type 'directory |
| 163 | :group 'doc-view) | 164 | :group 'doc-view) |