diff options
| author | Richard M. Stallman | 1994-05-05 07:21:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-05 07:21:27 +0000 |
| commit | 3e099569a8216bb980d45a366e75f7ceab4c5ead (patch) | |
| tree | 40e4f5ed4806b1dfc20ca47563940a4190983e77 /lispref/objects.texi | |
| parent | 2e00781a52fd9b7723e9beb5205a7e52696288a0 (diff) | |
| download | emacs-3e099569a8216bb980d45a366e75f7ceab4c5ead.tar.gz emacs-3e099569a8216bb980d45a366e75f7ceab4c5ead.zip | |
*** empty log message ***
Diffstat (limited to 'lispref/objects.texi')
| -rw-r--r-- | lispref/objects.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index 6dd8912671c..ede4d2cb554 100644 --- a/lispref/objects.texi +++ b/lispref/objects.texi | |||
| @@ -131,15 +131,15 @@ latter are unique to Emacs Lisp. | |||
| 131 | * Floating Point Type:: Numbers with fractional parts and with a large range. | 131 | * Floating Point Type:: Numbers with fractional parts and with a large range. |
| 132 | * Character Type:: The representation of letters, numbers and | 132 | * Character Type:: The representation of letters, numbers and |
| 133 | control characters. | 133 | control characters. |
| 134 | * Symbol Type:: A multi-use object that refers to a function, | ||
| 135 | variable, or property list, and has a unique identity. | ||
| 134 | * Sequence Type:: Both lists and arrays are classified as sequences. | 136 | * Sequence Type:: Both lists and arrays are classified as sequences. |
| 135 | * Cons Cell Type:: Cons cells, and lists (which are made from cons cells). | 137 | * Cons Cell Type:: Cons cells, and lists (which are made from cons cells). |
| 136 | * Array Type:: Arrays include strings and vectors. | 138 | * Array Type:: Arrays include strings and vectors. |
| 137 | * String Type:: An (efficient) array of characters. | 139 | * String Type:: An (efficient) array of characters. |
| 138 | * Vector Type:: One-dimensional arrays. | 140 | * Vector Type:: One-dimensional arrays. |
| 139 | * Symbol Type:: A multi-use object that refers to a function, | 141 | * Function Type:: A piece of executable code you can call from elsewhere. |
| 140 | variable, property list, or itself. | 142 | * Macro Type:: A method of expanding an expression into another |
| 141 | * Lisp Function Type:: A piece of executable code you can call from elsewhere. | ||
| 142 | * Lisp Macro Type:: A method of expanding an expression into another | ||
| 143 | expression, more fundamental but less pretty. | 143 | expression, more fundamental but less pretty. |
| 144 | * Primitive Function Type:: A function written in C, callable from Lisp. | 144 | * Primitive Function Type:: A function written in C, callable from Lisp. |
| 145 | * Byte-Code Type:: A function written in Lisp, then compiled. | 145 | * Byte-Code Type:: A function written in Lisp, then compiled. |
| @@ -1150,7 +1150,7 @@ Area}). | |||
| 1150 | Streams have no special printed representation or read syntax, and | 1150 | Streams have no special printed representation or read syntax, and |
| 1151 | print as whatever primitive type they are. | 1151 | print as whatever primitive type they are. |
| 1152 | 1152 | ||
| 1153 | @xref{Streams, Reading and Printing}, for a description of functions | 1153 | @xref{Read and Print}, for a description of functions |
| 1154 | related to streams, including parsing and printing functions. | 1154 | related to streams, including parsing and printing functions. |
| 1155 | 1155 | ||
| 1156 | @node Keymap Type | 1156 | @node Keymap Type |