From: Karl Heuer Date: Wed, 15 Oct 1997 23:55:45 +0000 (+0000) Subject: (auto-save-list-file-prefix): Fix custom type. X-Git-Tag: emacs-20.3~3010 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3671f444f162f3549581bc3b5b721c9aece0049a;p=emacs.git (auto-save-list-file-prefix): Fix custom type. --- diff --git a/lisp/startup.el b/lisp/startup.el index 7f3639551de..ac7fc93bb8e 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -325,7 +325,8 @@ This is used after reading your `.emacs' file to initialize if you have not already set `auto-save-list-file-name' yourself. Set this to nil if you want to prevent `auto-save-list-file-name' from being initialized." - :type 'string + :type '(choice (const :tag "Don't record a session's auto save list" nil) + string) :group 'auto-save) (defvar init-file-debug nil)