diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 03:22:03 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 03:22:03 +0000 |
commit | 347a0b697c53f39dcc2c573d92f2b570a6fd34af (patch) | |
tree | 6569ec4a17728691aecbb9defdab509a7c1c9047 | |
parent | 419557b9e780e234d814e534fd3544354a7c9dc7 (diff) | |
download | emacs-347a0b697c53f39dcc2c573d92f2b570a6fd34af.tar.gz |
(scheme): Finish `defgroup' description with period.
(scheme-mode-syntax-table): "?\ " -> "?\s".
-rw-r--r-- | lisp/progmodes/scheme.el | 4 |
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 @@ (modify-syntax-entry ?\n "> " st) (modify-syntax-entry ?\f " " st) (modify-syntax-entry ?\r " " st) - (modify-syntax-entry ? " " st) + (modify-syntax-entry ?\s " " st) ;; These characters are delimiters but otherwise undefined. ;; Brackets and braces balance for editing convenience. @@ -228,7 +228,7 @@ if that value is non-nil." (run-mode-hooks 'scheme-mode-hook)) (defgroup scheme nil - "Editing Scheme code" + "Editing Scheme code." :group 'lisp) (defcustom scheme-mit-dialect t |