From: Vern Paxson Date: Mon, 5 Dec 1994 21:18:17 +0000 (+0000) Subject: undid previous change X-Git-Tag: flex-2-5-5b~164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14fa10e13da480b88f1f751d79abbe08c996d206;p=flex undid previous change --- 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';