summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-19 02:29:59 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-08-19 02:29:59 +0200
commite75ba1b8f8ce39e7912c35c034494778715637cb (patch)
tree9cf5ec96af8fdef7c70535ab026a0e93a4116184
parent206d1aa7e41aa0f310ee9a5c18614013334f5c01 (diff)
Create the ‘iota’ groupv1.0.1
-rw-r--r--iota.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/iota.el b/iota.el
index d546cee..0097476 100644
--- a/iota.el
+++ b/iota.el
@@ -30,8 +30,13 @@
;;; Code:
+(defgroup iota nil
+ "Simple- and easy enumeration creation."
+ :prefix "iota-")
+
(defcustom iota-regexp "\\<N\\>"
"Regular expression to match substrings that should be replaced."
+ :group 'iota
:type '(regexp))
(defun iota (start end &optional initial)