Let man(1) show manuals for the current architecture by default,
authorschwarze <schwarze@openbsd.org>
Fri, 16 Jan 2015 21:12:01 +0000 (21:12 +0000)
committerschwarze <schwarze@openbsd.org>
Fri, 16 Jan 2015 21:12:01 +0000 (21:12 +0000)
and support the MACHINE environment variable as documented in man(1).
Missing feature reported by pascal@.

usr.bin/mandoc/main.c

index c19fd36..60657a6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.121 2015/01/15 04:26:06 schwarze Exp $ */
+/*     $OpenBSD: main.c,v 1.122 2015/01/16 21:12:01 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2012, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -18,6 +18,7 @@
  */
 
 #include <sys/types.h>
+#include <sys/param.h> /* MACHINE */
 
 #include <assert.h>
 #include <ctype.h>
@@ -300,6 +301,10 @@ main(int argc, char *argv[])
                        argv++;
                        argc--;
                }
+               if (search.arch == NULL)
+                       search.arch = getenv("MACHINE");
+               if (search.arch == NULL)
+                       search.arch = MACHINE;
        }
 
        rc = MANDOCLEVEL_OK;