From 576ceeb30227c10a7aa57e41eafdc9157c4ea682 Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Sun, 24 Apr 2005 14:50:42 +0000 Subject: [PATCH] (mode-require-final-newline): Revert accidental change. --- lisp/files.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/files.el b/lisp/files.el index d80a806d239..9edbcdc449e 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -307,8 +307,8 @@ whenever you save a file that really needs one." :type '(choice (const :tag "When visiting" visit) (const :tag "When saving" t) (const :tag "When visiting or saving" visit-save) - (const :tag "Don't add newlines" nil) - (other :tag "Ask" ask)) + (other :tag "Ask" ask) + (const :tag "Don't add newlines" nil)) :group 'editing-basics :version "22.1")