# HG changeset patch # User Richard M. Stallman # Date 880342999 0 # Node ID 98744f3de8edb4e0777864dc2cb12a7b90828b55 # Parent 3627bd4b83d98bb7ed64359b0adaad2050e250b1 (scheme-mode-variables): Bind normal-auto-fill-function. diff -r 3627bd4b83d9 -r 98744f3de8ed lisp/progmodes/scheme.el --- a/lisp/progmodes/scheme.el Mon Nov 24 03:32:20 1997 +0000 +++ b/lisp/progmodes/scheme.el Mon Nov 24 03:43:19 1997 +0000 @@ -3,6 +3,7 @@ ;; Copyright (C) 1986, 87, 88, 1997 Free Software Foundation, Inc. ;; Author: Bill Rozas +;; Maintainer: FSF ;; Keywords: languages, lisp ;; This file is part of GNU Emacs. @@ -127,6 +128,8 @@ ;; because lisp-fill-paragraph should do the job. (make-local-variable 'adaptive-fill-mode) (setq adaptive-fill-mode nil) + (make-local-variable 'normal-auto-fill-function) + (setq normal-auto-fill-function 'lisp-mode-auto-fill) (make-local-variable 'indent-line-function) (setq indent-line-function 'lisp-indent-line) (make-local-variable 'parse-sexp-ignore-comments)