diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-04-07 04:06:39 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-04-07 04:06:39 +0000 |
commit | 4ffdb3072cd0162c548d681b18d9fde3f07d9dbc (patch) | |
tree | 29e114f691d9fc18f9f591cc087d37c6aaabab1b /lisp/vc-bzr.el | |
parent | 73f6360c505778fa4ef8a3fbc24f9ef53cda40c6 (diff) | |
download | emacs-4ffdb3072cd0162c548d681b18d9fde3f07d9dbc.tar.gz emacs-4ffdb3072cd0162c548d681b18d9fde3f07d9dbc.tar.bz2 emacs-4ffdb3072cd0162c548d681b18d9fde3f07d9dbc.zip |
* vc-bzr.el (vc-bzr-log-view-mode): Fix last fix.
Diffstat (limited to 'lisp/vc-bzr.el')
-rw-r--r-- | lisp/vc-bzr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el index 986812ae347..cafca383891 100644 --- a/lisp/vc-bzr.el +++ b/lisp/vc-bzr.el @@ -454,7 +454,7 @@ REV non-nil gets an error." (set (make-local-variable 'log-view-per-file-logs) nil) (set (make-local-variable 'log-view-file-re) "^Working file:[ \t]+\\(.+\\)") (set (make-local-variable 'log-view-message-re) - "^\\(?:revno: \\([0-9.]+\\)\\|merged: .+\\)") + "^ *\\(?:revno: \\([0-9.]+\\)\\|merged: .+\\)") (set (make-local-variable 'log-view-font-lock-keywords) ;; log-view-font-lock-keywords is careful to use the buffer-local ;; value of log-view-message-re only since Emacs-23. |