We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c97cec commit bf81c84Copy full SHA for bf81c84
src/Prelude.js
@@ -213,7 +213,7 @@ exports.showCharImpl = function (c) {
213
var code = c.charCodeAt(0);
214
if (code < 0x20 || code === 0x7F) {
215
switch (c) {
216
- case "\a": return "'\\a'";
+ case "\x07": return "'\\a'";
217
case "\b": return "'\\b'";
218
case "\f": return "'\\f'";
219
case "\n": return "'\\n'";
@@ -235,7 +235,7 @@ exports.showStringImpl = function (s) {
235
case "\"":
236
case "\\":
237
return "\\" + c;
238
- case "\a": return "\\a";
+ case "\x07": return "\\a";
239
case "\b": return "\\b";
240
case "\f": return "\\f";
241
case "\n": return "\\n";
0 commit comments