summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorMauro Aranda <maurooaranda@gmail.com>2023-10-05 10:25:52 -0300
committerEli Zaretskii <eliz@gnu.org>2023-10-05 19:12:58 +0300
commite9b88f61ccce16e6aad2ad8575a25c3665f8bde4 (patch)
treee5c582dfa59bab60787dffdf25a6e4139f52d09b /lisp/cedet
parent3216cd96952c5fa0fbe665ef219210c9ebaf4e75 (diff)
downloademacs-e9b88f61ccce16e6aad2ad8575a25c3665f8bde4.tar.gz
Fix a defcustom :type
* lisp/cedet/ede/base.el (ede-project-placeholder-cache-file): Expand :type to allow nil. (Bug#66361)
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/ede/base.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/cedet/ede/base.el b/lisp/cedet/ede/base.el
index 305bf599151..c32d2edd7b7 100644
--- a/lisp/cedet/ede/base.el
+++ b/lisp/cedet/ede/base.el
@@ -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.")