changeset 2821:044d25a60ea1

[project @ 1997-03-20 20:48:23 by jwe]
author jwe
date Thu, 20 Mar 1997 20:48:23 +0000
parents eb2222c7f4cf
children 7cacd6c766d2
files src/ChangeLog src/mk-oct-links
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Tue Mar 18 06:38:52 1997 +0000
+++ b/src/ChangeLog	Thu Mar 20 20:48:23 1997 +0000
@@ -1,3 +1,8 @@
+Thu Mar 20 14:47:49 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* mk-oct-links (links_dir): Don't use -h option for grep.  It's
+	not needed since we are working on one file at a time anyway.
+
 Mon Mar 17 10:53:29 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* lex.l (handle_identifier): When handling indirect_ref, set
--- a/src/mk-oct-links	Tue Mar 18 06:38:52 1997 +0000
+++ b/src/mk-oct-links	Thu Mar 20 20:48:23 1997 +0000
@@ -20,7 +20,7 @@
 
 for f in "$@"; do
   base=`basename $f | sed 's/\.cc$//'`
-  fcns=`grep -h '^ *DEFUN_DLD' $f |\
+  fcns=`grep '^ *DEFUN_DLD' $f |\
         sed -e 's/DEFUN_DLD *( *//' -e 's/ *,.*$//' |\
         sort -u`
   if [ -n "$fcns" ]; then