# HG changeset patch # User Juanma Barranquero # Date 1120447323 0 # Node ID a81b0edd50341a9b08ae65d176b46b4ac2350cad # Parent 69990675200d32e2a39fc869a5cd514a705f1a16 (scheme): Finish `defgroup' description with period. (scheme-mode-syntax-table): "?\ " -> "?\s". diff -r 69990675200d -r a81b0edd5034 lisp/progmodes/scheme.el --- a/lisp/progmodes/scheme.el Mon Jul 04 03:20:48 2005 +0000 +++ b/lisp/progmodes/scheme.el Mon Jul 04 03:22:03 2005 +0000 @@ -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 @@ (run-mode-hooks 'scheme-mode-hook)) (defgroup scheme nil - "Editing Scheme code" + "Editing Scheme code." :group 'lisp) (defcustom scheme-mit-dialect t