cvsuser     04/11/21 12:38:39

  Modified:    runtime/parrot/library/Data Escape.imc
  Log:
  Fix an apparent typo
  
  Revision  Changes    Path
  1.4       +3 -3      parrot/runtime/parrot/library/Data/Escape.imc
  
  Index: Escape.imc
  ===================================================================
  RCS file: /cvs/public/parrot/runtime/parrot/library/Data/Escape.imc,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Escape.imc        29 May 2004 11:20:17 -0000      1.3
  +++ Escape.imc        21 Nov 2004 20:38:39 -0000      1.4
  @@ -88,9 +88,9 @@
       branch DONE
   n10:
   
  -    # \n
  -    if c != 10 goto n13
  -    set tmp, "\\n"
  +    # \r
  +    if c != 13 goto n13
  +    set tmp, "\\r"
       branch DONE
   n13:
   
  
  
  

Reply via email to