aboutsummaryrefslogtreecommitdiff
path: root/bin/unf.awk
diff options
context:
space:
mode:
Diffstat (limited to 'bin/unf.awk')
-rw-r--r--bin/unf.awk8
1 files changed, 2 insertions, 6 deletions
diff --git a/bin/unf.awk b/bin/unf.awk
index 22a10aa8..a9837a8a 100644
--- a/bin/unf.awk
+++ b/bin/unf.awk
@@ -18,9 +18,7 @@ body {
}
# Write any buffer contents once we hit a line not starting with a space
-/^[^ \t]/ {
- wrbuf()
-}
+/^[^ \t]/ { wrbuf() }
# Append the current line to the buffer
{
@@ -29,6 +27,4 @@ body {
}
# Write the buffer out again when we hit the end
-END {
- wrbuf()
-}
+END { wrbuf() }