diff options
author | Rob Landley <rob@landley.net> | 2018-08-21 17:16:42 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-08-21 17:16:42 -0500 |
commit | 873a3216ccc5c1f2bbc4f053c851c2a8d24e4553 (patch) | |
tree | 4269c46e424121a3e813d5ee558b813adab7445f /lib | |
parent | 8e221d54c809cdbc5ebfed71abdd4ec27f3cd266 (diff) | |
download | toybox-873a3216ccc5c1f2bbc4f053c851c2a8d24e4553.tar.gz |
Use \033 instead of \e gcc extension.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/interestingtimes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/interestingtimes.c b/lib/interestingtimes.c index bc8e0fea..636964aa 100644 --- a/lib/interestingtimes.c +++ b/lib/interestingtimes.c @@ -56,7 +56,7 @@ int terminal_probesize(unsigned *xx, unsigned *yy) // Send probe: bookmark cursor position, jump to bottom right, // query position, return cursor to bookmarked position. - xprintf("\e[s\e[999C\e[999B\e[6n\e[u"); + xprintf("\033[s\033[999C\033[999B\033[6n\033[u"); return 0; } |