aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-01-23 00:21:53 -0800
committerGlenn Morris2014-01-23 00:21:53 -0800
commit4a3c72703e6437ec67f3e7c2f73ad7980e29aa6a (patch)
tree08c1efd094fc4b44e88c6760bd168ff6ebfc7028
parent1670e27f383c96eb19bb2049c760a8bd5d2eec12 (diff)
downloademacs-4a3c72703e6437ec67f3e7c2f73ad7980e29aa6a.tar.gz
emacs-4a3c72703e6437ec67f3e7c2f73ad7980e29aa6a.zip
* emacs-lisp-intro.texi (lengths-list-file): Fix textual parentheses.
-rw-r--r--doc/lispintro/ChangeLog4
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi12
2 files changed, 11 insertions, 5 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index c20705dd647..26493cb59ce 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,7 @@
12014-01-23 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp-intro.texi (lengths-list-file): Fix textual parentheses.
4
12013-12-30 Paul Eggert <eggert@cs.ucla.edu> 52013-12-30 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 Specify .texi encoding (Bug#16292). 7 Specify .texi encoding (Bug#16292).
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 8c3574f75f7..84452513a76 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -15061,18 +15061,19 @@ C-e} (@code{eval-last-sexp}).
15061@c !!! 22.1.1 lisp sources location here 15061@c !!! 22.1.1 lisp sources location here
15062@smallexample 15062@smallexample
15063(lengths-list-file 15063(lengths-list-file
15064 "/usr/local/share/emacs/22.1.1/lisp/emacs-lisp/debug.el") 15064 "/usr/local/share/emacs/22.1/lisp/emacs-lisp/debug.el")
15065@end smallexample 15065@end smallexample
15066 15066
15067@noindent 15067@noindent
15068(You may need to change the pathname of the file; the one here is for 15068You may need to change the pathname of the file; the one here is for
15069GNU Emacs version 22.1.1. To change the expression, copy it to 15069GNU Emacs version 22.1. To change the expression, copy it to
15070the @file{*scratch*} buffer and edit it. 15070the @file{*scratch*} buffer and edit it.
15071 15071
15072@need 1200 15072@need 1200
15073@noindent 15073@noindent
15074(Also, to see the full length of the list, rather than a truncated 15074Also, to see the full length of the list, rather than a truncated
15075version, you may have to evaluate the following: 15075version, you may have to evaluate the following:
15076@c We do not want to insert, so do not mention the zero prefix argument.
15076 15077
15077@smallexample 15078@smallexample
15078(custom-set-variables '(eval-expression-print-length nil)) 15079(custom-set-variables '(eval-expression-print-length nil))
@@ -15098,7 +15099,8 @@ took seven seconds to produce and looked like this:
15098(75 41 80 62 20 45 44 68 45 12 34 235) 15099(75 41 80 62 20 45 44 68 45 12 34 235)
15099@end smallexample 15100@end smallexample
15100 15101
15101(The newer version of @file{debug.el} contains more defuns than the 15102@noindent
15103The newer version of @file{debug.el} contains more defuns than the
15102earlier one; and my new machine is much faster than the old one.) 15104earlier one; and my new machine is much faster than the old one.)
15103 15105
15104Note that the length of the last definition in the file is first in 15106Note that the length of the last definition in the file is first in