diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/vc-cvs.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7196d29c477..6e9bbb1ef46 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-07-07 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for | ||
| 4 | non-top-level files. | ||
| 5 | |||
| 1 | 2009-07-07 Kenichi Handa <handa@m17n.org> | 6 | 2009-07-07 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * international/mule-cmds.el (reset-language-environment): Put | 8 | * international/mule-cmds.el (reset-language-environment): Put |
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index c3f94dc2a15..6ef8db50537 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el | |||
| @@ -457,7 +457,8 @@ The changes are between FIRST-REVISION and SECOND-REVISION." | |||
| 457 | 0 ;; there were no news; indicate success | 457 | 0 ;; there were no news; indicate success |
| 458 | (if (re-search-forward | 458 | (if (re-search-forward |
| 459 | (concat "^\\([CMUP] \\)?" | 459 | (concat "^\\([CMUP] \\)?" |
| 460 | (regexp-quote (file-name-nondirectory file)) | 460 | (regexp-quote |
| 461 | (substring file (length default-directory))) | ||
| 461 | "\\( already contains the differences between \\)?") | 462 | "\\( already contains the differences between \\)?") |
| 462 | nil t) | 463 | nil t) |
| 463 | (cond | 464 | (cond |