From 2e58c2438fe27425948665536c31796ea3914ea8 Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 6 Nov 1991 14:36:25 +0000 Subject: [PATCH] '\v' is not K&R C --- util/cmisc/tabgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/cmisc/tabgen.c b/util/cmisc/tabgen.c index 5ddf1749b..9d88c9283 100644 --- a/util/cmisc/tabgen.c +++ b/util/cmisc/tabgen.c @@ -279,7 +279,7 @@ quoted(pstr) ch = '\f'; break; case 'v': - ch = '\v'; + ch = 013; break; default : ch = *(str - 1); -- 2.34.1