]> granicus.if.org Git - flex/commitdiff
undid previous change
authorVern Paxson <vern@ee.lbl.gov>
Mon, 5 Dec 1994 21:18:17 +0000 (21:18 +0000)
committerVern Paxson <vern@ee.lbl.gov>
Mon, 5 Dec 1994 21:18:17 +0000 (21:18 +0000)
misc.c

diff --git a/misc.c b/misc.c
index 6ee4f7952a2e90fae4046a1e6ecc42892562a29d..8cca84243c2710c4ac07b1204baa28e64318243e 100644 (file)
--- 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';