Update of /cvsroot/cscope/cscope/contrib/xcscope
In directory usw-pr-cvs1:/tmp/cvs-serv28501
Modified Files:
cscope-indexer
Log Message:
Allow more source extensions.
Index: cscope-indexer
===================================================================
RCS file: /cvsroot/cscope/cscope/contrib/xcscope/cscope-indexer,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** cscope-indexer 2000/06/09 00:20:55 1.1
--- cscope-indexer 2001/06/28 04:39:47 1.2
***************
*** 32,36 ****
# Author: Darryl Okahata
# Created: Thu Apr 27 17:12:14 2000
! # Modified: Tue May 9 16:09:45 2000 (Darryl Okahata) da...@so...
# Language: Shell-script
# Package: N/A
--- 32,36 ----
# Author: Darryl Okahata
# Created: Thu Apr 27 17:12:14 2000
! # Modified: Tue Jun 19 09:47:45 2001 (Darryl Okahata) da...@so...
# Language: Shell-script
# Package: N/A
***************
*** 135,142 ****
done
else
! find $DIR -type f
fi
) | \
! egrep '\.([CHchly](xx|pp|XX|PP)*|CC|HH)$' | \
sed -e '/\/CVS\//d' -e '/\/RCS\//d' -e 's/^\.\///' | \
sort > $LIST_FILE
--- 135,142 ----
done
else
! find $DIR \( -type f -o -type l \)
fi
) | \
! egrep -i '\.([chly](xx|pp)*|cc|hh)$' | \
sed -e '/\/CVS\//d' -e '/\/RCS\//d' -e 's/^\.\///' | \
sort > $LIST_FILE
|