mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-14 09:11:27 +00:00
scripts/specialize-patch: Avoid that joining two lines generates a space in front of a tab.
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4379 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
@@ -503,11 +503,11 @@ BEGIN {
|
||||
while (match($0, "\\\\$"))
|
||||
{
|
||||
previous_line = $0
|
||||
sub("\\\\$", "", previous_line)
|
||||
sub("[ \t]*\\\\$", "", previous_line)
|
||||
getline
|
||||
input_line[input_line_count++] = $0
|
||||
sub("^+", "", $0)
|
||||
$0 = previous_line $0
|
||||
sub("^+[ \t]*", "", $0)
|
||||
$0 = previous_line " " $0
|
||||
}
|
||||
|
||||
discard = 0
|
||||
|
||||
Reference in New Issue
Block a user