diff options
| author | Graydon Hoare <[email protected]> | 2011-03-25 13:48:37 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-25 13:48:37 -0700 |
| commit | 846f2e2ba994268725f38c36fa12f1a09f21615c (patch) | |
| tree | da140a8be7fd4ef9b9785087fac7fc90e1d35ea9 /src/comp/front | |
| parent | Switch xfail system to use comments embedded in source files. (diff) | |
| download | rust-846f2e2ba994268725f38c36fa12f1a09f21615c.tar.xz rust-846f2e2ba994268725f38c36fa12f1a09f21615c.zip | |
Bulk-edit compile commands in emacs chatter to point to assumed build/ dir off src root.
Diffstat (limited to 'src/comp/front')
| -rw-r--r-- | src/comp/front/ast.rs | 2 | ||||
| -rw-r--r-- | src/comp/front/creader.rs | 2 | ||||
| -rw-r--r-- | src/comp/front/eval.rs | 2 | ||||
| -rw-r--r-- | src/comp/front/extfmt.rs | 2 | ||||
| -rw-r--r-- | src/comp/front/lexer.rs | 2 | ||||
| -rw-r--r-- | src/comp/front/parser.rs | 2 | ||||
| -rw-r--r-- | src/comp/front/token.rs | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 70b3320d..0081ebba 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -509,6 +509,6 @@ fn is_call_expr(@expr e) -> bool { // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// compile-command: "make -k -C ../../../build 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: // diff --git a/src/comp/front/creader.rs b/src/comp/front/creader.rs index 4a5f28ff..0f3c0d98 100644 --- a/src/comp/front/creader.rs +++ b/src/comp/front/creader.rs @@ -291,5 +291,5 @@ fn lookup_def(session.session sess, &span sp, int cnum, vec[ast.ident] path) // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// compile-command: "make -k -C ../../../build 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: diff --git a/src/comp/front/eval.rs b/src/comp/front/eval.rs index 4cf3765f..48795b5c 100644 --- a/src/comp/front/eval.rs +++ b/src/comp/front/eval.rs @@ -433,6 +433,6 @@ impure fn eval_crate_directive(parser p, // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// compile-command: "make -k -C ../../../build 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: // diff --git a/src/comp/front/extfmt.rs b/src/comp/front/extfmt.rs index 0a32a851..c2aa06c0 100644 --- a/src/comp/front/extfmt.rs +++ b/src/comp/front/extfmt.rs @@ -548,6 +548,6 @@ fn pieces_to_expr(vec[piece] pieces, vec[@ast.expr] args) -> @ast.expr { // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// compile-command: "make -k -C ../../../build 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: // diff --git a/src/comp/front/lexer.rs b/src/comp/front/lexer.rs index 6975d9c5..f3702593 100644 --- a/src/comp/front/lexer.rs +++ b/src/comp/front/lexer.rs @@ -786,6 +786,6 @@ impure fn next_token(reader rdr) -> token.token { // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// compile-command: "make -k -C ../../../build 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: // diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index 6a37128b..98c669c9 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -2480,6 +2480,6 @@ impure fn parse_crate_from_crate_file(parser p) -> @ast.crate { // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// compile-command: "make -k -C ../../../build 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: // diff --git a/src/comp/front/token.rs b/src/comp/front/token.rs index 72d82010..e66e3aaa 100644 --- a/src/comp/front/token.rs +++ b/src/comp/front/token.rs @@ -359,5 +359,5 @@ fn to_str(token t) -> str { // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// compile-command: "make -k -C ../../../build 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: |