;; 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."