diff options
author | Lute Kamstra <lute@gnu.org> | 2005-04-04 08:59:38 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2005-04-04 08:59:38 +0000 |
commit | 6786cab27226019951ab4247097c98c5cf1c785a (patch) | |
tree | 05b1052badd806654cf8ff7839cacedbc4be96b3 /lisp/iimage.el | |
parent | b862cd15d072bab0e0adfcdbd1538234f7a976c4 (diff) | |
download | emacs-6786cab27226019951ab4247097c98c5cf1c785a.tar.gz |
(iimage): New customization group.
(iimage-mode): Specify :group.
Diffstat (limited to 'lisp/iimage.el')
-rw-r--r-- | lisp/iimage.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/iimage.el b/lisp/iimage.el index 9b183ebb01d..32f6aef9abd 100644 --- a/lisp/iimage.el +++ b/lisp/iimage.el @@ -1,6 +1,6 @@ ;;; iimage.el --- Inline image minor mode. -;; Copyright (C) 2004 Free Software Foundation +;; Copyright (C) 2004, 2005 Free Software Foundation ;; Author: KOSEKI Yoshinori <kose@meadowy.org> ;; Maintainer: KOSEKI Yoshinori <kose@meadowy.org> @@ -51,6 +51,11 @@ (eval-when-compile (require 'image-file)) +(defgroup iimage nil + "Support for inline images." + :version "22.1" + :group 'image) + (defconst iimage-version "1.1") (defvar iimage-mode nil) (defvar iimage-mode-map nil) @@ -137,7 +142,7 @@ With numeric ARG, display the images if and only if ARG is positive." ;;;###autoload (define-minor-mode iimage-mode "Toggle inline image minor mode." - nil " iImg" iimage-mode-map + :group 'iimage :lighter " iImg" :keymap iimage-mode-map (run-hooks 'iimage-mode-hook) (iimage-mode-buffer iimage-mode)) |