diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-01-13 23:39:43 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-01-13 23:39:43 +0000 |
commit | 0788be35d30bba9fccc1f817923c6e7b88723fe5 (patch) | |
tree | d12e5fef028d0a7e206367644cf25686825aba47 /usr.bin/cvs/cvs.c | |
parent | 29424443fa2fd8e5e3025e2c6c4dcffc046738ac (diff) |
resurrect the -N and -p options to the diff command
requested and tested by brad@, thanks!
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r-- | usr.bin/cvs/cvs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 5b28ea2d86b..853cfb6a340 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.33 2005/01/13 18:47:31 jfb Exp $ */ +/* $OpenBSD: cvs.c,v 1.34 2005/01/13 23:39:42 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -131,8 +131,8 @@ static struct cvs_cmd { }, { CVS_OP_DIFF, "diff", { "di", "dif" }, cvs_diff, - "[-cilu] [-D date] [-r rev] ...", - "cD:ilur:", + "[-cilNpu] [-D date] [-r rev] ...", + "cD:ilNpr:u", "Show differences between revisions", NULL, }, |