Mercurial > emacs
changeset 81575:cea1e05b3c83
* vc-hg.el (vc-hg-log-view-mode): Revert incorrect change.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sat, 23 Jun 2007 04:30:24 +0000 |
parents | 5a3c4b356d6d |
children | c17a6c377cf2 |
files | lisp/ChangeLog lisp/vc-hg.el |
diffstat | 2 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sat Jun 23 04:08:18 2007 +0000 +++ b/lisp/ChangeLog Sat Jun 23 04:30:24 2007 +0000 @@ -15,8 +15,6 @@ 2007-06-23 Dan Nicolaescu <dann@ics.uci.edu> - * vc-hg.el (vc-hg-log-view-mode): Fix last change. - * log-view.el (log-view-mode-menu): New menu. 2007-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
--- a/lisp/vc-hg.el Sat Jun 23 04:08:18 2007 +0000 +++ b/lisp/vc-hg.el Sat Jun 23 04:30:24 2007 +0000 @@ -142,7 +142,7 @@ "^changeset:[ \t]*\\([0-9]+\\):\\(.+\\)") (set (make-local-variable 'log-view-font-lock-keywords) (append - (copy-alist log-view-font-lock-keywords) + log-view-font-lock-keywords ;; Handle the case: ;; user: foo@bar '(("^user:[ \t]+\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)" @@ -153,7 +153,7 @@ (1 'change-log-name) (2 'change-log-email)) ("^date: \\(.+\\)" (1 'change-log-date)) - ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message))))))) + ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message)))))) (defun vc-hg-diff (file &optional oldvers newvers buffer) "Get a difference report using hg between two versions of FILE."