diff options
author | Mauro Aranda <maurooaranda@gmail.com> | 2023-10-06 17:02:37 -0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-10-07 09:50:38 +0300 |
commit | a74e51cfd1518507220de2ba317bb862409541cf (patch) | |
tree | be59f78a2e5cc642cfda381734ac48fbd78c1f8c /lisp/cedet | |
parent | c27b90d04bfef5e39558dc84946ad3e57a9ee480 (diff) | |
download | emacs-a74e51cfd1518507220de2ba317bb862409541cf.tar.gz emacs-a74e51cfd1518507220de2ba317bb862409541cf.tar.bz2 emacs-a74e51cfd1518507220de2ba317bb862409541cf.zip |
Fix a defcustom :type
* lisp/cedet/srecode/map.el (srecode-map-save-file): Expand :type to
allow nil. (Bug#66377)
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/srecode/map.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/cedet/srecode/map.el b/lisp/cedet/srecode/map.el index 125459d6eeb..004bb7adddb 100644 --- a/lisp/cedet/srecode/map.el +++ b/lisp/cedet/srecode/map.el @@ -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") |