aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc-hg.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ab6fb19c1ee..e4ea722702d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-05-17 David Hull <david@snap.com> (tiny change)
2
3 * vc-hg.el (vc-hg-annotate-command): Allow white space before
4 version number.
5
12008-05-12 Simon Marshall <simon@gnu.org> 62008-05-12 Simon Marshall <simon@gnu.org>
2 7
3 * obsolete/fast-lock.el (fast-lock-cache-directories): Remove "." 8 * obsolete/fast-lock.el (fast-lock-cache-directories): Remove "."
diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el
index 77a52611ca7..7bd54528a6e 100644
--- a/lisp/vc-hg.el
+++ b/lisp/vc-hg.el
@@ -311,8 +311,8 @@ Optional arg VERSION is a version to annotate from."
311 (vc-hg-command buffer 0 file "annotate" "-d" "-n" (if version (concat "-r" version))) 311 (vc-hg-command buffer 0 file "annotate" "-d" "-n" (if version (concat "-r" version)))
312 (with-current-buffer buffer 312 (with-current-buffer buffer
313 (goto-char (point-min)) 313 (goto-char (point-min))
314 (re-search-forward "^[0-9]") 314 (re-search-forward "^[ \t]*[0-9]")
315 (delete-region (point-min) (1- (point))))) 315 (delete-region (point-min) (match-beginning 0))))
316 316
317 317
318;; The format for one line output by "hg annotate -d -n" looks like this: 318;; The format for one line output by "hg annotate -d -n" looks like this: