aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-13 20:29:29 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-13 20:29:29 +1200
commitf7c3f9b21cfec02c26498c220194966586294feb (patch)
treebd1b278ab1c3f3afde0d5994852d7f69f869eba5 /bin
parentAdd rfcf(1), rfcr(1), and rfct(1) (diff)
downloaddotfiles-f7c3f9b21cfec02c26498c220194966586294feb.tar.gz
dotfiles-f7c3f9b21cfec02c26498c220194966586294feb.zip
Use escape for pagebreak char in rfct(1)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/rfct2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rfct b/bin/rfct
index ce15d4d7..dff7a4e2 100755
--- a/bin/rfct
+++ b/bin/rfct
@@ -9,7 +9,7 @@ BEGIN {
!/[[:alnum:]]/ { next }
# Skip any block with a page break marker in it
-/ / { next }
+/\x0c/ { next }
# Print the block followed by two newlines
{ printf "%s\n\n", $0 }