diff options
| author | Richard M. Stallman | 2002-04-29 03:55:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-04-29 03:55:57 +0000 |
| commit | bab6eadbfb51a79bf8a32b5f6eae8b3330f3216a (patch) | |
| tree | 90b138bb6687a8540c855c49c570303c5dcc5e4d | |
| parent | 88b966631f87294cb73a95a92a34b076c51b6bc5 (diff) | |
| download | emacs-bab6eadbfb51a79bf8a32b5f6eae8b3330f3216a.tar.gz emacs-bab6eadbfb51a79bf8a32b5f6eae8b3330f3216a.zip | |
(small-temporary-file-directory): Fix custom type.
| -rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index 88f5b01ee8b..51eeaa73a71 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -203,7 +203,7 @@ If non-nil, this directory is used instead of `temporary-file-directory' | |||
| 203 | by programs that create small temporary files. This is for systems that | 203 | by programs that create small temporary files. This is for systems that |
| 204 | have fast storage with limited space, such as a RAM disk." | 204 | have fast storage with limited space, such as a RAM disk." |
| 205 | :group 'files | 205 | :group 'files |
| 206 | :type 'directory) | 206 | :type '(choice (const nil) directory)) |
| 207 | 207 | ||
| 208 | ;; The system null device. (Should reference NULL_DEVICE from C.) | 208 | ;; The system null device. (Should reference NULL_DEVICE from C.) |
| 209 | (defvar null-device "/dev/null" "The system null device.") | 209 | (defvar null-device "/dev/null" "The system null device.") |