comparison lisp/utils/id-select.el @ 126:1370575f1259 xemacs-20-1p1

Import from CVS: tag xemacs-20-1p1
author cvs
date Mon, 13 Aug 2007 09:27:39 +0200
parents 9b50b4588a93
children a2f645c6b9f8
comparison
equal deleted inserted replaced
125:8b0638b347ec 126:1370575f1259
162 162
163 ;;; ************************************************************************ 163 ;;; ************************************************************************
164 ;;; Public variables 164 ;;; Public variables
165 ;;; ************************************************************************ 165 ;;; ************************************************************************
166 166
167 (defgroup id-select nil 167 ;; We need the progn to kill off the defgroup-tracking mechanism.
168 "Select larger and larger syntax-driven regions in a buffer" 168 ;; This package changes the state of XEmacs by loading it, which is
169 :group 'mouse) 169 ;; why it's potentially dangerous.
170 (progn
171 (defgroup id-select nil
172 "Select larger and larger syntax-driven regions in a buffer"
173 :group 'mouse))
170 174
171 175
172 (defcustom id-select-brace-modes 176 (defcustom id-select-brace-modes
173 '(c++-mode c-mode java-mode objc-mode perl-mode tcl-mode) 177 '(c++-mode c-mode java-mode objc-mode perl-mode tcl-mode)
174 "*List of language major modes which define things with brace delimiters." 178 "*List of language major modes which define things with brace delimiters."