aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2007-06-22 21:18:31 +0000
committerStefan Monnier2007-06-22 21:18:31 +0000
commitd8e4eadf9ba37eed47de1bb694b56ff25b2d4e59 (patch)
tree6d406fc5358ee895eafe60e7fe97c41280fb3e69 /lisp
parent2ef3b3fe29833531e057ffc74fb586f0e50c1ca5 (diff)
downloademacs-d8e4eadf9ba37eed47de1bb694b56ff25b2d4e59.tar.gz
emacs-d8e4eadf9ba37eed47de1bb694b56ff25b2d4e59.zip
(diff-font-lock-keywords): Fix M. Kifer's last change differently.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog23
-rw-r--r--lisp/diff-mode.el2
2 files changed, 24 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c347187cad5..445cd41d70e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12007-06-22 Stefan Monnier <monnier@iro.umontreal.ca> 12007-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change
4 differently.
5
3 * vc-hg.el (vc-hg-registered): Add an autoloaded version. 6 * vc-hg.el (vc-hg-registered): Add an autoloaded version.
4 (vc-hg-log-view-mode): Use log-view-font-lock-keywords. 7 (vc-hg-log-view-mode): Use log-view-font-lock-keywords.
5 8
@@ -92,6 +95,26 @@
92 95
932007-06-20 Stefan Monnier <monnier@iro.umontreal.ca> 962007-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
94 97
98 * log-view.el (log-view-font-lock-keywords): Use `eval' to consult the
99 buffer-local value of log-view-*-re if applicable.
100
101 * vc-bzr.el (vc-bzr-dir-state): Use setq rather than set.
102 Use vc-bzr-command rather than the ill defined vc-bzr-command*.
103 (vc-bzr-command*): Remove both (incompatible) versions.
104 (vc-bzr-do-command*): Remove.
105 (vc-bzr-with-process-environment, vc-bzr-std-process-invocation):
106 Remove by folding into its only caller vc-bzr-command.
107 (vc-bzr-command): Always set the environment, even when ineffective.
108 (vc-bzr-version): Minor fix up.
109 (vc-bzr-admin-dirname): New var.
110 (vc-bzr-bzr-dir): Remove.
111 (vc-bzr-root-dir): New fun.
112 (vc-bzr-registered): Use it. Add an autoloaded version.
113 (vc-bzr-responsible-p): Use vc-bzr-root-dir as well.
114 (vc-bzr-view-log-function): Remove.
115 (vc-bzr-log-view-mode): New major mode to replace it.
116 (vc-bzr-print-log): Only activate the old hack if needed.
117
95 * vc.el (vc-default-log-view-mode): New function. 118 * vc.el (vc-default-log-view-mode): New function.
96 (vc-print-log): Add new `log-view-mode' VC operation. 119 (vc-print-log): Add new `log-view-mode' VC operation.
97 120
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el
index 973e387f230..64199147c21 100644
--- a/lisp/diff-mode.el
+++ b/lisp/diff-mode.el
@@ -338,7 +338,7 @@ when editing big diffs)."
338 ("^--- .+ ----$" . diff-hunk-header-face) ;context 338 ("^--- .+ ----$" . diff-hunk-header-face) ;context
339 ("^[0-9,]+[acd][0-9,]+$" . diff-hunk-header-face) ;normal 339 ("^[0-9,]+[acd][0-9,]+$" . diff-hunk-header-face) ;normal
340 ("^---$" . diff-hunk-header-face) ;normal 340 ("^---$" . diff-hunk-header-face) ;normal
341 ("^\\(---\\|\\+\\+\\+\\|\\*\\*\\*\\) \\([^ \t]+\\)\\(.*[^*-]\\)?\n" 341 ("^\\(---\\|\\+\\+\\+\\|\\*\\*\\*\\) \\([^\t\n]+\\)\\(.*[^*-]\\)?\n"
342 (0 diff-header-face) (2 diff-file-header-face prepend)) 342 (0 diff-header-face) (2 diff-file-header-face prepend))
343 ("^\\([-<]\\)\\(.*\n\\)" 343 ("^\\([-<]\\)\\(.*\n\\)"
344 (1 diff-indicator-removed-face) (2 diff-removed-face)) 344 (1 diff-indicator-removed-face) (2 diff-removed-face))