]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/smie.el (smie): New custom group.
authorGlenn Morris <rgm@gnu.org>
Mon, 1 Nov 2010 06:44:54 +0000 (23:44 -0700)
committerGlenn Morris <rgm@gnu.org>
Mon, 1 Nov 2010 06:44:54 +0000 (23:44 -0700)
(smie-blink-matching-inners, smie-indent-basic): Add :group.

lisp/ChangeLog
lisp/emacs-lisp/smie.el

index 102e84d4cfae7032acb16188953b01c5ed532308..42d6c7ece03fd2a97af39124d439495e8438ca83 100644 (file)
@@ -1,5 +1,8 @@
 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.
index 6cd434ff79046e417fbb8ff807972f7f9b30a334..afb2834414a5b8059f9e209f2ad937e76e081e39 100644 (file)
 
 (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.