diff options
author | Tim Pierce <twp@skepsis.com> | 1997-06-20 16:52:19 +0000 |
---|---|---|
committer | Tim Pierce <twp@skepsis.com> | 1997-06-20 16:52:19 +0000 |
commit | bee14491025fe4d32939fd72dee6890e6f84a894 (patch) | |
tree | dc7efe066e3267ffe07df7a0794e66ce1d6e9fa5 /libguile | |
parent | 9fbdb48f369be419e7a7f7306c75f43e82332d5e (diff) | |
download | guile-bee14491025fe4d32939fd72dee6890e6f84a894.tar.gz |
Fixed Guile snarfing problem with SunPro suite.
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/ChangeLog | 6 | ||||
-rw-r--r-- | libguile/guile-snarf.in | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog index b6a8f985f..6baf5cc5d 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,9 @@ +Fri Jun 20 10:03:41 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu> + + * guile-snarf.in: Changed regexp to support CPPs that insert + whitespace between lexical tokens (which munges the `%%%' snarf + cookie). + Tue Jun 17 13:49:56 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu> * * load.c (scm_init_load_path): Append $(datadir)/guile to diff --git a/libguile/guile-snarf.in b/libguile/guile-snarf.in index e9254cdbc..c5adf9aba 100644 --- a/libguile/guile-snarf.in +++ b/libguile/guile-snarf.in @@ -1,4 +1,4 @@ #!/bin/sh # Extract the initialization actions for builtin things. -@CPP@ -DSCM_MAGIC_SNARFER $* | grep "^%%%" | sed -e "s/^%%%//" +@CPP@ -DSCM_MAGIC_SNARFER $* | grep "^ *% *% *%" | sed -e "s/^ *% *% *%//" |