Closed bendmorris closed 5 years ago
\e is commonly supported but nonstandard; compiling with -Wpedantic results a warning: use of non-standard escape character '\e' [-Wpedantic]. The hex/octal versions would be better since they're part of the standard.
\e
-Wpedantic
use of non-standard escape character '\e' [-Wpedantic]
No benefit in removing support for \e.
The benefit is that language-c would no longer generate nonstandard C.
Ah yes, thanks for the clarification.
\e
is commonly supported but nonstandard; compiling with-Wpedantic
results a warning:use of non-standard escape character '\e' [-Wpedantic]
. The hex/octal versions would be better since they're part of the standard.