From: Richard M. Stallman Date: Mon, 24 Nov 1997 03:43:19 +0000 (+0000) Subject: (scheme-mode-variables): Bind normal-auto-fill-function. X-Git-Tag: emacs-20.3~2739 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=761aea38d951ec976f2502c9cf2fc5c943ea0ab0;p=emacs.git (scheme-mode-variables): Bind normal-auto-fill-function. --- 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 @@ ;; 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)