diff options
Diffstat (limited to 'lispref/objects.texi')
| -rw-r--r-- | lispref/objects.texi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index 3fc11631111..e75cde70202 100644 --- a/lispref/objects.texi +++ b/lispref/objects.texi | |||
| @@ -288,7 +288,7 @@ you @emph{must} use a second @samp{\} to quote it: @samp{?\\}. | |||
| 288 | @cindex @samp{\a} | 288 | @cindex @samp{\a} |
| 289 | @cindex backspace | 289 | @cindex backspace |
| 290 | @cindex @samp{\b} | 290 | @cindex @samp{\b} |
| 291 | @cindex tab | 291 | @cindex tab (ASCII character) |
| 292 | @cindex @samp{\t} | 292 | @cindex @samp{\t} |
| 293 | @cindex vertical tab | 293 | @cindex vertical tab |
| 294 | @cindex @samp{\v} | 294 | @cindex @samp{\v} |
| @@ -296,11 +296,11 @@ you @emph{must} use a second @samp{\} to quote it: @samp{?\\}. | |||
| 296 | @cindex @samp{\f} | 296 | @cindex @samp{\f} |
| 297 | @cindex newline | 297 | @cindex newline |
| 298 | @cindex @samp{\n} | 298 | @cindex @samp{\n} |
| 299 | @cindex return | 299 | @cindex return (ASCII character) |
| 300 | @cindex @samp{\r} | 300 | @cindex @samp{\r} |
| 301 | @cindex escape | 301 | @cindex escape (ASCII character) |
| 302 | @cindex @samp{\e} | 302 | @cindex @samp{\e} |
| 303 | @cindex space | 303 | @cindex space (ASCII character) |
| 304 | @cindex @samp{\s} | 304 | @cindex @samp{\s} |
| 305 | You can express the characters control-g, backspace, tab, newline, | 305 | You can express the characters control-g, backspace, tab, newline, |
| 306 | vertical tab, formfeed, space, return, del, and escape as @samp{?\a}, | 306 | vertical tab, formfeed, space, return, del, and escape as @samp{?\a}, |
| @@ -661,7 +661,7 @@ empty list. The empty list is actually the symbol @code{nil}. | |||
| 661 | cells are used as part of lists, the phrase @dfn{list structure} has | 661 | cells are used as part of lists, the phrase @dfn{list structure} has |
| 662 | come to refer to any structure made out of cons cells. | 662 | come to refer to any structure made out of cons cells. |
| 663 | 663 | ||
| 664 | @cindex atom | 664 | @cindex atoms |
| 665 | Because cons cells are so central to Lisp, we also have a word for | 665 | Because cons cells are so central to Lisp, we also have a word for |
| 666 | ``an object which is not a cons cell.'' These objects are called | 666 | ``an object which is not a cons cell.'' These objects are called |
| 667 | @dfn{atoms}. | 667 | @dfn{atoms}. |
| @@ -753,7 +753,7 @@ buttercup)}, sketched in a different manner: | |||
| 753 | @end group | 753 | @end group |
| 754 | @end smallexample | 754 | @end smallexample |
| 755 | 755 | ||
| 756 | @cindex @code{nil} in lists | 756 | @cindex @code{nil} as a list |
| 757 | @cindex empty list | 757 | @cindex empty list |
| 758 | A list with no elements in it is the @dfn{empty list}; it is identical | 758 | A list with no elements in it is the @dfn{empty list}; it is identical |
| 759 | to the symbol @code{nil}. In other words, @code{nil} is both a symbol | 759 | to the symbol @code{nil}. In other words, @code{nil} is both a symbol |
| @@ -1493,7 +1493,7 @@ uniquely). | |||
| 1493 | 1493 | ||
| 1494 | @node Window Configuration Type | 1494 | @node Window Configuration Type |
| 1495 | @subsection Window Configuration Type | 1495 | @subsection Window Configuration Type |
| 1496 | @cindex screen layout | 1496 | @cindex window layout in a frame |
| 1497 | 1497 | ||
| 1498 | A @dfn{window configuration} stores information about the positions, | 1498 | A @dfn{window configuration} stores information about the positions, |
| 1499 | sizes, and contents of the windows in a frame, so you can recreate the | 1499 | sizes, and contents of the windows in a frame, so you can recreate the |
| @@ -1507,6 +1507,7 @@ window configurations. | |||
| 1507 | @node Frame Configuration Type | 1507 | @node Frame Configuration Type |
| 1508 | @subsection Frame Configuration Type | 1508 | @subsection Frame Configuration Type |
| 1509 | @cindex screen layout | 1509 | @cindex screen layout |
| 1510 | @cindex window layout, all frames | ||
| 1510 | 1511 | ||
| 1511 | A @dfn{frame configuration} stores information about the positions, | 1512 | A @dfn{frame configuration} stores information about the positions, |
| 1512 | sizes, and contents of the windows in all frames. It is actually | 1513 | sizes, and contents of the windows in all frames. It is actually |
| @@ -1998,7 +1999,6 @@ always true. | |||
| 1998 | @end group | 1999 | @end group |
| 1999 | @end example | 2000 | @end example |
| 2000 | 2001 | ||
| 2001 | @cindex equality of strings | ||
| 2002 | Comparison of strings is case-sensitive, but does not take account of | 2002 | Comparison of strings is case-sensitive, but does not take account of |
| 2003 | text properties---it compares only the characters in the strings. For | 2003 | text properties---it compares only the characters in the strings. For |
| 2004 | technical reasons, a unibyte string and a multibyte string are | 2004 | technical reasons, a unibyte string and a multibyte string are |