branch: externals/tempel
commit 4a6fc2d0ab6ccbef9bb6ff16f5c82b375c6b2001
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Fix customization type
---
tempel.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tempel.el b/tempel.el
index f567f7c17a..8a92d50846 100644
--- a/tempel.el
+++ b/tempel.el
@@ -52,12 +52,12 @@
(defcustom tempel-field-prefix
#(" " 0 1 (display (space :width (2)) face tempel-field))
"Field indicator prefix string."
- :type 'string)
+ :type '(choice (const nil) string))
(defcustom tempel-form-prefix
#(" " 0 1 (display (space :width (2)) face tempel-form))
"Form indicator prefix string."
- :type 'string)
+ :type '(choice (const nil) string))
(defcustom tempel-insert-annotation 40
"Annotation width for `tempel-insert'."