Update of /cvsroot/cscope/cscope/src
In directory usw-pr-cvs1:/tmp/cvs-serv4158/src
Modified Files:
fscanner.l
Log Message:
Fix SF bug #435535
Index: fscanner.l
===================================================================
RCS file: /cvsroot/cscope/cscope/src/fscanner.l,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** fscanner.l 2001/06/19 20:04:02 1.4
--- fscanner.l 2001/06/25 12:13:18 1.5
***************
*** 350,354 ****
last = my_yyleng - 1;
if (compress == YES) {
! yytext[0] = '\2'; /* compress the keyword */
}
BEGIN(INITIAL);
--- 350,354 ----
last = my_yyleng - 1;
if (compress == YES) {
! my_yytext[0] = '\2'; /* compress the keyword */
}
BEGIN(INITIAL);
***************
*** 451,455 ****
token = DEFINE;
if (compress == YES) {
! yytext[0] = '\1'; /* compress the keyword */
}
findident:
--- 451,455 ----
token = DEFINE;
if (compress == YES) {
! my_yytext[0] = '\1'; /* compress the keyword */
}
findident:
|