From 9fc36123d7286396671af91b5ba56716132e3c40 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Sat, 31 May 2008 15:23:58 +0000 Subject: [PATCH] (vc-cvs-after-dir-status): Support spaces in file names and improve support for unregistered files. --- lisp/ChangeLog | 5 +++++ lisp/vc-cvs.el | 44 ++++++++++++++++++++------------------------ 2 files changed, 25 insertions(+), 24 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6c2047a70bd..cc632f0edd0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-05-31 Dan Nicolaescu + + * vc-cvs.el (vc-cvs-after-dir-status): Support spaces in file + names and improve support for unregistered files. + 2008-05-31 Glenn Morris * Makefile.in (compile-last): Replace tr in `els' assignment with sed. diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 091c36c99cf..4b0118d6362 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -842,7 +842,7 @@ state." (re-search-forward "\\(^=+\n\\([^=c?\n].*\n\\|\n\\)+\\)\\|\\(\\(^?? .*\n\\)+\\)\\|\\(^cvs status: Examining .*\n\\)" nil t) - ;; XXX: get rid of narrowing here. + ;; FIXME: get rid of narrowing here. (narrow-to-region (match-beginning 0) (match-end 0)) (goto-char (point-min)) ;; The subdir @@ -855,29 +855,25 @@ state." (push (list file 'unregistered) result) (forward-line 1)) ;; A file entry. - (when (re-search-forward "^File: " nil t) - (when (setq missing (looking-at "no file ")) - (goto-char (match-end 0))) - (cond - ((re-search-forward "\\=\\([^ \t]+\\)" nil t) - (setq file (file-relative-name - (expand-file-name (match-string 1) subdir))) - (if (not (re-search-forward "\\=[ \t]+Status: \\(.*\\)" nil t)) - (push (list file 'unregistered) result) - (setq status-str (match-string 1)) - (setq status - (cond - ((string-match "Up-to-date" status-str) 'up-to-date) - ((string-match "Locally Modified" status-str) 'edited) - ((string-match "Needs Merge" status-str) 'needs-merge) - ((string-match "Needs \\(Checkout\\|Patch\\)" status-str) - (if missing 'missing 'needs-update)) - ((string-match "Locally Added" status-str) 'added) - ((string-match "Locally Removed" status-str) 'removed) - ((string-match "File had conflicts " status-str) 'conflict) - (t 'edited))) - (unless (eq status 'up-to-date) - (push (list file status) result)))))) + (when (re-search-forward "^File: \\(no file \\)?\\(.*[^ \t]\\)[ \t]+Status: \\(.*\\)" nil t) + (setq missing (match-string 1)) + (setq file (file-relative-name + (expand-file-name (match-string 2) subdir))) + (setq status-str (match-string 3)) + (setq status + (cond + ((string-match "Up-to-date" status-str) 'up-to-date) + ((string-match "Locally Modified" status-str) 'edited) + ((string-match "Needs Merge" status-str) 'needs-merge) + ((string-match "Needs \\(Checkout\\|Patch\\)" status-str) + (if missing 'missing 'needs-update)) + ((string-match "Locally Added" status-str) 'added) + ((string-match "Locally Removed" status-str) 'removed) + ((string-match "File had conflicts " status-str) 'conflict) + ((string-match "Unknown" 'unregistered)) + (t 'edited))) + (unless (eq status 'up-to-date) + (push (list file status) result))) (goto-char (point-max)) (widen)) (funcall update-function result)) -- 2.39.2