summaryrefslogtreecommitdiffstats
path: root/dvb-t/ch-All
diff options
context:
space:
mode:
authorJonathan McCrohan <jmccrohan@gmail.com>2014-05-13 22:21:41 +0100
committerJonathan McCrohan <jmccrohan@gmail.com>2014-05-13 22:21:41 +0100
commitf5a002e361636dd41dc84a5fa1a2e1ee77862edb (patch)
treee940c5d28325c6fb8578b3b8b785f9f5cc2749d2 /dvb-t/ch-All
parent8ba2155000fb193a9f99d9065066159513e4a109 (diff)
downloaddtv-scan-tables-f5a002e361636dd41dc84a5fa1a2e1ee77862edb.tar.gz
Imported Upstream version 0+git20140512.1246b27upstream/0+git20140512.1246b27
Diffstat (limited to 'dvb-t/ch-All')
0 files changed, 0 insertions, 0 deletions
und-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#! /bin/bash

# $Id$
# $URL$


# -kr    Use Kernighan & Ritchie coding style.
# -l120  Set maximum line length for non-comment lines to 150.

rm *.c~ *.h~
indent -kr -l120 *.c *.h

for i in *.c *.h; do
  if !(diff -q $i $i~); then
    rm $i~
  else
    mv $i~ $i
  fi
done