summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/smie.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-10-31 23:44:54 -0700
committerGlenn Morris <rgm@gnu.org>2010-10-31 23:44:54 -0700
commitc79fc059c990990854a42bacaf89dd3bd26e3006 (patch)
tree1977888f8e5a27d1c082995f285f2b1a1b4d5e50 /lisp/emacs-lisp/smie.el
parent4c188c5a04b550c3d865d2e197312accf227cf43 (diff)
downloademacs-c79fc059c990990854a42bacaf89dd3bd26e3006.tar.gz
emacs-c79fc059c990990854a42bacaf89dd3bd26e3006.tar.bz2
emacs-c79fc059c990990854a42bacaf89dd3bd26e3006.zip
* lisp/emacs-lisp/smie.el (smie): New custom group.
(smie-blink-matching-inners, smie-indent-basic): Add :group.
Diffstat (limited to 'lisp/emacs-lisp/smie.el')
-rw-r--r--lisp/emacs-lisp/smie.el10
1 files changed, 8 insertions, 2 deletions
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.