(mime): New customize group.
authormorioka <morioka>
Tue, 4 Nov 1997 14:10:23 +0000 (14:10 +0000)
committermorioka <morioka>
Tue, 4 Nov 1997 14:10:23 +0000 (14:10 +0000)
(mime-button-face): Use `defcustom'.
(mime-button-mouse-face): Use `defcustom'.

mime-def.el

index b5ff01c..4d88747 100644 (file)
@@ -3,7 +3,7 @@
 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
 
 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: mime-def.el,v 0.70 1997-10-04 05:56:02 morioka Exp $
+;; Version: $Id: mime-def.el,v 0.71 1997-11-04 14:10:23 morioka Exp $
 ;; Keywords: definition, MIME, multimedia, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
 ;;; Code:
 
 (require 'emu)
+(require 'custom)
+
+(defgroup mime nil
+  "Emacs MIME Interfaces"
+  :group 'news
+  :group 'mail)
 
 (unless (fboundp 'butlast)
   (defun butlast (x &optional n)
 ;;; @ button
 ;;;
 
-(defvar mime-button-face 'bold
-  "Face used for content-button or URL-button of MIME-Preview buffer.")
+(defcustom mime-button-face 'bold
+  "Face used for content-button or URL-button of MIME-Preview buffer."
+  :group 'mime
+  :type 'face)
 
-(defvar mime-button-mouse-face 'highlight
-  "Face used for MIME-preview buffer mouse highlighting.")
+(defcustom mime-button-mouse-face 'highlight
+  "Face used for MIME-preview buffer mouse highlighting."
+  :group 'mime
+  :type 'face)
 
 (defsubst mime-add-button (from to function &optional data)
   "Create a button between FROM and TO with callback FUNCTION and DATA."