From: Gabor Greif Date: Thu, 28 Aug 2008 23:15:28 +0000 (+0000) Subject: just a brain dump for a small tool X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d80360ae2e9f4c039f38043b09c7fcf4a78ccc86;p=oota-llvm.git just a brain dump for a small tool that brings us to 80-col violations or tabs. Usage: visit-violations At the moment it outputs editor invocations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55509 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/visit-violations b/utils/visit-violations new file mode 100755 index 00000000000..f16ad58e469 --- /dev/null +++ b/utils/visit-violations @@ -0,0 +1,5 @@ +#!/usr/bin/env tcsh + +make check-line-length Sources="$1" \ +| awk -F : '/:[0-9]*:/ {print "emacs", "+" $2, $1}' \ +| sort -r