diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-10-21 21:43:18 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-10-21 21:43:18 -0400 |
commit | 47903e9188cb7483a11506358def912a2cc1b2d2 (patch) | |
tree | 7ae1acc5993f17820bada900f66447cdb96dc368 /Makefile.am | |
parent | f74729876fe8f89cdfa176e99d17dc4da9e3e05b (diff) |
Add (syntax-highlight utils) module.
* syntax-highlight.scm (string->stream): Move it.
* syntax-highlight/parsers.scm (stream->string): Likewise.
* syntax-highlight/utils.scm: New file.
* Makefile.am (SOURCES): Add it.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 84ddeda..c838685 100644 --- a/Makefile.am +++ b/Makefile.am @@ -39,6 +39,7 @@ moddir=$(prefix)/share/guile/site/2.0 godir=$(libdir)/guile/2.0/ccache SOURCES = \ + syntax-highlight/utils.scm \ syntax-highlight/parsers.scm \ syntax-highlight/scheme.scm \ syntax-highlight/xml.scm \ |