Change 'needs-patch to 'needs-update.
[bpt/emacs.git] / lisp / vc-cvs.el
index eec8138..ba80153 100644 (file)
@@ -838,7 +838,7 @@ state."
          ((string-match "Locally Modified" status)             'edited)
          ((string-match "Needs Merge" status)                  'needs-merge)
          ((string-match "Needs \\(Checkout\\|Patch\\)" status)
-          (if missing 'missing 'needs-patch))
+          (if missing 'missing 'needs-update))
          ((string-match "Locally Added" status)                'added)
          ((string-match "Locally Removed" status)              'removed)
          ((string-match "File had conflicts " status)          'conflict)
@@ -903,7 +903,7 @@ state."
                   ((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-patch))
+                   (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)
@@ -922,7 +922,7 @@ state."
   ;;                  (?M . edited)
   ;;                  (?P . needs-merge)
   ;;                  (?R . removed)
-  ;;                  (?U . needs-patch))))
+  ;;                  (?U . needs-update))))
   ;;   (goto-char (point-min))
   ;;   (while (not (eobp))
   ;;     (if (looking-at "^[ACMPRU?] \\(.*\\)$")