diff options
| -rw-r--r-- | docs/cssc.texi | 8 | ||||
| -rw-r--r-- | src/sccs.c | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/docs/cssc.texi b/docs/cssc.texi index f29e2a0..df7e275 100644 --- a/docs/cssc.texi +++ b/docs/cssc.texi @@ -333,7 +333,7 @@ BitKeeper files. Use this option with @emph{extreme} care. @end table -@node Flags, Modification Request Numbers, ,admin +@node Flags, Modification Request Numbers, Admin Options, admin @subsection Flags @cindex Flags @@ -1125,7 +1125,7 @@ that have been created since last week. Include even removed deltas in the output. Removed deltas have a type "R", as output by the :DT: keyword. -@item -c@var{[cc]YYMMDDHHMMSS} +@item -c@code{[cc]YYMMDDHHMMSS} @cindex Year 2000 Specifies the time of the ``cutoff''. When this option is given, the delta selected by @code{prs} is the last one checked in before the @@ -1480,7 +1480,7 @@ delta information is printed. @item -e ``Everything''; Means the same as @samp{-i -u -f -t -d}. -@item -c@var{[cc]YYMMDDHHMMSS} +@item -c@code{[cc]YYMMDDHHMMSS} @cindex Year 2000 Specifies the time of the ``cutoff''. When this option is given, @code{prt} stops printing delta information when it reaches a @sc{sid} @@ -1510,7 +1510,7 @@ Print the flags of the @sc{sccs} file (@pxref{Flags}). @item -i Print the serial numbers of included, excluded, and ignored deltas. -@item -r@var{[cc]YYMMDDHHMMSS} +@item -r@code{[cc]YYMMDDHHMMSS} Specifies a cutoff, as with the @option{-c} option, but with the opposite sense; that is, nothing is printed for deltas that are more recent than the indicated time. @@ -89,6 +89,7 @@ static const char filever[] = "$Id: sccs.c,v 1.44 2007/12/19 00:21:14 jay Exp $" #define _PATH_SCCSPRT ("prt") #define _PATH_SCCSRMDEL ("rmdel") #define _PATH_SCCSCDC ("cdc") +#define _PATH_SCCSSACT ("sact") #define _PATH_SCCSVAL ("val") #define _PATH_SCCSWHAT ("what") #undef _PATH_TMP @@ -330,6 +331,7 @@ const struct sccsprog SccsProg[] = {"prs", PROG, 0, _PATH_SCCSPRS, 0 }, {"prt", PROG, 0, _PATH_SCCSPRT, 0 }, {"rmdel", PROG, REALUSER, _PATH_SCCSRMDEL, 0 }, + {"sact", PROG, 0, _PATH_SCCSSACT, 0 }, {"val", PROG, 0, _PATH_SCCSVAL, 0 }, {"what", PROG, NO_SDOT, _PATH_SCCSWHAT, 0 }, {"sccsdiff", PROG, REALUSER, _PATH_SCCSDIFF, 0 }, |
