]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-cvs-after-dir-status): Support spaces in file
authorDan Nicolaescu <dann@ics.uci.edu>
Sat, 31 May 2008 15:23:58 +0000 (15:23 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sat, 31 May 2008 15:23:58 +0000 (15:23 +0000)
names and improve support for unregistered files.

lisp/ChangeLog
lisp/vc-cvs.el

index 6c2047a70bdcd40123356f7cbbc92155db8e0538..cc632f0edd0f41f31579662710a2b172b839861c 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-cvs.el (vc-cvs-after-dir-status): Support spaces in file
+       names and improve support for unregistered files.
+
 2008-05-31  Glenn Morris  <rgm@gnu.org>
 
        * Makefile.in (compile-last): Replace tr in `els' assignment with sed.
index 091c36c99cfa046459da9e28c777e0bf80f9d89b..4b0118d6362b762746cc5a2be124629d7c496988 100644 (file)
@@ -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))