-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Flush all accamulated characters at the end of loop
To apply any substitutions in them. Closes #496
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
-- -- | ||
------------------------------------------------------------------------------ | ||
-- -- | ||
-- Copyright © 2016, Vadim Godunko <[email protected]> -- | ||
-- Copyright © 2016-2018, Vadim Godunko <[email protected]> -- | ||
-- All rights reserved. -- | ||
-- -- | ||
-- Redistribution and use in source and binary forms, with or without -- | ||
|
@@ -86,10 +86,10 @@ procedure Test_454 is | |
& "<html xmlns='http://www.w3.org/1999/xhtml'>" | ||
& " <body>" | ||
& " post 1" | ||
& " post 2 -> subitem 1-2" | ||
& " post 2 -> subitem 1-2" | ||
& " post 1 -> subitem 1-1" | ||
& " post 1 -> subitem 1-2" | ||
& " post 2" | ||
& " post 2 -> subitem 2-2" | ||
& " post 2 -> subitem 2-1" | ||
& " post 2 -> subitem 2-2" | ||
& " </body></html>"); | ||
|
||
|