comparison lispref/objects.texi @ 16736:981e116b4ac6

Minor cleanups for overfull hboxes.
author Richard M. Stallman <rms@gnu.org>
date Fri, 20 Dec 1996 00:09:23 +0000
parents 586e3ea81792
children 66d807bdc5b4
comparison
equal deleted inserted replaced
16735:940b9fcc1da6 16736:981e116b4ac6
1156 1156
1157 A @dfn{window configuration} stores information about the positions, 1157 A @dfn{window configuration} stores information about the positions,
1158 sizes, and contents of the windows in a frame, so you can recreate the 1158 sizes, and contents of the windows in a frame, so you can recreate the
1159 same arrangement of windows later. 1159 same 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 1162 looks like @samp{#<window-configuration>}. @xref{Window
1163 description of several functions related to window configurations. 1163 Configurations}, for a description of several functions related to
1164 window configurations.
1164 1165
1165 @node Process Type 1166 @node Process Type
1166 @subsection Process Type 1167 @subsection Process Type
1167 1168
1168 The word @dfn{process} usually means a running program. Emacs itself 1169 The word @dfn{process} usually means a running program. Emacs itself
1425 types. In most cases, it is more convenient to use type predicates than 1426 types. In most cases, it is more convenient to use type predicates than
1426 @code{type-of}. 1427 @code{type-of}.
1427 1428
1428 @defun type-of object 1429 @defun type-of object
1429 This function returns a symbol naming the primitive type of 1430 This 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)
1438 @result{} integer 1439 @result{} integer
1439 (type-of 'nil) 1440 (type-of 'nil)