aboutsummaryrefslogtreecommitdiff
path: root/lex.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-01-06 00:01:46 -0700
committerArnold D. Robbins <arnold@skeeve.com>2020-01-06 00:01:46 -0700
commit944989bf683d30f306d8f29a3eb8c68c7c603fb4 (patch)
tree065c2aede377272723a419e6f28d051c95ce98f8 /lex.c
parentc7eeb57210cc7104df233a243295c36ffe6a2117 (diff)
downloadone-true-awk-944989bf683d30f306d8f29a3eb8c68c7c603fb4.tar.gz
Minor fixes.
Diffstat (limited to 'lex.c')
-rw-r--r--lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lex.c b/lex.c
index 1c6a0b7..d729516 100644
--- a/lex.c
+++ b/lex.c
@@ -390,7 +390,7 @@ int string(void)
case 'r': *bp++ = '\r'; break;
case 'b': *bp++ = '\b'; break;
case 'v': *bp++ = '\v'; break;
- case 'a': *bp++ = '\007'; break;
+ case 'a': *bp++ = '\a'; break;
case '\\': *bp++ = '\\'; break;
case '0': case '1': case '2': /* octal: \d \dd \ddd */