diff lisp/modes/xrdb-mode.el @ 134:34a5b81f86ba r20-2b1

Import from CVS: tag r20-2b1
author cvs
date Mon, 13 Aug 2007 09:30:11 +0200
parents 441bb1e64a06
children 0132846995bd
line wrap: on
line diff
--- a/lisp/modes/xrdb-mode.el	Mon Aug 13 09:29:37 2007 +0200
+++ b/lisp/modes/xrdb-mode.el	Mon Aug 13 09:30:11 2007 +0200
@@ -67,13 +67,22 @@
 
 
 ;; These variables are available for your customization
-(defvar xrdb-mode-hook nil
-  "*Hook to be run when `xrdb-mode' is entered.")
+(defgroup xrdb nil
+  "Mode for editing X resource database files."
+  :group 'languages)
 
-(defvar xrdb-subdivide-by 'paragraph
+(defcustom xrdb-mode-hook nil
+  "*Hook to be run when `xrdb-mode' is entered."
+  :type 'hook
+  :group 'xrdb)
+
+(defcustom xrdb-subdivide-by 'paragraph
   "*Extent of alignment calculations.
 Can be one of `buffer', `paragraph', `page', or `line'.  Do a
-\\[describe-function] xrdb-indent-buffer RET for more information.")
+\\[describe-function] xrdb-indent-buffer RET for more information."
+  :type '(radio (const buffer) (const paragraph)
+		(const page) (const line))
+  :group 'xrdb)