From: Glenn Morris Date: Mon, 1 Nov 2010 06:44:54 +0000 (-0700) Subject: * lisp/emacs-lisp/smie.el (smie): New custom group. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~45^2~422^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c79fc059c990990854a42bacaf89dd3bd26e3006;p=emacs.git * lisp/emacs-lisp/smie.el (smie): New custom group. (smie-blink-matching-inners, smie-indent-basic): Add :group. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 102e84d4cfa..42d6c7ece03 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-11-01 Glenn Morris + * 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. diff --git a/lisp/emacs-lisp/smie.el b/lisp/emacs-lisp/smie.el index 6cd434ff790..afb2834414a 100644 --- a/lisp/emacs-lisp/smie.el +++ b/lisp/emacs-lisp/smie.el @@ -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.