On Tue, 28 Jan 2020 at 07:39, David Edmondson <d...@dme.org> wrote: > > Eric Blake <ebl...@redhat.com> writes: > > > On 1/24/20 4:34 AM, David Edmondson wrote: > >> Texinfo defines @var for metasyntactic variables and such terms are > >> shown in upper-case or italics in the output of makeinfo. When > >> considering an option to a command, such as "-n", upper-casing is > >> undesirable as it may confuse the reader or be in conflict with the > >> equivalent upper-case option. > >> > >> Replace the use of @var for options with @code to avoid this. > >> > >> Signed-off-by: David Edmondson <david.edmond...@oracle.com> > >> --- > >> qemu-img.texi | 16 ++++++++-------- > >> 1 file changed, 8 insertions(+), 8 deletions(-) > > > > Is this patch still needed given Peter's recent push to move to rST > > documentation? > > No, it would be obviated by those changes.
Yeah; in particular the rST formatting corrects this minor inconsistency. (I noticed it because my emacs find-and-replace operations which turn @var{foo} into *FOO* were incorrectly turning the @var{-s} into *-S*, which they wouldn't have done if it were @code{-s}...) thanks -- PMM