mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
16 lines
324 B
HTML
16 lines
324 B
HTML
<html>
|
|
<body>
|
|
Reports octal escapes, which are easily confused with back references.
|
|
Use hexadecimal escapes to avoid confusion.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
\07
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
\x07
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2017.1</small>
|
|
</body>
|
|
</html> |