Commit eb0e9e47 authored by William Stein's avatar William Stein

Print "warning: " before warnings, so they look different than errors.

parent a686fdc4
......@@ -81,7 +81,7 @@ def error(position, message):
def warning(position, message):
warn = CompileWarning(position, message)
line = "%s\n" % warn
line = "warning: %s\n" % warn
if listing_file:
listing_file.write(line)
if echo_file:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment