aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-10-24 21:49:54 -0400
committerGlenn Morris2012-10-24 21:49:54 -0400
commit39ff2cf3c6cd38baf66c8c7c7ffc5b1f11a52528 (patch)
treea7e1b181f902ef7d1dc11dd88bac1a39fd837dc8
parent4e98ad153c44f8827456e0e970ed3ab96d3493b5 (diff)
downloademacs-39ff2cf3c6cd38baf66c8c7c7ffc5b1f11a52528.tar.gz
emacs-39ff2cf3c6cd38baf66c8c7c7ffc5b1f11a52528.zip
* doc/misc/cl.texi (Declarations): Fix typos.
-rw-r--r--doc/misc/ChangeLog1
-rw-r--r--doc/misc/cl.texi5
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index efc4de8646b..ec46ab5eb05 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -12,6 +12,7 @@
12 (Dynamic Bindings): Update for changed progv behavior. 12 (Dynamic Bindings): Update for changed progv behavior.
13 (Loop Examples, Efficiency Concerns): Markup fixes. 13 (Loop Examples, Efficiency Concerns): Markup fixes.
14 (Structures): Remove TeX margin change. 14 (Structures): Remove TeX margin change.
15 (Declarations): Fix typos.
15 16
162012-10-24 Glenn Morris <rgm@gnu.org> 172012-10-24 Glenn Morris <rgm@gnu.org>
17 18
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index d3cc8bb76eb..9200958a1b5 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -3088,12 +3088,11 @@ and @code{safety}. The value of a quality should be an integer from
3088The default level for both qualities is 1. 3088The default level for both qualities is 1.
3089 3089
3090In this package, with the optimizing compiler, the 3090In this package, with the optimizing compiler, the
3091@c FIXME does not exist? 3091@code{speed} quality is tied to the @code{byte-optimize}
3092@code{speed} quality is tied to the @code{byte-compile-optimize}
3093flag, which is set to @code{nil} for @code{(speed 0)} and to 3092flag, which is set to @code{nil} for @code{(speed 0)} and to
3094@code{t} for higher settings; and the @code{safety} quality is 3093@code{t} for higher settings; and the @code{safety} quality is
3095tied to the @code{byte-compile-delete-errors} flag, which is 3094tied to the @code{byte-compile-delete-errors} flag, which is
3096set to @code{t} for @code{(safety 3)} and to @code{nil} for all 3095set to @code{nil} for @code{(safety 3)} and to @code{t} for all
3097lower settings. (The latter flag controls whether the compiler 3096lower settings. (The latter flag controls whether the compiler
3098is allowed to optimize out code whose only side-effect could 3097is allowed to optimize out code whose only side-effect could
3099be to signal an error, e.g., rewriting @code{(progn foo bar)} to 3098be to signal an error, e.g., rewriting @code{(progn foo bar)} to