aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/objects.texi
diff options
context:
space:
mode:
authorRichard M. Stallman1996-12-20 00:09:23 +0000
committerRichard M. Stallman1996-12-20 00:09:23 +0000
commit9e2b495b7085a76d3d6ea521312d080aa6479965 (patch)
tree4dc81dafa556a21ec36ae794fde5dd02b06e5fcb /lispref/objects.texi
parent6268f00653c5f594251862066f15126bee5f1a2a (diff)
downloademacs-9e2b495b7085a76d3d6ea521312d080aa6479965.tar.gz
emacs-9e2b495b7085a76d3d6ea521312d080aa6479965.zip
Minor cleanups for overfull hboxes.
Diffstat (limited to 'lispref/objects.texi')
-rw-r--r--lispref/objects.texi17
1 files changed, 9 insertions, 8 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi
index dd7a7bb77fe..78412e2c312 100644
--- a/lispref/objects.texi
+++ b/lispref/objects.texi
@@ -1158,9 +1158,10 @@ uniquely).
1158sizes, and contents of the windows in a frame, so you can recreate the 1158sizes, and contents of the windows in a frame, so you can recreate the
1159same arrangement of windows later. 1159same arrangement of windows later.
1160 1160
1161 Window configurations do not have a read syntax. They print as 1161 Window configurations do not have a read syntax; their print syntax
1162@samp{#<window-configuration>}. @xref{Window Configurations}, for a 1162looks like @samp{#<window-configuration>}. @xref{Window
1163description of several functions related to window configurations. 1163Configurations}, for a description of several functions related to
1164window configurations.
1164 1165
1165@node Process Type 1166@node Process Type
1166@subsection Process Type 1167@subsection Process Type
@@ -1427,11 +1428,11 @@ types. In most cases, it is more convenient to use type predicates than
1427 1428
1428@defun type-of object 1429@defun type-of object
1429This function returns a symbol naming the primitive type of 1430This function returns a symbol naming the primitive type of
1430@var{object}. The value is one of @code{symbol}, @code{integer}, 1431@var{object}. The value is one of the symbols @code{symbol},
1431@code{float}, @code{string}, @code{cons}, @code{vector}, @code{marker}, 1432@code{integer}, @code{float}, @code{string}, @code{cons}, @code{vector},
1432@code{overlay}, @code{window}, @code{buffer}, @code{subr}, 1433@code{marker}, @code{overlay}, @code{window}, @code{buffer},
1433@code{compiled-function}, @code{window-configuration}, or 1434@code{subr}, @code{compiled-function}, @code{process}, or
1434@code{process}. 1435@code{window-configuration}.
1435 1436
1436@example 1437@example
1437(type-of 1) 1438(type-of 1)