Fix a defcustom :type

* lisp/cedet/ede/base.el (ede-project-placeholder-cache-file): Expand
:type to allow nil.  (Bug#66361)
This commit is contained in:
Mauro Aranda 2023-10-05 10:25:52 -03:00 committed by Eli Zaretskii
parent 3216cd9695
commit e9b88f61cc

View file

@ -312,7 +312,8 @@ All specific project types must derive from this project."
"File containing the list of projects EDE has viewed.
If set to nil, then the cache is not saved."
:group 'ede
:type 'file)
:type '(choice (const :tag "Don't save the cache" nil)
file))
(defvar ede-project-cache-files nil
"List of project files EDE has seen before.")