diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-05-19 22:58:29 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-05-19 22:58:29 +0000 |
commit | 51f7ef47f9128bae406bb16fd808b7831113ace1 (patch) | |
tree | 8261a56541fa54e8b5281dbf0b16001db36588c2 | |
parent | 189285962e82806e5b962d97acd847a07ac4e790 (diff) | |
download | guile-51f7ef47f9128bae406bb16fd808b7831113ace1.tar.gz |
Fix missing paren.
-rw-r--r-- | oop/goops.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oop/goops.scm b/oop/goops.scm index 162cd2811..85ecf028c 100644 --- a/oop/goops.scm +++ b/oop/goops.scm @@ -35,7 +35,7 @@ ;; Then load the rest of GOOPS (use-modules (oop goops util) (oop goops dispatch) - (oop goops compile) + (oop goops compile)) (export ; Define the exported symbols of this file goops-version is-a? |