[omniORB] silly(minor) bug in idl compiler

Manikchand manik@vishesh.india.hp.com
Fri, 04 Sep 1998 17:06:36 IST


Hi,

I've found and corrected a simple bug in idl compiler (omniORB 2.5.0). The 
compiler does'nt strip the comments properly.

Here is the solution(diffs)
*** idl.ll.fix  Fri Sep  4 17:04:39 1998
--- idl.ll      Thu Feb 26 22:56:30 1998
***************
*** 235,241 ****
                        break;
                      else
                        /* yyunput(c); */
!                       unput(next);
                      if (c == '\n')
                        idl_global->set_lineno(idl_global->lineno() + 1);
                    }
--- 235,241 ----
                        break;
                      else
                        /* yyunput(c); */
!                       unput(c);
                      if (c == '\n')
                        idl_global->set_lineno(idl_global->lineno() + 1);
                    }


Regards,
Manik