diff options
-rw-r--r-- | ennum-image.el | 12 | ||||
-rw-r--r-- | ennum.el | 4 |
2 files changed, 12 insertions, 4 deletions
diff --git a/ennum-image.el b/ennum-image.el index 21ab205..924ec7e 100644 --- a/ennum-image.el +++ b/ennum-image.el @@ -6,22 +6,26 @@ (defcustom ennum-image-convert-path "convert" "Path to imagemagick convert executable." - :type 'string) + :type 'string + :group 'ennum) (defcustom ennum-image-identify-path "identify" "Path to imagemagick identify executable." - :type 'string) + :type 'string + :group 'ennum) (defcustom ennum-image-jpegtran-path "jpegtran" "Path to jpegtran executable." - :type 'string) + :type 'string + :group 'ennum) (defcustom ennum-image-optipng-path "optipng" "Path to optipng executable." - :type 'string) + :type 'string + :group 'ennum) ;; Check if all necessary image types are supported (seq-do (lambda (image-type) @@ -9,6 +9,10 @@ (require 'memoize) (require 'simple-httpd) +(defgroup ennum nil + "Org-mode static blog generator." + :group 'applications) + (defvar ennum-version "0.1.0" "Ennum version string") |