From owner-svn-src-head@freebsd.org Wed Mar 11 20:02:08 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A8EA526920C; Wed, 11 Mar 2020 20:02:08 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-il1-f196.google.com (mail-il1-f196.google.com [209.85.166.196]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48d2t80zb9z3Pyc; Wed, 11 Mar 2020 20:02:07 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-il1-f196.google.com with SMTP id j69so3251321ila.11; Wed, 11 Mar 2020 13:02:07 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=LtBRpcmrQq2/LAGhdnq5JGN/lZxaNoLF4jon63KHSnU=; b=JjgoM708d2Nq2lGjPTXtjKYQRAla7TJJEE3p1plT6q8qYTYfT7vxsVEHTkM5pwHMa+ mbsruduHH8clUZX3uZ0xLWjd0AU7G1l7vOP0C/qC5Lc52iy2w1CIed2uJvYOJJqYxwPi HpwlCoOenUzkRpYArjxqUXWbf2/efSL4OebTUR8keKjSAwtM+ucGcIaez0re4lO2fAyB bwRFr/2iZanTTdrquBpmB3kxr9YwgOWeomVhfYAJeVTyC9ql353knClUfRHsrlq6IvkG egfPbH12EGdsZz+XmhDE307dtVDJhKk32rH7l4dePq3v3W0hD3SFC7RF5xngFU2u3+Mc 7MUw== X-Gm-Message-State: ANhLgQ2/Xe4RbX1Wy21TU3yux9jzd5h0YjHSEZ1GxwS6SCRGU9/hHheH 9bbAYOr6NwKsiEhggSWNMIIhb/ICCo9EK/gPDd16aDJv X-Google-Smtp-Source: ADFU+vsZQMn2V/VwMt22ZZGd87vel6RMLh5oQ76Y+cJKm+V1GL7dT3Hg6cJadNb7SdgTYsHkSW8CkwIxOtIhFpv8eiY= X-Received: by 2002:a92:c110:: with SMTP id p16mr4894123ile.100.1583956926547; Wed, 11 Mar 2020 13:02:06 -0700 (PDT) MIME-Version: 1.0 References: <202003111815.02BIFIux018547@repo.freebsd.org> In-Reply-To: From: Ed Maste Date: Wed, 11 Mar 2020 16:01:54 -0400 Message-ID: Subject: Re: svn commit: r358891 - head/share/man/man5 To: Mateusz Piotrowski <0mp@freebsd.org> Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 48d2t80zb9z3Pyc X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-5.99 / 15.00]; NEURAL_HAM_MEDIUM(-0.99)[-0.993,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Mar 2020 20:02:08 -0000 On Wed, 11 Mar 2020 at 15:07, Mateusz Piotrowski <0mp@freebsd.org> wrote: > > Hi, > > On 3/11/20 7:15 PM, Ed Maste wrote: > > Author: emaste > > Date: Wed Mar 11 18:15:18 2020 > > New Revision: 358891 > > URL: https://svnweb.freebsd.org/changeset/base/358891 > > > > Log: > > elf.5: start documenting ELF note sections > ... > > Modified: head/share/man/man5/elf.5 > > ============================================================================== > > --- head/share/man/man5/elf.5 Wed Mar 11 15:12:31 2020 (r358890) > > +++ head/share/man/man5/elf.5 Wed Mar 11 18:15:18 2020 (r358891) > > @@ -24,7 +24,7 @@ > ... > > +.Bl -column -offset indent "Sy Field" "Sy Size" "Sy Description" > > The "Sy" macros can be dropped from those strings specifying the width > of columns. They are not expanded there anyway. Interesting, thanks for the note. I probably copied them from arch.7, so it might need similar treatment. They did have a side-effect of putting more space between columns though; with extra Sy: Field Size Description namesz 32 bits Size of name descsz 32 bits Size of desc type 32 bits OS-dependent note type name namesz Null-terminated originator name desc descsz OS-dependent note data Without: Field Size Description namesz 32 bits Size of name descsz 32 bits Size of desc type 32 bits OS-dependent note type name namesz Null-terminated originator name desc descsz OS-dependent note data