mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-01 14:03:56 +08:00
9 lines
139 B
Plaintext
Executable File
9 lines
139 B
Plaintext
Executable File
# sed script for BFD header files
|
|
# Merge adjacent blank lines. Loop til no change.
|
|
:blin
|
|
/^$/,/^ *[^ ]*.*$/{
|
|
/^$/N
|
|
s/^ *\n *$//
|
|
}
|
|
t blin
|