about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-12-07 15:08:09 -0800
committerBrian Anderson <banderson@mozilla.com>2012-12-07 15:08:09 -0800
commit3bcc9de82835e3bb1df07267fac2f87342394a34 (patch)
tree98b738a5e55a10478958c259c4280538411ed7b1
parent28027d38380a4b217301bc6e3c02aa8c0cb1726d (diff)
downloadrust-3bcc9de82835e3bb1df07267fac2f87342394a34.tar.gz
rust-3bcc9de82835e3bb1df07267fac2f87342394a34.zip
Long lines
-rw-r--r--src/librusti/rusti.rc6
1 files 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<bool> {
         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 <crate> ... - loads given crates as dynamic libraries" +
+                ~":load <crate> ... - \
+                  loads given crates as dynamic libraries" +
                 ~":clear - clear the screen\n" +
                 ~":exit - exit from the repl\n" +
                 ~":help - show this message");