[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102207: * lisp/emacs-lisp/smie.el (s
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102207: * lisp/emacs-lisp/smie.el (smie): New custom group. |
Date: |
Sun, 31 Oct 2010 23:44:54 -0700 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102207
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sun 2010-10-31 23:44:54 -0700
message:
* lisp/emacs-lisp/smie.el (smie): New custom group.
(smie-blink-matching-inners, smie-indent-basic): Add :group.
modified:
lisp/ChangeLog
lisp/emacs-lisp/smie.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2010-11-01 06:13:43 +0000
+++ b/lisp/ChangeLog 2010-11-01 06:44:54 +0000
@@ -1,5 +1,8 @@
2010-11-01 Glenn Morris <address@hidden>
+ * 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.
=== modified file 'lisp/emacs-lisp/smie.el'
--- a/lisp/emacs-lisp/smie.el 2010-10-29 19:20:28 +0000
+++ b/lisp/emacs-lisp/smie.el 2010-11-01 06:44:54 +0000
@@ -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 @@
(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 @@
(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.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102207: * lisp/emacs-lisp/smie.el (smie): New custom group.,
Glenn Morris <=