Skip to content

Commit 61827a7

Browse files
committed
lines too long
1 parent b4138c1 commit 61827a7

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

src/libsyntax/ext/tt/transcribe.rs

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -201,23 +201,24 @@ pub fn tt_next_token(r: &tt_reader_) -> TokenAndSpan {
201201
}
202202
tt_seq(sp, ref tts, ref sep, zerok) => {
203203
match lockstep_iter_size(tt_seq(sp, (*tts), (*sep), zerok), r) {
204-
lis_unconstrained => {
205-
r.sp_diag.span_fatal(
206-
sp, /* blame macro writer */
207-
~"attempted to repeat an expression containing no syntax \
208-
variables matched as repeating at this depth");
204+
lis_unconstrained => {
205+
r.sp_diag.span_fatal(
206+
sp, /* blame macro writer */
207+
~"attempted to repeat an expression \
208+
containing no syntax \
209+
variables matched as repeating at this depth");
209210
}
210211
lis_contradiction(ref msg) => {
211212
/* FIXME #2887 blame macro invoker instead*/
212213
r.sp_diag.span_fatal(sp, (*msg));
213214
}
214215
lis_constraint(len, _) => {
215-
if len == 0 {
216-
if !zerok {
217-
r.sp_diag.span_fatal(sp, /* FIXME #2887 blame invoker
218-
*/
219-
~"this must repeat at least \
220-
once");
216+
if len == 0 {
217+
if !zerok {
218+
r.sp_diag.span_fatal(sp, /* FIXME #2887 blame invoker
219+
*/
220+
~"this must repeat at least \
221+
once");
221222
}
222223

223224
r.cur.idx += 1u;

0 commit comments

Comments
 (0)