# HG changeset patch # User mpm@selenic.com # Date 1121966682 18000 # Node ID 9095e3456ea7f5c3d79e3219b1f05163e9f95977 # Parent 9246ae925d573f41d381611b4510952a33cd7a5e Change C to M in status diff -r 9246ae925d57 -r 9095e3456ea7 doc/hg.1.txt --- a/doc/hg.1.txt Thu Jul 21 12:23:55 2005 -0500 +++ b/doc/hg.1.txt Thu Jul 21 12:24:42 2005 -0500 @@ -332,7 +332,7 @@ The codes used to show the status of files are: - C = changed + M = changed A = added R = removed ? = not tracked diff -r 9246ae925d57 -r 9095e3456ea7 mercurial/commands.py --- a/mercurial/commands.py Thu Jul 21 12:23:55 2005 -0500 +++ b/mercurial/commands.py Thu Jul 21 12:24:42 2005 -0500 @@ -967,7 +967,7 @@ def status(ui, repo, *pats, **opts): '''show changed files in the working directory - C = changed + M = modified A = added R = removed ? = not tracked''' @@ -976,7 +976,7 @@ (c, a, d, u) = map(lambda x: relfilter(repo, x), (c, a, d, u)) for f in c: - ui.write("C ", f, "\n") + ui.write("M ", f, "\n") for f in a: ui.write("A ", f, "\n") for f in d: