diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-12-31 14:52:42 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-12-31 14:52:42 +0000 |
commit | 10902d694d4ac94d9e33696db2f8d81b5087d5cb (patch) | |
tree | a117984998a8ad17b2c863925f4ca7a0dbe2e7c0 /lisp/progmodes | |
parent | 876d19ef1d8a3e1aedb58917da930dac9f193c65 (diff) | |
download | emacs-10902d694d4ac94d9e33696db2f8d81b5087d5cb.tar.gz |
(cfengine-mode): Use mode-require-final-newline.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/cfengine.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cfengine.el b/lisp/progmodes/cfengine.el index 16064586ee9..3f6c24c85c6 100644 --- a/lisp/progmodes/cfengine.el +++ b/lisp/progmodes/cfengine.el @@ -222,7 +222,7 @@ to the action header." ;; movement. (set (make-local-variable 'parens-require-spaces) nil) - (set (make-local-variable 'require-final-newline) t) + (set (make-local-variable 'require-final-newline) mode-require-final-newline) (set (make-local-variable 'comment-start) "# ") (set (make-local-variable 'comment-start-skip) "\\(\\(?:^\\|[^\\\\\n]\\)\\(?:\\\\\\\\\\)*\\)#+[ \t]*") |