diff --git a/usr.sbin/moused/moused.c b/usr.sbin/moused/moused.c index eb515240c5d0..3779deea2b26 100644 --- a/usr.sbin/moused/moused.c +++ b/usr.sbin/moused/moused.c @@ -1,4 +1,4 @@ -/* $NetBSD: moused.c,v 1.30 2023/06/24 05:15:42 msaitoh Exp $ */ +/* $NetBSD: moused.c,v 1.31 2024/03/29 06:13:40 rillig Exp $ */ /** ** Copyright (c) 1995 Michael Smith, All rights reserved. ** @@ -48,7 +48,7 @@ #include #ifndef lint -__RCSID("$NetBSD: moused.c,v 1.30 2023/06/24 05:15:42 msaitoh Exp $"); +__RCSID("$NetBSD: moused.c,v 1.31 2024/03/29 06:13:40 rillig Exp $"); #endif /* not lint */ #include @@ -685,15 +685,6 @@ main(int argc, char *argv[]) } break; - case 'C': - rodent.clickthreshold = atoi(optarg); - if ((rodent.clickthreshold < 0) || - (rodent.clickthreshold > MAX_CLICKTHRESHOLD)) { - warnx("invalid argument `%s'", optarg); - usage(); - } - break; - case 'D': rodent.flags |= ClearDTR; break;