Squeeze extra blank lines with cat(1).

Example:

find . -type f -iname '*.c' | while read -r i; do
  cat -s "$i" > "$i.new"
  mv "$i.new" "$i"
done
This commit is contained in:
orbea 2019-01-08 10:58:06 -08:00
parent 93346fed6b
commit bfc366decc
601 changed files with 0 additions and 5481 deletions

View file

@ -164,7 +164,6 @@ static int action_start_shader_pass(unsigned type, const char *label)
return 0;
}
static int action_start_shader_scale_pass(unsigned type, const char *label)
{
unsigned pass = type - MENU_SETTINGS_SHADER_PASS_SCALE_0;