diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc-bzr.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c16ce2153d4..57bddc721d6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2009-04-07 Chong Yidong <cyd@stupidchicken.com> | 1 | 2009-04-07 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 2 | ||
| 3 | * vc-bzr.el (vc-bzr-log-view-mode): Tweak | ||
| 4 | log-view-message-re (Bug#2872). | ||
| 5 | |||
| 3 | * descr-text.el (describe-property-list, describe-char): Add | 6 | * descr-text.el (describe-property-list, describe-char): Add |
| 4 | follow-link properties to buttons that need them. | 7 | follow-link properties to buttons that need them. |
| 5 | 8 | ||
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el index 72d683fd549..986812ae347 100644 --- a/lisp/vc-bzr.el +++ b/lisp/vc-bzr.el | |||
| @@ -454,7 +454,7 @@ REV non-nil gets an error." | |||
| 454 | (set (make-local-variable 'log-view-per-file-logs) nil) | 454 | (set (make-local-variable 'log-view-per-file-logs) nil) |
| 455 | (set (make-local-variable 'log-view-file-re) "^Working file:[ \t]+\\(.+\\)") | 455 | (set (make-local-variable 'log-view-file-re) "^Working file:[ \t]+\\(.+\\)") |
| 456 | (set (make-local-variable 'log-view-message-re) | 456 | (set (make-local-variable 'log-view-message-re) |
| 457 | "^ *-+\n *\\(?:revno: \\([0-9.]+\\)\\|merged: .+\\)") | 457 | "^\\(?:revno: \\([0-9.]+\\)\\|merged: .+\\)") |
| 458 | (set (make-local-variable 'log-view-font-lock-keywords) | 458 | (set (make-local-variable 'log-view-font-lock-keywords) |
| 459 | ;; log-view-font-lock-keywords is careful to use the buffer-local | 459 | ;; log-view-font-lock-keywords is careful to use the buffer-local |
| 460 | ;; value of log-view-message-re only since Emacs-23. | 460 | ;; value of log-view-message-re only since Emacs-23. |