diff options
| -rw-r--r-- | lispref/objects.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index f0bef593f29..93d7c51b08d 100644 --- a/lispref/objects.texi +++ b/lispref/objects.texi | |||
| @@ -1166,7 +1166,7 @@ only the first 3 bits are used: | |||
| 1166 | 1166 | ||
| 1167 | A hash table is a very fast kind of lookup table, somewhat like an | 1167 | A hash table is a very fast kind of lookup table, somewhat like an |
| 1168 | alist in that it maps keys to corresponding values, but much faster. | 1168 | alist in that it maps keys to corresponding values, but much faster. |
| 1169 | Hash tables are a new feature in Emacs 21; they have no read syntax, and | 1169 | Hash tables have no read syntax, and |
| 1170 | print using hash notation. @xref{Hash Tables}. | 1170 | print using hash notation. @xref{Hash Tables}. |
| 1171 | 1171 | ||
| 1172 | @example | 1172 | @example |
| @@ -1549,9 +1549,9 @@ positions. | |||
| 1549 | @cindex @samp{#@var{n}=} read syntax | 1549 | @cindex @samp{#@var{n}=} read syntax |
| 1550 | @cindex @samp{#@var{n}#} read syntax | 1550 | @cindex @samp{#@var{n}#} read syntax |
| 1551 | 1551 | ||
| 1552 | In Emacs 21, to represent shared or circular structures within a | 1552 | To represent shared or circular structures within a complex of Lisp |
| 1553 | complex of Lisp objects, you can use the reader constructs | 1553 | objects, you can use the reader constructs @samp{#@var{n}=} and |
| 1554 | @samp{#@var{n}=} and @samp{#@var{n}#}. | 1554 | @samp{#@var{n}#}. |
| 1555 | 1555 | ||
| 1556 | Use @code{#@var{n}=} before an object to label it for later reference; | 1556 | Use @code{#@var{n}=} before an object to label it for later reference; |
| 1557 | subsequently, you can use @code{#@var{n}#} to refer the same object in | 1557 | subsequently, you can use @code{#@var{n}#} to refer the same object in |