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:
parent
3216cd9695
commit
e9b88f61cc
1 changed files with 2 additions and 1 deletions
|
@ -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.")
|
||||
|
|
Loading…
Add table
Reference in a new issue