summaryrefslogtreecommitdiff
path: root/doc/ref/goops.texi
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2009-08-04 12:10:16 +0100
committerNeil Jerram <neil@ossau.uklinux.net>2009-08-04 12:10:16 +0100
commit45867c2ace30469cbc40431756ed144762806d8d (patch)
treea30974a34024be026203b3c2305eb4ff4c58aadb /doc/ref/goops.texi
parent650ecada5e96d79b7ad6f2437ee5fecb8b87d5fa (diff)
downloadguile-45867c2ace30469cbc40431756ed144762806d8d.tar.gz
Fix overfull hboxes
Diffstat (limited to 'doc/ref/goops.texi')
-rw-r--r--doc/ref/goops.texi6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/ref/goops.texi b/doc/ref/goops.texi
index 83a2a51d1..1abac846c 100644
--- a/doc/ref/goops.texi
+++ b/doc/ref/goops.texi
@@ -1041,7 +1041,8 @@ allocation to do this.
(let ((batch-allocation-count 0)
(batch-get-n-set #f))
- (define-method (compute-get-n-set (class <batched-allocation-metaclass>) s)
+ (define-method (compute-get-n-set
+ (class <batched-allocation-metaclass>) s)
(case (slot-definition-allocation s)
((#:batched)
;; If we've already used the same slot storage for 10 instances,
@@ -2009,7 +2010,8 @@ is specialized for this metaclass:
@example
(define-class <can-be-nameless> (<class>))
-(define-method (class-redefinition (old <can-be-nameless>) (new <class>))
+(define-method (class-redefinition (old <can-be-nameless>)
+ (new <class>))
new)
@end example