diff options
author | 2005-05-26 14:46:22 +0000 | |
---|---|---|
committer | 2005-05-26 14:46:22 +0000 | |
commit | 11a58ac12cc45ce758e5ec29836911d4d62cd674 (patch) | |
tree | 0533033d2a7904fa1205420911376b843a85133f /usr.bin/cvs/edit.c | |
parent | Merge common functionality of __strsignal and strerror_r. (diff) | |
download | wireguard-openbsd-11a58ac12cc45ce758e5ec29836911d4d62cd674.tar.xz wireguard-openbsd-11a58ac12cc45ce758e5ec29836911d4d62cd674.zip |
fix `editors' and `unedit' commands usage..
Diffstat (limited to 'usr.bin/cvs/edit.c')
-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, |