diff options
| author | Glenn Morris | 2012-10-24 21:49:54 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-10-24 21:49:54 -0400 |
| commit | 39ff2cf3c6cd38baf66c8c7c7ffc5b1f11a52528 (patch) | |
| tree | a7e1b181f902ef7d1dc11dd88bac1a39fd837dc8 | |
| parent | 4e98ad153c44f8827456e0e970ed3ab96d3493b5 (diff) | |
| download | emacs-39ff2cf3c6cd38baf66c8c7c7ffc5b1f11a52528.tar.gz emacs-39ff2cf3c6cd38baf66c8c7c7ffc5b1f11a52528.zip | |
* doc/misc/cl.texi (Declarations): Fix typos.
| -rw-r--r-- | doc/misc/ChangeLog | 1 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 5 |
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 | ||
| 16 | 2012-10-24 Glenn Morris <rgm@gnu.org> | 17 | 2012-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 | |||
| 3088 | The default level for both qualities is 1. | 3088 | The default level for both qualities is 1. |
| 3089 | 3089 | ||
| 3090 | In this package, with the optimizing compiler, the | 3090 | In 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} | ||
| 3093 | flag, which is set to @code{nil} for @code{(speed 0)} and to | 3092 | flag, 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 |
| 3095 | tied to the @code{byte-compile-delete-errors} flag, which is | 3094 | tied to the @code{byte-compile-delete-errors} flag, which is |
| 3096 | set to @code{t} for @code{(safety 3)} and to @code{nil} for all | 3095 | set to @code{nil} for @code{(safety 3)} and to @code{t} for all |
| 3097 | lower settings. (The latter flag controls whether the compiler | 3096 | lower settings. (The latter flag controls whether the compiler |
| 3098 | is allowed to optimize out code whose only side-effect could | 3097 | is allowed to optimize out code whose only side-effect could |
| 3099 | be to signal an error, e.g., rewriting @code{(progn foo bar)} to | 3098 | be to signal an error, e.g., rewriting @code{(progn foo bar)} to |