diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/vc/diff-mode.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 47404444400..9b4cf73b453 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -10,6 +10,8 @@ | |||
| 10 | 10 | ||
| 11 | 2011-03-04 Leo <sdl.web@gmail.com> | 11 | 2011-03-04 Leo <sdl.web@gmail.com> |
| 12 | 12 | ||
| 13 | * vc/diff-mode.el (diff-mode): Fix whitespace-style. (Bug#8139) | ||
| 14 | |||
| 13 | * time.el (display-time-world-list): Fix typo. (Bug#7571) | 15 | * time.el (display-time-world-list): Fix typo. (Bug#7571) |
| 14 | 16 | ||
| 15 | 2011-03-04 Zachary Kanfer <zkanfer@gmail.com> (tiny change) | 17 | 2011-03-04 Zachary Kanfer <zkanfer@gmail.com> (tiny change) |
diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el index 13d10f02b41..9ccb37f3a55 100644 --- a/lisp/vc/diff-mode.el +++ b/lisp/vc/diff-mode.el | |||
| @@ -1266,7 +1266,7 @@ a diff with \\[diff-reverse-direction]. | |||
| 1266 | 1266 | ||
| 1267 | ;; Set up `whitespace-mode' so that turning it on will show trailing | 1267 | ;; Set up `whitespace-mode' so that turning it on will show trailing |
| 1268 | ;; whitespace problems on the modified lines of the diff. | 1268 | ;; whitespace problems on the modified lines of the diff. |
| 1269 | (set (make-local-variable 'whitespace-style) '(trailing)) | 1269 | (set (make-local-variable 'whitespace-style) '(face trailing)) |
| 1270 | (set (make-local-variable 'whitespace-trailing-regexp) | 1270 | (set (make-local-variable 'whitespace-trailing-regexp) |
| 1271 | "^[-\+!<>].*?\\([\t ]+\\)$") | 1271 | "^[-\+!<>].*?\\([\t ]+\\)$") |
| 1272 | 1272 | ||