10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-06-28 16:12:07 +02:00

Bug in 'end program'

Version:1.1.29
This commit is contained in:
Anthony Scemama 2009-09-25 15:22:46 +02:00
parent 64e6854ef2
commit a2c2cb9f63
2 changed files with 2 additions and 2 deletions

View File

@ -420,6 +420,7 @@ def irp_simple_statements(text):
def process_end(line): def process_end(line):
'''Set irp_here variable in provider block''' '''Set irp_here variable in provider block'''
line.text = "end"
if command_line.do_assert or command_line.do_debug: if command_line.do_assert or command_line.do_debug:
i = line.i i = line.i
f = line.filename f = line.filename
@ -429,7 +430,6 @@ def irp_simple_statements(text):
] ]
else: else:
result = [ line ] result = [ line ]
return result return result
def process_begin_provider(line): def process_begin_provider(line):

View File

@ -1 +1 @@
version = "1.1.28" version = "1.1.29"