From 14fa10e13da480b88f1f751d79abbe08c996d206 Mon Sep 17 00:00:00 2001 From: Vern Paxson Date: Mon, 5 Dec 1994 21:18:17 +0000 Subject: [PATCH] undid previous change --- misc.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/misc.c b/misc.c index 6ee4f79..8cca842 100644 --- a/misc.c +++ b/misc.c @@ -537,17 +537,10 @@ Char array[]; { case 'b': return '\b'; case 'f': return '\f'; + case 'n': return '\n'; case 'r': return '\r'; case 't': return '\t'; - case 'n': - /* Special case. flex.skl takes care to map - * incoming '\n's to '\012', even on systems that - * don't use that value. We need to be consistent - * with that choice. - */ - return '\012'; - #if __STDC__ case 'a': return '\a'; case 'v': return '\v'; -- 2.49.0