aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-04 03:22:03 +0000
committerJuanma Barranquero2005-07-04 03:22:03 +0000
commit347a0b697c53f39dcc2c573d92f2b570a6fd34af (patch)
tree6569ec4a17728691aecbb9defdab509a7c1c9047
parent419557b9e780e234d814e534fd3544354a7c9dc7 (diff)
downloademacs-347a0b697c53f39dcc2c573d92f2b570a6fd34af.tar.gz
emacs-347a0b697c53f39dcc2c573d92f2b570a6fd34af.zip
(scheme): Finish `defgroup' description with period.
(scheme-mode-syntax-table): "?\ " -> "?\s".
-rw-r--r--lisp/progmodes/scheme.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el
index c792b59ad87..4df71e3a2a2 100644
--- a/lisp/progmodes/scheme.el
+++ b/lisp/progmodes/scheme.el
@@ -82,7 +82,7 @@
82 (modify-syntax-entry ?\n "> " st) 82 (modify-syntax-entry ?\n "> " st)
83 (modify-syntax-entry ?\f " " st) 83 (modify-syntax-entry ?\f " " st)
84 (modify-syntax-entry ?\r " " st) 84 (modify-syntax-entry ?\r " " st)
85 (modify-syntax-entry ? " " st) 85 (modify-syntax-entry ?\s " " st)
86 86
87 ;; These characters are delimiters but otherwise undefined. 87 ;; These characters are delimiters but otherwise undefined.
88 ;; Brackets and braces balance for editing convenience. 88 ;; Brackets and braces balance for editing convenience.
@@ -228,7 +228,7 @@ if that value is non-nil."
228 (run-mode-hooks 'scheme-mode-hook)) 228 (run-mode-hooks 'scheme-mode-hook))
229 229
230(defgroup scheme nil 230(defgroup scheme nil
231 "Editing Scheme code" 231 "Editing Scheme code."
232 :group 'lisp) 232 :group 'lisp)
233 233
234(defcustom scheme-mit-dialect t 234(defcustom scheme-mit-dialect t