Mercurial > emacs
comparison lisp/emacs-lisp/lisp-mode.el @ 14495:fc4be3d538e0
(lisp-mode-variables): Locally clear adaptive-fill-mode.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 05 Feb 1996 17:43:22 +0000 |
parents | ea15aa9bae36 |
children | c932ad13ccd9 |
comparison
equal
deleted
inserted
replaced
14494:f2dda0ebfe1a | 14495:fc4be3d538e0 |
---|---|
101 (setq paragraph-separate paragraph-start) | 101 (setq paragraph-separate paragraph-start) |
102 (make-local-variable 'paragraph-ignore-fill-prefix) | 102 (make-local-variable 'paragraph-ignore-fill-prefix) |
103 (setq paragraph-ignore-fill-prefix t) | 103 (setq paragraph-ignore-fill-prefix t) |
104 (make-local-variable 'fill-paragraph-function) | 104 (make-local-variable 'fill-paragraph-function) |
105 (setq fill-paragraph-function 'lisp-fill-paragraph) | 105 (setq fill-paragraph-function 'lisp-fill-paragraph) |
106 ;; Adaptive fill mode gets in the way of auto-fill, | |
107 ;; and should make no difference for explicit fill | |
108 ;; because lisp-fill-paragraph should do the job. | |
109 (make-local-variable 'adaptive-fill-mode) | |
110 (setq adaptive-fill-mode nil) | |
106 (make-local-variable 'indent-line-function) | 111 (make-local-variable 'indent-line-function) |
107 (setq indent-line-function 'lisp-indent-line) | 112 (setq indent-line-function 'lisp-indent-line) |
108 (make-local-variable 'indent-region-function) | 113 (make-local-variable 'indent-region-function) |
109 (setq indent-region-function 'lisp-indent-region) | 114 (setq indent-region-function 'lisp-indent-region) |
110 (make-local-variable 'parse-sexp-ignore-comments) | 115 (make-local-variable 'parse-sexp-ignore-comments) |