aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/objects.texi
diff options
context:
space:
mode:
authorKarl Berry2006-07-16 18:25:23 +0000
committerKarl Berry2006-07-16 18:25:23 +0000
commitece35e15a7e73189b45b7c2d2fddcd6f46b0476f (patch)
treea785493e0cb209c32b27d5eac2a6fe1ec144ee03 /lispref/objects.texi
parent912c723552fdb9ff934d768e032b56c23911f2ab (diff)
downloademacs-ece35e15a7e73189b45b7c2d2fddcd6f46b0476f.tar.gz
emacs-ece35e15a7e73189b45b7c2d2fddcd6f46b0476f.zip
fix bad page breaks
Diffstat (limited to 'lispref/objects.texi')
-rw-r--r--lispref/objects.texi2
1 files changed, 2 insertions, 0 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi
index 3b51b96c780..f708ab79f5e 100644
--- a/lispref/objects.texi
+++ b/lispref/objects.texi
@@ -1822,12 +1822,14 @@ This function returns a symbol naming the primitive type of
1822@example 1822@example
1823(type-of 1) 1823(type-of 1)
1824 @result{} integer 1824 @result{} integer
1825@group
1825(type-of 'nil) 1826(type-of 'nil)
1826 @result{} symbol 1827 @result{} symbol
1827(type-of '()) ; @r{@code{()} is @code{nil}.} 1828(type-of '()) ; @r{@code{()} is @code{nil}.}
1828 @result{} symbol 1829 @result{} symbol
1829(type-of '(x)) 1830(type-of '(x))
1830 @result{} cons 1831 @result{} cons
1832@end group
1831@end example 1833@end example
1832@end defun 1834@end defun
1833 1835