aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2008-07-22 20:55:30 +0000
committerStefan Monnier2008-07-22 20:55:30 +0000
commit4542adfb1f4138bf355eb8c90d655023375064b1 (patch)
tree5d5d4357224b022a01b599b7403154d46192e795 /lisp
parenteb6f7ed06607f5913e7195ee0f3a3f6f7ea7a7f3 (diff)
downloademacs-4542adfb1f4138bf355eb8c90d655023375064b1.tar.gz
emacs-4542adfb1f4138bf355eb8c90d655023375064b1.zip
(diff-auto-refine-mode): Remove lighter, since it's
otherwise displayed in every buffer.
Diffstat (limited to 'lisp')
-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 @@
12008-07-22 Stefan Monnier <monnier@iro.umontreal.ca> 12008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * diff-mode.el (diff-auto-refine-mode): Remove lighter, since it's
4 otherwise displayed in every buffer.
5
3 * vc-arch.el (vc-arch-trim-make-sentinel): Use a closure. 6 * vc-arch.el (vc-arch-trim-make-sentinel): Use a closure.
4 (vc-arch-trim-one-revlib): Delete temp directories as well. 7 (vc-arch-trim-one-revlib): Delete temp directories as well.
5 8
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)."
219 "Automatically highlight changes in detail as the user visits hunks. 219 "Automatically highlight changes in detail as the user visits hunks.
220When transitioning from disabled to enabled, 220When transitioning from disabled to enabled,
221try to refine the current hunk, as well." 221try to refine the current hunk, as well."
222 :group 'diff-mode :init-value t :lighter " Auto-Refine" 222 :group 'diff-mode :init-value t :lighter nil ;; " Auto-Refine"
223 (when diff-auto-refine-mode 223 (when diff-auto-refine-mode
224 (condition-case-no-debug nil (diff-refine-hunk) (error nil)))) 224 (condition-case-no-debug nil (diff-refine-hunk) (error nil))))
225 225