We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3029a8b commit 7028480Copy full SHA for 7028480
src/Assembly/Parse.v
@@ -385,10 +385,11 @@ Global Instance show_RawLine : Show RawLine
385
386
Global Instance show_Line : Show Line
387
:= fun l
388
- => l.(indent) ++ show l.(rawline) ++ l.(pre_comment_whitespace) ++ match l.(comment) with
389
- | Some c => ";" ++ c
390
- | None => ""
391
- end.
+ => strip_trailing_newline
+ (l.(indent) ++ show l.(rawline) ++ l.(pre_comment_whitespace) ++ match l.(comment) with
+ | Some c => ";" ++ c
+ | None => ""
392
+ end).
393
394
Definition show_Line_with_line_number : Show Line
395
:= fun l => show l ++ "; (line " ++ show l.(line_number) ++ ")".
0 commit comments