-
Notifications
You must be signed in to change notification settings - Fork 237
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
error: non-ISO-standard escape sequence, '\e' #62
Comments
Paging @wolfv @felixguendling Hey guys. Is there an ISO-standards compliant way to show and hide console cursor in *nix? Relevant code: static inline void show_console_cursor(bool const show) {
std::fputs(show ? "\e[?25h" : "\e[?25l", stdout);
} |
Seems like "\e" is GNU only and "\033" is the standard sequence. |
This error is repeated only in release 1.9, there is no error in the master branch. gcc version:
compile keys:
diff maser->release 1.9
|
Okay, thanks. I've moved the tag for |
Thanks! Good job)) |
``` lib/DnAppArduino/src/DnApp/Arduino/WelcomeMessagePrinter.h:137:41: warning: non-ISO-standard escape sequence, '\e' 137 | const auto VT100_FORMAT_GREEN = "\e[0;32m"; | ^~~~~~~~~~ ``` p-ranav/indicators#62 (comment)
Hello!
When building release 1.9 with -Werror, an error occurs: "error: non-ISO-standard escape sequence, '\ e' [-Werror]"
link to line
The text was updated successfully, but these errors were encountered: