diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-05-26 14:46:23 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-05-26 14:46:23 +0000 |
commit | ecf6ac3b49a50f2c897099df0c00123bee1745f5 (patch) | |
tree | fb0916e2586a1d924af5eef2536d0ba186e8f0c6 /usr.bin | |
parent | 84adf6e81794f69b771b953b97dfc4e9f98b3900 (diff) |
fix `editors' and `unedit' commands usage..
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/edit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/cvs/edit.c b/usr.bin/cvs/edit.c index f4d905391a4..f1240ee6dd4 100644 --- a/usr.bin/cvs/edit.c +++ b/usr.bin/cvs/edit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: edit.c,v 1.2 2005/05/26 07:27:01 xsa Exp $ */ +/* $OpenBSD: edit.c,v 1.3 2005/05/26 14:46:22 xsa Exp $ */ /* * Copyright (c) 2005 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -67,8 +67,8 @@ struct cvs_cmd cvs_cmd_editors = { CVS_OP_EDITORS, CVS_REQ_EDITORS, "editors", { }, "List editors on a file", - "", - "", + "[-lR] [file ...]", + "lR", NULL, 0, cvs_edit_init, @@ -85,7 +85,7 @@ struct cvs_cmd cvs_cmd_unedit = { CVS_OP_UNEDIT, CVS_REQ_NOOP, "unedit", { }, "Undo an edit command", - "[-lR] ...", + "[-lR] [file ...]", "lR", NULL, CF_SORT | CF_RECURSE, |