Re: [fpc-pascal] Improve message "Wrong ppu found"

2019-04-27 Thread Sven Barth via fpc-pascal
leledumbo via fpc-pascal schrieb am Sa., 27. Apr. 2019, 15:14: > > Please provide a real example of a compiler output, cause I can't find > "Wrong ppu found" in the sources. > > I think what he meant is: > > $ grep -i 'wrong ppu version' -r * > pkgutil.pas: Comment(V_Error,'Wrong PPU

Re: [fpc-pascal] Improve message "Wrong ppu found"

2019-04-27 Thread leledumbo via fpc-pascal
> Please provide a real example of a compiler output, cause I can't find "Wrong ppu found" in the sources. I think what he meant is: $ grep -i 'wrong ppu version' -r * pkgutil.pas: Comment(V_Error,'Wrong PPU Version '+tostr(ppuversion)+' in '+PPUFn); utils/ppufiles.pp: Error('Error:

Re: [fpc-pascal] XML - Indent, text content, special char

2019-04-27 Thread Michael Van Canneyt
On Sat, 27 Apr 2019, Gabor Boros wrote: Hi All, I have an existing XML file. After load(, modify) and save this file some mandatory formatting things lost from it. I need same indent as before, same text contents and not replace every special chars. With the below code I got the attached

[fpc-pascal] XML - Indent, text content, special char

2019-04-27 Thread Gabor Boros
Hi All, I have an existing XML file. After load(, modify) and save this file some mandatory formatting things lost from it. I need same indent as before, same text contents and not replace every special chars. With the below code I got the attached OUTPUT.xml from the attached INPUT.xml. Any