From owner-freebsd-hackers@FreeBSD.ORG Tue Aug 26 08:20:49 2014 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDDE19BE; Tue, 26 Aug 2014 08:20:49 +0000 (UTC) Received: from mailout08.t-online.de (mailout08.t-online.de [194.25.134.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout00.t-online.de", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7D2A737FB; Tue, 26 Aug 2014 08:20:49 +0000 (UTC) Received: from fwd41.aul.t-online.de (fwd41.aul.t-online.de [172.20.27.139]) by mailout08.t-online.de (Postfix) with SMTP id 318B21BEE17; Tue, 26 Aug 2014 10:20:46 +0200 (CEST) Received: from [192.168.119.33] (bVdudUZboh93d0hbuP+EAAEclfvXAAhpKxrNgOfnXlgl-qsjXadHi8HQFoRaqXzZyp@[84.154.101.219]) by fwd41.t-online.de with (TLSv1.2:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1XMBzh-1eS5lA0; Tue, 26 Aug 2014 10:20:45 +0200 Message-ID: <53FC435C.9000905@freebsd.org> Date: Tue, 26 Aug 2014 10:20:44 +0200 From: Stefan Esser User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: Sergey Kandaurov Subject: Re: [PATCH] Missing references to vt(4) "NEWCONS" in man-pages References: <53F59FE3.7030802@freebsd.org> <20140821085540.GA9402@omg> In-Reply-To: <20140821085540.GA9402@omg> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-ID: bVdudUZboh93d0hbuP+EAAEclfvXAAhpKxrNgOfnXlgl-qsjXadHi8HQFoRaqXzZyp X-TOI-MSGID: 67ae4d33-a563-4571-afcb-c4550bb20d57 Cc: "freebsd-hackers@freebsd.org" , freebsd-doc@freebsd.org X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Aug 2014 08:20:49 -0000 Am 21.08.2014 um 10:55 schrieb Sergey Kandaurov: > On Thu, Aug 21, 2014 at 09:29:39AM +0200, Stefan Esser wrote: >> Hi, > > a couple of nits inline Thank you very much for the corrections. I have just committed the updated man-pages as SVN rev. 270647, and I want to MFC them as soon as possible/permitted. Best regards, STefan >> Index: share/man/man4/kbdmux.4 >> =================================================================== >> >> --- share/man/man4/kbdmux.4 (revision 270244) >> +++ share/man/man4/kbdmux.4 (working copy) @@ -35,6 +35,7 @@ .Xr >> atkbd 4 , .Xr syscons 4 , .Xr ukbd 4 +.Xr vt 4 , > > misplaced comma -- comma moved up one line >> .Sh HISTORY The .Nm Index: share/man/man4/splash.4 >> =================================================================== >> >> --- share/man/man4/splash.4 (revision 270244) >> +++ share/man/man4/splash.4 (working copy) @@ -245,6 +245,7 @@ >> .Xr vidcontrol 1 , .Xr syscons 4 , .Xr vga 4 , +.\" .Xr vt 4 , > > why is it commented out? -- I was not sure, whether splash works with vt -- The comments are removed and vt(4) is now referenced in slash(4) [...] >> Index: share/man/man4/vt.4 >> =================================================================== >> >> --- share/man/man4/vt.4 (revision 270244) >> +++ share/man/man4/vt.4 (working copy) @@ -211,7 +211,7 @@ >> Default is 15, all enabled. .El .Sh FILES -.Bl -tag -width >> /usr/share/syscons/keymaps/* -compact +.Bl -tag -width >> /usr/share/vt/keymaps/* -compact .It Pa /dev/console .It Pa >> /dev/consolectl .It Pa /dev/ttyv* > > this section still misses description for paths to fonts and key > maps. The font and keymap paths have been added. Thanks again!