I've already applied the following little patch, necessary to 
allow compilation by a C compiler that doesn't support the
// - style comments.

diff -r -u parrot-orig/misc.c parrot-andy/misc.c
--- parrot-orig/misc.c  Tue Feb  5 09:04:13 2002
+++ parrot-andy/misc.c  Tue Feb  5 12:01:39 2002
@@ -147,14 +147,14 @@
        else if(howmuch < 0) {
                memmove(buf, buf-howmuch, len+howmuch);
        }
-       else if(info->flags & FLAG_MINUS) { //left-align
+       else if(info->flags & FLAG_MINUS) { /* left-align */
                for(i=0; i < howmuch; i++) {
                        buf[i+len]=' ';
                }
 
                buf[i+len]=0;
        }
-       else { //right-align
+       else { /* right-align */
                memmove(buf+howmuch, buf, len);
 
                for(i=0; i < howmuch; i++) {

-- 
    Andy Dougherty              [EMAIL PROTECTED]
    Dept. of Physics
    Lafayette College, Easton PA 18042

Reply via email to