From: Mauro Aranda Date: Thu, 5 Oct 2023 13:25:52 +0000 (-0300) Subject: Fix a defcustom :type X-Git-Tag: emacs-29.1.90~28 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e9b88f61ccce16e6aad2ad8575a25c3665f8bde4;p=emacs.git Fix a defcustom :type * lisp/cedet/ede/base.el (ede-project-placeholder-cache-file): Expand :type to allow nil. (Bug#66361) --- 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.")