about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorJohn Clements <clements@racket-lang.org>2013-02-04 13:22:43 -0800
committerJohn Clements <clements@racket-lang.org>2013-02-04 21:00:17 -0800
commit61827a70205c0be48badf09eced0e0d5dc6a4e02 (patch)
tree3c9f28935856d519612418783f6bfbaefa018467 /src/libsyntax
parentb4138c1151a55b8883f09712a35bb8117387e8d1 (diff)
downloadrust-61827a70205c0be48badf09eced0e0d5dc6a4e02.tar.gz
rust-61827a70205c0be48badf09eced0e0d5dc6a4e02.zip
lines too long
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/tt/transcribe.rs23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/libsyntax/ext/tt/transcribe.rs b/src/libsyntax/ext/tt/transcribe.rs
index ac82cfff690..ba42c3744e5 100644
--- a/src/libsyntax/ext/tt/transcribe.rs
+++ b/src/libsyntax/ext/tt/transcribe.rs
@@ -201,23 +201,24 @@ pub fn tt_next_token(r: &tt_reader_) -> TokenAndSpan {
           }
           tt_seq(sp, ref tts, ref sep, zerok) => {
               match lockstep_iter_size(tt_seq(sp, (*tts), (*sep), zerok), r) {
-                  lis_unconstrained => {
-                      r.sp_diag.span_fatal(
-                          sp, /* blame macro writer */
-                          ~"attempted to repeat an expression containing no syntax \
-                            variables matched as repeating at this depth");
+                lis_unconstrained => {
+                  r.sp_diag.span_fatal(
+                    sp, /* blame macro writer */
+                      ~"attempted to repeat an expression \
+                        containing no syntax \
+                        variables matched as repeating at this depth");
                   }
                   lis_contradiction(ref msg) => {
                       /* FIXME #2887 blame macro invoker instead*/
                       r.sp_diag.span_fatal(sp, (*msg));
                   }
                   lis_constraint(len, _) => {
-                      if len == 0 {
-                          if !zerok {
-                              r.sp_diag.span_fatal(sp, /* FIXME #2887 blame invoker
-                              */
-                                                   ~"this must repeat at least \
-                                                     once");
+                    if len == 0 {
+                      if !zerok {
+                        r.sp_diag.span_fatal(sp, /* FIXME #2887 blame invoker
+                        */
+                                             ~"this must repeat at least \
+                                               once");
                           }
 
                     r.cur.idx += 1u;