summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/diff-mode.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6819b3801db..51ce3690812 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
+ * diff-mode.el (diff-auto-refine-mode): Remove lighter, since it's
+ otherwise displayed in every buffer.
+
* vc-arch.el (vc-arch-trim-make-sentinel): Use a closure.
(vc-arch-trim-one-revlib): Delete temp directories as well.
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))))