Skip to content

Commit f12855c

Browse files
committed
---
yaml --- r: 278015 b: refs/heads/auto c: 5f70e8f h: refs/heads/master i: 278013: d53eeb0 278011: dcb083b 278007: 3df2b7d 277999: a573c2b 277983: 534dcb2 277951: dec61fc 277887: fa165a9 277759: daab45d 277503: 0f41694
1 parent 65b52c5 commit f12855c

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: dbe700ef656b63a8c630dac41c46f1b3e3323727
11+
refs/heads/auto: 5f70e8f6cdf7392f70db1ee1a1e0668d056ab527
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/src/libsyntax/parse/lexer/unicode_chars.rs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,22 @@ use errors::DiagnosticBuilder;
1616
use super::StringReader;
1717

1818
const UNICODE_ARRAY: &'static [(char, &'static str, char)] = &[
19+
(' ', "No-Break Space", ' '),
20+
(' ', "Ogham Space Mark", ' '),
21+
(' ', "En Quad", ' '),
22+
(' ', "Em Quad", ' '),
23+
(' ', "En Space", ' '),
24+
(' ', "Em Space", ' '),
25+
(' ', "Three-Per-Em Space", ' '),
26+
(' ', "Four-Per-Em Space", ' '),
27+
(' ', "Six-Per-Em Space", ' '),
28+
(' ', "Figure Space", ' '),
29+
(' ', "Punctuation Space", ' '),
30+
(' ', "Thin Space", ' '),
31+
(' ', "Hair Space", ' '),
32+
(' ', "Narrow No-Break Space", ' '),
33+
(' ', "Medium Mathematical Space", ' '),
34+
(' ', "Ideographic Space", ' '),
1935
('ߺ', "Nko Lajanyalan", '_'),
2036
('﹍', "Dashed Low Line", '_'),
2137
('﹎', "Centreline Low Line", '_'),
@@ -173,6 +189,7 @@ const UNICODE_ARRAY: &'static [(char, &'static str, char)] = &[
173189
('Ⳇ', "Coptic Capital Letter Old Coptic Esh", '/'), ];
174190

175191
const ASCII_ARRAY: &'static [(char, &'static str)] = &[
192+
(' ', "Space"),
176193
('_', "Underscore"),
177194
('-', "Minus/Hyphen"),
178195
(',', "Comma"),

0 commit comments

Comments
 (0)