From 3bcc9de82835e3bb1df07267fac2f87342394a34 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 7 Dec 2012 15:08:09 -0800 Subject: [PATCH] Long lines --- src/librusti/rusti.rc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/librusti/rusti.rc b/src/librusti/rusti.rc index 5b2b593b692..9393168905a 100644 --- a/src/librusti/rusti.rc +++ b/src/librusti/rusti.rc @@ -303,7 +303,8 @@ fn compile_crate(src_filename: ~str, binary: ~str) -> Option { let sess = driver::build_session(options, diagnostic::emit); sess.building_library = true; let cfg = driver::build_configuration(sess, binary, input); - let outputs = driver::build_output_filenames(input, &None, &None, sess); + let outputs = driver::build_output_filenames( + input, &None, &None, sess); // If the library already exists and is newer than the source // file, skip compilation and return None. let mut should_compile = true; @@ -374,7 +375,8 @@ fn run_cmd(repl: &mut Repl, _in: io::Reader, _out: io::Writer, ~"help" => { io::println( ~":{\\n ..lines.. \\n:}\\n - execute multiline command\n" + - ~":load ... - loads given crates as dynamic libraries" + + ~":load ... - \ + loads given crates as dynamic libraries" + ~":clear - clear the screen\n" + ~":exit - exit from the repl\n" + ~":help - show this message");