Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document that the only valid octal escape sequence is \0 #2905

Merged
merged 3 commits into from
Mar 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,8 @@ <h3 id="Escape_notation">Escape notation</h3>
</thead>
<tbody>
<tr>
<td><code>\<var>XXX</var></code><br>
(where <code><var>XXX</var></code> is 1–3 octal digits; range of
<code>0</code><code>377</code>)</td>
<td>ISO-8859-1 character / Unicode code point between <code>U+0000</code> and
<code>U+00FF</code></td>
<td><code>\0</code></td>
<td>U+0000 NULL character</td>
</tr>
<tr>
<td><code>\'</code></td>
Expand Down