From a4f9a96b1553ccc86ba86a68891a503a191073bb 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 5ddf1749..9d88c928 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);