GNOME Bugzilla – Bug 664689
valac considers "\v" (vertical tab) an invalid escape sequence
Last modified: 2016-09-20 10:13:05 UTC
I just ran into the following problem: simple-query.vala:32.56-32.56: error: invalid escape sequence private const string _whitespace_chars = " \f\n\r\t\v"; ^ \v isn't exactly the most important escape sequence, but it's a member of isspace(3), so it's probably good to support it for compatibility sake.
It must be supported by g_strescape first.
Depends on upstream glib issue: Bug 664830 g_strescape doesn't natively handle \v (vertical tab)
Created attachment 335843 [details] [review] Add support for the \v escape charactor
Attachment 335843 [details] pushed as 57441df - Add support for the \v escape charactor