]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a defcustom :type
authorMauro Aranda <maurooaranda@gmail.com>
Fri, 6 Oct 2023 20:02:37 +0000 (17:02 -0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 7 Oct 2023 06:50:38 +0000 (09:50 +0300)
* lisp/cedet/srecode/map.el (srecode-map-save-file): Expand :type to
allow nil.  (Bug#66377)

lisp/cedet/srecode/map.el

index 125459d6eeb1db7e9a5bc452f40665b82028ccc4..004bb7adddb7e6e7e35e706b0450ca13c8326989 100644 (file)
@@ -49,7 +49,8 @@
   "The save location for SRecode's map file.
 If the save file is nil, then the MAP is not saved between sessions."
   :group 'srecode
-  :type 'file)
+  :type '(choice (const :tag "Don't save" nil)
+                 file))
 
 (defclass srecode-map (eieio-persistent)
   ((fileheaderline :initform ";; SRECODE TEMPLATE MAP")