aureliojargas / sedsed

Debugger and code formatter for sed scripts
https://aurelio.net/projects/sedsed/
GNU General Public License v3.0
115 stars 10 forks source link

Bug: comment after "{" gets repeated #50

Closed aureliojargas closed 5 years ago

aureliojargas commented 5 years ago
$ ./sedsed.py -e '5{ # foo' -e '}'
5 {                                    ;# foo
    # foo
}
aureliojargas commented 5 years ago

Fixed by the new sedparse parser, see #52.

$ ./sedsed.py -e '5{ # foo' -e '}'
5 {                                    ;# foo
}