Module Name:    src
Committed By:   rillig
Date:           Tue Mar  8 23:13:05 UTC 2022

Modified Files:
        src/usr.bin/man: man.c

Log Message:
man: remove unused global variable 'instype' (since yesterday)

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.71 -r1.72 src/usr.bin/man/man.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/man/man.c
diff -u src/usr.bin/man/man.c:1.71 src/usr.bin/man/man.c:1.72
--- src/usr.bin/man/man.c:1.71	Tue Mar  8 23:09:36 2022
+++ src/usr.bin/man/man.c	Tue Mar  8 23:13:05 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: man.c,v 1.71 2022/03/08 23:09:36 rillig Exp $	*/
+/*	$NetBSD: man.c,v 1.72 2022/03/08 23:13:05 rillig Exp $	*/
 
 /*
  * Copyright (c) 1987, 1993, 1994, 1995
@@ -40,7 +40,7 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 19
 #if 0
 static char sccsid[] = "@(#)man.c	8.17 (Berkeley) 1/31/95";
 #else
-__RCSID("$NetBSD: man.c,v 1.71 2022/03/08 23:09:36 rillig Exp $");
+__RCSID("$NetBSD: man.c,v 1.72 2022/03/08 23:13:05 rillig Exp $");
 #endif
 #endif /* not lint */
 
@@ -72,7 +72,7 @@ __RCSID("$NetBSD: man.c,v 1.71 2022/03/0
 enum inserttype {
 	INS_TAIL,
 	INS_HEAD
-} instype;
+};
 
 /*
  * manstate: structure collecting the current global state so we can

Reply via email to