summaryrefslogtreecommitdiff
path: root/lispref/objects.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-12-20 00:09:23 +0000
committerRichard M. Stallman <rms@gnu.org>1996-12-20 00:09:23 +0000
commit3607fb8575ea1d18cd5ea01e2bb629c1d4d3adfd (patch)
tree38bb04b52ca7540b895803764544f83feea318ce /lispref/objects.texi
parent9226239027548f76d2c21b94fb997df71e829967 (diff)
downloademacs-3607fb8575ea1d18cd5ea01e2bb629c1d4d3adfd.tar.gz
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).
sizes, and contents of the windows in a frame, so you can recreate the
same arrangement of windows later.
- Window configurations do not have a read syntax. They print as
-@samp{#<window-configuration>}. @xref{Window Configurations}, for a
-description of several functions related to window configurations.
+ Window configurations do not have a read syntax; their print syntax
+looks like @samp{#<window-configuration>}. @xref{Window
+Configurations}, for a description of several functions related to
+window configurations.
@node Process Type
@subsection Process Type
@@ -1427,11 +1428,11 @@ types. In most cases, it is more convenient to use type predicates than
@defun type-of object
This function returns a symbol naming the primitive type of
-@var{object}. The value is one of @code{symbol}, @code{integer},
-@code{float}, @code{string}, @code{cons}, @code{vector}, @code{marker},
-@code{overlay}, @code{window}, @code{buffer}, @code{subr},
-@code{compiled-function}, @code{window-configuration}, or
-@code{process}.
+@var{object}. The value is one of the symbols @code{symbol},
+@code{integer}, @code{float}, @code{string}, @code{cons}, @code{vector},
+@code{marker}, @code{overlay}, @code{window}, @code{buffer},
+@code{subr}, @code{compiled-function}, @code{process}, or
+@code{window-configuration}.
@example
(type-of 1)