diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-07-22 20:55:30 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-07-22 20:55:30 +0000 |
commit | 4542adfb1f4138bf355eb8c90d655023375064b1 (patch) | |
tree | 5d5d4357224b022a01b599b7403154d46192e795 /lisp/diff-mode.el | |
parent | eb6f7ed06607f5913e7195ee0f3a3f6f7ea7a7f3 (diff) | |
download | emacs-4542adfb1f4138bf355eb8c90d655023375064b1.tar.gz |
(diff-auto-refine-mode): Remove lighter, since it's
otherwise displayed in every buffer.
Diffstat (limited to 'lisp/diff-mode.el')
-rw-r--r-- | lisp/diff-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el index da1cd30198f..7d5244162b7 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el @@ -219,7 +219,7 @@ when editing big diffs)." "Automatically highlight changes in detail as the user visits hunks. When transitioning from disabled to enabled, try to refine the current hunk, as well." - :group 'diff-mode :init-value t :lighter " Auto-Refine" + :group 'diff-mode :init-value t :lighter nil ;; " Auto-Refine" (when diff-auto-refine-mode (condition-case-no-debug nil (diff-refine-hunk) (error nil)))) |