mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-10 14:10:51 +00:00
Fix a defcustom :type
* lisp/cedet/srecode/map.el (srecode-map-save-file): Expand :type to allow nil. (Bug#66377)
This commit is contained in:
parent
c27b90d04b
commit
a74e51cfd1
1 changed files with 2 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue