diff options
Diffstat (limited to 'gdb/common/format.c')
-rw-r--r-- | gdb/common/format.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/common/format.c b/gdb/common/format.c index e162ac9..2fa3593 100644 --- a/gdb/common/format.c +++ b/gdb/common/format.c @@ -56,6 +56,9 @@ format_pieces::format_pieces (const char **arg) case 'b': *f++ = '\b'; break; + case 'e': + *f++ = '\e'; + break; case 'f': *f++ = '\f'; break; |