From 57a70fc14128ddc0996cf4f13a8e0f50228f663f Mon Sep 17 00:00:00 2001 From: mfranz Date: Sat, 27 Oct 2007 17:25:39 +0000 Subject: [PATCH] unescape \a and \b as well --- src/Main/util.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main/util.cxx b/src/Main/util.cxx index 1d0d6440f..6b916e862 100644 --- a/src/Main/util.cxx +++ b/src/Main/util.cxx @@ -168,9 +168,9 @@ fgUnescape(const char *s) } else if (*s == 'f') { r += '\f'; } else if (*s == 'a') { - ; + r += '\a'; } else if (*s == 'b') { - ; + r += '\b'; } else if (*s == 'x') { if (!*++s) break; -- 2.39.5