diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-10-15 23:55:45 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-10-15 23:55:45 +0000 |
commit | e3e064d9bcfd58f49be73b2944c03ce94d631771 (patch) | |
tree | fba78b39c64a345f8400f6bca557cf907907bb40 /lisp/startup.el | |
parent | 43ad7fb4af811f74b34c44d53e058aafae7c860e (diff) | |
download | emacs-e3e064d9bcfd58f49be73b2944c03ce94d631771.tar.gz |
(auto-save-list-file-prefix): Fix custom type.
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 3 |
1 files changed, 2 insertions, 1 deletions
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) |