From: Richard M. Stallman Date: Mon, 29 Apr 2002 03:55:57 +0000 (+0000) Subject: (small-temporary-file-directory): Fix custom type. X-Git-Tag: ttn-vms-21-2-B4~15329 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bab6eadbfb51a79bf8a32b5f6eae8b3330f3216a;p=emacs.git (small-temporary-file-directory): Fix custom type. --- 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' by programs that create small temporary files. This is for systems that have fast storage with limited space, such as a RAM disk." :group 'files - :type 'directory) + :type '(choice (const nil) directory)) ;; The system null device. (Should reference NULL_DEVICE from C.) (defvar null-device "/dev/null" "The system null device.")