* lisp/emacs-lisp/smie.el (smie): New custom group.

(smie-blink-matching-inners, smie-indent-basic): Add :group.
This commit is contained in:
Glenn Morris 2010-10-31 23:44:54 -07:00
parent 4c188c5a04
commit c79fc059c9
2 changed files with 11 additions and 2 deletions

View file

@ -70,6 +70,10 @@
(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))
@ -790,7 +794,8 @@ I.e. a good choice can be:
(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
@ -866,7 +871,8 @@ This uses SMIE's tables and is expected to be placed on `post-self-insert-hook'.
(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.