Provide describe' feature in (oop goops describe)'.

This commit is contained in:
Ludovic Courtès 2008-03-12 17:00:07 +00:00
commit bbb6fc4fc2
3 changed files with 14 additions and 3 deletions

1
NEWS
View file

@ -53,6 +53,7 @@ would trigger an unbound variable error for `match:andmap'.
** Fixed build issue with DEC/Compaq/HP's compiler
** Fixed `scm_from_complex_double' build issue on FreeBSD
** Fixed `alloca' build issue on FreeBSD 6
** `(oop goops describe)' now properly provides the `describe' feature
* Changes to the distribution

View file

@ -1,4 +1,10 @@
2007-05-05 Ludovic Courtès <ludo@chbouib.org>
2008-03-12 Ludovic Courtès <ludo@gnu.org>
* goops/describe.scm (describe): Provide `describe' (symbol),
not `"describe"' (string). Reported by David Pirotte
<david@altosw.be>.
2007-05-05 Ludovic Courtès <ludo@chbouib.org>
* goops/internal.scm: Use the public module API rather than hack
with `%module-public-interface', `nested-ref', et al.
@ -282,3 +288,7 @@
* goops.scm (goops-error): Removed use of oldfmt.
;; Local Variables:
;; coding: utf-8
;; End:

View file

@ -1,6 +1,6 @@
;;; installed-scm-file
;;;; Copyright (C) 1998, 1999, 2001, 2006 Free Software Foundation, Inc.
;;;; Copyright (C) 1998, 1999, 2001, 2006, 2008 Free Software Foundation, Inc.
;;;;
;;;; This library is free software; you can redistribute it and/or
;;;; modify it under the terms of the GNU Lesser General Public
@ -197,4 +197,4 @@
(format #t "\tSpecializers:")
(print-args (method-specializers x))))
(provide "describe")
(provide 'describe)