Update of /cvsroot/cscope/cscope/src
In directory usw-pr-cvs1:/tmp/cvs-serv9197/src
Modified Files:
fscanner.l
Log Message:
Bugfix in flex scanner: comments directly after #endif
Index: fscanner.l
===================================================================
RCS file: /cvsroot/cscope/cscope/src/fscanner.l,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** fscanner.l 2001/06/01 12:43:24 1.2
--- fscanner.l 2001/06/15 11:00:35 1.3
***************
*** 223,227 ****
}
! \#[ \t]*endif([ \t].*)? { /* #endif */
/* delay treatment of #endif depending on whether an
* #if comes right after it, or not */
--- 223,227 ----
}
! \#[ \t]*endif(([ \t]|{comment}).*)? { /* #endif */
/* delay treatment of #endif depending on whether an
* #if comes right after it, or not */
|