wmllint missed a case in converting the track-marking macros.

This commit is contained in:
Eric S. Raymond 2008-10-20 11:25:36 +00:00
parent b9d1aa4c36
commit 7306eced9e
22 changed files with 23 additions and 23 deletions

View file

@ -52,7 +52,7 @@
{NEW_JOURNEY 295 320}
{NEW_JOURNEY 317 333}
{NEW_JOURNEY 343 344}
{CROSS 358 337}
{NEW_BATTLE 363 342}
[/part]
[/story]

View file

@ -138,7 +138,7 @@
{NEW_JOURNEY 550 345}
{NEW_JOURNEY 537 331}
{NEW_JOURNEY 523 315}
{CROSS 496 294}
{NEW_BATTLE 501 299}
[/part]
[/story]

View file

@ -81,7 +81,7 @@
[part]
background=sotbe1.png
show_title=yes
{CROSS 496 294}
{NEW_BATTLE 501 299}
[/part]
[/story]

View file

@ -112,7 +112,7 @@
{NEW_JOURNEY 453 192}
{NEW_JOURNEY 431 202}
{NEW_JOURNEY 404 213}
{CROSS 374 221}
{NEW_BATTLE 379 226}
[/part]
[/story]

View file

@ -239,7 +239,7 @@
{NEW_JOURNEY 309 220}
{NEW_JOURNEY 276 214}
{NEW_JOURNEY 246 217}
{CROSS 212 213}
{NEW_BATTLE 217 218}
[/part]
[/story]

View file

@ -222,7 +222,7 @@
{NEW_JOURNEY 221 98}
{NEW_JOURNEY 220 115}
{NEW_JOURNEY 219 138}
{CROSS 217 156}
{NEW_BATTLE 222 161}
[/part]
[/story]

View file

@ -152,7 +152,7 @@
{NEW_JOURNEY 240 277}
{NEW_JOURNEY 232 297}
{NEW_JOURNEY 220 319}
{CROSS 204 333}
{NEW_BATTLE 209 338}
[/part]
[/story]

View file

@ -128,7 +128,7 @@
{NEW_JOURNEY 294 290}
{NEW_JOURNEY 314 289}
{NEW_JOURNEY 340 296}
{CROSS 356 293}
{NEW_BATTLE 361 298}
[/part]
[/story]
[event]

View file

@ -135,7 +135,7 @@
{NEW_JOURNEY 221 166}
{NEW_JOURNEY 242 158}
{NEW_JOURNEY 258 150}
{CROSS 277 143}
{NEW_BATTLE 282 148}
[/part]
[/story]

View file

@ -86,7 +86,7 @@
{NEW_JOURNEY 415 199}
{NEW_JOURNEY 434 193}
{NEW_JOURNEY 457 185}
{CROSS 463 171}
{NEW_BATTLE 468 176}
[/part]
[/story]

View file

@ -130,7 +130,7 @@
{NEW_JOURNEY 349 319}
{NEW_JOURNEY 324 329}
{NEW_JOURNEY 323 355}
{CROSS 318 378}
{NEW_BATTLE 323 383}
[/part]
[/story]

View file

@ -160,7 +160,7 @@
[part]
background=sotbe3.png
show_title=yes
{CROSS 318 378}
{NEW_BATTLE 323 383}
[/part]
[/story]

View file

@ -153,7 +153,7 @@
{NEW_JOURNEY 408 403}
{NEW_JOURNEY 434 397}
{NEW_JOURNEY 460 401}
{CROSS 474 410}
{NEW_BATTLE 479 415}
[/part]
[/story]

View file

@ -148,7 +148,7 @@
{NEW_JOURNEY 366 244}
{NEW_JOURNEY 390 234}
{NEW_JOURNEY 415 235}
{CROSS 428 218}
{NEW_BATTLE 433 223}
[/part]
[/story]

View file

@ -151,7 +151,7 @@
show_title=yes
{NEW_JOURNEY 433 223}
{NEW_JOURNEY 452 217}
{CROSS 460 200}
{NEW_BATTLE 465 205}
[/part]
[/story]

View file

@ -177,7 +177,7 @@
{NEW_JOURNEY 375 284}
{NEW_JOURNEY 349 307}
{NEW_JOURNEY 327 328}
{CROSS 302 343}
{NEW_BATTLE 307 348}
[/part]
[/story]

View file

@ -153,7 +153,7 @@
{NEW_JOURNEY 256 377}
{NEW_JOURNEY 241 400}
{NEW_JOURNEY 235 426}
{CROSS 218 440}
{NEW_BATTLE 223 445}
[/part]
[/story]

View file

@ -140,7 +140,7 @@
{NEW_JOURNEY 355 415}
{NEW_JOURNEY 397 423}
{NEW_JOURNEY 444 428}
{CROSS 473 419}
{NEW_BATTLE 478 424}
[/part]
[/story]

View file

@ -167,7 +167,7 @@
[part]
background=sotbe3.png
show_title=yes
{CROSS 490 430}
{NEW_BATTLE 495 435}
[/part]
[/story]

View file

@ -46,7 +46,7 @@
{NEW_JOURNEY 230 90}
{NEW_JOURNEY 219 104}
{NEW_JOURNEY 205 114}
{CROSS 187 117}
{NEW_BATTLE 192 122}
[/part]
[/story]
#enddef
@ -76,7 +76,7 @@
{NEW_JOURNEY 147 155}
{NEW_JOURNEY 132 164}
{NEW_JOURNEY 117 173}
{CROSS 99 183}
{NEW_BATTLE 104 188}
[/part]
[/story]
#enddef

View file

@ -76,4 +76,4 @@
id=special
name= _ "special"
icon="group_x"
[/editor_group]
[/editor_group]

View file

@ -770,7 +770,7 @@ def hack_syntax(filename, lines):
lines[i] = lines[i].replace("FLAG_RED_CENTERED", "NEW_REST")
elif "{FLAG_WHITE_CENTERED" in lines[i]:
lines[i] = lines[i].replace("FLAG_WHITE_CENTERED", "OLD_REST")
elif "{DOT " in lines[i]:
elif "{DOT " in lines[i] or "CROSS" in lines[i]:
m = re.search("{(DOT|CROSS) ([0-9]+) ([0-9]+)}", lines[i])
if m:
n = m.group(1)