aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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