about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorManuel Hoffmann <manuel@polythematik.de>2015-04-13 15:56:10 +0200
committerManuel Hoffmann <manuel@polythematik.de>2015-04-13 15:56:10 +0200
commit4abade50d7096ee5585255ca08d69b1ccd73d09f (patch)
treee677c8d3cbe7e588088410b08f53bb2a55666bfb /src/libsyntax/parse
parent0a2885ad944aa1a5f60a72a7551b1b45367637f6 (diff)
downloadrust-4abade50d7096ee5585255ca08d69b1ccd73d09f.tar.gz
rust-4abade50d7096ee5585255ca08d69b1ccd73d09f.zip
Added a help span which informs the user about the escaping of curly braces in a format string if a wrongly escaped one is detected in a string.
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/lexer/mod.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libsyntax/parse/lexer/mod.rs b/src/libsyntax/parse/lexer/mod.rs
index 22b7d5c9f1d..f891318659a 100644
--- a/src/libsyntax/parse/lexer/mod.rs
+++ b/src/libsyntax/parse/lexer/mod.rs
@@ -843,13 +843,19 @@ impl<'a> StringReader<'a> {
                                     if ascii_only { "unknown byte escape" }
                                     else { "unknown character escape" },
                                     c);
+                                let sp = codemap::mk_sp(escaped_pos, last_pos);
                                 if e == '\r' {
-                                    let sp = codemap::mk_sp(escaped_pos, last_pos);
                                     self.span_diagnostic.span_help(
                                         sp,
                                         "this is an isolated carriage return; consider checking \
                                          your editor and version control settings")
                                 }
+                                if (e == '{' || e == '}') && !ascii_only {
+                                    self.span_diagnostic.span_help(
+                                        sp,
+                                        "if used in a formatting string, \
+                                        curly braces are escaped with `{{` and `}}`")
+                                }
                                 false
                             }
                         }