projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c27b90d
)
Fix a defcustom :type
author
Mauro Aranda
<maurooaranda@gmail.com>
Fri, 6 Oct 2023 20:02:37 +0000
(17:02 -0300)
committer
Eli 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
patch
|
blob
|
history
diff --git
a/lisp/cedet/srecode/map.el
b/lisp/cedet/srecode/map.el
index 125459d6eeb1db7e9a5bc452f40665b82028ccc4..004bb7adddb7e6e7e35e706b0450ca13c8326989 100644
(file)
--- 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")