diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-05-31 15:29:36 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-05-31 15:29:36 +0000 |
commit | 17996b53fd7d07771b13f4201b06e5fd726168ef (patch) | |
tree | 43f372edbaa145fd4a9cb50cb492807a4749facf /lisp/vc-cvs.el | |
parent | 9fc36123d7286396671af91b5ba56716132e3c40 (diff) | |
download | emacs-17996b53fd7d07771b13f4201b06e5fd726168ef.tar.gz |
Fix typos.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 4b0118d6362..2747b2b234a 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -870,7 +870,7 @@ state." ((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)) + ((string-match "Unknown" status-str) 'unregistered) (t 'edited))) (unless (eq status 'up-to-date) (push (list file status) result))) |