diff options
author | Lothar Serra Mari | 2019-06-06 18:20:25 +0200 |
---|---|---|
committer | Lothar Serra Mari | 2019-06-06 18:23:38 +0200 |
commit | e380e6e0be69935e71af043f1e000b1936b0fda5 (patch) | |
tree | 15b27b966003674ead3a8f0361338499ef5fa178 /dists/amiga | |
parent | 0bb8c0c8a6b6fb0416dac098776f2a16a3eb0119 (diff) | |
download | scummvm-rg350-e380e6e0be69935e71af043f1e000b1936b0fda5.tar.gz scummvm-rg350-e380e6e0be69935e71af043f1e000b1936b0fda5.tar.bz2 scummvm-rg350-e380e6e0be69935e71af043f1e000b1936b0fda5.zip |
AMIGA: Sync RM2AG.rexx with RM2AG.rexx.in
Diffstat (limited to 'dists/amiga')
-rw-r--r-- | dists/amiga/RM2AG.rexx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dists/amiga/RM2AG.rexx b/dists/amiga/RM2AG.rexx index 93ea838d2b..ab41d64df7 100644 --- a/dists/amiga/RM2AG.rexx +++ b/dists/amiga/RM2AG.rexx @@ -1,6 +1,5 @@ /* README(.md) to .guide converter $VER: RM2AG.rexx 0.20 (18.05.2019) - This script converts a given markdown README file of ScummVM to a basic hypertext Amiga guide file. */ @@ -30,7 +29,7 @@ OPEN(guide_write,'README.guide','W') Prepare the Amiga guide file, add the intro and fixed text. */ WRITELN(guide_write,'@DATABASE ScummVM README.guide') -WRITELN(guide_write,'@$VER: ScummVM Readme 2.0.0 (17.12.2017)') +WRITELN(guide_write,'@$VER: ScummVM Readme 2.1.0git') WRITELN(guide_write,'@(C) by The ScummVM team') WRITELN(guide_write,'@AUTHOR The ScummVM team') WRITELN(guide_write,'@WORDWRAP') @@ -181,7 +180,6 @@ DO WHILE EOF(readme_read) = 0 Two chapters (1.0 and 7.8) are "empty", consisting of only it's chapter names. We link them to their respective sub chapters (1.1 and 7.8.1), so we don't end up displaying a blank page. - If chapter 1.1 is found don't close the NODE, just write the line. */ IF POS('<>1.1<>',working_line) = 1 THEN DO |