eschmid Fri Jan 26 13:55:21 2001 EDT
Modified files:
/phpdoc genfuncsummary
Log:
Revert this patch.
Index: phpdoc/genfuncsummary
diff -u phpdoc/genfuncsummary:1.6 phpdoc/genfuncsummary:1.7
--- phpdoc/genfuncsummary:1.6 Tue Jan 2 12:03:22 2001
+++ phpdoc/genfuncsummary Fri Jan 26 13:55:21 2001
@@ -1,7 +1,7 @@
#!/bin/sh
-# $Id: genfuncsummary,v 1.6 2001/01/02 20:03:22 rasmus Exp $
+# $Id: genfuncsummary,v 1.7 2001/01/26 21:55:21 eschmid Exp $
-for i in `find $1 -name "*.[ch]" -print -o -name "*.ec" -print | xargs egrep -li
function_entry ` ; do
+for i in `find $1 -name "*.[ch]" -print -o -name "*.ec" -print | xargs egrep -li "{{{
+proto"` ; do
echo $i | sed -e 's/\.\.\//# /'
awk -f funcsummary.awk < $i | sort +1 | awk -F "---" '{ print $1; print $2; }' | sed
's/^[[:space:]]+//'
done