diff options
| author | Richard M. Stallman | 1997-11-24 03:43:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-11-24 03:43:19 +0000 |
| commit | 761aea38d951ec976f2502c9cf2fc5c943ea0ab0 (patch) | |
| tree | 88cc6e7b06d67449ae8c93b21f8d8c97c3eab4b0 | |
| parent | 7eb67d79ac67a1d6abaec4b797d9587612972751 (diff) | |
| download | emacs-761aea38d951ec976f2502c9cf2fc5c943ea0ab0.tar.gz emacs-761aea38d951ec976f2502c9cf2fc5c943ea0ab0.zip | |
(scheme-mode-variables): Bind normal-auto-fill-function.
| -rw-r--r-- | lisp/progmodes/scheme.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el index 0487db7de2b..094a6f45da7 100644 --- a/lisp/progmodes/scheme.el +++ b/lisp/progmodes/scheme.el | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | ;; Copyright (C) 1986, 87, 88, 1997 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986, 87, 88, 1997 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Bill Rozas <jinx@martigny.ai.mit.edu> | 5 | ;; Author: Bill Rozas <jinx@martigny.ai.mit.edu> |
| 6 | ;; Maintainer: FSF | ||
| 6 | ;; Keywords: languages, lisp | 7 | ;; Keywords: languages, lisp |
| 7 | 8 | ||
| 8 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| @@ -127,6 +128,8 @@ | |||
| 127 | ;; because lisp-fill-paragraph should do the job. | 128 | ;; because lisp-fill-paragraph should do the job. |
| 128 | (make-local-variable 'adaptive-fill-mode) | 129 | (make-local-variable 'adaptive-fill-mode) |
| 129 | (setq adaptive-fill-mode nil) | 130 | (setq adaptive-fill-mode nil) |
| 131 | (make-local-variable 'normal-auto-fill-function) | ||
| 132 | (setq normal-auto-fill-function 'lisp-mode-auto-fill) | ||
| 130 | (make-local-variable 'indent-line-function) | 133 | (make-local-variable 'indent-line-function) |
| 131 | (setq indent-line-function 'lisp-indent-line) | 134 | (setq indent-line-function 'lisp-indent-line) |
| 132 | (make-local-variable 'parse-sexp-ignore-comments) | 135 | (make-local-variable 'parse-sexp-ignore-comments) |