From 041d7f637f00642465feaba537fab32473db97dc Mon Sep 17 00:00:00 2001 From: schnoebe Date: Sun, 14 Nov 2010 20:53:54 +0000 Subject: [PATCH] bin/44088 Change the initialization state of gtagsmode to 0, (unset). This brings about least astonishment for users, permittings tags functionality to work as expected. --- dist/nvi/common/options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/nvi/common/options.c b/dist/nvi/common/options.c index 5778de9ba145..2c1ff9bedc06 100644 --- a/dist/nvi/common/options.c +++ b/dist/nvi/common/options.c @@ -1,4 +1,4 @@ -/* $NetBSD: options.c,v 1.8 2010/05/13 17:52:11 tnozaki Exp $ */ +/* $NetBSD: options.c,v 1.9 2010/11/14 20:53:54 schnoebe Exp $ */ /*- * Copyright (c) 1991, 1993, 1994 @@ -98,7 +98,7 @@ OPTLIST const optlist[] = { {L("flash"), NULL, OPT_1BOOL, 0}, #ifdef GTAGS /* O_GTAGSMODE FreeBSD/NetBSD */ - {L("gtagsmode"),NULL, OPT_1BOOL, 0}, + {L("gtagsmode"),NULL, OPT_0BOOL, 0}, #endif /* O_HARDTABS 4BSD */ {L("hardtabs"), NULL, OPT_NUM, 0},