2010-11-01 Glenn Morris <rgm@gnu.org>
+ * emacs-lisp/smie.el (smie): New custom group.
+ (smie-blink-matching-inners, smie-indent-basic): Add :group.
+
* faces.el (xw-defined-colors, x-setup-function-keys):
* mouse-sel.el (x-select-text):
* term/w32console.el (x-setup-function-keys): Update declarations.
(eval-when-compile (require 'cl))
+(defgroup smie nil
+ "Simple Minded Indentation Engine."
+ :group 'languages)
+
(defvar comment-continue)
(declare-function comment-string-strip "newcomment" (str beforep afterp))
(defcustom smie-blink-matching-inners t
"Whether SMIE should blink to matching opener for inner keywords.
If non-nil, it will blink not only for \"begin..end\" but also for \"if...else\"."
- :type 'boolean)
+ :type 'boolean
+ :group 'smie)
(defun smie-blink-matching-check (start end)
(save-excursion
(defcustom smie-indent-basic 4
"Basic amount of indentation."
- :type 'integer)
+ :type 'integer
+ :group 'smie)
(defvar smie-rules-function 'ignore
"Function providing the indentation rules.