diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-04-24 14:50:42 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-04-24 14:50:42 +0000 |
commit | 576ceeb30227c10a7aa57e41eafdc9157c4ea682 (patch) | |
tree | f57e84576f589dc75d3b47d5d7073ca9828dd4e8 /lisp/files.el | |
parent | 9d1ffd5a916c6de9d332141520fda67521ec2dbb (diff) | |
download | emacs-576ceeb30227c10a7aa57e41eafdc9157c4ea682.tar.gz |
(mode-require-final-newline): Revert accidental change.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 4 |
1 files 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") |