From xemacs-m  Wed Apr  9 19:48:31 1997
Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id TAA17030
	for <xemacs-beta@xemacs.org>; Wed, 9 Apr 1997 19:48:29 -0500 (CDT)
Received: (from hniksic@localhost)
          by jagor.srce.hr (8.8.5/8.8.4)
	  id CAA13976; Thu, 10 Apr 1997 02:48:29 +0200 (MET DST)
Sender: hniksic@public.srce.hr
To: XEmacs Developers <xemacs-beta@xemacs.org>
Subject: diff.el is customized
X-URL: ftp://gnjilux.cc.fer.hr/pub/unix/util/wget/
X-Attribution: Hrv
X-Face: &}4JQk=L;e.~x+|eo]#DGk@x3~ed!.~lZ}YQcYb7f[WL9L'Z*+OyA\nA
        EL1M(".[qvI#a2E6WYI5>>e7'@_)3Ol9p|Nn2wNa/;~06jL*B%tTcn/X
        vhAu7qeES0\|MF%$;sI#yn1+y"
From: Hrvoje Niksic <hniksic@srce.hr>
Date: 10 Apr 1997 02:48:28 +0200
Message-ID: <kigohbnwvmr.fsf@jagor.srce.hr>
Lines: 41
X-Mailer: Gnus v5.4.42/XEmacs 19.15

--- diff.el.orig	Thu Apr 10 02:43:47 1997
+++ diff.el	Thu Apr 10 02:47:16 1997
@@ -39,16 +39,27 @@
 
 ;;; User Variables
 
+(defgroup diff nil
+  "Handling output from Unix diff utility"
+  :group 'tools)
+
 ;; should be in to loaddefs.el now.
 ;;;###autoload
-(defvar diff-switches "-c"
-  "*A list of switches (strings) to pass to the diff program.")
+(defcustom diff-switches "-c"
+  "*A list of switches (strings) to pass to the diff program."
+  :type '(choice string
+		 (repeat string))
+  :group 'diff)
 
-(defvar diff-do-narrow nil
-  "*If non-nil diff buffers are initialized narrowed to each difference.")
+(defcustom diff-do-narrow nil
+  "*If non-nil diff buffers are initialized narrowed to each difference."
+  :type 'boolean
+  :group 'diff)
 
-(defvar diff-load-hooks nil
-  "Hooks to run after loading diff.el")
+(defcustom diff-load-hooks nil
+  "Hooks to run after loading diff.el"
+  :type 'hook
+  :group 'diff)
 
 ;;; Internal variables
 

-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
main(){printf(&unix["\021%six\012\0"],(unix)["have"]+"fun"-0x60);}

