diff options
author | agc <agc@pkgsrc.org> | 2007-02-24 12:16:12 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2007-02-24 12:16:12 +0000 |
commit | 499156544c17a124d0af4067fa8f9f1b63faa7b6 (patch) | |
tree | bcc76e813943fbbd59a14df738987ce8489d1fd1 /misc | |
parent | d7c640f6ad40b98a8f2aa8c031fb36656436239e (diff) | |
download | pkgsrc-499156544c17a124d0af4067fa8f9f1b63faa7b6.tar.gz |
Update to 20070224 - cosmetic changes, make default width 5 characters
smaller, and fix a typo in the man page.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/autocue/Makefile | 5 | ||||
-rw-r--r-- | misc/autocue/files/autocue.1 | 6 | ||||
-rw-r--r-- | misc/autocue/files/autocue.c | 8 |
3 files changed, 9 insertions, 10 deletions
diff --git a/misc/autocue/Makefile b/misc/autocue/Makefile index b944d76d765..37f625502e3 100644 --- a/misc/autocue/Makefile +++ b/misc/autocue/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2007/01/07 09:14:00 rillig Exp $ +# $NetBSD: Makefile,v 1.5 2007/02/24 12:16:12 agc Exp $ # -DISTNAME= autocue-20060129 -PKGREVISION= 1 +DISTNAME= autocue-20070224 CATEGORIES= misc MASTER_SITES= # empty DISTFILES= # empty diff --git a/misc/autocue/files/autocue.1 b/misc/autocue/files/autocue.1 index c7849d2303a..0347aea161d 100644 --- a/misc/autocue/files/autocue.1 +++ b/misc/autocue/files/autocue.1 @@ -1,4 +1,4 @@ -.\" $NetBSD: autocue.1,v 1.1.1.1 2006/01/28 20:47:22 agc Exp $ +.\" $NetBSD: autocue.1,v 1.2 2007/02/24 12:16:12 agc Exp $ .\" .\" Copyright © 2006 Alistair Crooks. All rights reserved. .\" @@ -26,7 +26,7 @@ .\" NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS .\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd January 28, 2006 +.Dd February 24, 2007 .Dt AUTOCUE 1 .Os .Sh NAME @@ -62,7 +62,7 @@ Slow readers can generally read at 3 characters per second, medium at 7 characters per second, and fast readers at 10 or more characters per second. .It Fl c Ar maxcut -Provides the maximum number of X11 cut buffers whihc will be used. +Provides the maximum number of X11 cut buffers which will be used. .It Fl s Ar speed Provides pre-computed .Ar fast , diff --git a/misc/autocue/files/autocue.c b/misc/autocue/files/autocue.c index 8e9ea2f304d..cbb7ccbc995 100644 --- a/misc/autocue/files/autocue.c +++ b/misc/autocue/files/autocue.c @@ -1,4 +1,4 @@ -/* $NetBSD: autocue.c,v 1.2 2006/01/29 00:11:15 agc Exp $ */ +/* $NetBSD: autocue.c,v 1.3 2007/02/24 12:16:12 agc Exp $ */ /* * Copyright © 2006 Alistair Crooks. All rights reserved. @@ -32,7 +32,7 @@ #ifndef lint __COPYRIGHT("@(#) Copyright © 2006 \ The NetBSD Foundation, Inc. All rights reserved."); -__RCSID("$NetBSD: autocue.c,v 1.2 2006/01/29 00:11:15 agc Exp $"); +__RCSID("$NetBSD: autocue.c,v 1.3 2007/02/24 12:16:12 agc Exp $"); #endif #include <err.h> @@ -46,8 +46,8 @@ __RCSID("$NetBSD: autocue.c,v 1.2 2006/01/29 00:11:15 agc Exp $"); enum { MaxCutBuffers = 4, - FmtGoal = 50, - FmtMax = 55, + FmtGoal = 45, + FmtMax = 50, SlowDenom = 3, MediumDenom = 7, |