From d70afb3b6834a19ead46f19316a97611c65713ef Mon Sep 17 00:00:00 2001 From: slubek Date: Fri, 13 Feb 2004 00:03:46 +0000 Subject: [PATCH] Fixed conversion of < and > --- lang/convert.awk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lang/convert.awk b/lang/convert.awk index 1db11f21..ebd566e5 100755 --- a/lang/convert.awk +++ b/lang/convert.awk @@ -10,9 +10,7 @@ BEGIN { while (index($0,"<?php")==0) { getline; continue } # (as there should be only one occurance, thats no problem) /\?\>/ { print "?>"; exit } - { # I'm not sure if its still needed - gsub(">",">"); - gsub("<","<"); + { # Convert CRLF -> LF (== "remove CR" ) ;-) gsub(" ",""); print $0 -- 2.39.5