From: Chris Hanson Date: Tue, 12 Apr 1988 17:03:26 +0000 (+0000) Subject: Add new local variable. X-Git-Tag: 20090517-FFI~12833 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=e00367e95a4e538c16c3625cd0ae69eb007e3bd7;p=mit-scheme.git Add new local variable. --- diff --git a/etc/scheme.el b/etc/scheme.el index 2edc8c369..6c0297506 100644 --- a/etc/scheme.el +++ b/etc/scheme.el @@ -24,7 +24,7 @@ ;; of special forms. Probably the code should be merged at some point ;; so that there is sharing between both libraries. -;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/etc/scheme.el,v 1.4 1987/12/07 09:38:00 cph Exp $ +;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/etc/scheme.el,v 1.5 1988/04/12 17:03:26 cph Exp $ (provide 'scheme) @@ -92,6 +92,8 @@ (setq paragraph-start (concat "^$\\|" page-delimiter)) (make-local-variable 'paragraph-separate) (setq paragraph-separate paragraph-start) + (make-local-variable 'paragraph-ignore-fill-prefix) + (setq paragraph-ignore-fill-prefix t) (make-local-variable 'indent-line-function) (setq indent-line-function 'scheme-indent-line) (make-local-variable 'comment-start)