comparison 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
comparison
equal deleted inserted replaced
133:b27e67717092 134:34a5b81f86ba
65 65
66 ;; Code: 66 ;; Code:
67 67
68 68
69 ;; These variables are available for your customization 69 ;; These variables are available for your customization
70 (defvar xrdb-mode-hook nil 70 (defgroup xrdb nil
71 "*Hook to be run when `xrdb-mode' is entered.") 71 "Mode for editing X resource database files."
72 72 :group 'languages)
73 (defvar xrdb-subdivide-by 'paragraph 73
74 (defcustom xrdb-mode-hook nil
75 "*Hook to be run when `xrdb-mode' is entered."
76 :type 'hook
77 :group 'xrdb)
78
79 (defcustom xrdb-subdivide-by 'paragraph
74 "*Extent of alignment calculations. 80 "*Extent of alignment calculations.
75 Can be one of `buffer', `paragraph', `page', or `line'. Do a 81 Can be one of `buffer', `paragraph', `page', or `line'. Do a
76 \\[describe-function] xrdb-indent-buffer RET for more information.") 82 \\[describe-function] xrdb-indent-buffer RET for more information."
83 :type '(radio (const buffer) (const paragraph)
84 (const page) (const line))
85 :group 'xrdb)
77 86
78 87
79 88
80 ;; no need to customize anything below this line 89 ;; no need to customize anything below this line
81 (defconst xrdb-comment-re "^[ \t]*[!]" 90 (defconst xrdb-comment-re "^[ \t]*[!]"