]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a defcustom :type
authorMauro Aranda <maurooaranda@gmail.com>
Thu, 5 Oct 2023 13:25:52 +0000 (10:25 -0300)
committerEli 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

index 305bf5991514d0ab8655dfe7a9564ae6f785aaea..c32d2edd7b7a2a1f69ac648d32f60d6ec40f453b 100644 (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.")