From 40a9481f8776446bf4bce3f89d81330791b179cf Mon Sep 17 00:00:00 2001 From: est31 Date: Wed, 30 Dec 2015 16:27:55 +0100 Subject: Limit line length to below 100 chars --- src/libsyntax/parse/parser.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/libsyntax/parse') 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(); -- cgit 1.4.1-3-g733a5