diff options
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 60811353713..120ddfcade6 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi | |||
| @@ -1302,11 +1302,13 @@ hand parenthesis of the following list and then type @kbd{C-x C-e}: | |||
| 1302 | 1302 | ||
| 1303 | @c use code for the number four, not samp. | 1303 | @c use code for the number four, not samp. |
| 1304 | @noindent | 1304 | @noindent |
| 1305 | You will see the number @code{4} appear in the echo area. (What | 1305 | You will see the number @code{4} appear in the echo area@footnote{ |
| 1306 | you have just done is evaluate the list. The echo area | 1306 | Emacs shows integer values in decimal, in octal and in hex, and also |
| 1307 | is the line at the bottom of the screen that displays or echoes | 1307 | as a character, but let's ignore this convenience feature for now. |
| 1308 | text.) Now try the same thing with a quoted list: place the cursor | 1308 | }. (What you have just done is evaluate the list. The echo area is |
| 1309 | right after the following list and type @kbd{C-x C-e}: | 1309 | the line at the bottom of the screen that displays or echoes text.) |
| 1310 | Now try the same thing with a quoted list: place the cursor right | ||
| 1311 | after the following list and type @kbd{C-x C-e}: | ||
| 1310 | 1312 | ||
| 1311 | @smallexample | 1313 | @smallexample |
| 1312 | '(this is a quoted list) | 1314 | '(this is a quoted list) |