Re: [PATCH 5/6] blame-options.txt: place each -L option variation on its own line

2013-07-22 Thread Thomas Rast
Junio C Hamano gits...@pobox.com writes: Also I wonder if this one Documentation/git-log.txt:156 git log -L '/int main/',/^}/:main.c should be more like one of these: git log -L '/int main/,/^}/':main.c git log -L '/int main/,/^}/:main.c' I find it somewhat hard to spot the

Re: [PATCH 5/6] blame-options.txt: place each -L option variation on its own line

2013-07-22 Thread Junio C Hamano
Thomas Rast tr...@inf.ethz.ch writes: Junio C Hamano gits...@pobox.com writes: Also I wonder if this one Documentation/git-log.txt:156 git log -L '/int main/',/^}/:main.c should be more like one of these: git log -L '/int main/,/^}/':main.c git log -L '/int

Re: [PATCH 5/6] blame-options.txt: place each -L option variation on its own line

2013-07-18 Thread Thomas Rast
Eric Sunshine sunsh...@sunshineco.com writes: Standard practice in Git documentation is for each variation of an option (such as: -p / --porcelain) to be placed on its own line in the OPTIONS table. The -L option does not follow suit. It cuddles -L start,end and -L :regex, separated by a

Re: [PATCH 5/6] blame-options.txt: place each -L option variation on its own line

2013-07-18 Thread Junio C Hamano
Thomas Rast t...@thomasrast.ch writes: Eric Sunshine sunsh...@sunshineco.com writes: Standard practice in Git documentation is for each variation of an option (such as: -p / --porcelain) to be placed on its own line in the OPTIONS table. The -L option does not follow suit. It cuddles -L

[PATCH 5/6] blame-options.txt: place each -L option variation on its own line

2013-07-17 Thread Eric Sunshine
Standard practice in Git documentation is for each variation of an option (such as: -p / --porcelain) to be placed on its own line in the OPTIONS table. The -L option does not follow suit. It cuddles -L start,end and -L :regex, separated by a comma. This is inconsistent and potentially confusing