diff options
Diffstat (limited to 'lispref/objects.texi')
| -rw-r--r-- | lispref/objects.texi | 17 |
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). | |||
| 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 |
| @@ -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 |
| 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) |