Mark Polesky wrote:
> In fact, we literally have thousands of cases:
>
> $ git grep -c "^...@item\s*.\+" |
>   sed -n 's/.*://p' |
>   awk '{total+=$0}END{print total}'
> 5103

Now I see a thinko in my regex, which counted all instances
of @itemize.  But fixing that still leaves thousands, so the
point still stands:

$ git grep -c "^...@item \+.\+" |
  sed -n 's/.*://p' |
  awk '{total+=$0}END{print total}'
4140

- Mark


      

_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to