projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3216cd9
)
Fix a defcustom :type
author
Mauro Aranda
<maurooaranda@gmail.com>
Thu, 5 Oct 2023 13:25:52 +0000
(10:25 -0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Thu, 5 Oct 2023 16:12:58 +0000
(19:12 +0300)
* lisp/cedet/ede/base.el (ede-project-placeholder-cache-file): Expand
:type to allow nil. (Bug#66361)
lisp/cedet/ede/base.el
patch
|
blob
|
history
diff --git
a/lisp/cedet/ede/base.el
b/lisp/cedet/ede/base.el
index 305bf5991514d0ab8655dfe7a9564ae6f785aaea..c32d2edd7b7a2a1f69ac648d32f60d6ec40f453b 100644
(file)
--- 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.")