Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Feb 3, 2013
1 parent 278eff2 commit a78bca8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion base/sysimg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ include("git.jl")
include("pkg.jl")

include = include_from_node1
print("\e[0G\e[2K")

# prime method cache with some things we know we'll need right after startup
compile_hint(pwd, ())
Expand Down
5 changes: 4 additions & 1 deletion src/toplevel.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ void jl_load(const char *fname)
{
if (jl_current_module == jl_base_module) {
//This deliberatly uses ios, because stdio initialization has been moved to Julia
jl_printf(JL_STDOUT, "\e[0G\e[2K %s", fname);
jl_printf(JL_STDOUT, "%s\n", fname);
}
char *fpath = (char*)fname;
uv_statbuf_t stbuf;
Expand All @@ -414,6 +414,9 @@ void jl_load(const char *fname)
jl_start_parsing_file(fpath);
jl_parse_eval_all(fpath);
if (fpath != fname) free(fpath);
if (jl_current_module == jl_base_module) {
jl_printf(JL_STDOUT, "\e[1F\e[2K");
}
}

// load from filename given as a ByteString object
Expand Down

0 comments on commit a78bca8

Please sign in to comment.