diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-19 02:29:59 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-19 02:29:59 +0200 |
commit | e75ba1b8f8ce39e7912c35c034494778715637cb (patch) | |
tree | 9cf5ec96af8fdef7c70535ab026a0e93a4116184 | |
parent | 206d1aa7e41aa0f310ee9a5c18614013334f5c01 (diff) |
Create the ‘iota’ groupv1.0.1
-rw-r--r-- | iota.el | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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) |