summaryrefslogtreecommitdiff
path: root/helpers/mkc_long_lines.in
blob: 91a07e4daf9f02cef28d29ac820730a360ab6c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!@AWK@ -f

############################################################
# Copyright (c) 2014 by Aleksey Cheusov
#
# See LICENSE file in the distribution.
############################################################

# processes backslash in the end of line

/\\$/ {
	printf "%s", substr($0, 1, length($0)-1)
	next
}
{
	print
}