]> code.delx.au - gnu-emacs/commitdiff
(scheme): Finish `defgroup' description with period.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 03:22:03 +0000 (03:22 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 03:22:03 +0000 (03:22 +0000)
(scheme-mode-syntax-table): "?\ " -> "?\s".

lisp/progmodes/scheme.el

index c792b59ad87ea51099b4ae5cc647424253cdb233..4df71e3a2a22a3a81020ef751a90ee0ced1439e5 100644 (file)
@@ -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