diff options
| author | est31 <MTest31@outlook.com> | 2015-12-30 16:27:55 +0100 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2015-12-30 16:27:55 +0100 |
| commit | 40a9481f8776446bf4bce3f89d81330791b179cf (patch) | |
| tree | c9cba65da216f233621399dba7b0308c2feb4f88 /src/libsyntax/parse/parser.rs | |
| parent | 94434f1f6c58e7872a7a80b8b71bc2cbcc0cf260 (diff) | |
| download | rust-40a9481f8776446bf4bce3f89d81330791b179cf.tar.gz rust-40a9481f8776446bf4bce3f89d81330791b179cf.zip | |
Limit line length to below 100 chars
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 32a54d6e357..939b3f0fc58 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -4617,11 +4617,13 @@ impl<'a> Parser<'a> { _ => false, }; if is_macro_rules { - self.diagnostic().struct_span_err(span, "can't qualify macro_rules invocation with `pub`") + self.diagnostic().struct_span_err(span, "can't qualify macro_rules \ + invocation with `pub`") .fileline_help(span, "did you mean #[macro_export]?") .emit(); } else { - self.diagnostic().struct_span_err(span, "can't qualify macro invocation with `pub`") + self.diagnostic().struct_span_err(span, "can't qualify macro \ + invocation with `pub`") .fileline_help(span, "try adjusting the macro to put `pub` \ inside the invocation") .emit(); |
