# HG changeset patch # User Richard M. Stallman # Date 898986223 0 # Node ID 3f31211765338217ee47dd4240f308c4714f3924 # Parent e4a895537576ed1f1ee788a3c1a3d1dd7ed8ed18 (text-mode): Locally set indent-line-function. diff -r e4a895537576 -r 3f3121176533 lisp/textmodes/text-mode.el --- a/lisp/textmodes/text-mode.el Sat Jun 27 21:59:11 1998 +0000 +++ b/lisp/textmodes/text-mode.el Sat Jun 27 22:23:43 1998 +0000 @@ -78,6 +78,8 @@ (setq paragraph-start (concat "[ \t]*$\\|" page-delimiter)) (make-local-variable 'paragraph-separate) (setq paragraph-separate paragraph-start) + (make-local-variable 'indent-line-function) + (setq indent-line-function 'indent-relative-maybe) (setq mode-name "Text") (setq major-mode 'text-mode) (run-hooks 'text-mode-hook))