Skip to content
Snippets Groups Projects
Commit ed6af266 authored by Lyle Johnson's avatar Lyle Johnson
Browse files

Modified the generate_kwargs_lib.rb script so that it remembers

the previous warning level the user had set instead of just assuming
that warnings were turned on. [#8 state:resolved]
parent 56911bfe
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ class Generator
out.puts <<-END
require 'fox16'
$VERBOSE = nil
old_verbose = $VERBOSE; $VERBOSE = nil
module Fox
......@@ -132,7 +132,7 @@ END
def generate_closing(out)
out.puts "end"
out.puts ""
out.puts "$VERBOSE = true"
out.puts "$VERBOSE = old_verbose"
end
def scan_for_descriptions(filename)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment