diff options
| author | Boris Goldowsky | 1995-03-02 15:40:12 +0000 |
|---|---|---|
| committer | Boris Goldowsky | 1995-03-02 15:40:12 +0000 |
| commit | 53e84345ac48af1de085995f5f07993d44a46b1f (patch) | |
| tree | 8e0bf71e51c737b0426a3e69f7f6b9381f50ce01 | |
| parent | aeb82bd5c1f4eba22d62e5ec3798198c5f22dd65 (diff) | |
| download | emacs-53e84345ac48af1de085995f5f07993d44a46b1f.tar.gz emacs-53e84345ac48af1de085995f5f07993d44a46b1f.zip | |
(scheme-mode-variables): Remove ^ from paragraph-start & paragraph-separate.
| -rw-r--r-- | lisp/progmodes/scheme.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el index 94ee1ed7b03..d2ea8c1d418 100644 --- a/lisp/progmodes/scheme.el +++ b/lisp/progmodes/scheme.el | |||
| @@ -91,7 +91,7 @@ | |||
| 91 | (set-syntax-table scheme-mode-syntax-table) | 91 | (set-syntax-table scheme-mode-syntax-table) |
| 92 | (setq local-abbrev-table scheme-mode-abbrev-table) | 92 | (setq local-abbrev-table scheme-mode-abbrev-table) |
| 93 | (make-local-variable 'paragraph-start) | 93 | (make-local-variable 'paragraph-start) |
| 94 | (setq paragraph-start (concat "^$\\|" page-delimiter)) | 94 | (setq paragraph-start (concat "$\\|" page-delimiter)) |
| 95 | (make-local-variable 'paragraph-separate) | 95 | (make-local-variable 'paragraph-separate) |
| 96 | (setq paragraph-separate paragraph-start) | 96 | (setq paragraph-separate paragraph-start) |
| 97 | (make-local-variable 'paragraph-ignore-fill-prefix) | 97 | (make-local-variable 'paragraph-ignore-fill-prefix) |