diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-12-31 14:53:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-12-31 14:53:55 +0000 |
commit | 3f355f3ef8b60be947ae4faa8720b790e2026b72 (patch) | |
tree | 069c514891e5cfd7a8eabe62d3ffa5b235dfda50 /lisp/progmodes | |
parent | fd98e23a7a1860e7974a113db5fba26659278129 (diff) | |
download | emacs-3f355f3ef8b60be947ae4faa8720b790e2026b72.tar.gz |
(icon-mode): Use mode-require-final-newline.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/icon.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/icon.el b/lisp/progmodes/icon.el index 694eea1285c..c61c64532a3 100644 --- a/lisp/progmodes/icon.el +++ b/lisp/progmodes/icon.el @@ -177,7 +177,7 @@ with no args, if that value is non-nil." (make-local-variable 'indent-line-function) (setq indent-line-function 'icon-indent-line) (make-local-variable 'require-final-newline) - (setq require-final-newline t) + (setq require-final-newline mode-require-final-newline) (make-local-variable 'comment-start) (setq comment-start "# ") (make-local-variable 'comment-end) |