Add a footnote to Emacs Lisp Intro

* doc/lispintro/emacs-lisp-intro.texi (Run a Program): Describe
the detailed output of integer value evaluation in a footnote, to
prevent confusion.  (Bug#31579)
This commit is contained in:
Eli Zaretskii 2018-05-24 19:49:34 +03:00
parent 5eabe4a024
commit 0a51113397

View file

@ -1302,11 +1302,13 @@ hand parenthesis of the following list and then type @kbd{C-x C-e}:
@c use code for the number four, not samp. @c use code for the number four, not samp.
@noindent @noindent
You will see the number @code{4} appear in the echo area. (What You will see the number @code{4} appear in the echo area@footnote{
you have just done is evaluate the list. The echo area Emacs shows integer values in decimal, in octal and in hex, and also
is the line at the bottom of the screen that displays or echoes as a character, but let's ignore this convenience feature for now.
text.) Now try the same thing with a quoted list: place the cursor }. (What you have just done is evaluate the list. The echo area is
right after the following list and type @kbd{C-x C-e}: the line at the bottom of the screen that displays or echoes text.)
Now try the same thing with a quoted list: place the cursor right
after the following list and type @kbd{C-x C-e}:
@smallexample @smallexample
'(this is a quoted list) '(this is a quoted list)