diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/vc-arch.el | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5411336e86f..4eebddf0dc0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2005-01-02 Stefan <monnier@iro.umontreal.ca> | 1 | 2005-01-02 Stefan <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case. | ||
| 4 | |||
| 3 | * files.el (hack-local-variables): Fix last change. | 5 | * files.el (hack-local-variables): Fix last change. |
| 4 | 6 | ||
| 5 | 2005-01-02 Jay Belanger <belanger@truman.edu> | 7 | 2005-01-02 Jay Belanger <belanger@truman.edu> |
| @@ -25,8 +27,7 @@ | |||
| 25 | 2005-01-01 Jay Belanger <belanger@truman.edu> | 27 | 2005-01-01 Jay Belanger <belanger@truman.edu> |
| 26 | 28 | ||
| 27 | * calc/calc-yank.el (calc-edit-mode): Change default header. | 29 | * calc/calc-yank.el (calc-edit-mode): Change default header. |
| 28 | (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new | 30 | (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header. |
| 29 | header. | ||
| 30 | * calc/calc-store.el (calc-edit-variable): Change title to match new | 31 | * calc/calc-store.el (calc-edit-variable): Change title to match new |
| 31 | header. | 32 | header. |
| 32 | * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit | 33 | * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit |
diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el index 70dbdcc85f2..3ea023b41cb 100644 --- a/lisp/vc-arch.el +++ b/lisp/vc-arch.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vc-arch.el --- VC backend for the Arch version-control system | 1 | ;;; vc-arch.el --- VC backend for the Arch version-control system |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004 | 3 | ;; Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 |
| 4 | ;; Free Software Foundation, Inc. | 4 | ;; Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: FSF (see vc.el for full credits) | 6 | ;; Author: FSF (see vc.el for full credits) |
| @@ -270,7 +270,7 @@ Return non-nil if FILE is unchanged." | |||
| 270 | (defun vc-arch-workfile-version (file) | 270 | (defun vc-arch-workfile-version (file) |
| 271 | (let* ((root (expand-file-name "{arch}" (vc-arch-root file))) | 271 | (let* ((root (expand-file-name "{arch}" (vc-arch-root file))) |
| 272 | (defbranch (vc-arch-default-version file))) | 272 | (defbranch (vc-arch-default-version file))) |
| 273 | (when (and defbranch (string-match "\\`\\(.+@[^/\n]+\\)/\\(\\(\\(.*\\)--.*\\)--.*\\)\\'" defbranch)) | 273 | (when (and defbranch (string-match "\\`\\(.+@[^/\n]+\\)/\\(\\(\\(.*\\)\\(--.*\\)?\\)--.*\\)\\'" defbranch)) |
| 274 | (let* ((archive (match-string 1 defbranch)) | 274 | (let* ((archive (match-string 1 defbranch)) |
| 275 | (category (match-string 4 defbranch)) | 275 | (category (match-string 4 defbranch)) |
| 276 | (branch (match-string 3 defbranch)) | 276 | (branch (match-string 3 defbranch)) |