Re: [PATCH 2/6] doc: typeset long command-line options as literal

2016-06-28 Thread Junio C Hamano
Matthieu Moy writes: > Sorry, I forgot to mention when sending the series: this is to be > applied on top of tr/doc-tt (in next, marked "will merge to master"). Yup, I figured it out and these are queued there. tr/doc-tt is part of 'master' now. -- To unsubscribe from this list: send the line "

Re: [PATCH 2/6] doc: typeset long command-line options as literal

2016-06-28 Thread Matthieu Moy
Jeff King writes: > On Mon, Jun 27, 2016 at 07:46:19PM +0200, Matthieu Moy wrote: > >> grep.extendedRegexp:: >> -If set to true, enable '--extended-regexp' option by default. This >> -option is ignored when the `grep.patternType` option is set to a value >> +If set to true, enable `-

Re: [PATCH 2/6] doc: typeset long command-line options as literal

2016-06-27 Thread Jeff King
On Mon, Jun 27, 2016 at 07:46:19PM +0200, Matthieu Moy wrote: > Similarly to the previous commit, use backquotes instead of > forward-quotes, for long options. > > This was obtained with: > > perl -pi -e "s/'(--[a-z][a-z=<>-]*)'/\`\$1\`/g" *.txt > > and manual tweak to remove false positive i

[PATCH 2/6] doc: typeset long command-line options as literal

2016-06-27 Thread Matthieu Moy
Similarly to the previous commit, use backquotes instead of forward-quotes, for long options. This was obtained with: perl -pi -e "s/'(--[a-z][a-z=<>-]*)'/\`\$1\`/g" *.txt and manual tweak to remove false positive in ascii-art (o'--o'--o' to describe rewritten history). Signed-off-by: Matthie